2 * ppc64 MMU hashtable management routines
4 * (c) Copyright IBM Corp. 2003, 2005
6 * Maintained by: Benjamin Herrenschmidt
7 * <benh@kernel.crashing.org>
9 * This file is covered by the GNU Public Licence v2 as
10 * described in the kernel's COPYING file.
14 #include <asm/pgtable.h>
17 #include <asm/types.h>
18 #include <asm/ppc_asm.h>
19 #include <asm/asm-offsets.h>
20 #include <asm/cputable.h>
27 * +-> Back chain (SP + 256)
28 * | General register save area (SP + 112)
29 * | Parameter save area (SP + 48)
30 * | TOC save area (SP + 40)
31 * | link editor doubleword (SP + 32)
32 * | compiler doubleword (SP + 24)
33 * | LR save area (SP + 16)
34 * | CR save area (SP + 8)
35 * SP ---> +-- Back chain (SP + 0)
37 #define STACKFRAMESIZE 256
39 /* Save parameters offsets */
40 #define STK_PARM(i) (STACKFRAMESIZE + 48 + ((i)-3)*8)
42 /* Save non-volatile offsets */
43 #define STK_REG(i) (112 + ((i)-14)*8)
46 #ifndef CONFIG_PPC_64K_PAGES
48 /*****************************************************************************
50 * 4K SW & 4K HW pages implementation *
52 *****************************************************************************/
56 * _hash_page_4K(unsigned long ea, unsigned long access, unsigned long vsid,
57 * pte_t *ptep, unsigned long trap, int local)
59 * Adds a 4K page to the hash table in a segment of 4K pages only
62 _GLOBAL(__hash_page_4K)
65 stdu r1,-STACKFRAMESIZE(r1)
66 /* Save all params that we need after a function call */
67 std r6,STK_PARM(r6)(r1)
68 std r8,STK_PARM(r8)(r1)
70 /* Add _PAGE_PRESENT to access */
71 ori r4,r4,_PAGE_PRESENT
73 /* Save non-volatile registers.
74 * r31 will hold "old PTE"
78 * r27 is hashtab mask (maybe dynamic patched instead ?)
80 std r27,STK_REG(r27)(r1)
81 std r28,STK_REG(r28)(r1)
82 std r29,STK_REG(r29)(r1)
83 std r30,STK_REG(r30)(r1)
84 std r31,STK_REG(r31)(r1)
88 * Check permissions, atomically mark the linux PTE busy
93 /* Check access rights (access & ~(pte_val(*ptep))) */
95 bne- htab_wrong_access
96 /* Check if PTE is busy */
97 andi. r0,r31,_PAGE_BUSY
98 /* If so, just bail out and refault if needed. Someone else
99 * is changing this PTE anyway and might hash it.
103 /* Prepare new PTE value (turn access RW into DIRTY, then
104 * add BUSY,HASHPTE and ACCESSED)
106 rlwinm r30,r4,32-9+7,31-7,31-7 /* _PAGE_RW -> _PAGE_DIRTY */
108 ori r30,r30,_PAGE_BUSY | _PAGE_ACCESSED | _PAGE_HASHPTE
109 /* Write the linux PTE atomically (setting busy) */
116 * Insert/Update the HPTE in the hash table. At this point,
117 * r4 (access) is re-useable, we use it for the new HPTE flags
120 /* Calc va and put it in r29 */
121 rldicr r29,r5,28,63-28
125 /* Calculate hash value for primary slot and store it in r28 */
126 rldicl r5,r5,0,25 /* vsid & 0x0000007fffffffff */
127 rldicl r0,r3,64-12,48 /* (ea >> 12) & 0xffff */
130 /* Convert linux PTE bits into HW equivalents */
131 andi. r3,r30,0x1fe /* Get basic set of flags */
132 xori r3,r3,HPTE_R_N /* _PAGE_EXEC -> NOEXEC */
133 rlwinm r0,r30,32-9+1,30,30 /* _PAGE_RW -> _PAGE_USER (r0) */
134 rlwinm r4,r30,32-7+1,30,30 /* _PAGE_DIRTY -> _PAGE_USER (r4) */
135 and r0,r0,r4 /* _PAGE_RW & _PAGE_DIRTY ->r0 bit 30*/
136 andc r0,r30,r0 /* r0 = pte & ~r0 */
137 rlwimi r3,r0,32-1,31,31 /* Insert result into PP lsb */
138 ori r3,r3,HPTE_R_C /* Always add "C" bit for perf. */
140 /* We eventually do the icache sync here (maybe inline that
141 * code rather than call a C function...)
146 bl .hash_page_do_lazy_icache
147 END_FTR_SECTION(CPU_FTR_NOEXECUTE|CPU_FTR_COHERENT_ICACHE, CPU_FTR_NOEXECUTE)
149 /* At this point, r3 contains new PP bits, save them in
150 * place of "access" in the param area (sic)
152 std r3,STK_PARM(r4)(r1)
154 /* Get htab_hash_mask */
155 ld r4,htab_hash_mask@got(2)
156 ld r27,0(r4) /* htab_hash_mask -> r27 */
158 /* Check if we may already be in the hashtable, in this case, we
159 * go to out-of-line code to try to modify the HPTE
161 andi. r0,r31,_PAGE_HASHPTE
165 /* Clear hpte bits in new pte (we also clear BUSY btw) and
168 lis r0,_PAGE_HPTEFLAGS@h
169 ori r0,r0,_PAGE_HPTEFLAGS@l
171 ori r30,r30,_PAGE_HASHPTE
173 /* physical address r5 */
174 rldicl r5,r31,64-PTE_RPN_SHIFT,PTE_RPN_SHIFT
175 sldi r5,r5,PAGE_SHIFT
177 /* Calculate primary group hash */
179 rldicr r3,r0,3,63-3 /* r3 = (hash & mask) << 3 */
181 /* Call ppc_md.hpte_insert */
182 ld r6,STK_PARM(r4)(r1) /* Retreive new pp bits */
183 mr r4,r29 /* Retreive va */
184 li r7,0 /* !bolted, !secondary */
185 li r8,MMU_PAGE_4K /* page size */
186 _GLOBAL(htab_call_hpte_insert1)
187 bl . /* Patched by htab_finish_init() */
189 bge htab_pte_insert_ok /* Insertion successful */
190 cmpdi 0,r3,-2 /* Critical failure */
191 beq- htab_pte_insert_failure
193 /* Now try secondary slot */
195 /* physical address r5 */
196 rldicl r5,r31,64-PTE_RPN_SHIFT,PTE_RPN_SHIFT
197 sldi r5,r5,PAGE_SHIFT
199 /* Calculate secondary group hash */
201 rldicr r3,r0,3,63-3 /* r0 = (~hash & mask) << 3 */
203 /* Call ppc_md.hpte_insert */
204 ld r6,STK_PARM(r4)(r1) /* Retreive new pp bits */
205 mr r4,r29 /* Retreive va */
206 li r7,HPTE_V_SECONDARY /* !bolted, secondary */
207 li r8,MMU_PAGE_4K /* page size */
208 _GLOBAL(htab_call_hpte_insert2)
209 bl . /* Patched by htab_finish_init() */
211 bge+ htab_pte_insert_ok /* Insertion successful */
212 cmpdi 0,r3,-2 /* Critical failure */
213 beq- htab_pte_insert_failure
215 /* Both are full, we need to evict something */
217 /* Pick a random group based on TB */
223 rldicr r3,r0,3,63-3 /* r0 = (hash & mask) << 3 */
224 /* Call ppc_md.hpte_remove */
225 _GLOBAL(htab_call_hpte_remove)
226 bl . /* Patched by htab_finish_init() */
236 /* Insert slot number & secondary bit in PTE */
237 rldimi r30,r3,12,63-15
239 /* Write out the PTE with a normal write
240 * (maybe add eieio may be good still ?)
243 ld r6,STK_PARM(r6)(r1)
247 ld r27,STK_REG(r27)(r1)
248 ld r28,STK_REG(r28)(r1)
249 ld r29,STK_REG(r29)(r1)
250 ld r30,STK_REG(r30)(r1)
251 ld r31,STK_REG(r31)(r1)
252 addi r1,r1,STACKFRAMESIZE
258 /* Keep PP bits in r4 and slot idx from the PTE around in r3 */
260 rlwinm r3,r31,32-12,29,31
262 /* Secondary group ? if yes, get a inverted hash value */
264 andi. r0,r31,_PAGE_SECONDARY
268 /* Calculate proper slot value for ppc_md.hpte_updatepp */
270 rldicr r0,r0,3,63-3 /* r0 = (hash & mask) << 3 */
271 add r3,r0,r3 /* add slot idx */
273 /* Call ppc_md.hpte_updatepp */
275 li r6,MMU_PAGE_4K /* page size */
276 ld r7,STK_PARM(r8)(r1) /* get "local" param */
277 _GLOBAL(htab_call_hpte_updatepp)
278 bl . /* Patched by htab_finish_init() */
280 /* if we failed because typically the HPTE wasn't really here
281 * we try an insertion.
286 /* Clear the BUSY bit and Write out the PTE */
292 /* Bail out clearing reservation */
297 htab_pte_insert_failure:
298 /* Bail out restoring old PTE */
299 ld r6,STK_PARM(r6)(r1)
305 #else /* CONFIG_PPC_64K_PAGES */
308 /*****************************************************************************
310 * 64K SW & 4K or 64K HW in a 4K segment pages implementation *
312 *****************************************************************************/
314 /* _hash_page_4K(unsigned long ea, unsigned long access, unsigned long vsid,
315 * pte_t *ptep, unsigned long trap, int local)
319 * For now, we do NOT implement Admixed pages
321 _GLOBAL(__hash_page_4K)
324 stdu r1,-STACKFRAMESIZE(r1)
325 /* Save all params that we need after a function call */
326 std r6,STK_PARM(r6)(r1)
327 std r8,STK_PARM(r8)(r1)
329 /* Add _PAGE_PRESENT to access */
330 ori r4,r4,_PAGE_PRESENT
332 /* Save non-volatile registers.
333 * r31 will hold "old PTE"
336 * r28 is a hash value
337 * r27 is hashtab mask (maybe dynamic patched instead ?)
338 * r26 is the hidx mask
339 * r25 is the index in combo page
341 std r25,STK_REG(r25)(r1)
342 std r26,STK_REG(r26)(r1)
343 std r27,STK_REG(r27)(r1)
344 std r28,STK_REG(r28)(r1)
345 std r29,STK_REG(r29)(r1)
346 std r30,STK_REG(r30)(r1)
347 std r31,STK_REG(r31)(r1)
351 * Check permissions, atomically mark the linux PTE busy
356 /* Check access rights (access & ~(pte_val(*ptep))) */
358 bne- htab_wrong_access
359 /* Check if PTE is busy */
360 andi. r0,r31,_PAGE_BUSY
361 /* If so, just bail out and refault if needed. Someone else
362 * is changing this PTE anyway and might hash it.
365 /* Prepare new PTE value (turn access RW into DIRTY, then
366 * add BUSY and ACCESSED)
368 rlwinm r30,r4,32-9+7,31-7,31-7 /* _PAGE_RW -> _PAGE_DIRTY */
370 ori r30,r30,_PAGE_BUSY | _PAGE_ACCESSED | _PAGE_HASHPTE
371 oris r30,r30,_PAGE_COMBO@h
372 /* Write the linux PTE atomically (setting busy) */
379 * Insert/Update the HPTE in the hash table. At this point,
380 * r4 (access) is re-useable, we use it for the new HPTE flags
383 /* Load the hidx index */
384 rldicl r25,r3,64-12,60
386 /* Calc va and put it in r29 */
387 rldicr r29,r5,28,63-28 /* r29 = (vsid << 28) */
388 rldicl r3,r3,0,36 /* r3 = (ea & 0x0fffffff) */
389 or r29,r3,r29 /* r29 = va
391 /* Calculate hash value for primary slot and store it in r28 */
392 rldicl r5,r5,0,25 /* vsid & 0x0000007fffffffff */
393 rldicl r0,r3,64-12,48 /* (ea >> 12) & 0xffff */
396 /* Convert linux PTE bits into HW equivalents */
397 andi. r3,r30,0x1fe /* Get basic set of flags */
398 xori r3,r3,HPTE_R_N /* _PAGE_EXEC -> NOEXEC */
399 rlwinm r0,r30,32-9+1,30,30 /* _PAGE_RW -> _PAGE_USER (r0) */
400 rlwinm r4,r30,32-7+1,30,30 /* _PAGE_DIRTY -> _PAGE_USER (r4) */
401 and r0,r0,r4 /* _PAGE_RW & _PAGE_DIRTY ->r0 bit 30*/
402 andc r0,r30,r0 /* r0 = pte & ~r0 */
403 rlwimi r3,r0,32-1,31,31 /* Insert result into PP lsb */
404 ori r3,r3,HPTE_R_C /* Always add "C" bit for perf. */
406 /* We eventually do the icache sync here (maybe inline that
407 * code rather than call a C function...)
412 bl .hash_page_do_lazy_icache
413 END_FTR_SECTION(CPU_FTR_NOEXECUTE|CPU_FTR_COHERENT_ICACHE, CPU_FTR_NOEXECUTE)
415 /* At this point, r3 contains new PP bits, save them in
416 * place of "access" in the param area (sic)
418 std r3,STK_PARM(r4)(r1)
420 /* Get htab_hash_mask */
421 ld r4,htab_hash_mask@got(2)
422 ld r27,0(r4) /* htab_hash_mask -> r27 */
424 /* Check if we may already be in the hashtable, in this case, we
425 * go to out-of-line code to try to modify the HPTE. We look for
426 * the bit at (1 >> (index + 32))
428 andi. r0,r31,_PAGE_HASHPTE
429 li r26,0 /* Default hidx */
433 * Check if the pte was already inserted into the hash table
434 * as a 64k HW page, and invalidate the 64k HPTE if so.
436 andis. r0,r31,_PAGE_COMBO@h
437 beq htab_inval_old_hpte
439 ld r6,STK_PARM(r6)(r1)
440 ori r26,r6,0x8000 /* Load the hidx mask */
442 addi r5,r25,36 /* Check actual HPTE_SUB bit, this */
443 rldcr. r0,r31,r5,0 /* must match pgtable.h definition */
447 /* real page number in r5, PTE RPN value + index */
448 andis. r0,r31,_PAGE_4K_PFN@h
449 srdi r5,r31,PTE_RPN_SHIFT
450 bne- htab_special_pfn
451 sldi r5,r5,PAGE_SHIFT-HW_PAGE_SHIFT
454 sldi r5,r5,HW_PAGE_SHIFT
456 /* Calculate primary group hash */
458 rldicr r3,r0,3,63-3 /* r0 = (hash & mask) << 3 */
460 /* Call ppc_md.hpte_insert */
461 ld r6,STK_PARM(r4)(r1) /* Retreive new pp bits */
462 mr r4,r29 /* Retreive va */
463 li r7,0 /* !bolted, !secondary */
464 li r8,MMU_PAGE_4K /* page size */
465 _GLOBAL(htab_call_hpte_insert1)
466 bl . /* patched by htab_finish_init() */
468 bge htab_pte_insert_ok /* Insertion successful */
469 cmpdi 0,r3,-2 /* Critical failure */
470 beq- htab_pte_insert_failure
472 /* Now try secondary slot */
474 /* real page number in r5, PTE RPN value + index */
475 rldicl r5,r31,64-PTE_RPN_SHIFT,PTE_RPN_SHIFT
476 sldi r5,r5,PAGE_SHIFT-HW_PAGE_SHIFT
478 sldi r5,r5,HW_PAGE_SHIFT
480 /* Calculate secondary group hash */
482 rldicr r3,r0,3,63-3 /* r0 = (~hash & mask) << 3 */
484 /* Call ppc_md.hpte_insert */
485 ld r6,STK_PARM(r4)(r1) /* Retreive new pp bits */
486 mr r4,r29 /* Retreive va */
487 li r7,HPTE_V_SECONDARY /* !bolted, secondary */
488 li r8,MMU_PAGE_4K /* page size */
489 _GLOBAL(htab_call_hpte_insert2)
490 bl . /* patched by htab_finish_init() */
492 bge+ htab_pte_insert_ok /* Insertion successful */
493 cmpdi 0,r3,-2 /* Critical failure */
494 beq- htab_pte_insert_failure
496 /* Both are full, we need to evict something */
498 /* Pick a random group based on TB */
504 rldicr r3,r0,3,63-3 /* r0 = (hash & mask) << 3 */
505 /* Call ppc_md.hpte_remove */
506 _GLOBAL(htab_call_hpte_remove)
507 bl . /* patched by htab_finish_init() */
513 * Call out to C code to invalidate an 64k HW HPTE that is
514 * useless now that the segment has been switched to 4k pages.
517 mr r3,r29 /* virtual addr */
518 mr r4,r31 /* PTE.pte */
519 li r5,0 /* PTE.hidx */
520 li r6,MMU_PAGE_64K /* psize */
521 ld r7,STK_PARM(r8)(r1) /* local */
530 /* Insert slot number & secondary bit in PTE second half,
531 * clear _PAGE_BUSY and set approriate HPTE slot bit
533 ld r6,STK_PARM(r6)(r1)
538 subfic r5,r25,27 /* Must match bit position in */
539 sld r0,r0,r5 /* pgtable.h */
554 ld r25,STK_REG(r25)(r1)
555 ld r26,STK_REG(r26)(r1)
556 ld r27,STK_REG(r27)(r1)
557 ld r28,STK_REG(r28)(r1)
558 ld r29,STK_REG(r29)(r1)
559 ld r30,STK_REG(r30)(r1)
560 ld r31,STK_REG(r31)(r1)
561 addi r1,r1,STACKFRAMESIZE
567 /* Keep PP bits in r4 and slot idx from the PTE around in r3 */
572 /* Secondary group ? if yes, get a inverted hash value */
574 andi. r0,r3,0x8 /* page secondary ? */
577 1: andi. r3,r3,0x7 /* extract idx alone */
579 /* Calculate proper slot value for ppc_md.hpte_updatepp */
581 rldicr r0,r0,3,63-3 /* r0 = (hash & mask) << 3 */
582 add r3,r0,r3 /* add slot idx */
584 /* Call ppc_md.hpte_updatepp */
586 li r6,MMU_PAGE_4K /* page size */
587 ld r7,STK_PARM(r8)(r1) /* get "local" param */
588 _GLOBAL(htab_call_hpte_updatepp)
589 bl . /* patched by htab_finish_init() */
591 /* if we failed because typically the HPTE wasn't really here
592 * we try an insertion.
597 /* Clear the BUSY bit and Write out the PTE */
600 ld r6,STK_PARM(r6)(r1)
606 /* Bail out clearing reservation */
611 htab_pte_insert_failure:
612 /* Bail out restoring old PTE */
613 ld r6,STK_PARM(r6)(r1)
618 #endif /* CONFIG_PPC_64K_PAGES */
620 #ifdef CONFIG_PPC_HAS_HASH_64K
622 /*****************************************************************************
624 * 64K SW & 64K HW in a 64K segment pages implementation *
626 *****************************************************************************/
628 _GLOBAL(__hash_page_64K)
631 stdu r1,-STACKFRAMESIZE(r1)
632 /* Save all params that we need after a function call */
633 std r6,STK_PARM(r6)(r1)
634 std r8,STK_PARM(r8)(r1)
636 /* Add _PAGE_PRESENT to access */
637 ori r4,r4,_PAGE_PRESENT
639 /* Save non-volatile registers.
640 * r31 will hold "old PTE"
643 * r28 is a hash value
644 * r27 is hashtab mask (maybe dynamic patched instead ?)
646 std r27,STK_REG(r27)(r1)
647 std r28,STK_REG(r28)(r1)
648 std r29,STK_REG(r29)(r1)
649 std r30,STK_REG(r30)(r1)
650 std r31,STK_REG(r31)(r1)
654 * Check permissions, atomically mark the linux PTE busy
659 /* Check access rights (access & ~(pte_val(*ptep))) */
661 bne- ht64_wrong_access
662 /* Check if PTE is busy */
663 andi. r0,r31,_PAGE_BUSY
664 /* If so, just bail out and refault if needed. Someone else
665 * is changing this PTE anyway and might hash it.
669 /* Check if PTE has the cache-inhibit bit set */
670 andi. r0,r31,_PAGE_NO_CACHE
671 /* If so, bail out and refault as a 4k page */
673 END_FTR_SECTION_IFCLR(CPU_FTR_CI_LARGE_PAGE)
674 /* Prepare new PTE value (turn access RW into DIRTY, then
675 * add BUSY,HASHPTE and ACCESSED)
677 rlwinm r30,r4,32-9+7,31-7,31-7 /* _PAGE_RW -> _PAGE_DIRTY */
679 ori r30,r30,_PAGE_BUSY | _PAGE_ACCESSED | _PAGE_HASHPTE
680 /* Write the linux PTE atomically (setting busy) */
687 * Insert/Update the HPTE in the hash table. At this point,
688 * r4 (access) is re-useable, we use it for the new HPTE flags
691 /* Calc va and put it in r29 */
692 rldicr r29,r5,28,63-28
696 /* Calculate hash value for primary slot and store it in r28 */
697 rldicl r5,r5,0,25 /* vsid & 0x0000007fffffffff */
698 rldicl r0,r3,64-16,52 /* (ea >> 16) & 0xfff */
701 /* Convert linux PTE bits into HW equivalents */
702 andi. r3,r30,0x1fe /* Get basic set of flags */
703 xori r3,r3,HPTE_R_N /* _PAGE_EXEC -> NOEXEC */
704 rlwinm r0,r30,32-9+1,30,30 /* _PAGE_RW -> _PAGE_USER (r0) */
705 rlwinm r4,r30,32-7+1,30,30 /* _PAGE_DIRTY -> _PAGE_USER (r4) */
706 and r0,r0,r4 /* _PAGE_RW & _PAGE_DIRTY ->r0 bit 30*/
707 andc r0,r30,r0 /* r0 = pte & ~r0 */
708 rlwimi r3,r0,32-1,31,31 /* Insert result into PP lsb */
709 ori r3,r3,HPTE_R_C /* Always add "C" bit for perf. */
711 /* We eventually do the icache sync here (maybe inline that
712 * code rather than call a C function...)
717 bl .hash_page_do_lazy_icache
718 END_FTR_SECTION(CPU_FTR_NOEXECUTE|CPU_FTR_COHERENT_ICACHE, CPU_FTR_NOEXECUTE)
720 /* At this point, r3 contains new PP bits, save them in
721 * place of "access" in the param area (sic)
723 std r3,STK_PARM(r4)(r1)
725 /* Get htab_hash_mask */
726 ld r4,htab_hash_mask@got(2)
727 ld r27,0(r4) /* htab_hash_mask -> r27 */
729 /* Check if we may already be in the hashtable, in this case, we
730 * go to out-of-line code to try to modify the HPTE
732 andi. r0,r31,_PAGE_HASHPTE
736 /* Clear hpte bits in new pte (we also clear BUSY btw) and
739 lis r0,_PAGE_HPTEFLAGS@h
740 ori r0,r0,_PAGE_HPTEFLAGS@l
742 ori r30,r30,_PAGE_HASHPTE
744 /* Phyical address in r5 */
745 rldicl r5,r31,64-PTE_RPN_SHIFT,PTE_RPN_SHIFT
746 sldi r5,r5,PAGE_SHIFT
748 /* Calculate primary group hash */
750 rldicr r3,r0,3,63-3 /* r0 = (hash & mask) << 3 */
752 /* Call ppc_md.hpte_insert */
753 ld r6,STK_PARM(r4)(r1) /* Retreive new pp bits */
754 mr r4,r29 /* Retreive va */
755 li r7,0 /* !bolted, !secondary */
757 _GLOBAL(ht64_call_hpte_insert1)
758 bl . /* patched by htab_finish_init() */
760 bge ht64_pte_insert_ok /* Insertion successful */
761 cmpdi 0,r3,-2 /* Critical failure */
762 beq- ht64_pte_insert_failure
764 /* Now try secondary slot */
766 /* Phyical address in r5 */
767 rldicl r5,r31,64-PTE_RPN_SHIFT,PTE_RPN_SHIFT
768 sldi r5,r5,PAGE_SHIFT
770 /* Calculate secondary group hash */
772 rldicr r3,r0,3,63-3 /* r0 = (~hash & mask) << 3 */
774 /* Call ppc_md.hpte_insert */
775 ld r6,STK_PARM(r4)(r1) /* Retreive new pp bits */
776 mr r4,r29 /* Retreive va */
777 li r7,HPTE_V_SECONDARY /* !bolted, secondary */
779 _GLOBAL(ht64_call_hpte_insert2)
780 bl . /* patched by htab_finish_init() */
782 bge+ ht64_pte_insert_ok /* Insertion successful */
783 cmpdi 0,r3,-2 /* Critical failure */
784 beq- ht64_pte_insert_failure
786 /* Both are full, we need to evict something */
788 /* Pick a random group based on TB */
794 rldicr r3,r0,3,63-3 /* r0 = (hash & mask) << 3 */
795 /* Call ppc_md.hpte_remove */
796 _GLOBAL(ht64_call_hpte_remove)
797 bl . /* patched by htab_finish_init() */
807 /* Insert slot number & secondary bit in PTE */
808 rldimi r30,r3,12,63-15
810 /* Write out the PTE with a normal write
811 * (maybe add eieio may be good still ?)
814 ld r6,STK_PARM(r6)(r1)
818 ld r27,STK_REG(r27)(r1)
819 ld r28,STK_REG(r28)(r1)
820 ld r29,STK_REG(r29)(r1)
821 ld r30,STK_REG(r30)(r1)
822 ld r31,STK_REG(r31)(r1)
823 addi r1,r1,STACKFRAMESIZE
829 /* Keep PP bits in r4 and slot idx from the PTE around in r3 */
831 rlwinm r3,r31,32-12,29,31
833 /* Secondary group ? if yes, get a inverted hash value */
835 andi. r0,r31,_PAGE_F_SECOND
839 /* Calculate proper slot value for ppc_md.hpte_updatepp */
841 rldicr r0,r0,3,63-3 /* r0 = (hash & mask) << 3 */
842 add r3,r0,r3 /* add slot idx */
844 /* Call ppc_md.hpte_updatepp */
847 ld r7,STK_PARM(r8)(r1) /* get "local" param */
848 _GLOBAL(ht64_call_hpte_updatepp)
849 bl . /* patched by htab_finish_init() */
851 /* if we failed because typically the HPTE wasn't really here
852 * we try an insertion.
857 /* Clear the BUSY bit and Write out the PTE */
863 /* Bail out clearing reservation */
868 ht64_pte_insert_failure:
869 /* Bail out restoring old PTE */
870 ld r6,STK_PARM(r6)(r1)
876 #endif /* CONFIG_PPC_HAS_HASH_64K */
879 /*****************************************************************************
881 * Huge pages implementation is in hugetlbpage.c *
883 *****************************************************************************/