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, int ssize)
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)
69 std r9,STK_PARM(r9)(r1)
71 /* Add _PAGE_PRESENT to access */
72 ori r4,r4,_PAGE_PRESENT
74 /* Save non-volatile registers.
75 * r31 will hold "old PTE"
79 * r27 is hashtab mask (maybe dynamic patched instead ?)
81 std r27,STK_REG(r27)(r1)
82 std r28,STK_REG(r28)(r1)
83 std r29,STK_REG(r29)(r1)
84 std r30,STK_REG(r30)(r1)
85 std r31,STK_REG(r31)(r1)
89 * Check permissions, atomically mark the linux PTE busy
94 /* Check access rights (access & ~(pte_val(*ptep))) */
96 bne- htab_wrong_access
97 /* Check if PTE is busy */
98 andi. r0,r31,_PAGE_BUSY
99 /* If so, just bail out and refault if needed. Someone else
100 * is changing this PTE anyway and might hash it.
104 /* Prepare new PTE value (turn access RW into DIRTY, then
105 * add BUSY,HASHPTE and ACCESSED)
107 rlwinm r30,r4,32-9+7,31-7,31-7 /* _PAGE_RW -> _PAGE_DIRTY */
109 ori r30,r30,_PAGE_BUSY | _PAGE_ACCESSED | _PAGE_HASHPTE
110 /* Write the linux PTE atomically (setting busy) */
117 * Insert/Update the HPTE in the hash table. At this point,
118 * r4 (access) is re-useable, we use it for the new HPTE flags
122 cmpdi r9,0 /* check segment size */
124 END_FTR_SECTION_IFSET(CPU_FTR_1T_SEGMENT)
125 /* Calc va and put it in r29 */
126 rldicr r29,r5,28,63-28
130 /* Calculate hash value for primary slot and store it in r28 */
131 rldicl r5,r5,0,25 /* vsid & 0x0000007fffffffff */
132 rldicl r0,r3,64-12,48 /* (ea >> 12) & 0xffff */
136 3: /* Calc VA and hash in r29 and r28 for 1T segment */
137 sldi r29,r5,40 /* vsid << 40 */
138 clrldi r3,r3,24 /* ea & 0xffffffffff */
139 rldic r28,r5,25,25 /* (vsid << 25) & 0x7fffffffff */
140 clrldi r5,r5,40 /* vsid & 0xffffff */
141 rldicl r0,r3,64-12,36 /* (ea >> 12) & 0xfffffff */
143 or r29,r3,r29 /* VA */
144 xor r28,r28,r0 /* hash */
146 /* Convert linux PTE bits into HW equivalents */
147 4: andi. r3,r30,0x1fe /* Get basic set of flags */
148 xori r3,r3,HPTE_R_N /* _PAGE_EXEC -> NOEXEC */
149 rlwinm r0,r30,32-9+1,30,30 /* _PAGE_RW -> _PAGE_USER (r0) */
150 rlwinm r4,r30,32-7+1,30,30 /* _PAGE_DIRTY -> _PAGE_USER (r4) */
151 and r0,r0,r4 /* _PAGE_RW & _PAGE_DIRTY ->r0 bit 30*/
152 andc r0,r30,r0 /* r0 = pte & ~r0 */
153 rlwimi r3,r0,32-1,31,31 /* Insert result into PP lsb */
154 ori r3,r3,HPTE_R_C /* Always add "C" bit for perf. */
156 /* We eventually do the icache sync here (maybe inline that
157 * code rather than call a C function...)
162 bl .hash_page_do_lazy_icache
163 END_FTR_SECTION(CPU_FTR_NOEXECUTE|CPU_FTR_COHERENT_ICACHE, CPU_FTR_NOEXECUTE)
165 /* At this point, r3 contains new PP bits, save them in
166 * place of "access" in the param area (sic)
168 std r3,STK_PARM(r4)(r1)
170 /* Get htab_hash_mask */
171 ld r4,htab_hash_mask@got(2)
172 ld r27,0(r4) /* htab_hash_mask -> r27 */
174 /* Check if we may already be in the hashtable, in this case, we
175 * go to out-of-line code to try to modify the HPTE
177 andi. r0,r31,_PAGE_HASHPTE
181 /* Clear hpte bits in new pte (we also clear BUSY btw) and
184 lis r0,_PAGE_HPTEFLAGS@h
185 ori r0,r0,_PAGE_HPTEFLAGS@l
187 ori r30,r30,_PAGE_HASHPTE
189 /* physical address r5 */
190 rldicl r5,r31,64-PTE_RPN_SHIFT,PTE_RPN_SHIFT
191 sldi r5,r5,PAGE_SHIFT
193 /* Calculate primary group hash */
195 rldicr r3,r0,3,63-3 /* r3 = (hash & mask) << 3 */
197 /* Call ppc_md.hpte_insert */
198 ld r6,STK_PARM(r4)(r1) /* Retreive new pp bits */
199 mr r4,r29 /* Retreive va */
200 li r7,0 /* !bolted, !secondary */
201 li r8,MMU_PAGE_4K /* page size */
202 ld r9,STK_PARM(r9)(r1) /* segment size */
203 _GLOBAL(htab_call_hpte_insert1)
204 bl . /* Patched by htab_finish_init() */
206 bge htab_pte_insert_ok /* Insertion successful */
207 cmpdi 0,r3,-2 /* Critical failure */
208 beq- htab_pte_insert_failure
210 /* Now try secondary slot */
212 /* physical address r5 */
213 rldicl r5,r31,64-PTE_RPN_SHIFT,PTE_RPN_SHIFT
214 sldi r5,r5,PAGE_SHIFT
216 /* Calculate secondary group hash */
218 rldicr r3,r0,3,63-3 /* r0 = (~hash & mask) << 3 */
220 /* Call ppc_md.hpte_insert */
221 ld r6,STK_PARM(r4)(r1) /* Retreive new pp bits */
222 mr r4,r29 /* Retreive va */
223 li r7,HPTE_V_SECONDARY /* !bolted, secondary */
224 li r8,MMU_PAGE_4K /* page size */
225 ld r9,STK_PARM(r9)(r1) /* segment size */
226 _GLOBAL(htab_call_hpte_insert2)
227 bl . /* Patched by htab_finish_init() */
229 bge+ htab_pte_insert_ok /* Insertion successful */
230 cmpdi 0,r3,-2 /* Critical failure */
231 beq- htab_pte_insert_failure
233 /* Both are full, we need to evict something */
235 /* Pick a random group based on TB */
241 rldicr r3,r0,3,63-3 /* r0 = (hash & mask) << 3 */
242 /* Call ppc_md.hpte_remove */
243 _GLOBAL(htab_call_hpte_remove)
244 bl . /* Patched by htab_finish_init() */
254 /* Insert slot number & secondary bit in PTE */
255 rldimi r30,r3,12,63-15
257 /* Write out the PTE with a normal write
258 * (maybe add eieio may be good still ?)
261 ld r6,STK_PARM(r6)(r1)
265 ld r27,STK_REG(r27)(r1)
266 ld r28,STK_REG(r28)(r1)
267 ld r29,STK_REG(r29)(r1)
268 ld r30,STK_REG(r30)(r1)
269 ld r31,STK_REG(r31)(r1)
270 addi r1,r1,STACKFRAMESIZE
276 /* Keep PP bits in r4 and slot idx from the PTE around in r3 */
278 rlwinm r3,r31,32-12,29,31
280 /* Secondary group ? if yes, get a inverted hash value */
282 andi. r0,r31,_PAGE_SECONDARY
286 /* Calculate proper slot value for ppc_md.hpte_updatepp */
288 rldicr r0,r0,3,63-3 /* r0 = (hash & mask) << 3 */
289 add r3,r0,r3 /* add slot idx */
291 /* Call ppc_md.hpte_updatepp */
293 li r6,MMU_PAGE_4K /* page size */
294 ld r7,STK_PARM(r9)(r1) /* segment size */
295 ld r8,STK_PARM(r8)(r1) /* get "local" param */
296 _GLOBAL(htab_call_hpte_updatepp)
297 bl . /* Patched by htab_finish_init() */
299 /* if we failed because typically the HPTE wasn't really here
300 * we try an insertion.
305 /* Clear the BUSY bit and Write out the PTE */
311 /* Bail out clearing reservation */
316 htab_pte_insert_failure:
317 /* Bail out restoring old PTE */
318 ld r6,STK_PARM(r6)(r1)
324 #else /* CONFIG_PPC_64K_PAGES */
327 /*****************************************************************************
329 * 64K SW & 4K or 64K HW in a 4K segment pages implementation *
331 *****************************************************************************/
333 /* _hash_page_4K(unsigned long ea, unsigned long access, unsigned long vsid,
334 * pte_t *ptep, unsigned long trap, int local, int ssize)
338 * For now, we do NOT implement Admixed pages
340 _GLOBAL(__hash_page_4K)
343 stdu r1,-STACKFRAMESIZE(r1)
344 /* Save all params that we need after a function call */
345 std r6,STK_PARM(r6)(r1)
346 std r8,STK_PARM(r8)(r1)
347 std r9,STK_PARM(r9)(r1)
349 /* Add _PAGE_PRESENT to access */
350 ori r4,r4,_PAGE_PRESENT
352 /* Save non-volatile registers.
353 * r31 will hold "old PTE"
356 * r28 is a hash value
357 * r27 is hashtab mask (maybe dynamic patched instead ?)
358 * r26 is the hidx mask
359 * r25 is the index in combo page
361 std r25,STK_REG(r25)(r1)
362 std r26,STK_REG(r26)(r1)
363 std r27,STK_REG(r27)(r1)
364 std r28,STK_REG(r28)(r1)
365 std r29,STK_REG(r29)(r1)
366 std r30,STK_REG(r30)(r1)
367 std r31,STK_REG(r31)(r1)
371 * Check permissions, atomically mark the linux PTE busy
376 /* Check access rights (access & ~(pte_val(*ptep))) */
378 bne- htab_wrong_access
379 /* Check if PTE is busy */
380 andi. r0,r31,_PAGE_BUSY
381 /* If so, just bail out and refault if needed. Someone else
382 * is changing this PTE anyway and might hash it.
385 /* Prepare new PTE value (turn access RW into DIRTY, then
386 * add BUSY and ACCESSED)
388 rlwinm r30,r4,32-9+7,31-7,31-7 /* _PAGE_RW -> _PAGE_DIRTY */
390 ori r30,r30,_PAGE_BUSY | _PAGE_ACCESSED | _PAGE_HASHPTE
391 oris r30,r30,_PAGE_COMBO@h
392 /* Write the linux PTE atomically (setting busy) */
399 * Insert/Update the HPTE in the hash table. At this point,
400 * r4 (access) is re-useable, we use it for the new HPTE flags
403 /* Load the hidx index */
404 rldicl r25,r3,64-12,60
407 cmpdi r9,0 /* check segment size */
409 END_FTR_SECTION_IFSET(CPU_FTR_1T_SEGMENT)
410 /* Calc va and put it in r29 */
411 rldicr r29,r5,28,63-28 /* r29 = (vsid << 28) */
412 rldicl r3,r3,0,36 /* r3 = (ea & 0x0fffffff) */
413 or r29,r3,r29 /* r29 = va */
415 /* Calculate hash value for primary slot and store it in r28 */
416 rldicl r5,r5,0,25 /* vsid & 0x0000007fffffffff */
417 rldicl r0,r3,64-12,48 /* (ea >> 12) & 0xffff */
421 3: /* Calc VA and hash in r29 and r28 for 1T segment */
422 sldi r29,r5,40 /* vsid << 40 */
423 clrldi r3,r3,24 /* ea & 0xffffffffff */
424 rldic r28,r5,25,25 /* (vsid << 25) & 0x7fffffffff */
425 clrldi r5,r5,40 /* vsid & 0xffffff */
426 rldicl r0,r3,64-12,36 /* (ea >> 12) & 0xfffffff */
428 or r29,r3,r29 /* VA */
429 xor r28,r28,r0 /* hash */
431 /* Convert linux PTE bits into HW equivalents */
432 4: andi. r3,r30,0x1fe /* Get basic set of flags */
433 xori r3,r3,HPTE_R_N /* _PAGE_EXEC -> NOEXEC */
434 rlwinm r0,r30,32-9+1,30,30 /* _PAGE_RW -> _PAGE_USER (r0) */
435 rlwinm r4,r30,32-7+1,30,30 /* _PAGE_DIRTY -> _PAGE_USER (r4) */
436 and r0,r0,r4 /* _PAGE_RW & _PAGE_DIRTY ->r0 bit 30*/
437 andc r0,r30,r0 /* r0 = pte & ~r0 */
438 rlwimi r3,r0,32-1,31,31 /* Insert result into PP lsb */
439 ori r3,r3,HPTE_R_C /* Always add "C" bit for perf. */
441 /* We eventually do the icache sync here (maybe inline that
442 * code rather than call a C function...)
447 bl .hash_page_do_lazy_icache
448 END_FTR_SECTION(CPU_FTR_NOEXECUTE|CPU_FTR_COHERENT_ICACHE, CPU_FTR_NOEXECUTE)
450 /* At this point, r3 contains new PP bits, save them in
451 * place of "access" in the param area (sic)
453 std r3,STK_PARM(r4)(r1)
455 /* Get htab_hash_mask */
456 ld r4,htab_hash_mask@got(2)
457 ld r27,0(r4) /* htab_hash_mask -> r27 */
459 /* Check if we may already be in the hashtable, in this case, we
460 * go to out-of-line code to try to modify the HPTE. We look for
461 * the bit at (1 >> (index + 32))
463 andi. r0,r31,_PAGE_HASHPTE
464 li r26,0 /* Default hidx */
468 * Check if the pte was already inserted into the hash table
469 * as a 64k HW page, and invalidate the 64k HPTE if so.
471 andis. r0,r31,_PAGE_COMBO@h
472 beq htab_inval_old_hpte
474 ld r6,STK_PARM(r6)(r1)
475 ori r26,r6,0x8000 /* Load the hidx mask */
477 addi r5,r25,36 /* Check actual HPTE_SUB bit, this */
478 rldcr. r0,r31,r5,0 /* must match pgtable.h definition */
482 /* real page number in r5, PTE RPN value + index */
483 andis. r0,r31,_PAGE_4K_PFN@h
484 srdi r5,r31,PTE_RPN_SHIFT
485 bne- htab_special_pfn
486 sldi r5,r5,PAGE_SHIFT-HW_PAGE_SHIFT
489 sldi r5,r5,HW_PAGE_SHIFT
491 /* Calculate primary group hash */
493 rldicr r3,r0,3,63-3 /* r0 = (hash & mask) << 3 */
495 /* Call ppc_md.hpte_insert */
496 ld r6,STK_PARM(r4)(r1) /* Retreive new pp bits */
497 mr r4,r29 /* Retreive va */
498 li r7,0 /* !bolted, !secondary */
499 li r8,MMU_PAGE_4K /* page size */
500 ld r9,STK_PARM(r9)(r1) /* segment size */
501 _GLOBAL(htab_call_hpte_insert1)
502 bl . /* patched by htab_finish_init() */
504 bge htab_pte_insert_ok /* Insertion successful */
505 cmpdi 0,r3,-2 /* Critical failure */
506 beq- htab_pte_insert_failure
508 /* Now try secondary slot */
510 /* real page number in r5, PTE RPN value + index */
511 andis. r0,r31,_PAGE_4K_PFN@h
512 srdi r5,r31,PTE_RPN_SHIFT
514 sldi r5,r5,PAGE_SHIFT-HW_PAGE_SHIFT
516 3: sldi r5,r5,HW_PAGE_SHIFT
518 /* Calculate secondary group hash */
520 rldicr r3,r0,3,63-3 /* r0 = (~hash & mask) << 3 */
522 /* Call ppc_md.hpte_insert */
523 ld r6,STK_PARM(r4)(r1) /* Retreive new pp bits */
524 mr r4,r29 /* Retreive va */
525 li r7,HPTE_V_SECONDARY /* !bolted, secondary */
526 li r8,MMU_PAGE_4K /* page size */
527 ld r9,STK_PARM(r9)(r1) /* segment size */
528 _GLOBAL(htab_call_hpte_insert2)
529 bl . /* patched by htab_finish_init() */
531 bge+ htab_pte_insert_ok /* Insertion successful */
532 cmpdi 0,r3,-2 /* Critical failure */
533 beq- htab_pte_insert_failure
535 /* Both are full, we need to evict something */
537 /* Pick a random group based on TB */
543 rldicr r3,r0,3,63-3 /* r0 = (hash & mask) << 3 */
544 /* Call ppc_md.hpte_remove */
545 _GLOBAL(htab_call_hpte_remove)
546 bl . /* patched by htab_finish_init() */
552 * Call out to C code to invalidate an 64k HW HPTE that is
553 * useless now that the segment has been switched to 4k pages.
556 mr r3,r29 /* virtual addr */
557 mr r4,r31 /* PTE.pte */
558 li r5,0 /* PTE.hidx */
559 li r6,MMU_PAGE_64K /* psize */
560 ld r7,STK_PARM(r9)(r1) /* ssize */
561 ld r8,STK_PARM(r8)(r1) /* local */
570 /* Insert slot number & secondary bit in PTE second half,
571 * clear _PAGE_BUSY and set approriate HPTE slot bit
573 ld r6,STK_PARM(r6)(r1)
578 subfic r5,r25,27 /* Must match bit position in */
579 sld r0,r0,r5 /* pgtable.h */
594 ld r25,STK_REG(r25)(r1)
595 ld r26,STK_REG(r26)(r1)
596 ld r27,STK_REG(r27)(r1)
597 ld r28,STK_REG(r28)(r1)
598 ld r29,STK_REG(r29)(r1)
599 ld r30,STK_REG(r30)(r1)
600 ld r31,STK_REG(r31)(r1)
601 addi r1,r1,STACKFRAMESIZE
607 /* Keep PP bits in r4 and slot idx from the PTE around in r3 */
612 /* Secondary group ? if yes, get a inverted hash value */
614 andi. r0,r3,0x8 /* page secondary ? */
617 1: andi. r3,r3,0x7 /* extract idx alone */
619 /* Calculate proper slot value for ppc_md.hpte_updatepp */
621 rldicr r0,r0,3,63-3 /* r0 = (hash & mask) << 3 */
622 add r3,r0,r3 /* add slot idx */
624 /* Call ppc_md.hpte_updatepp */
626 li r6,MMU_PAGE_4K /* page size */
627 ld r7,STK_PARM(r9)(r1) /* segment size */
628 ld r8,STK_PARM(r8)(r1) /* get "local" param */
629 _GLOBAL(htab_call_hpte_updatepp)
630 bl . /* patched by htab_finish_init() */
632 /* if we failed because typically the HPTE wasn't really here
633 * we try an insertion.
638 /* Clear the BUSY bit and Write out the PTE */
641 ld r6,STK_PARM(r6)(r1)
647 /* Bail out clearing reservation */
652 htab_pte_insert_failure:
653 /* Bail out restoring old PTE */
654 ld r6,STK_PARM(r6)(r1)
659 #endif /* CONFIG_PPC_64K_PAGES */
661 #ifdef CONFIG_PPC_HAS_HASH_64K
663 /*****************************************************************************
665 * 64K SW & 64K HW in a 64K segment pages implementation *
667 *****************************************************************************/
669 _GLOBAL(__hash_page_64K)
672 stdu r1,-STACKFRAMESIZE(r1)
673 /* Save all params that we need after a function call */
674 std r6,STK_PARM(r6)(r1)
675 std r8,STK_PARM(r8)(r1)
676 std r9,STK_PARM(r9)(r1)
678 /* Add _PAGE_PRESENT to access */
679 ori r4,r4,_PAGE_PRESENT
681 /* Save non-volatile registers.
682 * r31 will hold "old PTE"
685 * r28 is a hash value
686 * r27 is hashtab mask (maybe dynamic patched instead ?)
688 std r27,STK_REG(r27)(r1)
689 std r28,STK_REG(r28)(r1)
690 std r29,STK_REG(r29)(r1)
691 std r30,STK_REG(r30)(r1)
692 std r31,STK_REG(r31)(r1)
696 * Check permissions, atomically mark the linux PTE busy
701 /* Check access rights (access & ~(pte_val(*ptep))) */
703 bne- ht64_wrong_access
704 /* Check if PTE is busy */
705 andi. r0,r31,_PAGE_BUSY
706 /* If so, just bail out and refault if needed. Someone else
707 * is changing this PTE anyway and might hash it.
711 /* Check if PTE has the cache-inhibit bit set */
712 andi. r0,r31,_PAGE_NO_CACHE
713 /* If so, bail out and refault as a 4k page */
715 END_FTR_SECTION_IFCLR(CPU_FTR_CI_LARGE_PAGE)
716 /* Prepare new PTE value (turn access RW into DIRTY, then
717 * add BUSY,HASHPTE and ACCESSED)
719 rlwinm r30,r4,32-9+7,31-7,31-7 /* _PAGE_RW -> _PAGE_DIRTY */
721 ori r30,r30,_PAGE_BUSY | _PAGE_ACCESSED | _PAGE_HASHPTE
722 /* Write the linux PTE atomically (setting busy) */
729 * Insert/Update the HPTE in the hash table. At this point,
730 * r4 (access) is re-useable, we use it for the new HPTE flags
734 cmpdi r9,0 /* check segment size */
736 END_FTR_SECTION_IFSET(CPU_FTR_1T_SEGMENT)
737 /* Calc va and put it in r29 */
738 rldicr r29,r5,28,63-28
742 /* Calculate hash value for primary slot and store it in r28 */
743 rldicl r5,r5,0,25 /* vsid & 0x0000007fffffffff */
744 rldicl r0,r3,64-16,52 /* (ea >> 16) & 0xfff */
748 3: /* Calc VA and hash in r29 and r28 for 1T segment */
749 sldi r29,r5,40 /* vsid << 40 */
750 clrldi r3,r3,24 /* ea & 0xffffffffff */
751 rldic r28,r5,25,25 /* (vsid << 25) & 0x7fffffffff */
752 clrldi r5,r5,40 /* vsid & 0xffffff */
753 rldicl r0,r3,64-16,40 /* (ea >> 16) & 0xffffff */
755 or r29,r3,r29 /* VA */
756 xor r28,r28,r0 /* hash */
758 /* Convert linux PTE bits into HW equivalents */
759 4: andi. r3,r30,0x1fe /* Get basic set of flags */
760 xori r3,r3,HPTE_R_N /* _PAGE_EXEC -> NOEXEC */
761 rlwinm r0,r30,32-9+1,30,30 /* _PAGE_RW -> _PAGE_USER (r0) */
762 rlwinm r4,r30,32-7+1,30,30 /* _PAGE_DIRTY -> _PAGE_USER (r4) */
763 and r0,r0,r4 /* _PAGE_RW & _PAGE_DIRTY ->r0 bit 30*/
764 andc r0,r30,r0 /* r0 = pte & ~r0 */
765 rlwimi r3,r0,32-1,31,31 /* Insert result into PP lsb */
766 ori r3,r3,HPTE_R_C /* Always add "C" bit for perf. */
768 /* We eventually do the icache sync here (maybe inline that
769 * code rather than call a C function...)
774 bl .hash_page_do_lazy_icache
775 END_FTR_SECTION(CPU_FTR_NOEXECUTE|CPU_FTR_COHERENT_ICACHE, CPU_FTR_NOEXECUTE)
777 /* At this point, r3 contains new PP bits, save them in
778 * place of "access" in the param area (sic)
780 std r3,STK_PARM(r4)(r1)
782 /* Get htab_hash_mask */
783 ld r4,htab_hash_mask@got(2)
784 ld r27,0(r4) /* htab_hash_mask -> r27 */
786 /* Check if we may already be in the hashtable, in this case, we
787 * go to out-of-line code to try to modify the HPTE
789 andi. r0,r31,_PAGE_HASHPTE
793 /* Clear hpte bits in new pte (we also clear BUSY btw) and
796 lis r0,_PAGE_HPTEFLAGS@h
797 ori r0,r0,_PAGE_HPTEFLAGS@l
799 ori r30,r30,_PAGE_HASHPTE
801 /* Phyical address in r5 */
802 rldicl r5,r31,64-PTE_RPN_SHIFT,PTE_RPN_SHIFT
803 sldi r5,r5,PAGE_SHIFT
805 /* Calculate primary group hash */
807 rldicr r3,r0,3,63-3 /* r0 = (hash & mask) << 3 */
809 /* Call ppc_md.hpte_insert */
810 ld r6,STK_PARM(r4)(r1) /* Retreive new pp bits */
811 mr r4,r29 /* Retreive va */
812 li r7,0 /* !bolted, !secondary */
814 ld r9,STK_PARM(r9)(r1) /* segment size */
815 _GLOBAL(ht64_call_hpte_insert1)
816 bl . /* patched by htab_finish_init() */
818 bge ht64_pte_insert_ok /* Insertion successful */
819 cmpdi 0,r3,-2 /* Critical failure */
820 beq- ht64_pte_insert_failure
822 /* Now try secondary slot */
824 /* Phyical address in r5 */
825 rldicl r5,r31,64-PTE_RPN_SHIFT,PTE_RPN_SHIFT
826 sldi r5,r5,PAGE_SHIFT
828 /* Calculate secondary group hash */
830 rldicr r3,r0,3,63-3 /* r0 = (~hash & mask) << 3 */
832 /* Call ppc_md.hpte_insert */
833 ld r6,STK_PARM(r4)(r1) /* Retreive new pp bits */
834 mr r4,r29 /* Retreive va */
835 li r7,HPTE_V_SECONDARY /* !bolted, secondary */
837 ld r9,STK_PARM(r9)(r1) /* segment size */
838 _GLOBAL(ht64_call_hpte_insert2)
839 bl . /* patched by htab_finish_init() */
841 bge+ ht64_pte_insert_ok /* Insertion successful */
842 cmpdi 0,r3,-2 /* Critical failure */
843 beq- ht64_pte_insert_failure
845 /* Both are full, we need to evict something */
847 /* Pick a random group based on TB */
853 rldicr r3,r0,3,63-3 /* r0 = (hash & mask) << 3 */
854 /* Call ppc_md.hpte_remove */
855 _GLOBAL(ht64_call_hpte_remove)
856 bl . /* patched by htab_finish_init() */
866 /* Insert slot number & secondary bit in PTE */
867 rldimi r30,r3,12,63-15
869 /* Write out the PTE with a normal write
870 * (maybe add eieio may be good still ?)
873 ld r6,STK_PARM(r6)(r1)
877 ld r27,STK_REG(r27)(r1)
878 ld r28,STK_REG(r28)(r1)
879 ld r29,STK_REG(r29)(r1)
880 ld r30,STK_REG(r30)(r1)
881 ld r31,STK_REG(r31)(r1)
882 addi r1,r1,STACKFRAMESIZE
888 /* Keep PP bits in r4 and slot idx from the PTE around in r3 */
890 rlwinm r3,r31,32-12,29,31
892 /* Secondary group ? if yes, get a inverted hash value */
894 andi. r0,r31,_PAGE_F_SECOND
898 /* Calculate proper slot value for ppc_md.hpte_updatepp */
900 rldicr r0,r0,3,63-3 /* r0 = (hash & mask) << 3 */
901 add r3,r0,r3 /* add slot idx */
903 /* Call ppc_md.hpte_updatepp */
906 ld r7,STK_PARM(r9)(r1) /* segment size */
907 ld r8,STK_PARM(r8)(r1) /* get "local" param */
908 _GLOBAL(ht64_call_hpte_updatepp)
909 bl . /* patched by htab_finish_init() */
911 /* if we failed because typically the HPTE wasn't really here
912 * we try an insertion.
917 /* Clear the BUSY bit and Write out the PTE */
923 /* Bail out clearing reservation */
928 ht64_pte_insert_failure:
929 /* Bail out restoring old PTE */
930 ld r6,STK_PARM(r6)(r1)
936 #endif /* CONFIG_PPC_HAS_HASH_64K */
939 /*****************************************************************************
941 * Huge pages implementation is in hugetlbpage.c *
943 *****************************************************************************/