blob: be607b877a55e889614eb598eb8d1f00c1e2a748 [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>
36#include <asm/io.h>
37#include <asm/prom.h>
38#include <asm/processor.h>
39#include <asm/pgtable.h>
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100040#include <asm/smp.h>
41#include <asm/elf.h>
42#include <asm/machdep.h>
43#include <asm/paca.h>
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100044#include <asm/time.h>
45#include <asm/cputable.h>
46#include <asm/sections.h>
47#include <asm/btext.h>
48#include <asm/nvram.h>
49#include <asm/setup.h>
50#include <asm/system.h>
51#include <asm/rtas.h>
52#include <asm/iommu.h>
53#include <asm/serial.h>
54#include <asm/cache.h>
55#include <asm/page.h>
56#include <asm/mmu.h>
57#include <asm/lmb.h>
Kelly Dalyf218aab2005-11-02 13:51:41 +110058#include <asm/iseries/it_lp_naca.h>
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100059#include <asm/firmware.h>
60#include <asm/systemcfg.h>
Paul Mackerrasf78541d2005-10-28 22:53:37 +100061#include <asm/xmon.h>
David Gibsondcad47f2005-11-07 09:49:43 +110062#include <asm/udbg.h>
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100063
Stephen Rothwell66ba1352005-11-09 11:01:06 +110064#include "setup.h"
65
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100066#ifdef DEBUG
67#define DBG(fmt...) udbg_printf(fmt)
68#else
69#define DBG(fmt...)
70#endif
71
72/*
73 * Here are some early debugging facilities. You can enable one
74 * but your kernel will not boot on anything else if you do so
75 */
76
77/* This one is for use on LPAR machines that support an HVC console
78 * on vterm 0
79 */
80extern void udbg_init_debug_lpar(void);
81/* This one is for use on Apple G5 machines
82 */
83extern void udbg_init_pmac_realmode(void);
84/* That's RTAS panel debug */
85extern void call_rtas_display_status_delay(unsigned char c);
86/* Here's maple real mode debug */
87extern void udbg_init_maple_realmode(void);
88
89#define EARLY_DEBUG_INIT() do {} while(0)
90
91#if 0
92#define EARLY_DEBUG_INIT() udbg_init_debug_lpar()
93#define EARLY_DEBUG_INIT() udbg_init_maple_realmode()
94#define EARLY_DEBUG_INIT() udbg_init_pmac_realmode()
95#define EARLY_DEBUG_INIT() \
96 do { udbg_putc = call_rtas_display_status_delay; } while(0)
97#endif
98
99/* extern void *stab; */
100extern unsigned long klimit;
101
102extern void mm_init_ppc64(void);
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000103extern void early_init_devtree(void *flat_dt);
104extern void unflatten_device_tree(void);
Paul Mackerras799d6042005-11-10 13:37:51 +1100105extern void check_for_initrd(void);
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000106
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000107int have_of = 1;
108int boot_cpuid = 0;
109int boot_cpuid_phys = 0;
110dev_t boot_dev;
111u64 ppc64_pft_size;
112
113struct ppc64_caches ppc64_caches;
114EXPORT_SYMBOL_GPL(ppc64_caches);
115
116/*
117 * These are used in binfmt_elf.c to put aux entries on the stack
118 * for each elf executable being started.
119 */
120int dcache_bsize;
121int icache_bsize;
122int ucache_bsize;
123
124/* The main machine-dep calls structure
125 */
126struct machdep_calls ppc_md;
127EXPORT_SYMBOL(ppc_md);
128
129#ifdef CONFIG_MAGIC_SYSRQ
130unsigned long SYSRQ_KEY;
131#endif /* CONFIG_MAGIC_SYSRQ */
132
133
134static int ppc64_panic_event(struct notifier_block *, unsigned long, void *);
135static struct notifier_block ppc64_panic_block = {
136 .notifier_call = ppc64_panic_event,
137 .priority = INT_MIN /* may not return; must be done last */
138};
139
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000140#ifdef CONFIG_SMP
141
142static int smt_enabled_cmdline;
143
144/* Look for ibm,smt-enabled OF option */
145static void check_smt_enabled(void)
146{
147 struct device_node *dn;
148 char *smt_option;
149
150 /* Allow the command line to overrule the OF option */
151 if (smt_enabled_cmdline)
152 return;
153
154 dn = of_find_node_by_path("/options");
155
156 if (dn) {
157 smt_option = (char *)get_property(dn, "ibm,smt-enabled", NULL);
158
159 if (smt_option) {
160 if (!strcmp(smt_option, "on"))
161 smt_enabled_at_boot = 1;
162 else if (!strcmp(smt_option, "off"))
163 smt_enabled_at_boot = 0;
164 }
165 }
166}
167
168/* Look for smt-enabled= cmdline option */
169static int __init early_smt_enabled(char *p)
170{
171 smt_enabled_cmdline = 1;
172
173 if (!p)
174 return 0;
175
176 if (!strcmp(p, "on") || !strcmp(p, "1"))
177 smt_enabled_at_boot = 1;
178 else if (!strcmp(p, "off") || !strcmp(p, "0"))
179 smt_enabled_at_boot = 0;
180
181 return 0;
182}
183early_param("smt-enabled", early_smt_enabled);
184
Paul Mackerras5ad57072005-11-05 10:33:55 +1100185#else
186#define check_smt_enabled()
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000187#endif /* CONFIG_SMP */
188
189extern struct machdep_calls pSeries_md;
190extern struct machdep_calls pmac_md;
191extern struct machdep_calls maple_md;
Arnd Bergmannf3f66f52005-10-31 20:08:37 -0500192extern struct machdep_calls cell_md;
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000193extern struct machdep_calls iseries_md;
194
195/* Ultimately, stuff them in an elf section like initcalls... */
196static struct machdep_calls __initdata *machines[] = {
197#ifdef CONFIG_PPC_PSERIES
198 &pSeries_md,
199#endif /* CONFIG_PPC_PSERIES */
200#ifdef CONFIG_PPC_PMAC
201 &pmac_md,
202#endif /* CONFIG_PPC_PMAC */
203#ifdef CONFIG_PPC_MAPLE
204 &maple_md,
205#endif /* CONFIG_PPC_MAPLE */
Arnd Bergmannf3f66f52005-10-31 20:08:37 -0500206#ifdef CONFIG_PPC_CELL
207 &cell_md,
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000208#endif
209#ifdef CONFIG_PPC_ISERIES
210 &iseries_md,
211#endif
212 NULL
213};
214
215/*
216 * Early initialization entry point. This is called by head.S
217 * with MMU translation disabled. We rely on the "feature" of
218 * the CPU that ignores the top 2 bits of the address in real
219 * mode so we can access kernel globals normally provided we
220 * only toy with things in the RMO region. From here, we do
221 * some early parsing of the device-tree to setup out LMB
222 * data structures, and allocate & initialize the hash table
223 * and segment tables so we can start running with translation
224 * enabled.
225 *
226 * It is this function which will call the probe() callback of
227 * the various platform types and copy the matching one to the
228 * global ppc_md structure. Your platform can eventually do
229 * some very early initializations from the probe() routine, but
230 * this is not recommended, be very careful as, for example, the
231 * device-tree is not accessible via normal means at this point.
232 */
233
234void __init early_setup(unsigned long dt_ptr)
235{
236 struct paca_struct *lpaca = get_paca();
237 static struct machdep_calls **mach;
238
239 /*
240 * Enable early debugging if any specified (see top of
241 * this file)
242 */
243 EARLY_DEBUG_INIT();
244
245 DBG(" -> early_setup()\n");
246
247 /*
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000248 * Do early initializations using the flattened device
249 * tree, like retreiving the physical memory map or
250 * calculating/retreiving the hash table size
251 */
252 early_init_devtree(__va(dt_ptr));
253
254 /*
255 * Iterate all ppc_md structures until we find the proper
256 * one for the current machine type
257 */
Paul Mackerras799d6042005-11-10 13:37:51 +1100258 DBG("Probing machine type for platform %x...\n", _machine);
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000259
260 for (mach = machines; *mach; mach++) {
Paul Mackerras799d6042005-11-10 13:37:51 +1100261 if ((*mach)->probe(_machine))
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000262 break;
263 }
264 /* What can we do if we didn't find ? */
265 if (*mach == NULL) {
266 DBG("No suitable machine found !\n");
267 for (;;);
268 }
269 ppc_md = **mach;
270
271 DBG("Found, Initializing memory management...\n");
272
273 /*
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000274 * Initialize the MMU Hash table and create the linear mapping
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100275 * of memory. Has to be done before stab/slb initialization as
276 * this is currently where the page size encoding is obtained
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000277 */
278 htab_initialize();
279
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100280 /*
281 * Initialize stab / SLB management except on iSeries
282 */
283 if (!firmware_has_feature(FW_FEATURE_ISERIES)) {
284 if (cpu_has_feature(CPU_FTR_SLB))
285 slb_initialize();
286 else
287 stab_initialize(lpaca->stab_real);
288 }
289
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000290 DBG(" <- early_setup()\n");
291}
292
Paul Mackerras799d6042005-11-10 13:37:51 +1100293#ifdef CONFIG_SMP
294void early_setup_secondary(void)
295{
296 struct paca_struct *lpaca = get_paca();
297
298 /* Mark enabled in PACA */
299 lpaca->proc_enabled = 0;
300
301 /* Initialize hash table for that CPU */
302 htab_initialize_secondary();
303
304 /* Initialize STAB/SLB. We use a virtual address as it works
305 * in real mode on pSeries and we want a virutal address on
306 * iSeries anyway
307 */
308 if (cpu_has_feature(CPU_FTR_SLB))
309 slb_initialize();
310 else
311 stab_initialize(lpaca->stab_addr);
312}
313
314#endif /* CONFIG_SMP */
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000315
Michael Ellermanb8f51022005-11-04 12:09:42 +1100316#if defined(CONFIG_SMP) || defined(CONFIG_KEXEC)
317void smp_release_cpus(void)
318{
319 extern unsigned long __secondary_hold_spinloop;
320
321 DBG(" -> smp_release_cpus()\n");
322
323 /* All secondary cpus are spinning on a common spinloop, release them
324 * all now so they can start to spin on their individual paca
325 * spinloops. For non SMP kernels, the secondary cpus never get out
326 * of the common spinloop.
327 * This is useless but harmless on iSeries, secondaries are already
328 * waiting on their paca spinloops. */
329
330 __secondary_hold_spinloop = 1;
331 mb();
332
333 DBG(" <- smp_release_cpus()\n");
334}
Paul Mackerras5ad57072005-11-05 10:33:55 +1100335#else
336#define smp_release_cpus()
Michael Ellermanb8f51022005-11-04 12:09:42 +1100337#endif /* CONFIG_SMP || CONFIG_KEXEC */
338
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000339/*
Paul Mackerras799d6042005-11-10 13:37:51 +1100340 * Initialize some remaining members of the ppc64_caches and systemcfg
341 * structures
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000342 * (at least until we get rid of them completely). This is mostly some
343 * cache informations about the CPU that will be used by cache flush
344 * routines and/or provided to userland
345 */
346static void __init initialize_cache_info(void)
347{
348 struct device_node *np;
349 unsigned long num_cpus = 0;
350
351 DBG(" -> initialize_cache_info()\n");
352
353 for (np = NULL; (np = of_find_node_by_type(np, "cpu"));) {
354 num_cpus += 1;
355
356 /* We're assuming *all* of the CPUs have the same
357 * d-cache and i-cache sizes... -Peter
358 */
359
360 if ( num_cpus == 1 ) {
361 u32 *sizep, *lsizep;
362 u32 size, lsize;
363 const char *dc, *ic;
364
365 /* Then read cache informations */
Paul Mackerras799d6042005-11-10 13:37:51 +1100366 if (_machine == PLATFORM_POWERMAC) {
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000367 dc = "d-cache-block-size";
368 ic = "i-cache-block-size";
369 } else {
370 dc = "d-cache-line-size";
371 ic = "i-cache-line-size";
372 }
373
374 size = 0;
375 lsize = cur_cpu_spec->dcache_bsize;
376 sizep = (u32 *)get_property(np, "d-cache-size", NULL);
377 if (sizep != NULL)
378 size = *sizep;
379 lsizep = (u32 *) get_property(np, dc, NULL);
380 if (lsizep != NULL)
381 lsize = *lsizep;
382 if (sizep == 0 || lsizep == 0)
383 DBG("Argh, can't find dcache properties ! "
384 "sizep: %p, lsizep: %p\n", sizep, lsizep);
385
Paul Mackerras799d6042005-11-10 13:37:51 +1100386 _systemcfg->dcache_size = ppc64_caches.dsize = size;
387 _systemcfg->dcache_line_size =
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000388 ppc64_caches.dline_size = lsize;
389 ppc64_caches.log_dline_size = __ilog2(lsize);
390 ppc64_caches.dlines_per_page = PAGE_SIZE / lsize;
391
392 size = 0;
393 lsize = cur_cpu_spec->icache_bsize;
394 sizep = (u32 *)get_property(np, "i-cache-size", NULL);
395 if (sizep != NULL)
396 size = *sizep;
397 lsizep = (u32 *)get_property(np, ic, NULL);
398 if (lsizep != NULL)
399 lsize = *lsizep;
400 if (sizep == 0 || lsizep == 0)
401 DBG("Argh, can't find icache properties ! "
402 "sizep: %p, lsizep: %p\n", sizep, lsizep);
403
Paul Mackerras799d6042005-11-10 13:37:51 +1100404 _systemcfg->icache_size = ppc64_caches.isize = size;
405 _systemcfg->icache_line_size =
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000406 ppc64_caches.iline_size = lsize;
407 ppc64_caches.log_iline_size = __ilog2(lsize);
408 ppc64_caches.ilines_per_page = PAGE_SIZE / lsize;
409 }
410 }
411
412 /* Add an eye catcher and the systemcfg layout version number */
Paul Mackerras799d6042005-11-10 13:37:51 +1100413 strcpy(_systemcfg->eye_catcher, "SYSTEMCFG:PPC64");
414 _systemcfg->version.major = SYSTEMCFG_MAJOR;
415 _systemcfg->version.minor = SYSTEMCFG_MINOR;
416 _systemcfg->processor = mfspr(SPRN_PVR);
417 _systemcfg->platform = _machine;
418 _systemcfg->physicalMemorySize = lmb_phys_mem_size();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000419
420 DBG(" <- initialize_cache_info()\n");
421}
422
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000423
424/*
425 * Do some initial setup of the system. The parameters are those which
426 * were passed in from the bootloader.
427 */
428void __init setup_system(void)
429{
430 DBG(" -> setup_system()\n");
431
432 /*
433 * Unflatten the device-tree passed by prom_init or kexec
434 */
435 unflatten_device_tree();
436
437 /*
438 * Fill the ppc64_caches & systemcfg structures with informations
439 * retreived from the device-tree. Need to be called before
440 * finish_device_tree() since the later requires some of the
441 * informations filled up here to properly parse the interrupt
442 * tree.
443 * It also sets up the cache line sizes which allows to call
444 * routines like flush_icache_range (used by the hash init
445 * later on).
446 */
447 initialize_cache_info();
448
449#ifdef CONFIG_PPC_RTAS
450 /*
451 * Initialize RTAS if available
452 */
453 rtas_initialize();
454#endif /* CONFIG_PPC_RTAS */
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000455
456 /*
457 * Check if we have an initrd provided via the device-tree
458 */
459 check_for_initrd();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000460
461 /*
462 * Do some platform specific early initializations, that includes
463 * setting up the hash table pointers. It also sets up some interrupt-mapping
464 * related options that will be used by finish_device_tree()
465 */
466 ppc_md.init_early();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000467
468 /*
469 * "Finish" the device-tree, that is do the actual parsing of
470 * some of the properties like the interrupt map
471 */
472 finish_device_tree();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000473
Paul Mackerras04580602005-10-20 21:00:20 +1000474#ifdef CONFIG_BOOTX_TEXT
475 init_boot_display();
476#endif
477
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000478 /*
479 * Initialize xmon
480 */
481#ifdef CONFIG_XMON_DEFAULT
482 xmon_init(1);
483#endif
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000484 /*
485 * Register early console
486 */
487 register_early_udbg_console();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000488
489 /* Save unparsed command line copy for /proc/cmdline */
490 strlcpy(saved_command_line, cmd_line, COMMAND_LINE_SIZE);
491
492 parse_early_param();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000493
Paul Mackerras5ad57072005-11-05 10:33:55 +1100494 check_smt_enabled();
495 smp_setup_cpu_maps();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000496
497 /* Release secondary cpus out of their spinloops at 0x60 now that
498 * we can map physical -> logical CPU ids
499 */
500 smp_release_cpus();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000501
502 printk("Starting Linux PPC64 %s\n", system_utsname.version);
503
504 printk("-----------------------------------------------------\n");
505 printk("ppc64_pft_size = 0x%lx\n", ppc64_pft_size);
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000506 printk("ppc64_interrupt_controller = 0x%ld\n", ppc64_interrupt_controller);
Paul Mackerras799d6042005-11-10 13:37:51 +1100507 printk("systemcfg = 0x%p\n", _systemcfg);
508 printk("systemcfg->platform = 0x%x\n", _systemcfg->platform);
509 printk("systemcfg->processorCount = 0x%lx\n", _systemcfg->processorCount);
510 printk("systemcfg->physicalMemorySize = 0x%lx\n", _systemcfg->physicalMemorySize);
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000511 printk("ppc64_caches.dcache_line_size = 0x%x\n",
512 ppc64_caches.dline_size);
513 printk("ppc64_caches.icache_line_size = 0x%x\n",
514 ppc64_caches.iline_size);
515 printk("htab_address = 0x%p\n", htab_address);
516 printk("htab_hash_mask = 0x%lx\n", htab_hash_mask);
517 printk("-----------------------------------------------------\n");
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000518
519 mm_init_ppc64();
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000520
521 DBG(" <- setup_system()\n");
522}
523
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000524static int ppc64_panic_event(struct notifier_block *this,
525 unsigned long event, void *ptr)
526{
527 ppc_md.panic((char *)ptr); /* May not return */
528 return NOTIFY_DONE;
529}
530
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000531#ifdef CONFIG_IRQSTACKS
532static void __init irqstack_early_init(void)
533{
534 unsigned int i;
535
536 /*
537 * interrupt stacks must be under 256MB, we cannot afford to take
538 * SLB misses on them.
539 */
540 for_each_cpu(i) {
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100541 softirq_ctx[i] = (struct thread_info *)
542 __va(lmb_alloc_base(THREAD_SIZE,
543 THREAD_SIZE, 0x10000000));
544 hardirq_ctx[i] = (struct thread_info *)
545 __va(lmb_alloc_base(THREAD_SIZE,
546 THREAD_SIZE, 0x10000000));
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000547 }
548}
549#else
550#define irqstack_early_init()
551#endif
552
553/*
554 * Stack space used when we detect a bad kernel stack pointer, and
555 * early in SMP boots before relocation is enabled.
556 */
557static void __init emergency_stack_init(void)
558{
559 unsigned long limit;
560 unsigned int i;
561
562 /*
563 * Emergency stacks must be under 256MB, we cannot afford to take
564 * SLB misses on them. The ABI also requires them to be 128-byte
565 * aligned.
566 *
567 * Since we use these as temporary stacks during secondary CPU
568 * bringup, we need to get at them in real mode. This means they
569 * must also be within the RMO region.
570 */
571 limit = min(0x10000000UL, lmb.rmo_size);
572
573 for_each_cpu(i)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100574 paca[i].emergency_sp =
575 __va(lmb_alloc_base(HW_PAGE_SIZE, 128, limit)) + HW_PAGE_SIZE;
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000576}
577
578/*
579 * Called from setup_arch to initialize the bitmap of available
580 * syscalls in the systemcfg page
581 */
582void __init setup_syscall_map(void)
583{
584 unsigned int i, count64 = 0, count32 = 0;
Stephen Rothwell640768e2005-10-28 12:51:45 +1000585 extern unsigned long *sys_call_table;
586 extern unsigned long sys_ni_syscall;
587
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000588
589 for (i = 0; i < __NR_syscalls; i++) {
Stephen Rothwell640768e2005-10-28 12:51:45 +1000590 if (sys_call_table[i*2] != sys_ni_syscall) {
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000591 count64++;
Paul Mackerras799d6042005-11-10 13:37:51 +1100592 _systemcfg->syscall_map_64[i >> 5] |=
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000593 0x80000000UL >> (i & 0x1f);
594 }
Stephen Rothwell640768e2005-10-28 12:51:45 +1000595 if (sys_call_table[i*2+1] != sys_ni_syscall) {
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000596 count32++;
Paul Mackerras799d6042005-11-10 13:37:51 +1100597 _systemcfg->syscall_map_32[i >> 5] |=
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000598 0x80000000UL >> (i & 0x1f);
599 }
600 }
601 printk(KERN_INFO "Syscall map setup, %d 32-bit and %d 64-bit syscalls\n",
602 count32, count64);
603}
604
605/*
606 * Called into from start_kernel, after lock_kernel has been called.
607 * Initializes bootmem, which is unsed to manage page allocation until
608 * mem_init is called.
609 */
610void __init setup_arch(char **cmdline_p)
611{
612 extern void do_init_bootmem(void);
613
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000614 ppc64_boot_msg(0x12, "Setup Arch");
615
616 *cmdline_p = cmd_line;
617
618 /*
619 * Set cache line size based on type of cpu as a default.
620 * Systems with OF can look in the properties on the cpu node(s)
621 * for a possibly more accurate value.
622 */
623 dcache_bsize = ppc64_caches.dline_size;
624 icache_bsize = ppc64_caches.iline_size;
625
626 /* reboot on panic */
627 panic_timeout = 180;
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000628
629 if (ppc_md.panic)
630 notifier_chain_register(&panic_notifier_list, &ppc64_panic_block);
631
632 init_mm.start_code = PAGE_OFFSET;
633 init_mm.end_code = (unsigned long) _etext;
634 init_mm.end_data = (unsigned long) _edata;
635 init_mm.brk = klimit;
636
637 irqstack_early_init();
638 emergency_stack_init();
639
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000640 stabs_alloc();
641
642 /* set up the bootmem stuff with available memory */
643 do_init_bootmem();
644 sparse_init();
645
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000646 /* initialize the syscall map in systemcfg */
647 setup_syscall_map();
648
Paul Mackerras04580602005-10-20 21:00:20 +1000649#ifdef CONFIG_DUMMY_CONSOLE
650 conswitchp = &dummy_con;
651#endif
652
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000653 ppc_md.setup_arch();
654
655 /* Use the default idle loop if the platform hasn't provided one. */
656 if (NULL == ppc_md.idle_loop) {
657 ppc_md.idle_loop = default_idle;
658 printk(KERN_INFO "Using default idle loop\n");
659 }
660
661 paging_init();
662 ppc64_boot_msg(0x15, "Setup Done");
663}
664
665
666/* ToDo: do something useful if ppc_md is not yet setup. */
667#define PPC64_LINUX_FUNCTION 0x0f000000
668#define PPC64_IPL_MESSAGE 0xc0000000
669#define PPC64_TERM_MESSAGE 0xb0000000
670
671static void ppc64_do_msg(unsigned int src, const char *msg)
672{
673 if (ppc_md.progress) {
674 char buf[128];
675
676 sprintf(buf, "%08X\n", src);
677 ppc_md.progress(buf, 0);
678 snprintf(buf, 128, "%s", msg);
679 ppc_md.progress(buf, 0);
680 }
681}
682
683/* Print a boot progress message. */
684void ppc64_boot_msg(unsigned int src, const char *msg)
685{
686 ppc64_do_msg(PPC64_LINUX_FUNCTION|PPC64_IPL_MESSAGE|src, msg);
687 printk("[boot]%04x %s\n", src, msg);
688}
689
690/* Print a termination message (print only -- does not stop the kernel) */
691void ppc64_terminate_msg(unsigned int src, const char *msg)
692{
693 ppc64_do_msg(PPC64_LINUX_FUNCTION|PPC64_TERM_MESSAGE|src, msg);
694 printk("[terminate]%04x %s\n", src, msg);
695}
696
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000697#ifndef CONFIG_PPC_ISERIES
698/*
699 * This function can be used by platforms to "find" legacy serial ports.
700 * It works for "serial" nodes under an "isa" node, and will try to
701 * respect the "ibm,aix-loc" property if any. It works with up to 8
702 * ports.
703 */
704
705#define MAX_LEGACY_SERIAL_PORTS 8
706static struct plat_serial8250_port serial_ports[MAX_LEGACY_SERIAL_PORTS+1];
707static unsigned int old_serial_count;
708
709void __init generic_find_legacy_serial_ports(u64 *physport,
710 unsigned int *default_speed)
711{
712 struct device_node *np;
713 u32 *sizeprop;
714
715 struct isa_reg_property {
716 u32 space;
717 u32 address;
718 u32 size;
719 };
720 struct pci_reg_property {
721 struct pci_address addr;
722 u32 size_hi;
723 u32 size_lo;
724 };
725
726 DBG(" -> generic_find_legacy_serial_port()\n");
727
728 *physport = 0;
729 if (default_speed)
730 *default_speed = 0;
731
732 np = of_find_node_by_path("/");
733 if (!np)
734 return;
735
736 /* First fill our array */
737 for (np = NULL; (np = of_find_node_by_type(np, "serial"));) {
738 struct device_node *isa, *pci;
739 struct isa_reg_property *reg;
740 unsigned long phys_size, addr_size, io_base;
741 u32 *rangesp;
742 u32 *interrupts, *clk, *spd;
743 char *typep;
744 int index, rlen, rentsize;
745
746 /* Ok, first check if it's under an "isa" parent */
747 isa = of_get_parent(np);
748 if (!isa || strcmp(isa->name, "isa")) {
749 DBG("%s: no isa parent found\n", np->full_name);
750 continue;
751 }
752
753 /* Now look for an "ibm,aix-loc" property that gives us ordering
754 * if any...
755 */
756 typep = (char *)get_property(np, "ibm,aix-loc", NULL);
757
758 /* Get the ISA port number */
759 reg = (struct isa_reg_property *)get_property(np, "reg", NULL);
760 if (reg == NULL)
761 goto next_port;
762 /* We assume the interrupt number isn't translated ... */
763 interrupts = (u32 *)get_property(np, "interrupts", NULL);
764 /* get clock freq. if present */
765 clk = (u32 *)get_property(np, "clock-frequency", NULL);
766 /* get default speed if present */
767 spd = (u32 *)get_property(np, "current-speed", NULL);
768 /* Default to locate at end of array */
769 index = old_serial_count; /* end of the array by default */
770
771 /* If we have a location index, then use it */
772 if (typep && *typep == 'S') {
773 index = simple_strtol(typep+1, NULL, 0) - 1;
774 /* if index is out of range, use end of array instead */
775 if (index >= MAX_LEGACY_SERIAL_PORTS)
776 index = old_serial_count;
777 /* if our index is still out of range, that mean that
778 * array is full, we could scan for a free slot but that
779 * make little sense to bother, just skip the port
780 */
781 if (index >= MAX_LEGACY_SERIAL_PORTS)
782 goto next_port;
783 if (index >= old_serial_count)
784 old_serial_count = index + 1;
785 /* Check if there is a port who already claimed our slot */
786 if (serial_ports[index].iobase != 0) {
787 /* if we still have some room, move it, else override */
788 if (old_serial_count < MAX_LEGACY_SERIAL_PORTS) {
789 DBG("Moved legacy port %d -> %d\n", index,
790 old_serial_count);
791 serial_ports[old_serial_count++] =
792 serial_ports[index];
793 } else {
794 DBG("Replacing legacy port %d\n", index);
795 }
796 }
797 }
798 if (index >= MAX_LEGACY_SERIAL_PORTS)
799 goto next_port;
800 if (index >= old_serial_count)
801 old_serial_count = index + 1;
802
803 /* Now fill the entry */
804 memset(&serial_ports[index], 0, sizeof(struct plat_serial8250_port));
805 serial_ports[index].uartclk = clk ? *clk : BASE_BAUD * 16;
806 serial_ports[index].iobase = reg->address;
807 serial_ports[index].irq = interrupts ? interrupts[0] : 0;
808 serial_ports[index].flags = ASYNC_BOOT_AUTOCONF;
809
810 DBG("Added legacy port, index: %d, port: %x, irq: %d, clk: %d\n",
811 index,
812 serial_ports[index].iobase,
813 serial_ports[index].irq,
814 serial_ports[index].uartclk);
815
816 /* Get phys address of IO reg for port 1 */
817 if (index != 0)
818 goto next_port;
819
820 pci = of_get_parent(isa);
821 if (!pci) {
822 DBG("%s: no pci parent found\n", np->full_name);
823 goto next_port;
824 }
825
826 rangesp = (u32 *)get_property(pci, "ranges", &rlen);
827 if (rangesp == NULL) {
828 of_node_put(pci);
829 goto next_port;
830 }
831 rlen /= 4;
832
833 /* we need the #size-cells of the PCI bridge node itself */
834 phys_size = 1;
835 sizeprop = (u32 *)get_property(pci, "#size-cells", NULL);
836 if (sizeprop != NULL)
837 phys_size = *sizeprop;
838 /* we need the parent #addr-cells */
839 addr_size = prom_n_addr_cells(pci);
840 rentsize = 3 + addr_size + phys_size;
841 io_base = 0;
842 for (;rlen >= rentsize; rlen -= rentsize,rangesp += rentsize) {
843 if (((rangesp[0] >> 24) & 0x3) != 1)
844 continue; /* not IO space */
845 io_base = rangesp[3];
846 if (addr_size == 2)
847 io_base = (io_base << 32) | rangesp[4];
848 }
849 if (io_base != 0) {
850 *physport = io_base + reg->address;
851 if (default_speed && spd)
852 *default_speed = *spd;
853 }
854 of_node_put(pci);
855 next_port:
856 of_node_put(isa);
857 }
858
859 DBG(" <- generic_find_legacy_serial_port()\n");
860}
861
862static struct platform_device serial_device = {
863 .name = "serial8250",
864 .id = PLAT8250_DEV_PLATFORM,
865 .dev = {
866 .platform_data = serial_ports,
867 },
868};
869
870static int __init serial_dev_init(void)
871{
872 return platform_device_register(&serial_device);
873}
874arch_initcall(serial_dev_init);
875
876#endif /* CONFIG_PPC_ISERIES */
877
878int check_legacy_ioport(unsigned long base_port)
879{
880 if (ppc_md.check_legacy_ioport == NULL)
881 return 0;
882 return ppc_md.check_legacy_ioport(base_port);
883}
884EXPORT_SYMBOL(check_legacy_ioport);
885
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000886void cpu_die(void)
887{
888 if (ppc_md.cpu_die)
889 ppc_md.cpu_die();
890}