blob: e20c1fae34235ba54b8adf18fe50e94ed4b8b20a [file] [log] [blame]
Paul Mackerras40ef8cb2005-10-10 22:50:37 +10001/*
2 *
3 * Common boot and setup code.
4 *
5 * Copyright (C) 2001 PPC64 Team, IBM Corp
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
12
13#undef DEBUG
14
15#include <linux/config.h>
16#include <linux/module.h>
17#include <linux/string.h>
18#include <linux/sched.h>
19#include <linux/init.h>
20#include <linux/kernel.h>
21#include <linux/reboot.h>
22#include <linux/delay.h>
23#include <linux/initrd.h>
24#include <linux/ide.h>
25#include <linux/seq_file.h>
26#include <linux/ioport.h>
27#include <linux/console.h>
28#include <linux/utsname.h>
29#include <linux/tty.h>
30#include <linux/root_dev.h>
31#include <linux/notifier.h>
32#include <linux/cpu.h>
33#include <linux/unistd.h>
34#include <linux/serial.h>
35#include <linux/serial_8250.h>
Anton Blanchard7a0268f2006-01-11 13:16:44 +110036#include <linux/bootmem.h>
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100037#include <asm/io.h>
Michael Ellerman0cc47462005-12-04 18:39:37 +110038#include <asm/kdump.h>
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100039#include <asm/prom.h>
40#include <asm/processor.h>
41#include <asm/pgtable.h>
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100042#include <asm/smp.h>
43#include <asm/elf.h>
44#include <asm/machdep.h>
45#include <asm/paca.h>
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100046#include <asm/time.h>
47#include <asm/cputable.h>
48#include <asm/sections.h>
49#include <asm/btext.h>
50#include <asm/nvram.h>
51#include <asm/setup.h>
52#include <asm/system.h>
53#include <asm/rtas.h>
54#include <asm/iommu.h>
55#include <asm/serial.h>
56#include <asm/cache.h>
57#include <asm/page.h>
58#include <asm/mmu.h>
59#include <asm/lmb.h>
Kelly Dalyf218aab2005-11-02 13:51:41 +110060#include <asm/iseries/it_lp_naca.h>
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100061#include <asm/firmware.h>
Paul Mackerrasf78541d2005-10-28 22:53:37 +100062#include <asm/xmon.h>
David Gibsondcad47f2005-11-07 09:49:43 +110063#include <asm/udbg.h>
Michael Ellerman593e5372005-11-12 00:06:06 +110064#include <asm/kexec.h>
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100065
Stephen Rothwell66ba1352005-11-09 11:01:06 +110066#include "setup.h"
67
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100068#ifdef DEBUG
69#define DBG(fmt...) udbg_printf(fmt)
70#else
71#define DBG(fmt...)
72#endif
73
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100074int have_of = 1;
75int boot_cpuid = 0;
76int boot_cpuid_phys = 0;
77dev_t boot_dev;
78u64 ppc64_pft_size;
79
Olof Johanssondabcafd2005-12-08 19:40:17 -060080/* Pick defaults since we might want to patch instructions
81 * before we've read this from the device tree.
82 */
83struct ppc64_caches ppc64_caches = {
84 .dline_size = 0x80,
85 .log_dline_size = 7,
86 .iline_size = 0x80,
87 .log_iline_size = 7
88};
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100089EXPORT_SYMBOL_GPL(ppc64_caches);
90
91/*
92 * These are used in binfmt_elf.c to put aux entries on the stack
93 * for each elf executable being started.
94 */
95int dcache_bsize;
96int icache_bsize;
97int ucache_bsize;
98
99/* The main machine-dep calls structure
100 */
101struct machdep_calls ppc_md;
102EXPORT_SYMBOL(ppc_md);
103
104#ifdef CONFIG_MAGIC_SYSRQ
105unsigned long SYSRQ_KEY;
106#endif /* CONFIG_MAGIC_SYSRQ */
107
108
109static int ppc64_panic_event(struct notifier_block *, unsigned long, void *);
110static struct notifier_block ppc64_panic_block = {
111 .notifier_call = ppc64_panic_event,
112 .priority = INT_MIN /* may not return; must be done last */
113};
114
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000115#ifdef CONFIG_SMP
116
117static int smt_enabled_cmdline;
118
119/* Look for ibm,smt-enabled OF option */
120static void check_smt_enabled(void)
121{
122 struct device_node *dn;
123 char *smt_option;
124
125 /* Allow the command line to overrule the OF option */
126 if (smt_enabled_cmdline)
127 return;
128
129 dn = of_find_node_by_path("/options");
130
131 if (dn) {
132 smt_option = (char *)get_property(dn, "ibm,smt-enabled", NULL);
133
134 if (smt_option) {
135 if (!strcmp(smt_option, "on"))
136 smt_enabled_at_boot = 1;
137 else if (!strcmp(smt_option, "off"))
138 smt_enabled_at_boot = 0;
139 }
140 }
141}
142
143/* Look for smt-enabled= cmdline option */
144static int __init early_smt_enabled(char *p)
145{
146 smt_enabled_cmdline = 1;
147
148 if (!p)
149 return 0;
150
151 if (!strcmp(p, "on") || !strcmp(p, "1"))
152 smt_enabled_at_boot = 1;
153 else if (!strcmp(p, "off") || !strcmp(p, "0"))
154 smt_enabled_at_boot = 0;
155
156 return 0;
157}
158early_param("smt-enabled", early_smt_enabled);
159
Paul Mackerras5ad57072005-11-05 10:33:55 +1100160#else
161#define check_smt_enabled()
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000162#endif /* CONFIG_SMP */
163
164extern struct machdep_calls pSeries_md;
165extern struct machdep_calls pmac_md;
166extern struct machdep_calls maple_md;
Arnd Bergmannf3f66f52005-10-31 20:08:37 -0500167extern struct machdep_calls cell_md;
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000168extern struct machdep_calls iseries_md;
169
170/* Ultimately, stuff them in an elf section like initcalls... */
171static struct machdep_calls __initdata *machines[] = {
172#ifdef CONFIG_PPC_PSERIES
173 &pSeries_md,
174#endif /* CONFIG_PPC_PSERIES */
175#ifdef CONFIG_PPC_PMAC
176 &pmac_md,
177#endif /* CONFIG_PPC_PMAC */
178#ifdef CONFIG_PPC_MAPLE
179 &maple_md,
180#endif /* CONFIG_PPC_MAPLE */
Arnd Bergmannf3f66f52005-10-31 20:08:37 -0500181#ifdef CONFIG_PPC_CELL
182 &cell_md,
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000183#endif
184#ifdef CONFIG_PPC_ISERIES
185 &iseries_md,
186#endif
187 NULL
188};
189
190/*
191 * Early initialization entry point. This is called by head.S
192 * with MMU translation disabled. We rely on the "feature" of
193 * the CPU that ignores the top 2 bits of the address in real
194 * mode so we can access kernel globals normally provided we
195 * only toy with things in the RMO region. From here, we do
196 * some early parsing of the device-tree to setup out LMB
197 * data structures, and allocate & initialize the hash table
198 * and segment tables so we can start running with translation
199 * enabled.
200 *
201 * It is this function which will call the probe() callback of
202 * the various platform types and copy the matching one to the
203 * global ppc_md structure. Your platform can eventually do
204 * some very early initializations from the probe() routine, but
205 * this is not recommended, be very careful as, for example, the
206 * device-tree is not accessible via normal means at this point.
207 */
208
209void __init early_setup(unsigned long dt_ptr)
210{
211 struct paca_struct *lpaca = get_paca();
212 static struct machdep_calls **mach;
213
Michael Ellerman296167a2006-01-11 11:54:09 +1100214 /* Enable early debugging if any specified (see udbg.h) */
215 udbg_early_init();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000216
217 DBG(" -> early_setup()\n");
218
219 /*
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000220 * Do early initializations using the flattened device
221 * tree, like retreiving the physical memory map or
222 * calculating/retreiving the hash table size
223 */
224 early_init_devtree(__va(dt_ptr));
225
226 /*
227 * Iterate all ppc_md structures until we find the proper
228 * one for the current machine type
229 */
Paul Mackerras799d6042005-11-10 13:37:51 +1100230 DBG("Probing machine type for platform %x...\n", _machine);
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000231
232 for (mach = machines; *mach; mach++) {
Paul Mackerras799d6042005-11-10 13:37:51 +1100233 if ((*mach)->probe(_machine))
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000234 break;
235 }
236 /* What can we do if we didn't find ? */
237 if (*mach == NULL) {
238 DBG("No suitable machine found !\n");
239 for (;;);
240 }
241 ppc_md = **mach;
242
Michael Ellerman0cc47462005-12-04 18:39:37 +1100243#ifdef CONFIG_CRASH_DUMP
244 kdump_setup();
245#endif
246
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000247 DBG("Found, Initializing memory management...\n");
248
249 /*
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000250 * Initialize the MMU Hash table and create the linear mapping
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100251 * of memory. Has to be done before stab/slb initialization as
252 * this is currently where the page size encoding is obtained
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000253 */
254 htab_initialize();
255
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100256 /*
257 * Initialize stab / SLB management except on iSeries
258 */
259 if (!firmware_has_feature(FW_FEATURE_ISERIES)) {
260 if (cpu_has_feature(CPU_FTR_SLB))
261 slb_initialize();
262 else
263 stab_initialize(lpaca->stab_real);
264 }
265
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000266 DBG(" <- early_setup()\n");
267}
268
Paul Mackerras799d6042005-11-10 13:37:51 +1100269#ifdef CONFIG_SMP
270void early_setup_secondary(void)
271{
272 struct paca_struct *lpaca = get_paca();
273
274 /* Mark enabled in PACA */
275 lpaca->proc_enabled = 0;
276
277 /* Initialize hash table for that CPU */
278 htab_initialize_secondary();
279
280 /* Initialize STAB/SLB. We use a virtual address as it works
281 * in real mode on pSeries and we want a virutal address on
282 * iSeries anyway
283 */
284 if (cpu_has_feature(CPU_FTR_SLB))
285 slb_initialize();
286 else
287 stab_initialize(lpaca->stab_addr);
288}
289
290#endif /* CONFIG_SMP */
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000291
Michael Ellermanb8f51022005-11-04 12:09:42 +1100292#if defined(CONFIG_SMP) || defined(CONFIG_KEXEC)
293void smp_release_cpus(void)
294{
295 extern unsigned long __secondary_hold_spinloop;
Michael Ellerman758438a2005-12-05 15:49:00 -0600296 unsigned long *ptr;
Michael Ellermanb8f51022005-11-04 12:09:42 +1100297
298 DBG(" -> smp_release_cpus()\n");
299
300 /* All secondary cpus are spinning on a common spinloop, release them
301 * all now so they can start to spin on their individual paca
302 * spinloops. For non SMP kernels, the secondary cpus never get out
303 * of the common spinloop.
304 * This is useless but harmless on iSeries, secondaries are already
305 * waiting on their paca spinloops. */
306
Michael Ellerman758438a2005-12-05 15:49:00 -0600307 ptr = (unsigned long *)((unsigned long)&__secondary_hold_spinloop
308 - PHYSICAL_START);
309 *ptr = 1;
Michael Ellermanb8f51022005-11-04 12:09:42 +1100310 mb();
311
312 DBG(" <- smp_release_cpus()\n");
313}
314#endif /* CONFIG_SMP || CONFIG_KEXEC */
315
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000316/*
Paul Mackerras799d6042005-11-10 13:37:51 +1100317 * Initialize some remaining members of the ppc64_caches and systemcfg
318 * structures
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000319 * (at least until we get rid of them completely). This is mostly some
320 * cache informations about the CPU that will be used by cache flush
321 * routines and/or provided to userland
322 */
323static void __init initialize_cache_info(void)
324{
325 struct device_node *np;
326 unsigned long num_cpus = 0;
327
328 DBG(" -> initialize_cache_info()\n");
329
330 for (np = NULL; (np = of_find_node_by_type(np, "cpu"));) {
331 num_cpus += 1;
332
333 /* We're assuming *all* of the CPUs have the same
334 * d-cache and i-cache sizes... -Peter
335 */
336
337 if ( num_cpus == 1 ) {
338 u32 *sizep, *lsizep;
339 u32 size, lsize;
340 const char *dc, *ic;
341
342 /* Then read cache informations */
Paul Mackerras799d6042005-11-10 13:37:51 +1100343 if (_machine == PLATFORM_POWERMAC) {
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000344 dc = "d-cache-block-size";
345 ic = "i-cache-block-size";
346 } else {
347 dc = "d-cache-line-size";
348 ic = "i-cache-line-size";
349 }
350
351 size = 0;
352 lsize = cur_cpu_spec->dcache_bsize;
353 sizep = (u32 *)get_property(np, "d-cache-size", NULL);
354 if (sizep != NULL)
355 size = *sizep;
356 lsizep = (u32 *) get_property(np, dc, NULL);
357 if (lsizep != NULL)
358 lsize = *lsizep;
359 if (sizep == 0 || lsizep == 0)
360 DBG("Argh, can't find dcache properties ! "
361 "sizep: %p, lsizep: %p\n", sizep, lsizep);
362
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100363 ppc64_caches.dsize = size;
364 ppc64_caches.dline_size = lsize;
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000365 ppc64_caches.log_dline_size = __ilog2(lsize);
366 ppc64_caches.dlines_per_page = PAGE_SIZE / lsize;
367
368 size = 0;
369 lsize = cur_cpu_spec->icache_bsize;
370 sizep = (u32 *)get_property(np, "i-cache-size", NULL);
371 if (sizep != NULL)
372 size = *sizep;
373 lsizep = (u32 *)get_property(np, ic, NULL);
374 if (lsizep != NULL)
375 lsize = *lsizep;
376 if (sizep == 0 || lsizep == 0)
377 DBG("Argh, can't find icache properties ! "
378 "sizep: %p, lsizep: %p\n", sizep, lsizep);
379
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100380 ppc64_caches.isize = size;
381 ppc64_caches.iline_size = lsize;
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000382 ppc64_caches.log_iline_size = __ilog2(lsize);
383 ppc64_caches.ilines_per_page = PAGE_SIZE / lsize;
384 }
385 }
386
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000387 DBG(" <- initialize_cache_info()\n");
388}
389
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000390
391/*
392 * Do some initial setup of the system. The parameters are those which
393 * were passed in from the bootloader.
394 */
395void __init setup_system(void)
396{
397 DBG(" -> setup_system()\n");
398
Michael Ellermanb68239e2006-02-03 19:05:47 +1100399#ifdef CONFIG_KEXEC
400 kdump_move_device_tree();
401#endif
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000402 /*
403 * Unflatten the device-tree passed by prom_init or kexec
404 */
405 unflatten_device_tree();
406
Michael Ellerman593e5372005-11-12 00:06:06 +1100407#ifdef CONFIG_KEXEC
408 kexec_setup(); /* requires unflattened device tree. */
409#endif
410
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000411 /*
412 * Fill the ppc64_caches & systemcfg structures with informations
Adrian Bunk943ffb52006-01-10 00:10:13 +0100413 * retrieved from the device-tree. Need to be called before
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000414 * finish_device_tree() since the later requires some of the
415 * informations filled up here to properly parse the interrupt
416 * tree.
417 * It also sets up the cache line sizes which allows to call
418 * routines like flush_icache_range (used by the hash init
419 * later on).
420 */
421 initialize_cache_info();
422
423#ifdef CONFIG_PPC_RTAS
424 /*
425 * Initialize RTAS if available
426 */
427 rtas_initialize();
428#endif /* CONFIG_PPC_RTAS */
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000429
430 /*
431 * Check if we have an initrd provided via the device-tree
432 */
433 check_for_initrd();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000434
435 /*
436 * Do some platform specific early initializations, that includes
437 * setting up the hash table pointers. It also sets up some interrupt-mapping
438 * related options that will be used by finish_device_tree()
439 */
440 ppc_md.init_early();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000441
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +1100442 /*
443 * We can discover serial ports now since the above did setup the
444 * hash table management for us, thus ioremap works. We do that early
445 * so that further code can be debugged
446 */
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +1100447 find_legacy_serial_ports();
Benjamin Herrenschmidt463ce0e2005-11-23 17:56:06 +1100448
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000449 /*
450 * "Finish" the device-tree, that is do the actual parsing of
451 * some of the properties like the interrupt map
452 */
453 finish_device_tree();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000454
455 /*
456 * Initialize xmon
457 */
458#ifdef CONFIG_XMON_DEFAULT
459 xmon_init(1);
460#endif
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000461 /*
462 * Register early console
463 */
464 register_early_udbg_console();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000465
466 /* Save unparsed command line copy for /proc/cmdline */
467 strlcpy(saved_command_line, cmd_line, COMMAND_LINE_SIZE);
468
469 parse_early_param();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000470
Paul Mackerras5ad57072005-11-05 10:33:55 +1100471 check_smt_enabled();
472 smp_setup_cpu_maps();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000473
Michael Ellermanf018b362006-02-16 14:13:50 +1100474#ifdef CONFIG_SMP
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000475 /* Release secondary cpus out of their spinloops at 0x60 now that
476 * we can map physical -> logical CPU ids
477 */
478 smp_release_cpus();
Michael Ellermanf018b362006-02-16 14:13:50 +1100479#endif
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000480
481 printk("Starting Linux PPC64 %s\n", system_utsname.version);
482
483 printk("-----------------------------------------------------\n");
484 printk("ppc64_pft_size = 0x%lx\n", ppc64_pft_size);
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100485 printk("ppc64_interrupt_controller = 0x%ld\n",
486 ppc64_interrupt_controller);
487 printk("platform = 0x%x\n", _machine);
488 printk("physicalMemorySize = 0x%lx\n", lmb_phys_mem_size());
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000489 printk("ppc64_caches.dcache_line_size = 0x%x\n",
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100490 ppc64_caches.dline_size);
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000491 printk("ppc64_caches.icache_line_size = 0x%x\n",
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100492 ppc64_caches.iline_size);
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000493 printk("htab_address = 0x%p\n", htab_address);
494 printk("htab_hash_mask = 0x%lx\n", htab_hash_mask);
Michael Ellerman398ab1f2005-12-04 18:39:23 +1100495#if PHYSICAL_START > 0
496 printk("physical_start = 0x%x\n", PHYSICAL_START);
497#endif
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000498 printk("-----------------------------------------------------\n");
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000499
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000500 DBG(" <- setup_system()\n");
501}
502
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000503static int ppc64_panic_event(struct notifier_block *this,
504 unsigned long event, void *ptr)
505{
506 ppc_md.panic((char *)ptr); /* May not return */
507 return NOTIFY_DONE;
508}
509
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000510#ifdef CONFIG_IRQSTACKS
511static void __init irqstack_early_init(void)
512{
513 unsigned int i;
514
515 /*
516 * interrupt stacks must be under 256MB, we cannot afford to take
517 * SLB misses on them.
518 */
519 for_each_cpu(i) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100520 softirq_ctx[i] = (struct thread_info *)
521 __va(lmb_alloc_base(THREAD_SIZE,
522 THREAD_SIZE, 0x10000000));
523 hardirq_ctx[i] = (struct thread_info *)
524 __va(lmb_alloc_base(THREAD_SIZE,
525 THREAD_SIZE, 0x10000000));
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000526 }
527}
528#else
529#define irqstack_early_init()
530#endif
531
532/*
533 * Stack space used when we detect a bad kernel stack pointer, and
534 * early in SMP boots before relocation is enabled.
535 */
536static void __init emergency_stack_init(void)
537{
538 unsigned long limit;
539 unsigned int i;
540
541 /*
542 * Emergency stacks must be under 256MB, we cannot afford to take
543 * SLB misses on them. The ABI also requires them to be 128-byte
544 * aligned.
545 *
546 * Since we use these as temporary stacks during secondary CPU
547 * bringup, we need to get at them in real mode. This means they
548 * must also be within the RMO region.
549 */
550 limit = min(0x10000000UL, lmb.rmo_size);
551
552 for_each_cpu(i)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100553 paca[i].emergency_sp =
554 __va(lmb_alloc_base(HW_PAGE_SIZE, 128, limit)) + HW_PAGE_SIZE;
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000555}
556
557/*
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000558 * Called into from start_kernel, after lock_kernel has been called.
559 * Initializes bootmem, which is unsed to manage page allocation until
560 * mem_init is called.
561 */
562void __init setup_arch(char **cmdline_p)
563{
564 extern void do_init_bootmem(void);
565
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000566 ppc64_boot_msg(0x12, "Setup Arch");
567
568 *cmdline_p = cmd_line;
569
570 /*
571 * Set cache line size based on type of cpu as a default.
572 * Systems with OF can look in the properties on the cpu node(s)
573 * for a possibly more accurate value.
574 */
575 dcache_bsize = ppc64_caches.dline_size;
576 icache_bsize = ppc64_caches.iline_size;
577
578 /* reboot on panic */
579 panic_timeout = 180;
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000580
581 if (ppc_md.panic)
Alan Sterne041c682006-03-27 01:16:30 -0800582 atomic_notifier_chain_register(&panic_notifier_list,
583 &ppc64_panic_block);
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000584
585 init_mm.start_code = PAGE_OFFSET;
586 init_mm.end_code = (unsigned long) _etext;
587 init_mm.end_data = (unsigned long) _edata;
588 init_mm.brk = klimit;
589
590 irqstack_early_init();
591 emergency_stack_init();
592
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000593 stabs_alloc();
594
595 /* set up the bootmem stuff with available memory */
596 do_init_bootmem();
597 sparse_init();
598
Paul Mackerras04580602005-10-20 21:00:20 +1000599#ifdef CONFIG_DUMMY_CONSOLE
600 conswitchp = &dummy_con;
601#endif
602
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000603 ppc_md.setup_arch();
604
605 /* Use the default idle loop if the platform hasn't provided one. */
606 if (NULL == ppc_md.idle_loop) {
607 ppc_md.idle_loop = default_idle;
608 printk(KERN_INFO "Using default idle loop\n");
609 }
610
611 paging_init();
612 ppc64_boot_msg(0x15, "Setup Done");
613}
614
615
616/* ToDo: do something useful if ppc_md is not yet setup. */
617#define PPC64_LINUX_FUNCTION 0x0f000000
618#define PPC64_IPL_MESSAGE 0xc0000000
619#define PPC64_TERM_MESSAGE 0xb0000000
620
621static void ppc64_do_msg(unsigned int src, const char *msg)
622{
623 if (ppc_md.progress) {
624 char buf[128];
625
626 sprintf(buf, "%08X\n", src);
627 ppc_md.progress(buf, 0);
628 snprintf(buf, 128, "%s", msg);
629 ppc_md.progress(buf, 0);
630 }
631}
632
633/* Print a boot progress message. */
634void ppc64_boot_msg(unsigned int src, const char *msg)
635{
636 ppc64_do_msg(PPC64_LINUX_FUNCTION|PPC64_IPL_MESSAGE|src, msg);
637 printk("[boot]%04x %s\n", src, msg);
638}
639
640/* Print a termination message (print only -- does not stop the kernel) */
641void ppc64_terminate_msg(unsigned int src, const char *msg)
642{
643 ppc64_do_msg(PPC64_LINUX_FUNCTION|PPC64_TERM_MESSAGE|src, msg);
644 printk("[terminate]%04x %s\n", src, msg);
645}
646
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000647int check_legacy_ioport(unsigned long base_port)
648{
649 if (ppc_md.check_legacy_ioport == NULL)
650 return 0;
651 return ppc_md.check_legacy_ioport(base_port);
652}
653EXPORT_SYMBOL(check_legacy_ioport);
654
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000655void cpu_die(void)
656{
657 if (ppc_md.cpu_die)
658 ppc_md.cpu_die();
659}
Anton Blanchard7a0268f2006-01-11 13:16:44 +1100660
661#ifdef CONFIG_SMP
662void __init setup_per_cpu_areas(void)
663{
664 int i;
665 unsigned long size;
666 char *ptr;
667
668 /* Copy section for each CPU (we discard the original) */
669 size = ALIGN(__per_cpu_end - __per_cpu_start, SMP_CACHE_BYTES);
670#ifdef CONFIG_MODULES
671 if (size < PERCPU_ENOUGH_ROOM)
672 size = PERCPU_ENOUGH_ROOM;
673#endif
674
675 for_each_cpu(i) {
676 ptr = alloc_bootmem_node(NODE_DATA(cpu_to_node(i)), size);
677 if (!ptr)
678 panic("Cannot allocate cpu data for CPU %d\n", i);
679
680 paca[i].data_offset = ptr - __per_cpu_start;
681 memcpy(ptr, __per_cpu_start, __per_cpu_end - __per_cpu_start);
682 }
683}
684#endif