]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/powerpc/kernel/setup_64.c
powerpc: Merge xmon
[karo-tx-linux.git] / arch / powerpc / kernel / setup_64.c
1 /*
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>
40 #include <asm/smp.h>
41 #include <asm/elf.h>
42 #include <asm/machdep.h>
43 #include <asm/paca.h>
44 #include <asm/ppcdebug.h>
45 #include <asm/time.h>
46 #include <asm/cputable.h>
47 #include <asm/sections.h>
48 #include <asm/btext.h>
49 #include <asm/nvram.h>
50 #include <asm/setup.h>
51 #include <asm/system.h>
52 #include <asm/rtas.h>
53 #include <asm/iommu.h>
54 #include <asm/serial.h>
55 #include <asm/cache.h>
56 #include <asm/page.h>
57 #include <asm/mmu.h>
58 #include <asm/lmb.h>
59 #include <asm/iSeries/ItLpNaca.h>
60 #include <asm/firmware.h>
61 #include <asm/systemcfg.h>
62 #include <asm/xmon.h>
63
64 #ifdef DEBUG
65 #define DBG(fmt...) udbg_printf(fmt)
66 #else
67 #define DBG(fmt...)
68 #endif
69
70 /*
71  * Here are some early debugging facilities. You can enable one
72  * but your kernel will not boot on anything else if you do so
73  */
74
75 /* This one is for use on LPAR machines that support an HVC console
76  * on vterm 0
77  */
78 extern void udbg_init_debug_lpar(void);
79 /* This one is for use on Apple G5 machines
80  */
81 extern void udbg_init_pmac_realmode(void);
82 /* That's RTAS panel debug */
83 extern void call_rtas_display_status_delay(unsigned char c);
84 /* Here's maple real mode debug */
85 extern void udbg_init_maple_realmode(void);
86
87 #define EARLY_DEBUG_INIT() do {} while(0)
88
89 #if 0
90 #define EARLY_DEBUG_INIT() udbg_init_debug_lpar()
91 #define EARLY_DEBUG_INIT() udbg_init_maple_realmode()
92 #define EARLY_DEBUG_INIT() udbg_init_pmac_realmode()
93 #define EARLY_DEBUG_INIT()                                              \
94         do { udbg_putc = call_rtas_display_status_delay; } while(0)
95 #endif
96
97 /* extern void *stab; */
98 extern unsigned long klimit;
99
100 extern void mm_init_ppc64(void);
101 extern void stab_initialize(unsigned long stab);
102 extern void htab_initialize(void);
103 extern void early_init_devtree(void *flat_dt);
104 extern void unflatten_device_tree(void);
105
106 extern void smp_release_cpus(void);
107
108 int have_of = 1;
109 int boot_cpuid = 0;
110 int boot_cpuid_phys = 0;
111 dev_t boot_dev;
112 u64 ppc64_pft_size;
113
114 struct ppc64_caches ppc64_caches;
115 EXPORT_SYMBOL_GPL(ppc64_caches);
116
117 /*
118  * These are used in binfmt_elf.c to put aux entries on the stack
119  * for each elf executable being started.
120  */
121 int dcache_bsize;
122 int icache_bsize;
123 int ucache_bsize;
124
125 /* The main machine-dep calls structure
126  */
127 struct machdep_calls ppc_md;
128 EXPORT_SYMBOL(ppc_md);
129
130 #ifdef CONFIG_MAGIC_SYSRQ
131 unsigned long SYSRQ_KEY;
132 #endif /* CONFIG_MAGIC_SYSRQ */
133
134
135 static int ppc64_panic_event(struct notifier_block *, unsigned long, void *);
136 static struct notifier_block ppc64_panic_block = {
137         .notifier_call = ppc64_panic_event,
138         .priority = INT_MIN /* may not return; must be done last */
139 };
140
141 #ifdef CONFIG_SMP
142
143 static int smt_enabled_cmdline;
144
145 /* Look for ibm,smt-enabled OF option */
146 static void check_smt_enabled(void)
147 {
148         struct device_node *dn;
149         char *smt_option;
150
151         /* Allow the command line to overrule the OF option */
152         if (smt_enabled_cmdline)
153                 return;
154
155         dn = of_find_node_by_path("/options");
156
157         if (dn) {
158                 smt_option = (char *)get_property(dn, "ibm,smt-enabled", NULL);
159
160                 if (smt_option) {
161                         if (!strcmp(smt_option, "on"))
162                                 smt_enabled_at_boot = 1;
163                         else if (!strcmp(smt_option, "off"))
164                                 smt_enabled_at_boot = 0;
165                 }
166         }
167 }
168
169 /* Look for smt-enabled= cmdline option */
170 static int __init early_smt_enabled(char *p)
171 {
172         smt_enabled_cmdline = 1;
173
174         if (!p)
175                 return 0;
176
177         if (!strcmp(p, "on") || !strcmp(p, "1"))
178                 smt_enabled_at_boot = 1;
179         else if (!strcmp(p, "off") || !strcmp(p, "0"))
180                 smt_enabled_at_boot = 0;
181
182         return 0;
183 }
184 early_param("smt-enabled", early_smt_enabled);
185
186 /**
187  * setup_cpu_maps - initialize the following cpu maps:
188  *                  cpu_possible_map
189  *                  cpu_present_map
190  *                  cpu_sibling_map
191  *
192  * Having the possible map set up early allows us to restrict allocations
193  * of things like irqstacks to num_possible_cpus() rather than NR_CPUS.
194  *
195  * We do not initialize the online map here; cpus set their own bits in
196  * cpu_online_map as they come up.
197  *
198  * This function is valid only for Open Firmware systems.  finish_device_tree
199  * must be called before using this.
200  *
201  * While we're here, we may as well set the "physical" cpu ids in the paca.
202  */
203 static void __init setup_cpu_maps(void)
204 {
205         struct device_node *dn = NULL;
206         int cpu = 0;
207         int swap_cpuid = 0;
208
209         check_smt_enabled();
210
211         while ((dn = of_find_node_by_type(dn, "cpu")) && cpu < NR_CPUS) {
212                 u32 *intserv;
213                 int j, len = sizeof(u32), nthreads;
214
215                 intserv = (u32 *)get_property(dn, "ibm,ppc-interrupt-server#s",
216                                               &len);
217                 if (!intserv)
218                         intserv = (u32 *)get_property(dn, "reg", NULL);
219
220                 nthreads = len / sizeof(u32);
221
222                 for (j = 0; j < nthreads && cpu < NR_CPUS; j++) {
223                         cpu_set(cpu, cpu_present_map);
224                         set_hard_smp_processor_id(cpu, intserv[j]);
225
226                         if (intserv[j] == boot_cpuid_phys)
227                                 swap_cpuid = cpu;
228                         cpu_set(cpu, cpu_possible_map);
229                         cpu++;
230                 }
231         }
232
233         /* Swap CPU id 0 with boot_cpuid_phys, so we can always assume that
234          * boot cpu is logical 0.
235          */
236         if (boot_cpuid_phys != get_hard_smp_processor_id(0)) {
237                 u32 tmp;
238                 tmp = get_hard_smp_processor_id(0);
239                 set_hard_smp_processor_id(0, boot_cpuid_phys);
240                 set_hard_smp_processor_id(swap_cpuid, tmp);
241         }
242
243         /*
244          * On pSeries LPAR, we need to know how many cpus
245          * could possibly be added to this partition.
246          */
247         if (systemcfg->platform == PLATFORM_PSERIES_LPAR &&
248                                 (dn = of_find_node_by_path("/rtas"))) {
249                 int num_addr_cell, num_size_cell, maxcpus;
250                 unsigned int *ireg;
251
252                 num_addr_cell = prom_n_addr_cells(dn);
253                 num_size_cell = prom_n_size_cells(dn);
254
255                 ireg = (unsigned int *)
256                         get_property(dn, "ibm,lrdr-capacity", NULL);
257
258                 if (!ireg)
259                         goto out;
260
261                 maxcpus = ireg[num_addr_cell + num_size_cell];
262
263                 /* Double maxcpus for processors which have SMT capability */
264                 if (cpu_has_feature(CPU_FTR_SMT))
265                         maxcpus *= 2;
266
267                 if (maxcpus > NR_CPUS) {
268                         printk(KERN_WARNING
269                                "Partition configured for %d cpus, "
270                                "operating system maximum is %d.\n",
271                                maxcpus, NR_CPUS);
272                         maxcpus = NR_CPUS;
273                 } else
274                         printk(KERN_INFO "Partition configured for %d cpus.\n",
275                                maxcpus);
276
277                 for (cpu = 0; cpu < maxcpus; cpu++)
278                         cpu_set(cpu, cpu_possible_map);
279         out:
280                 of_node_put(dn);
281         }
282
283         /*
284          * Do the sibling map; assume only two threads per processor.
285          */
286         for_each_cpu(cpu) {
287                 cpu_set(cpu, cpu_sibling_map[cpu]);
288                 if (cpu_has_feature(CPU_FTR_SMT))
289                         cpu_set(cpu ^ 0x1, cpu_sibling_map[cpu]);
290         }
291
292         systemcfg->processorCount = num_present_cpus();
293 }
294 #endif /* CONFIG_SMP */
295
296 extern struct machdep_calls pSeries_md;
297 extern struct machdep_calls pmac_md;
298 extern struct machdep_calls maple_md;
299 extern struct machdep_calls bpa_md;
300 extern struct machdep_calls iseries_md;
301
302 /* Ultimately, stuff them in an elf section like initcalls... */
303 static struct machdep_calls __initdata *machines[] = {
304 #ifdef CONFIG_PPC_PSERIES
305         &pSeries_md,
306 #endif /* CONFIG_PPC_PSERIES */
307 #ifdef CONFIG_PPC_PMAC
308         &pmac_md,
309 #endif /* CONFIG_PPC_PMAC */
310 #ifdef CONFIG_PPC_MAPLE
311         &maple_md,
312 #endif /* CONFIG_PPC_MAPLE */
313 #ifdef CONFIG_PPC_BPA
314         &bpa_md,
315 #endif
316 #ifdef CONFIG_PPC_ISERIES
317         &iseries_md,
318 #endif
319         NULL
320 };
321
322 /*
323  * Early initialization entry point. This is called by head.S
324  * with MMU translation disabled. We rely on the "feature" of
325  * the CPU that ignores the top 2 bits of the address in real
326  * mode so we can access kernel globals normally provided we
327  * only toy with things in the RMO region. From here, we do
328  * some early parsing of the device-tree to setup out LMB
329  * data structures, and allocate & initialize the hash table
330  * and segment tables so we can start running with translation
331  * enabled.
332  *
333  * It is this function which will call the probe() callback of
334  * the various platform types and copy the matching one to the
335  * global ppc_md structure. Your platform can eventually do
336  * some very early initializations from the probe() routine, but
337  * this is not recommended, be very careful as, for example, the
338  * device-tree is not accessible via normal means at this point.
339  */
340
341 void __init early_setup(unsigned long dt_ptr)
342 {
343         struct paca_struct *lpaca = get_paca();
344         static struct machdep_calls **mach;
345
346         /*
347          * Enable early debugging if any specified (see top of
348          * this file)
349          */
350         EARLY_DEBUG_INIT();
351
352         DBG(" -> early_setup()\n");
353
354         /*
355          * Fill the default DBG level (do we want to keep
356          * that old mecanism around forever ?)
357          */
358         ppcdbg_initialize();
359
360         /*
361          * Do early initializations using the flattened device
362          * tree, like retreiving the physical memory map or
363          * calculating/retreiving the hash table size
364          */
365         early_init_devtree(__va(dt_ptr));
366
367         /*
368          * Iterate all ppc_md structures until we find the proper
369          * one for the current machine type
370          */
371         DBG("Probing machine type for platform %x...\n",
372             systemcfg->platform);
373
374         for (mach = machines; *mach; mach++) {
375                 if ((*mach)->probe(systemcfg->platform))
376                         break;
377         }
378         /* What can we do if we didn't find ? */
379         if (*mach == NULL) {
380                 DBG("No suitable machine found !\n");
381                 for (;;);
382         }
383         ppc_md = **mach;
384
385         DBG("Found, Initializing memory management...\n");
386
387         /*
388          * Initialize stab / SLB management
389          */
390         if (!firmware_has_feature(FW_FEATURE_ISERIES))
391                 stab_initialize(lpaca->stab_real);
392
393         /*
394          * Initialize the MMU Hash table and create the linear mapping
395          * of memory
396          */
397         htab_initialize();
398
399         DBG(" <- early_setup()\n");
400 }
401
402
403 /*
404  * Initialize some remaining members of the ppc64_caches and systemcfg structures
405  * (at least until we get rid of them completely). This is mostly some
406  * cache informations about the CPU that will be used by cache flush
407  * routines and/or provided to userland
408  */
409 static void __init initialize_cache_info(void)
410 {
411         struct device_node *np;
412         unsigned long num_cpus = 0;
413
414         DBG(" -> initialize_cache_info()\n");
415
416         for (np = NULL; (np = of_find_node_by_type(np, "cpu"));) {
417                 num_cpus += 1;
418
419                 /* We're assuming *all* of the CPUs have the same
420                  * d-cache and i-cache sizes... -Peter
421                  */
422
423                 if ( num_cpus == 1 ) {
424                         u32 *sizep, *lsizep;
425                         u32 size, lsize;
426                         const char *dc, *ic;
427
428                         /* Then read cache informations */
429                         if (systemcfg->platform == PLATFORM_POWERMAC) {
430                                 dc = "d-cache-block-size";
431                                 ic = "i-cache-block-size";
432                         } else {
433                                 dc = "d-cache-line-size";
434                                 ic = "i-cache-line-size";
435                         }
436
437                         size = 0;
438                         lsize = cur_cpu_spec->dcache_bsize;
439                         sizep = (u32 *)get_property(np, "d-cache-size", NULL);
440                         if (sizep != NULL)
441                                 size = *sizep;
442                         lsizep = (u32 *) get_property(np, dc, NULL);
443                         if (lsizep != NULL)
444                                 lsize = *lsizep;
445                         if (sizep == 0 || lsizep == 0)
446                                 DBG("Argh, can't find dcache properties ! "
447                                     "sizep: %p, lsizep: %p\n", sizep, lsizep);
448
449                         systemcfg->dcache_size = ppc64_caches.dsize = size;
450                         systemcfg->dcache_line_size =
451                                 ppc64_caches.dline_size = lsize;
452                         ppc64_caches.log_dline_size = __ilog2(lsize);
453                         ppc64_caches.dlines_per_page = PAGE_SIZE / lsize;
454
455                         size = 0;
456                         lsize = cur_cpu_spec->icache_bsize;
457                         sizep = (u32 *)get_property(np, "i-cache-size", NULL);
458                         if (sizep != NULL)
459                                 size = *sizep;
460                         lsizep = (u32 *)get_property(np, ic, NULL);
461                         if (lsizep != NULL)
462                                 lsize = *lsizep;
463                         if (sizep == 0 || lsizep == 0)
464                                 DBG("Argh, can't find icache properties ! "
465                                     "sizep: %p, lsizep: %p\n", sizep, lsizep);
466
467                         systemcfg->icache_size = ppc64_caches.isize = size;
468                         systemcfg->icache_line_size =
469                                 ppc64_caches.iline_size = lsize;
470                         ppc64_caches.log_iline_size = __ilog2(lsize);
471                         ppc64_caches.ilines_per_page = PAGE_SIZE / lsize;
472                 }
473         }
474
475         /* Add an eye catcher and the systemcfg layout version number */
476         strcpy(systemcfg->eye_catcher, "SYSTEMCFG:PPC64");
477         systemcfg->version.major = SYSTEMCFG_MAJOR;
478         systemcfg->version.minor = SYSTEMCFG_MINOR;
479         systemcfg->processor = mfspr(SPRN_PVR);
480
481         DBG(" <- initialize_cache_info()\n");
482 }
483
484 static void __init check_for_initrd(void)
485 {
486 #ifdef CONFIG_BLK_DEV_INITRD
487         u64 *prop;
488
489         DBG(" -> check_for_initrd()\n");
490
491         if (of_chosen) {
492                 prop = (u64 *)get_property(of_chosen,
493                                 "linux,initrd-start", NULL);
494                 if (prop != NULL) {
495                         initrd_start = (unsigned long)__va(*prop);
496                         prop = (u64 *)get_property(of_chosen,
497                                         "linux,initrd-end", NULL);
498                         if (prop != NULL) {
499                                 initrd_end = (unsigned long)__va(*prop);
500                                 initrd_below_start_ok = 1;
501                         } else
502                                 initrd_start = 0;
503                 }
504         }
505
506         /* If we were passed an initrd, set the ROOT_DEV properly if the values
507          * look sensible. If not, clear initrd reference.
508          */
509         if (initrd_start >= KERNELBASE && initrd_end >= KERNELBASE &&
510             initrd_end > initrd_start)
511                 ROOT_DEV = Root_RAM0;
512         else
513                 initrd_start = initrd_end = 0;
514
515         if (initrd_start)
516                 printk("Found initrd at 0x%lx:0x%lx\n", initrd_start, initrd_end);
517
518         DBG(" <- check_for_initrd()\n");
519 #endif /* CONFIG_BLK_DEV_INITRD */
520 }
521
522 /*
523  * Do some initial setup of the system.  The parameters are those which 
524  * were passed in from the bootloader.
525  */
526 void __init setup_system(void)
527 {
528         DBG(" -> setup_system()\n");
529
530         /*
531          * Unflatten the device-tree passed by prom_init or kexec
532          */
533         unflatten_device_tree();
534
535         /*
536          * Fill the ppc64_caches & systemcfg structures with informations
537          * retreived from the device-tree. Need to be called before
538          * finish_device_tree() since the later requires some of the
539          * informations filled up here to properly parse the interrupt
540          * tree.
541          * It also sets up the cache line sizes which allows to call
542          * routines like flush_icache_range (used by the hash init
543          * later on).
544          */
545         initialize_cache_info();
546
547 #ifdef CONFIG_PPC_RTAS
548         /*
549          * Initialize RTAS if available
550          */
551         rtas_initialize();
552 #endif /* CONFIG_PPC_RTAS */
553
554         /*
555          * Check if we have an initrd provided via the device-tree
556          */
557         check_for_initrd();
558
559         /*
560          * Do some platform specific early initializations, that includes
561          * setting up the hash table pointers. It also sets up some interrupt-mapping
562          * related options that will be used by finish_device_tree()
563          */
564         ppc_md.init_early();
565
566         /*
567          * "Finish" the device-tree, that is do the actual parsing of
568          * some of the properties like the interrupt map
569          */
570         finish_device_tree();
571
572 #ifdef CONFIG_BOOTX_TEXT
573         init_boot_display();
574 #endif
575
576         /*
577          * Initialize xmon
578          */
579 #ifdef CONFIG_XMON_DEFAULT
580         xmon_init(1);
581 #endif
582         /*
583          * Register early console
584          */
585         register_early_udbg_console();
586
587         /* Save unparsed command line copy for /proc/cmdline */
588         strlcpy(saved_command_line, cmd_line, COMMAND_LINE_SIZE);
589
590         parse_early_param();
591
592 #ifdef CONFIG_SMP
593         /*
594          * iSeries has already initialized the cpu maps at this point.
595          */
596         setup_cpu_maps();
597
598         /* Release secondary cpus out of their spinloops at 0x60 now that
599          * we can map physical -> logical CPU ids
600          */
601         smp_release_cpus();
602 #endif
603
604         printk("Starting Linux PPC64 %s\n", system_utsname.version);
605
606         printk("-----------------------------------------------------\n");
607         printk("ppc64_pft_size                = 0x%lx\n", ppc64_pft_size);
608         printk("ppc64_debug_switch            = 0x%lx\n", ppc64_debug_switch);
609         printk("ppc64_interrupt_controller    = 0x%ld\n", ppc64_interrupt_controller);
610         printk("systemcfg                     = 0x%p\n", systemcfg);
611         printk("systemcfg->platform           = 0x%x\n", systemcfg->platform);
612         printk("systemcfg->processorCount     = 0x%lx\n", systemcfg->processorCount);
613         printk("systemcfg->physicalMemorySize = 0x%lx\n", systemcfg->physicalMemorySize);
614         printk("ppc64_caches.dcache_line_size = 0x%x\n",
615                         ppc64_caches.dline_size);
616         printk("ppc64_caches.icache_line_size = 0x%x\n",
617                         ppc64_caches.iline_size);
618         printk("htab_address                  = 0x%p\n", htab_address);
619         printk("htab_hash_mask                = 0x%lx\n", htab_hash_mask);
620         printk("-----------------------------------------------------\n");
621
622         mm_init_ppc64();
623
624         DBG(" <- setup_system()\n");
625 }
626
627 static int ppc64_panic_event(struct notifier_block *this,
628                              unsigned long event, void *ptr)
629 {
630         ppc_md.panic((char *)ptr);  /* May not return */
631         return NOTIFY_DONE;
632 }
633
634 /*
635  * These three variables are used to save values passed to us by prom_init()
636  * via the device tree. The TCE variables are needed because with a memory_limit
637  * in force we may need to explicitly map the TCE are at the top of RAM.
638  */
639 unsigned long memory_limit;
640 unsigned long tce_alloc_start;
641 unsigned long tce_alloc_end;
642
643 #ifdef CONFIG_PPC_ISERIES
644 /*
645  * On iSeries we just parse the mem=X option from the command line.
646  * On pSeries it's a bit more complicated, see prom_init_mem()
647  */
648 static int __init early_parsemem(char *p)
649 {
650         if (!p)
651                 return 0;
652
653         memory_limit = ALIGN(memparse(p, &p), PAGE_SIZE);
654
655         return 0;
656 }
657 early_param("mem", early_parsemem);
658 #endif /* CONFIG_PPC_ISERIES */
659
660 #ifdef CONFIG_IRQSTACKS
661 static void __init irqstack_early_init(void)
662 {
663         unsigned int i;
664
665         /*
666          * interrupt stacks must be under 256MB, we cannot afford to take
667          * SLB misses on them.
668          */
669         for_each_cpu(i) {
670                 softirq_ctx[i] = (struct thread_info *)__va(lmb_alloc_base(THREAD_SIZE,
671                                         THREAD_SIZE, 0x10000000));
672                 hardirq_ctx[i] = (struct thread_info *)__va(lmb_alloc_base(THREAD_SIZE,
673                                         THREAD_SIZE, 0x10000000));
674         }
675 }
676 #else
677 #define irqstack_early_init()
678 #endif
679
680 /*
681  * Stack space used when we detect a bad kernel stack pointer, and
682  * early in SMP boots before relocation is enabled.
683  */
684 static void __init emergency_stack_init(void)
685 {
686         unsigned long limit;
687         unsigned int i;
688
689         /*
690          * Emergency stacks must be under 256MB, we cannot afford to take
691          * SLB misses on them. The ABI also requires them to be 128-byte
692          * aligned.
693          *
694          * Since we use these as temporary stacks during secondary CPU
695          * bringup, we need to get at them in real mode. This means they
696          * must also be within the RMO region.
697          */
698         limit = min(0x10000000UL, lmb.rmo_size);
699
700         for_each_cpu(i)
701                 paca[i].emergency_sp = __va(lmb_alloc_base(PAGE_SIZE, 128,
702                                                 limit)) + PAGE_SIZE;
703 }
704
705 /*
706  * Called from setup_arch to initialize the bitmap of available
707  * syscalls in the systemcfg page
708  */
709 void __init setup_syscall_map(void)
710 {
711         unsigned int i, count64 = 0, count32 = 0;
712         extern unsigned long *sys_call_table;
713         extern unsigned long sys_ni_syscall;
714
715
716         for (i = 0; i < __NR_syscalls; i++) {
717                 if (sys_call_table[i*2] != sys_ni_syscall) {
718                         count64++;
719                         systemcfg->syscall_map_64[i >> 5] |=
720                                 0x80000000UL >> (i & 0x1f);
721                 }
722                 if (sys_call_table[i*2+1] != sys_ni_syscall) {
723                         count32++;
724                         systemcfg->syscall_map_32[i >> 5] |=
725                                 0x80000000UL >> (i & 0x1f);
726                 }
727         }
728         printk(KERN_INFO "Syscall map setup, %d 32-bit and %d 64-bit syscalls\n",
729                count32, count64);
730 }
731
732 /*
733  * Called into from start_kernel, after lock_kernel has been called.
734  * Initializes bootmem, which is unsed to manage page allocation until
735  * mem_init is called.
736  */
737 void __init setup_arch(char **cmdline_p)
738 {
739         extern void do_init_bootmem(void);
740
741         ppc64_boot_msg(0x12, "Setup Arch");
742
743         *cmdline_p = cmd_line;
744
745         /*
746          * Set cache line size based on type of cpu as a default.
747          * Systems with OF can look in the properties on the cpu node(s)
748          * for a possibly more accurate value.
749          */
750         dcache_bsize = ppc64_caches.dline_size;
751         icache_bsize = ppc64_caches.iline_size;
752
753         /* reboot on panic */
754         panic_timeout = 180;
755
756         if (ppc_md.panic)
757                 notifier_chain_register(&panic_notifier_list, &ppc64_panic_block);
758
759         init_mm.start_code = PAGE_OFFSET;
760         init_mm.end_code = (unsigned long) _etext;
761         init_mm.end_data = (unsigned long) _edata;
762         init_mm.brk = klimit;
763         
764         irqstack_early_init();
765         emergency_stack_init();
766
767         stabs_alloc();
768
769         /* set up the bootmem stuff with available memory */
770         do_init_bootmem();
771         sparse_init();
772
773         /* initialize the syscall map in systemcfg */
774         setup_syscall_map();
775
776 #ifdef CONFIG_DUMMY_CONSOLE
777         conswitchp = &dummy_con;
778 #endif
779
780         ppc_md.setup_arch();
781
782         /* Use the default idle loop if the platform hasn't provided one. */
783         if (NULL == ppc_md.idle_loop) {
784                 ppc_md.idle_loop = default_idle;
785                 printk(KERN_INFO "Using default idle loop\n");
786         }
787
788         paging_init();
789         ppc64_boot_msg(0x15, "Setup Done");
790 }
791
792
793 /* ToDo: do something useful if ppc_md is not yet setup. */
794 #define PPC64_LINUX_FUNCTION 0x0f000000
795 #define PPC64_IPL_MESSAGE 0xc0000000
796 #define PPC64_TERM_MESSAGE 0xb0000000
797
798 static void ppc64_do_msg(unsigned int src, const char *msg)
799 {
800         if (ppc_md.progress) {
801                 char buf[128];
802
803                 sprintf(buf, "%08X\n", src);
804                 ppc_md.progress(buf, 0);
805                 snprintf(buf, 128, "%s", msg);
806                 ppc_md.progress(buf, 0);
807         }
808 }
809
810 /* Print a boot progress message. */
811 void ppc64_boot_msg(unsigned int src, const char *msg)
812 {
813         ppc64_do_msg(PPC64_LINUX_FUNCTION|PPC64_IPL_MESSAGE|src, msg);
814         printk("[boot]%04x %s\n", src, msg);
815 }
816
817 /* Print a termination message (print only -- does not stop the kernel) */
818 void ppc64_terminate_msg(unsigned int src, const char *msg)
819 {
820         ppc64_do_msg(PPC64_LINUX_FUNCTION|PPC64_TERM_MESSAGE|src, msg);
821         printk("[terminate]%04x %s\n", src, msg);
822 }
823
824 #ifndef CONFIG_PPC_ISERIES
825 /*
826  * This function can be used by platforms to "find" legacy serial ports.
827  * It works for "serial" nodes under an "isa" node, and will try to
828  * respect the "ibm,aix-loc" property if any. It works with up to 8
829  * ports.
830  */
831
832 #define MAX_LEGACY_SERIAL_PORTS 8
833 static struct plat_serial8250_port serial_ports[MAX_LEGACY_SERIAL_PORTS+1];
834 static unsigned int old_serial_count;
835
836 void __init generic_find_legacy_serial_ports(u64 *physport,
837                 unsigned int *default_speed)
838 {
839         struct device_node *np;
840         u32 *sizeprop;
841
842         struct isa_reg_property {
843                 u32 space;
844                 u32 address;
845                 u32 size;
846         };
847         struct pci_reg_property {
848                 struct pci_address addr;
849                 u32 size_hi;
850                 u32 size_lo;
851         };                                                                        
852
853         DBG(" -> generic_find_legacy_serial_port()\n");
854
855         *physport = 0;
856         if (default_speed)
857                 *default_speed = 0;
858
859         np = of_find_node_by_path("/");
860         if (!np)
861                 return;
862
863         /* First fill our array */
864         for (np = NULL; (np = of_find_node_by_type(np, "serial"));) {
865                 struct device_node *isa, *pci;
866                 struct isa_reg_property *reg;
867                 unsigned long phys_size, addr_size, io_base;
868                 u32 *rangesp;
869                 u32 *interrupts, *clk, *spd;
870                 char *typep;
871                 int index, rlen, rentsize;
872
873                 /* Ok, first check if it's under an "isa" parent */
874                 isa = of_get_parent(np);
875                 if (!isa || strcmp(isa->name, "isa")) {
876                         DBG("%s: no isa parent found\n", np->full_name);
877                         continue;
878                 }
879                 
880                 /* Now look for an "ibm,aix-loc" property that gives us ordering
881                  * if any...
882                  */
883                 typep = (char *)get_property(np, "ibm,aix-loc", NULL);
884
885                 /* Get the ISA port number */
886                 reg = (struct isa_reg_property *)get_property(np, "reg", NULL); 
887                 if (reg == NULL)
888                         goto next_port;
889                 /* We assume the interrupt number isn't translated ... */
890                 interrupts = (u32 *)get_property(np, "interrupts", NULL);
891                 /* get clock freq. if present */
892                 clk = (u32 *)get_property(np, "clock-frequency", NULL);
893                 /* get default speed if present */
894                 spd = (u32 *)get_property(np, "current-speed", NULL);
895                 /* Default to locate at end of array */
896                 index = old_serial_count; /* end of the array by default */
897
898                 /* If we have a location index, then use it */
899                 if (typep && *typep == 'S') {
900                         index = simple_strtol(typep+1, NULL, 0) - 1;
901                         /* if index is out of range, use end of array instead */
902                         if (index >= MAX_LEGACY_SERIAL_PORTS)
903                                 index = old_serial_count;
904                         /* if our index is still out of range, that mean that
905                          * array is full, we could scan for a free slot but that
906                          * make little sense to bother, just skip the port
907                          */
908                         if (index >= MAX_LEGACY_SERIAL_PORTS)
909                                 goto next_port;
910                         if (index >= old_serial_count)
911                                 old_serial_count = index + 1;
912                         /* Check if there is a port who already claimed our slot */
913                         if (serial_ports[index].iobase != 0) {
914                                 /* if we still have some room, move it, else override */
915                                 if (old_serial_count < MAX_LEGACY_SERIAL_PORTS) {
916                                         DBG("Moved legacy port %d -> %d\n", index,
917                                             old_serial_count);
918                                         serial_ports[old_serial_count++] =
919                                                 serial_ports[index];
920                                 } else {
921                                         DBG("Replacing legacy port %d\n", index);
922                                 }
923                         }
924                 }
925                 if (index >= MAX_LEGACY_SERIAL_PORTS)
926                         goto next_port;
927                 if (index >= old_serial_count)
928                         old_serial_count = index + 1;
929
930                 /* Now fill the entry */
931                 memset(&serial_ports[index], 0, sizeof(struct plat_serial8250_port));
932                 serial_ports[index].uartclk = clk ? *clk : BASE_BAUD * 16;
933                 serial_ports[index].iobase = reg->address;
934                 serial_ports[index].irq = interrupts ? interrupts[0] : 0;
935                 serial_ports[index].flags = ASYNC_BOOT_AUTOCONF;
936
937                 DBG("Added legacy port, index: %d, port: %x, irq: %d, clk: %d\n",
938                     index,
939                     serial_ports[index].iobase,
940                     serial_ports[index].irq,
941                     serial_ports[index].uartclk);
942
943                 /* Get phys address of IO reg for port 1 */
944                 if (index != 0)
945                         goto next_port;
946
947                 pci = of_get_parent(isa);
948                 if (!pci) {
949                         DBG("%s: no pci parent found\n", np->full_name);
950                         goto next_port;
951                 }
952
953                 rangesp = (u32 *)get_property(pci, "ranges", &rlen);
954                 if (rangesp == NULL) {
955                         of_node_put(pci);
956                         goto next_port;
957                 }
958                 rlen /= 4;
959
960                 /* we need the #size-cells of the PCI bridge node itself */
961                 phys_size = 1;
962                 sizeprop = (u32 *)get_property(pci, "#size-cells", NULL);
963                 if (sizeprop != NULL)
964                         phys_size = *sizeprop;
965                 /* we need the parent #addr-cells */
966                 addr_size = prom_n_addr_cells(pci);
967                 rentsize = 3 + addr_size + phys_size;
968                 io_base = 0;
969                 for (;rlen >= rentsize; rlen -= rentsize,rangesp += rentsize) {
970                         if (((rangesp[0] >> 24) & 0x3) != 1)
971                                 continue; /* not IO space */
972                         io_base = rangesp[3];
973                         if (addr_size == 2)
974                                 io_base = (io_base << 32) | rangesp[4];
975                 }
976                 if (io_base != 0) {
977                         *physport = io_base + reg->address;
978                         if (default_speed && spd)
979                                 *default_speed = *spd;
980                 }
981                 of_node_put(pci);
982         next_port:
983                 of_node_put(isa);
984         }
985
986         DBG(" <- generic_find_legacy_serial_port()\n");
987 }
988
989 static struct platform_device serial_device = {
990         .name   = "serial8250",
991         .id     = PLAT8250_DEV_PLATFORM,
992         .dev    = {
993                 .platform_data = serial_ports,
994         },
995 };
996
997 static int __init serial_dev_init(void)
998 {
999         return platform_device_register(&serial_device);
1000 }
1001 arch_initcall(serial_dev_init);
1002
1003 #endif /* CONFIG_PPC_ISERIES */
1004
1005 int check_legacy_ioport(unsigned long base_port)
1006 {
1007         if (ppc_md.check_legacy_ioport == NULL)
1008                 return 0;
1009         return ppc_md.check_legacy_ioport(base_port);
1010 }
1011 EXPORT_SYMBOL(check_legacy_ioport);
1012
1013 #ifdef CONFIG_XMON
1014 static int __init early_xmon(char *p)
1015 {
1016         /* ensure xmon is enabled */
1017         if (p) {
1018                 if (strncmp(p, "on", 2) == 0)
1019                         xmon_init(1);
1020                 if (strncmp(p, "off", 3) == 0)
1021                         xmon_init(0);
1022                 if (strncmp(p, "early", 5) != 0)
1023                         return 0;
1024         }
1025         xmon_init(1);
1026         debugger(NULL);
1027
1028         return 0;
1029 }
1030 early_param("xmon", early_xmon);
1031 #endif
1032
1033 void cpu_die(void)
1034 {
1035         if (ppc_md.cpu_die)
1036                 ppc_md.cpu_die();
1037 }