diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-08-03 18:16:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-08-03 18:16:33 -0400 |
commit | 22da317629bad23816f3fa26d657fb46e7af21c7 (patch) | |
tree | ea9e97afd3aca46c16b77468ef91e5e39d36ed7f /arch/powerpc/mm | |
parent | 3e847423bf029c2170692c75580a856debed617b (diff) | |
parent | 67439b76f29cb278bb3412fc873b980fc65110c9 (diff) |
Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc
* 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc:
[POWERPC] Fixes for the SLB shadow buffer code
[POWERPC] Fix a compile warning in powermac/feature.c
[POWERPC] Fix a compile warning in pci_32.c
[POWERPC] Fix parse_drconf_memory() for 64-bit start addresses
[POWERPC] Fix num_cpus calculation in smp_call_function_map()
[POWERPC] ps3: Fix section mismatch in ps3/setup.c
[POWERPC] spufs: Fix affinity after introduction of node_allowed() calls
[POWERPC] Fix special PTE code for secondary hash bucket
[POWERPC] Expand RPN field to 34 bits when using 64k pages
Diffstat (limited to 'arch/powerpc/mm')
-rw-r--r-- | arch/powerpc/mm/hash_low_64.S | 6 | ||||
-rw-r--r-- | arch/powerpc/mm/hash_utils_64.c | 2 | ||||
-rw-r--r-- | arch/powerpc/mm/numa.c | 4 | ||||
-rw-r--r-- | arch/powerpc/mm/slb.c | 28 |
4 files changed, 25 insertions, 15 deletions
diff --git a/arch/powerpc/mm/hash_low_64.S b/arch/powerpc/mm/hash_low_64.S index 4762ff7c14df..35eabfb50723 100644 --- a/arch/powerpc/mm/hash_low_64.S +++ b/arch/powerpc/mm/hash_low_64.S | |||
@@ -472,10 +472,12 @@ _GLOBAL(htab_call_hpte_insert1) | |||
472 | /* Now try secondary slot */ | 472 | /* Now try secondary slot */ |
473 | 473 | ||
474 | /* real page number in r5, PTE RPN value + index */ | 474 | /* real page number in r5, PTE RPN value + index */ |
475 | rldicl r5,r31,64-PTE_RPN_SHIFT,PTE_RPN_SHIFT | 475 | andis. r0,r31,_PAGE_4K_PFN@h |
476 | srdi r5,r31,PTE_RPN_SHIFT | ||
477 | bne- 3f | ||
476 | sldi r5,r5,PAGE_SHIFT-HW_PAGE_SHIFT | 478 | sldi r5,r5,PAGE_SHIFT-HW_PAGE_SHIFT |
477 | add r5,r5,r25 | 479 | add r5,r5,r25 |
478 | sldi r5,r5,HW_PAGE_SHIFT | 480 | 3: sldi r5,r5,HW_PAGE_SHIFT |
479 | 481 | ||
480 | /* Calculate secondary group hash */ | 482 | /* Calculate secondary group hash */ |
481 | andc r0,r27,r28 | 483 | andc r0,r27,r28 |
diff --git a/arch/powerpc/mm/hash_utils_64.c b/arch/powerpc/mm/hash_utils_64.c index bc7b0cedae5e..f1789578747a 100644 --- a/arch/powerpc/mm/hash_utils_64.c +++ b/arch/powerpc/mm/hash_utils_64.c | |||
@@ -759,7 +759,7 @@ int hash_page(unsigned long ea, unsigned long access, unsigned long trap) | |||
759 | mmu_psize_defs[mmu_vmalloc_psize].sllp) { | 759 | mmu_psize_defs[mmu_vmalloc_psize].sllp) { |
760 | get_paca()->vmalloc_sllp = | 760 | get_paca()->vmalloc_sllp = |
761 | mmu_psize_defs[mmu_vmalloc_psize].sllp; | 761 | mmu_psize_defs[mmu_vmalloc_psize].sllp; |
762 | slb_flush_and_rebolt(); | 762 | slb_vmalloc_update(); |
763 | } | 763 | } |
764 | #endif /* CONFIG_PPC_64K_PAGES */ | 764 | #endif /* CONFIG_PPC_64K_PAGES */ |
765 | 765 | ||
diff --git a/arch/powerpc/mm/numa.c b/arch/powerpc/mm/numa.c index de45aa82d97b..c12adc3ddffd 100644 --- a/arch/powerpc/mm/numa.c +++ b/arch/powerpc/mm/numa.c | |||
@@ -307,9 +307,9 @@ static void __init parse_drconf_memory(struct device_node *memory) | |||
307 | const unsigned int *lm, *dm, *aa; | 307 | const unsigned int *lm, *dm, *aa; |
308 | unsigned int ls, ld, la; | 308 | unsigned int ls, ld, la; |
309 | unsigned int n, aam, aalen; | 309 | unsigned int n, aam, aalen; |
310 | unsigned long lmb_size, size; | 310 | unsigned long lmb_size, size, start; |
311 | int nid, default_nid = 0; | 311 | int nid, default_nid = 0; |
312 | unsigned int start, ai, flags; | 312 | unsigned int ai, flags; |
313 | 313 | ||
314 | lm = of_get_property(memory, "ibm,lmb-size", &ls); | 314 | lm = of_get_property(memory, "ibm,lmb-size", &ls); |
315 | dm = of_get_property(memory, "ibm,dynamic-memory", &ld); | 315 | dm = of_get_property(memory, "ibm,dynamic-memory", &ld); |
diff --git a/arch/powerpc/mm/slb.c b/arch/powerpc/mm/slb.c index 304375a73574..b0697017d0e8 100644 --- a/arch/powerpc/mm/slb.c +++ b/arch/powerpc/mm/slb.c | |||
@@ -53,7 +53,8 @@ static inline unsigned long mk_vsid_data(unsigned long ea, unsigned long flags) | |||
53 | return (get_kernel_vsid(ea) << SLB_VSID_SHIFT) | flags; | 53 | return (get_kernel_vsid(ea) << SLB_VSID_SHIFT) | flags; |
54 | } | 54 | } |
55 | 55 | ||
56 | static inline void slb_shadow_update(unsigned long esid, unsigned long vsid, | 56 | static inline void slb_shadow_update(unsigned long ea, |
57 | unsigned long flags, | ||
57 | unsigned long entry) | 58 | unsigned long entry) |
58 | { | 59 | { |
59 | /* | 60 | /* |
@@ -61,11 +62,11 @@ static inline void slb_shadow_update(unsigned long esid, unsigned long vsid, | |||
61 | * updating it. | 62 | * updating it. |
62 | */ | 63 | */ |
63 | get_slb_shadow()->save_area[entry].esid = 0; | 64 | get_slb_shadow()->save_area[entry].esid = 0; |
64 | barrier(); | 65 | smp_wmb(); |
65 | get_slb_shadow()->save_area[entry].vsid = vsid; | 66 | get_slb_shadow()->save_area[entry].vsid = mk_vsid_data(ea, flags); |
66 | barrier(); | 67 | smp_wmb(); |
67 | get_slb_shadow()->save_area[entry].esid = esid; | 68 | get_slb_shadow()->save_area[entry].esid = mk_esid_data(ea, entry); |
68 | 69 | smp_wmb(); | |
69 | } | 70 | } |
70 | 71 | ||
71 | static inline void create_shadowed_slbe(unsigned long ea, unsigned long flags, | 72 | static inline void create_shadowed_slbe(unsigned long ea, unsigned long flags, |
@@ -76,8 +77,7 @@ static inline void create_shadowed_slbe(unsigned long ea, unsigned long flags, | |||
76 | * we don't get a stale entry here if we get preempted by PHYP | 77 | * we don't get a stale entry here if we get preempted by PHYP |
77 | * between these two statements. | 78 | * between these two statements. |
78 | */ | 79 | */ |
79 | slb_shadow_update(mk_esid_data(ea, entry), mk_vsid_data(ea, flags), | 80 | slb_shadow_update(ea, flags, entry); |
80 | entry); | ||
81 | 81 | ||
82 | asm volatile("slbmte %0,%1" : | 82 | asm volatile("slbmte %0,%1" : |
83 | : "r" (mk_vsid_data(ea, flags)), | 83 | : "r" (mk_vsid_data(ea, flags)), |
@@ -104,8 +104,7 @@ void slb_flush_and_rebolt(void) | |||
104 | ksp_esid_data &= ~SLB_ESID_V; | 104 | ksp_esid_data &= ~SLB_ESID_V; |
105 | 105 | ||
106 | /* Only third entry (stack) may change here so only resave that */ | 106 | /* Only third entry (stack) may change here so only resave that */ |
107 | slb_shadow_update(ksp_esid_data, | 107 | slb_shadow_update(get_paca()->kstack, lflags, 2); |
108 | mk_vsid_data(ksp_esid_data, lflags), 2); | ||
109 | 108 | ||
110 | /* We need to do this all in asm, so we're sure we don't touch | 109 | /* We need to do this all in asm, so we're sure we don't touch |
111 | * the stack between the slbia and rebolting it. */ | 110 | * the stack between the slbia and rebolting it. */ |
@@ -123,6 +122,15 @@ void slb_flush_and_rebolt(void) | |||
123 | : "memory"); | 122 | : "memory"); |
124 | } | 123 | } |
125 | 124 | ||
125 | void slb_vmalloc_update(void) | ||
126 | { | ||
127 | unsigned long vflags; | ||
128 | |||
129 | vflags = SLB_VSID_KERNEL | mmu_psize_defs[mmu_vmalloc_psize].sllp; | ||
130 | slb_shadow_update(VMALLOC_START, vflags, 1); | ||
131 | slb_flush_and_rebolt(); | ||
132 | } | ||
133 | |||
126 | /* Flush all user entries from the segment table of the current processor. */ | 134 | /* Flush all user entries from the segment table of the current processor. */ |
127 | void switch_slb(struct task_struct *tsk, struct mm_struct *mm) | 135 | void switch_slb(struct task_struct *tsk, struct mm_struct *mm) |
128 | { | 136 | { |