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.
35 #define HPAGE_SHIFT 22 /* 4M pages */
128 * virtual_base = ALIGN_DOWN(KERNELBASE,256M) +
129 * MODULO(_stext.run,256M)
132 * ALIGN_DOWN(_stext.run,256M) => ALIGN_DOWN(KERNELBASE,256M)
150 * Let the kernel be loaded at 64MB and KERNELBASE be 0xc0000000 (same as PAGE_OFFSET).
151 * In this case, we would be mapping 0 to 0xc0000000, and kernstart_addr = 64M
166 * = ALIGN_DOWN(KERNELBASE,256M) +
167 * MODULO(PHYSICAL_START,256M)
173 * = ALIGN_DOWN(KERNELBASE,256M) -
174 * ALIGN_DOWN(PHYSICALSTART,256M)
198 * with -mcmodel=medium, so we use & and | instead of - and + on 64-bit.