]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/powerpc/kernel/setup_64.c
[PATCH] ppc64: remove arch/ppc64/kernel/setup.c
[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/bootinfo.h>
41 #include <asm/smp.h>
42 #include <asm/elf.h>
43 #include <asm/machdep.h>
44 #include <asm/paca.h>
45 #include <asm/ppcdebug.h>
46 #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>
60 #include <asm/iSeries/ItLpNaca.h>
61 #include <asm/firmware.h>
62 #include <asm/systemcfg.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 extern unsigned long *sys_call_table;
706 extern unsigned long sys_ni_syscall;
707 #ifdef CONFIG_PPC_MERGE
708 #define SYS_CALL_ENTRY64(i)     sys_call_table[(i) * 2]
709 #define SYS_CALL_ENTRY32(i)     sys_call_table[(i) * 2 + 1]
710 #else
711 extern unsigned long *sys_call_table32;
712 #define SYS_CALL_ENTRY64(i)     sys_call_table[(i)]
713 #define SYS_CALL_ENTRY32(i)     sys_call_table32[(i)]
714 #endif
715
716 /*
717  * Called from setup_arch to initialize the bitmap of available
718  * syscalls in the systemcfg page
719  */
720 void __init setup_syscall_map(void)
721 {
722         unsigned int i, count64 = 0, count32 = 0;
723
724         for (i = 0; i < __NR_syscalls; i++) {
725                 if (SYS_CALL_ENTRY64(i) != sys_ni_syscall) {
726                         count64++;
727                         systemcfg->syscall_map_64[i >> 5] |=
728                                 0x80000000UL >> (i & 0x1f);
729                 }
730                 if (SYS_CALL_ENTRY32(i) != sys_ni_syscall) {
731                         count32++;
732                         systemcfg->syscall_map_32[i >> 5] |=
733                                 0x80000000UL >> (i & 0x1f);
734                 }
735         }
736         printk(KERN_INFO "Syscall map setup, %d 32-bit and %d 64-bit syscalls\n",
737                count32, count64);
738 }
739
740 /*
741  * Called into from start_kernel, after lock_kernel has been called.
742  * Initializes bootmem, which is unsed to manage page allocation until
743  * mem_init is called.
744  */
745 void __init setup_arch(char **cmdline_p)
746 {
747         extern void do_init_bootmem(void);
748
749         ppc64_boot_msg(0x12, "Setup Arch");
750
751         *cmdline_p = cmd_line;
752
753         /*
754          * Set cache line size based on type of cpu as a default.
755          * Systems with OF can look in the properties on the cpu node(s)
756          * for a possibly more accurate value.
757          */
758         dcache_bsize = ppc64_caches.dline_size;
759         icache_bsize = ppc64_caches.iline_size;
760
761         /* reboot on panic */
762         panic_timeout = 180;
763
764         if (ppc_md.panic)
765                 notifier_chain_register(&panic_notifier_list, &ppc64_panic_block);
766
767         init_mm.start_code = PAGE_OFFSET;
768         init_mm.end_code = (unsigned long) _etext;
769         init_mm.end_data = (unsigned long) _edata;
770         init_mm.brk = klimit;
771         
772         irqstack_early_init();
773         emergency_stack_init();
774
775         stabs_alloc();
776
777         /* set up the bootmem stuff with available memory */
778         do_init_bootmem();
779         sparse_init();
780
781         /* initialize the syscall map in systemcfg */
782         setup_syscall_map();
783
784 #ifdef CONFIG_DUMMY_CONSOLE
785         conswitchp = &dummy_con;
786 #endif
787
788         ppc_md.setup_arch();
789
790         /* Use the default idle loop if the platform hasn't provided one. */
791         if (NULL == ppc_md.idle_loop) {
792                 ppc_md.idle_loop = default_idle;
793                 printk(KERN_INFO "Using default idle loop\n");
794         }
795
796         paging_init();
797         ppc64_boot_msg(0x15, "Setup Done");
798 }
799
800
801 /* ToDo: do something useful if ppc_md is not yet setup. */
802 #define PPC64_LINUX_FUNCTION 0x0f000000
803 #define PPC64_IPL_MESSAGE 0xc0000000
804 #define PPC64_TERM_MESSAGE 0xb0000000
805
806 static void ppc64_do_msg(unsigned int src, const char *msg)
807 {
808         if (ppc_md.progress) {
809                 char buf[128];
810
811                 sprintf(buf, "%08X\n", src);
812                 ppc_md.progress(buf, 0);
813                 snprintf(buf, 128, "%s", msg);
814                 ppc_md.progress(buf, 0);
815         }
816 }
817
818 /* Print a boot progress message. */
819 void ppc64_boot_msg(unsigned int src, const char *msg)
820 {
821         ppc64_do_msg(PPC64_LINUX_FUNCTION|PPC64_IPL_MESSAGE|src, msg);
822         printk("[boot]%04x %s\n", src, msg);
823 }
824
825 /* Print a termination message (print only -- does not stop the kernel) */
826 void ppc64_terminate_msg(unsigned int src, const char *msg)
827 {
828         ppc64_do_msg(PPC64_LINUX_FUNCTION|PPC64_TERM_MESSAGE|src, msg);
829         printk("[terminate]%04x %s\n", src, msg);
830 }
831
832 #ifndef CONFIG_PPC_ISERIES
833 /*
834  * This function can be used by platforms to "find" legacy serial ports.
835  * It works for "serial" nodes under an "isa" node, and will try to
836  * respect the "ibm,aix-loc" property if any. It works with up to 8
837  * ports.
838  */
839
840 #define MAX_LEGACY_SERIAL_PORTS 8
841 static struct plat_serial8250_port serial_ports[MAX_LEGACY_SERIAL_PORTS+1];
842 static unsigned int old_serial_count;
843
844 void __init generic_find_legacy_serial_ports(u64 *physport,
845                 unsigned int *default_speed)
846 {
847         struct device_node *np;
848         u32 *sizeprop;
849
850         struct isa_reg_property {
851                 u32 space;
852                 u32 address;
853                 u32 size;
854         };
855         struct pci_reg_property {
856                 struct pci_address addr;
857                 u32 size_hi;
858                 u32 size_lo;
859         };                                                                        
860
861         DBG(" -> generic_find_legacy_serial_port()\n");
862
863         *physport = 0;
864         if (default_speed)
865                 *default_speed = 0;
866
867         np = of_find_node_by_path("/");
868         if (!np)
869                 return;
870
871         /* First fill our array */
872         for (np = NULL; (np = of_find_node_by_type(np, "serial"));) {
873                 struct device_node *isa, *pci;
874                 struct isa_reg_property *reg;
875                 unsigned long phys_size, addr_size, io_base;
876                 u32 *rangesp;
877                 u32 *interrupts, *clk, *spd;
878                 char *typep;
879                 int index, rlen, rentsize;
880
881                 /* Ok, first check if it's under an "isa" parent */
882                 isa = of_get_parent(np);
883                 if (!isa || strcmp(isa->name, "isa")) {
884                         DBG("%s: no isa parent found\n", np->full_name);
885                         continue;
886                 }
887                 
888                 /* Now look for an "ibm,aix-loc" property that gives us ordering
889                  * if any...
890                  */
891                 typep = (char *)get_property(np, "ibm,aix-loc", NULL);
892
893                 /* Get the ISA port number */
894                 reg = (struct isa_reg_property *)get_property(np, "reg", NULL); 
895                 if (reg == NULL)
896                         goto next_port;
897                 /* We assume the interrupt number isn't translated ... */
898                 interrupts = (u32 *)get_property(np, "interrupts", NULL);
899                 /* get clock freq. if present */
900                 clk = (u32 *)get_property(np, "clock-frequency", NULL);
901                 /* get default speed if present */
902                 spd = (u32 *)get_property(np, "current-speed", NULL);
903                 /* Default to locate at end of array */
904                 index = old_serial_count; /* end of the array by default */
905
906                 /* If we have a location index, then use it */
907                 if (typep && *typep == 'S') {
908                         index = simple_strtol(typep+1, NULL, 0) - 1;
909                         /* if index is out of range, use end of array instead */
910                         if (index >= MAX_LEGACY_SERIAL_PORTS)
911                                 index = old_serial_count;
912                         /* if our index is still out of range, that mean that
913                          * array is full, we could scan for a free slot but that
914                          * make little sense to bother, just skip the port
915                          */
916                         if (index >= MAX_LEGACY_SERIAL_PORTS)
917                                 goto next_port;
918                         if (index >= old_serial_count)
919                                 old_serial_count = index + 1;
920                         /* Check if there is a port who already claimed our slot */
921                         if (serial_ports[index].iobase != 0) {
922                                 /* if we still have some room, move it, else override */
923                                 if (old_serial_count < MAX_LEGACY_SERIAL_PORTS) {
924                                         DBG("Moved legacy port %d -> %d\n", index,
925                                             old_serial_count);
926                                         serial_ports[old_serial_count++] =
927                                                 serial_ports[index];
928                                 } else {
929                                         DBG("Replacing legacy port %d\n", index);
930                                 }
931                         }
932                 }
933                 if (index >= MAX_LEGACY_SERIAL_PORTS)
934                         goto next_port;
935                 if (index >= old_serial_count)
936                         old_serial_count = index + 1;
937
938                 /* Now fill the entry */
939                 memset(&serial_ports[index], 0, sizeof(struct plat_serial8250_port));
940                 serial_ports[index].uartclk = clk ? *clk : BASE_BAUD * 16;
941                 serial_ports[index].iobase = reg->address;
942                 serial_ports[index].irq = interrupts ? interrupts[0] : 0;
943                 serial_ports[index].flags = ASYNC_BOOT_AUTOCONF;
944
945                 DBG("Added legacy port, index: %d, port: %x, irq: %d, clk: %d\n",
946                     index,
947                     serial_ports[index].iobase,
948                     serial_ports[index].irq,
949                     serial_ports[index].uartclk);
950
951                 /* Get phys address of IO reg for port 1 */
952                 if (index != 0)
953                         goto next_port;
954
955                 pci = of_get_parent(isa);
956                 if (!pci) {
957                         DBG("%s: no pci parent found\n", np->full_name);
958                         goto next_port;
959                 }
960
961                 rangesp = (u32 *)get_property(pci, "ranges", &rlen);
962                 if (rangesp == NULL) {
963                         of_node_put(pci);
964                         goto next_port;
965                 }
966                 rlen /= 4;
967
968                 /* we need the #size-cells of the PCI bridge node itself */
969                 phys_size = 1;
970                 sizeprop = (u32 *)get_property(pci, "#size-cells", NULL);
971                 if (sizeprop != NULL)
972                         phys_size = *sizeprop;
973                 /* we need the parent #addr-cells */
974                 addr_size = prom_n_addr_cells(pci);
975                 rentsize = 3 + addr_size + phys_size;
976                 io_base = 0;
977                 for (;rlen >= rentsize; rlen -= rentsize,rangesp += rentsize) {
978                         if (((rangesp[0] >> 24) & 0x3) != 1)
979                                 continue; /* not IO space */
980                         io_base = rangesp[3];
981                         if (addr_size == 2)
982                                 io_base = (io_base << 32) | rangesp[4];
983                 }
984                 if (io_base != 0) {
985                         *physport = io_base + reg->address;
986                         if (default_speed && spd)
987                                 *default_speed = *spd;
988                 }
989                 of_node_put(pci);
990         next_port:
991                 of_node_put(isa);
992         }
993
994         DBG(" <- generic_find_legacy_serial_port()\n");
995 }
996
997 static struct platform_device serial_device = {
998         .name   = "serial8250",
999         .id     = PLAT8250_DEV_PLATFORM,
1000         .dev    = {
1001                 .platform_data = serial_ports,
1002         },
1003 };
1004
1005 static int __init serial_dev_init(void)
1006 {
1007         return platform_device_register(&serial_device);
1008 }
1009 arch_initcall(serial_dev_init);
1010
1011 #endif /* CONFIG_PPC_ISERIES */
1012
1013 int check_legacy_ioport(unsigned long base_port)
1014 {
1015         if (ppc_md.check_legacy_ioport == NULL)
1016                 return 0;
1017         return ppc_md.check_legacy_ioport(base_port);
1018 }
1019 EXPORT_SYMBOL(check_legacy_ioport);
1020
1021 #ifdef CONFIG_XMON
1022 static int __init early_xmon(char *p)
1023 {
1024         /* ensure xmon is enabled */
1025         if (p) {
1026                 if (strncmp(p, "on", 2) == 0)
1027                         xmon_init(1);
1028                 if (strncmp(p, "off", 3) == 0)
1029                         xmon_init(0);
1030                 if (strncmp(p, "early", 5) != 0)
1031                         return 0;
1032         }
1033         xmon_init(1);
1034         debugger(NULL);
1035
1036         return 0;
1037 }
1038 early_param("xmon", early_xmon);
1039 #endif
1040
1041 void cpu_die(void)
1042 {
1043         if (ppc_md.cpu_die)
1044                 ppc_md.cpu_die();
1045 }