2 * Low-level SLB routines
4 * Copyright (C) 2004 David Gibson <dwg@au.ibm.com>, IBM
6 * Based on earlier C version:
7 * Dave Engebretsen and Mike Corrigan {engebret|mikejc}@us.ibm.com
8 * Copyright (c) 2001 Dave Engebretsen
9 * Copyright (C) 2002 Anton Blanchard <anton@au.ibm.com>, IBM
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
17 #include <asm/processor.h>
18 #include <asm/ppc_asm.h>
19 #include <asm/asm-offsets.h>
20 #include <asm/cputable.h>
23 #include <asm/pgtable.h>
24 #include <asm/firmware.h>
27 * This macro generates asm code to compute the VSID scramble
28 * function. Used in slb_allocate() and do_stab_bolted. The function
29 * computed is: (protovsid*VSID_MULTIPLIER) % VSID_MODULUS
31 * rt = register containing the proto-VSID and into which the
33 * rx = scratch register (clobbered)
36 * - rt and rx must be different registers
37 * - The answer will end up in the low VSID_BITS bits of rt. The higher
38 * bits may contain other garbage, so you may need to mask the
41 #define ASM_VSID_SCRAMBLE(rt, rx, rf, size) \
42 lis rx,VSID_MULTIPLIER_##size@h; \
43 ori rx,rx,VSID_MULTIPLIER_##size@l; \
44 mulld rt,rt,rx; /* rt = rt * MULTIPLIER */ \
46 * powermac get slb fault before feature fixup, so make 65 bit part \
47 * the default part of feature fixup \
49 BEGIN_MMU_FTR_SECTION \
50 srdi rx,rt,VSID_BITS_65_##size; \
51 clrldi rt,rt,(64-VSID_BITS_65_##size); \
54 srdi rx,rx,VSID_BITS_65_##size; \
56 rldimi rf,rt,SLB_VSID_SHIFT_##size,(64 - (SLB_VSID_SHIFT_##size + VSID_BITS_65_##size)); \
57 MMU_FTR_SECTION_ELSE \
58 srdi rx,rt,VSID_BITS_##size; \
59 clrldi rt,rt,(64-VSID_BITS_##size); \
60 add rt,rt,rx; /* add high and low bits */ \
62 srdi rx,rx,VSID_BITS_##size; /* extract 2^VSID_BITS bit */ \
64 rldimi rf,rt,SLB_VSID_SHIFT_##size,(64 - (SLB_VSID_SHIFT_##size + VSID_BITS_##size)); \
65 ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_68_BIT_VA)
68 /* void slb_allocate(unsigned long ea);
70 * Create an SLB entry for the given EA (user or kernel).
71 * r3 = faulting address, r13 = PACA
72 * r9, r10, r11 are clobbered by this function
74 * No other registers are examined or changed.
78 * check for bad kernel/user address
79 * (ea & ~REGION_MASK) >= PGTABLE_RANGE
81 rldicr. r9,r3,4,(63 - H_PGTABLE_EADDR_SIZE - 4)
84 srdi r9,r3,60 /* get region */
85 srdi r10,r3,SID_SHIFT /* get esid */
86 cmpldi cr7,r9,0xc /* cmp PAGE_OFFSET for later use */
88 /* r3 = address, r10 = esid, cr7 = <> PAGE_OFFSET */
89 blt cr7,0f /* user or kernel? */
91 /* Check if hitting the linear mapping or some other kernel space
95 /* Linear mapping encoding bits, the "li" instruction below will
96 * be patched by the kernel at boot
98 .globl slb_miss_kernel_load_linear
99 slb_miss_kernel_load_linear:
102 * context = (ea >> 60) - (0xc - 1)
105 subi r9,r9,KERNEL_REGION_CONTEXT_OFFSET
109 END_MMU_FTR_SECTION_IFCLR(MMU_FTR_1T_SEGMENT)
110 b .Lslb_finish_load_1T
113 #ifdef CONFIG_SPARSEMEM_VMEMMAP
116 /* Check virtual memmap region. To be patched at kernel boot */
117 .globl slb_miss_kernel_load_vmemmap
118 slb_miss_kernel_load_vmemmap:
122 #endif /* CONFIG_SPARSEMEM_VMEMMAP */
125 * r10 contains the ESID, which is the original faulting EA shifted
126 * right by 28 bits. We need to compare that with (H_VMALLOC_END >> 28)
127 * which is 0xd00038000. That can't be used as an immediate, even if we
128 * ignored the 0xd, so we have to load it into a register, and we only
129 * have one register free. So we must load all of (H_VMALLOC_END >> 28)
130 * into a register and compare ESID against that.
132 lis r11,(H_VMALLOC_END >> 32)@h // r11 = 0xffffffffd0000000
133 ori r11,r11,(H_VMALLOC_END >> 32)@l // r11 = 0xffffffffd0003800
134 // Rotate left 4, then mask with 0xffffffff0
135 rldic r11,r11,4,28 // r11 = 0xd00038000
136 cmpld r10,r11 // if r10 >= r11
137 bge 5f // goto io_mapping
140 * vmalloc mapping gets the encoding from the PACA as the mapping
141 * can be demoted from 64K -> 4K dynamically on some machines.
143 lhz r11,PACAVMALLOCSLLP(r13)
147 .globl slb_miss_kernel_load_io
148 slb_miss_kernel_load_io:
152 * context = (ea >> 60) - (0xc - 1)
155 subi r9,r9,KERNEL_REGION_CONTEXT_OFFSET
159 END_MMU_FTR_SECTION_IFCLR(MMU_FTR_1T_SEGMENT)
160 b .Lslb_finish_load_1T
163 * For userspace addresses, make sure this is region 0.
168 * user space make sure we are within the allowed limit
170 ld r11,PACA_SLB_ADDR_LIMIT(r13)
174 /* when using slices, we extract the psize off the slice bitmaps
175 * and then we need to get the sllp encoding off the mmu_psize_defs
178 * XXX This is a bit inefficient especially for the normal case,
179 * so we should try to implement a fast path for the standard page
180 * size using the old sllp value so we avoid the array. We cannot
181 * really do dynamic patching unfortunately as processes might flip
182 * between 4k and 64k standard page size
184 #ifdef CONFIG_PPC_MM_SLICES
187 /* below SLICE_LOW_TOP */
191 * r9 is get_paca()->context.high_slices_psize[index], r11 is mask_index
193 srdi r11,r10,(SLICE_HIGH_SHIFT - SLICE_LOW_SHIFT + 1) /* index */
194 addi r9,r11,PACAHIGHSLICEPSIZE
195 lbzx r9,r13,r9 /* r9 is hpsizes[r11] */
196 /* r11 = (r10 >> (SLICE_HIGH_SHIFT - SLICE_LOW_SHIFT)) & 0x1 */
197 rldicl r11,r10,(64 - (SLICE_HIGH_SHIFT - SLICE_LOW_SHIFT)),63
203 * r9 is get_paca()->context.low_slices_psize, r11 is index
205 ld r9,PACALOWSLICESPSIZE(r13)
208 sldi r11,r11,2 /* index * 4 */
209 /* Extract the psize and multiply to get an array offset */
212 mulli r9,r9,MMUPSIZEDEFSIZE
214 /* Now get to the array and obtain the sllp
217 ld r11,mmu_psize_defs@got(r11)
219 ld r11,MMUPSIZESLLP(r11)
220 ori r11,r11,SLB_VSID_USER
222 /* paca context sllp already contains the SLB_VSID_USER bits */
223 lhz r11,PACACONTEXTSLLP(r13)
224 #endif /* CONFIG_PPC_MM_SLICES */
226 ld r9,PACACONTEXTID(r13)
229 bge .Lslb_finish_load_1T
230 END_MMU_FTR_SECTION_IFSET(MMU_FTR_1T_SEGMENT)
233 8: /* invalid EA - return an error indication */
234 crset 4*cr0+eq /* indicate failure */
238 * Finish loading of an SLB entry and return
240 * r3 = EA, r9 = context, r10 = ESID, r11 = flags, clobbers r9, cr7 = <> PAGE_OFFSET
243 rldimi r10,r9,ESID_BITS,0
244 ASM_VSID_SCRAMBLE(r10,r9,r11,256M)
245 /* r3 = EA, r11 = VSID data */
247 * Find a slot, round robin. Previously we tried to find a
248 * free slot first but that took too long. Unfortunately we
249 * dont have any LRU information to help us choose a slot.
254 /* slb_finish_load_1T continues here. r9=EA with non-ESID bits clear */
255 7: ld r10,PACASTABRR(r13)
257 /* This gets soft patched on boot. */
258 .globl slb_compare_rr_to_size
259 slb_compare_rr_to_size:
263 li r10,SLB_NUM_BOLTED
266 std r10,PACASTABRR(r13)
269 rldimi r9,r10,0,36 /* r9 = EA[0:35] | entry */
270 oris r10,r9,SLB_ESID_V@h /* r10 = r9 | SLB_ESID_V */
272 /* r9 = ESID data, r11 = VSID data */
275 * No need for an isync before or after this slbmte. The exception
276 * we enter with and the rfid we exit with are context synchronizing.
280 /* we're done for kernel addresses */
281 crclr 4*cr0+eq /* set result to "success" */
284 /* Update the slb cache */
285 lhz r9,PACASLBCACHEPTR(r13) /* offset = paca->slb_cache_ptr */
286 cmpldi r9,SLB_CACHE_ENTRIES
289 /* still room in the slb cache */
290 sldi r11,r9,2 /* r11 = offset * sizeof(u32) */
291 srdi r10,r10,28 /* get the 36 bits of the ESID */
292 add r11,r11,r13 /* r11 = (u32 *)paca + offset */
293 stw r10,PACASLBCACHE(r11) /* paca->slb_cache[offset] = esid */
294 addi r9,r9,1 /* offset++ */
296 1: /* offset >= SLB_CACHE_ENTRIES */
297 li r9,SLB_CACHE_ENTRIES+1
299 sth r9,PACASLBCACHEPTR(r13) /* paca->slb_cache_ptr = offset */
300 crclr 4*cr0+eq /* set result to "success" */
304 * Finish loading of a 1T SLB entry (for the kernel linear mapping) and return.
306 * r3 = EA, r9 = context, r10 = ESID(256MB), r11 = flags, clobbers r9
308 .Lslb_finish_load_1T:
309 srdi r10,r10,(SID_SHIFT_1T - SID_SHIFT) /* get 1T ESID */
310 rldimi r10,r9,ESID_BITS_1T,0
311 ASM_VSID_SCRAMBLE(r10,r9,r11,1T)
313 li r10,MMU_SEGSIZE_1T
314 rldimi r11,r10,SLB_VSID_SSIZE_SHIFT,0 /* insert segment size */
316 /* r3 = EA, r11 = VSID data */
317 clrrdi r9,r3,SID_SHIFT_1T /* clear out non-ESID bits */
321 _ASM_NOKPROBE_SYMBOL(slb_allocate)
322 _ASM_NOKPROBE_SYMBOL(slb_miss_kernel_load_linear)
323 _ASM_NOKPROBE_SYMBOL(slb_miss_kernel_load_io)
324 _ASM_NOKPROBE_SYMBOL(slb_compare_rr_to_size)
325 #ifdef CONFIG_SPARSEMEM_VMEMMAP
326 _ASM_NOKPROBE_SYMBOL(slb_miss_kernel_load_vmemmap)