Lines Matching +full:64 +full:m
19 * On regular PPC32 page size is 4K (but we support 4K/16K/64K/256K pages
20 * on PPC44x and 4K/16K on 8xx). For PPC64 we support either 4K or 64K software
21 * page size. When using 64K pages however, whether we are really supporting
22 * 64K pages in HW or not is irrelevant to those definitions.
36 #define HPAGE_SHIFT 22 /* 4M pages */
136 * virtual_base = ALIGN_DOWN(KERNELBASE,256M) +
137 * MODULO(_stext.run,256M)
140 * ALIGN_DOWN(_stext.run,256M) => ALIGN_DOWN(KERNELBASE,256M)
158 * Let the kernel be loaded at 64MB and KERNELBASE be 0xc0000000 (same as PAGE_OFFSET).
159 * In this case, we would be mapping 0 to 0xc0000000, and kernstart_addr = 64M
174 * = ALIGN_DOWN(KERNELBASE,256M) +
175 * MODULO(PHYSICAL_START,256M)
181 * = ALIGN_DOWN(KERNELBASE,256M) -
182 * ALIGN_DOWN(PHYSICALSTART,256M)
206 * with -mcmodel=medium, so we use & and | instead of - and + on 64-bit.