Lines Matching +full:- +full:- +full:-

5  * (nr_cpus_present), how much memory they have (PHYSICAL_END - PHYSICAL_START),
33 u32 cpu_to_hwid[NR_CPUS] = { [0 ... NR_CPUS-1] = (~0U) };
58 "ibm,ppc-interrupt-server#s", &len); in cpu_set()
62 threads = (u32 *)prop->data; /* Array of valid ids */ in cpu_set()
81 "i-cache-line-size", NULL); in cpu_set()
83 data = (u32 *)prop->data; in cpu_set()
84 params->icache_bytes = fdt32_to_cpu(*data); in cpu_set()
87 "d-cache-line-size", NULL); in cpu_set()
89 data = (u32 *)prop->data; in cpu_set()
90 params->dcache_bytes = fdt32_to_cpu(*data); in cpu_set()
93 "timebase-frequency", NULL); in cpu_set()
95 data = (u32 *)prop->data; in cpu_set()
96 params->tb_hz = fdt32_to_cpu(*data); in cpu_set()
149 .start = (phys_addr_t)-1, in mem_init()
182 // assert(!(mem.start & ~PHYS_MASK) && !((mem.end - 1) & ~PHYS_MASK)); in mem_init()
187 phys_alloc_init(freemem_start, primary.end - freemem_start); in mem_init()
205 cpu->server_no = cpu_id; in cpu_init()
207 cpu->stack = (unsigned long)memalign_pages(SZ_4K, SZ_64K); in cpu_init()
208 cpu->stack += SZ_64K - 64; in cpu_init()
209 cpu->exception_stack = (unsigned long)memalign_pages(SZ_4K, SZ_64K); in cpu_init()
210 cpu->exception_stack += SZ_64K - 64; in cpu_init()
211 cpu->pgtable = NULL; in cpu_init()
212 cpu->in_user = false; in cpu_init()
230 cpu->server_no = fdt_boot_cpuid_phys(fdt); in setup()
231 cpu->exception_stack = (unsigned long)boot_exception_stack; in setup()
232 cpu->exception_stack += EXCEPTION_STACK_SIZE - 64; in setup()
233 cpu->pgtable = NULL; in setup()
234 cpu->in_user = false; in setup()
248 * +----------------------+ <-- top of physical memory in setup()
252 * +----------------------+ <-- top of initrd in setup()
254 * +----------------------+ <-- top of FDT in setup()
256 * +----------------------+ <-- top of cpu0's stack in setup()
258 * +----------------------+ <-- top of text/data/bss/toc sections, in setup()
261 * +----------------------+ <-- load address in setup()
263 * +----------------------+ in setup()
296 assert(ret == 0 || ret == -FDT_ERR_NOTFOUND); in setup()
327 assert(ret == 0 || ret == -FDT_ERR_NOTFOUND); in setup()