3 * Common boot and setup code.
5 * Copyright (C) 2001 PPC64 Team, IBM Corp
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.
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>
38 #include <asm/processor.h>
39 #include <asm/pgtable.h>
42 #include <asm/machdep.h>
44 #include <asm/ppcdebug.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>
53 #include <asm/iommu.h>
54 #include <asm/serial.h>
55 #include <asm/cache.h>
59 #include <asm/iseries/it_lp_naca.h>
60 #include <asm/firmware.h>
61 #include <asm/systemcfg.h>
65 #define DBG(fmt...) udbg_printf(fmt)
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
75 /* This one is for use on LPAR machines that support an HVC console
78 extern void udbg_init_debug_lpar(void);
79 /* This one is for use on Apple G5 machines
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);
87 #define EARLY_DEBUG_INIT() do {} while(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)
97 /* extern void *stab; */
98 extern unsigned long klimit;
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);
108 int boot_cpuid_phys = 0;
112 struct ppc64_caches ppc64_caches;
113 EXPORT_SYMBOL_GPL(ppc64_caches);
116 * These are used in binfmt_elf.c to put aux entries on the stack
117 * for each elf executable being started.
123 /* The main machine-dep calls structure
125 struct machdep_calls ppc_md;
126 EXPORT_SYMBOL(ppc_md);
128 #ifdef CONFIG_MAGIC_SYSRQ
129 unsigned long SYSRQ_KEY;
130 #endif /* CONFIG_MAGIC_SYSRQ */
133 static int ppc64_panic_event(struct notifier_block *, unsigned long, void *);
134 static struct notifier_block ppc64_panic_block = {
135 .notifier_call = ppc64_panic_event,
136 .priority = INT_MIN /* may not return; must be done last */
141 static int smt_enabled_cmdline;
143 /* Look for ibm,smt-enabled OF option */
144 static void check_smt_enabled(void)
146 struct device_node *dn;
149 /* Allow the command line to overrule the OF option */
150 if (smt_enabled_cmdline)
153 dn = of_find_node_by_path("/options");
156 smt_option = (char *)get_property(dn, "ibm,smt-enabled", NULL);
159 if (!strcmp(smt_option, "on"))
160 smt_enabled_at_boot = 1;
161 else if (!strcmp(smt_option, "off"))
162 smt_enabled_at_boot = 0;
167 /* Look for smt-enabled= cmdline option */
168 static int __init early_smt_enabled(char *p)
170 smt_enabled_cmdline = 1;
175 if (!strcmp(p, "on") || !strcmp(p, "1"))
176 smt_enabled_at_boot = 1;
177 else if (!strcmp(p, "off") || !strcmp(p, "0"))
178 smt_enabled_at_boot = 0;
182 early_param("smt-enabled", early_smt_enabled);
185 #define check_smt_enabled()
186 #endif /* CONFIG_SMP */
188 extern struct machdep_calls pSeries_md;
189 extern struct machdep_calls pmac_md;
190 extern struct machdep_calls maple_md;
191 extern struct machdep_calls cell_md;
192 extern struct machdep_calls iseries_md;
194 /* Ultimately, stuff them in an elf section like initcalls... */
195 static struct machdep_calls __initdata *machines[] = {
196 #ifdef CONFIG_PPC_PSERIES
198 #endif /* CONFIG_PPC_PSERIES */
199 #ifdef CONFIG_PPC_PMAC
201 #endif /* CONFIG_PPC_PMAC */
202 #ifdef CONFIG_PPC_MAPLE
204 #endif /* CONFIG_PPC_MAPLE */
205 #ifdef CONFIG_PPC_CELL
208 #ifdef CONFIG_PPC_ISERIES
215 * Early initialization entry point. This is called by head.S
216 * with MMU translation disabled. We rely on the "feature" of
217 * the CPU that ignores the top 2 bits of the address in real
218 * mode so we can access kernel globals normally provided we
219 * only toy with things in the RMO region. From here, we do
220 * some early parsing of the device-tree to setup out LMB
221 * data structures, and allocate & initialize the hash table
222 * and segment tables so we can start running with translation
225 * It is this function which will call the probe() callback of
226 * the various platform types and copy the matching one to the
227 * global ppc_md structure. Your platform can eventually do
228 * some very early initializations from the probe() routine, but
229 * this is not recommended, be very careful as, for example, the
230 * device-tree is not accessible via normal means at this point.
233 void __init early_setup(unsigned long dt_ptr)
235 struct paca_struct *lpaca = get_paca();
236 static struct machdep_calls **mach;
239 * Enable early debugging if any specified (see top of
244 DBG(" -> early_setup()\n");
247 * Fill the default DBG level (do we want to keep
248 * that old mecanism around forever ?)
253 * Do early initializations using the flattened device
254 * tree, like retreiving the physical memory map or
255 * calculating/retreiving the hash table size
257 early_init_devtree(__va(dt_ptr));
260 * Iterate all ppc_md structures until we find the proper
261 * one for the current machine type
263 DBG("Probing machine type for platform %x...\n",
264 systemcfg->platform);
266 for (mach = machines; *mach; mach++) {
267 if ((*mach)->probe(systemcfg->platform))
270 /* What can we do if we didn't find ? */
272 DBG("No suitable machine found !\n");
277 DBG("Found, Initializing memory management...\n");
280 * Initialize the MMU Hash table and create the linear mapping
281 * of memory. Has to be done before stab/slb initialization as
282 * this is currently where the page size encoding is obtained
287 * Initialize stab / SLB management except on iSeries
289 if (!firmware_has_feature(FW_FEATURE_ISERIES)) {
290 if (cpu_has_feature(CPU_FTR_SLB))
293 stab_initialize(lpaca->stab_real);
296 DBG(" <- early_setup()\n");
300 #if defined(CONFIG_SMP) || defined(CONFIG_KEXEC)
301 void smp_release_cpus(void)
303 extern unsigned long __secondary_hold_spinloop;
305 DBG(" -> smp_release_cpus()\n");
307 /* All secondary cpus are spinning on a common spinloop, release them
308 * all now so they can start to spin on their individual paca
309 * spinloops. For non SMP kernels, the secondary cpus never get out
310 * of the common spinloop.
311 * This is useless but harmless on iSeries, secondaries are already
312 * waiting on their paca spinloops. */
314 __secondary_hold_spinloop = 1;
317 DBG(" <- smp_release_cpus()\n");
320 #define smp_release_cpus()
321 #endif /* CONFIG_SMP || CONFIG_KEXEC */
324 * Initialize some remaining members of the ppc64_caches and systemcfg structures
325 * (at least until we get rid of them completely). This is mostly some
326 * cache informations about the CPU that will be used by cache flush
327 * routines and/or provided to userland
329 static void __init initialize_cache_info(void)
331 struct device_node *np;
332 unsigned long num_cpus = 0;
334 DBG(" -> initialize_cache_info()\n");
336 for (np = NULL; (np = of_find_node_by_type(np, "cpu"));) {
339 /* We're assuming *all* of the CPUs have the same
340 * d-cache and i-cache sizes... -Peter
343 if ( num_cpus == 1 ) {
348 /* Then read cache informations */
349 if (systemcfg->platform == PLATFORM_POWERMAC) {
350 dc = "d-cache-block-size";
351 ic = "i-cache-block-size";
353 dc = "d-cache-line-size";
354 ic = "i-cache-line-size";
358 lsize = cur_cpu_spec->dcache_bsize;
359 sizep = (u32 *)get_property(np, "d-cache-size", NULL);
362 lsizep = (u32 *) get_property(np, dc, NULL);
365 if (sizep == 0 || lsizep == 0)
366 DBG("Argh, can't find dcache properties ! "
367 "sizep: %p, lsizep: %p\n", sizep, lsizep);
369 systemcfg->dcache_size = ppc64_caches.dsize = size;
370 systemcfg->dcache_line_size =
371 ppc64_caches.dline_size = lsize;
372 ppc64_caches.log_dline_size = __ilog2(lsize);
373 ppc64_caches.dlines_per_page = PAGE_SIZE / lsize;
376 lsize = cur_cpu_spec->icache_bsize;
377 sizep = (u32 *)get_property(np, "i-cache-size", NULL);
380 lsizep = (u32 *)get_property(np, ic, NULL);
383 if (sizep == 0 || lsizep == 0)
384 DBG("Argh, can't find icache properties ! "
385 "sizep: %p, lsizep: %p\n", sizep, lsizep);
387 systemcfg->icache_size = ppc64_caches.isize = size;
388 systemcfg->icache_line_size =
389 ppc64_caches.iline_size = lsize;
390 ppc64_caches.log_iline_size = __ilog2(lsize);
391 ppc64_caches.ilines_per_page = PAGE_SIZE / lsize;
395 /* Add an eye catcher and the systemcfg layout version number */
396 strcpy(systemcfg->eye_catcher, "SYSTEMCFG:PPC64");
397 systemcfg->version.major = SYSTEMCFG_MAJOR;
398 systemcfg->version.minor = SYSTEMCFG_MINOR;
399 systemcfg->processor = mfspr(SPRN_PVR);
401 DBG(" <- initialize_cache_info()\n");
404 static void __init check_for_initrd(void)
406 #ifdef CONFIG_BLK_DEV_INITRD
409 DBG(" -> check_for_initrd()\n");
412 prop = (u64 *)get_property(of_chosen,
413 "linux,initrd-start", NULL);
415 initrd_start = (unsigned long)__va(*prop);
416 prop = (u64 *)get_property(of_chosen,
417 "linux,initrd-end", NULL);
419 initrd_end = (unsigned long)__va(*prop);
420 initrd_below_start_ok = 1;
426 /* If we were passed an initrd, set the ROOT_DEV properly if the values
427 * look sensible. If not, clear initrd reference.
429 if (initrd_start >= KERNELBASE && initrd_end >= KERNELBASE &&
430 initrd_end > initrd_start)
431 ROOT_DEV = Root_RAM0;
433 initrd_start = initrd_end = 0;
436 printk("Found initrd at 0x%lx:0x%lx\n", initrd_start, initrd_end);
438 DBG(" <- check_for_initrd()\n");
439 #endif /* CONFIG_BLK_DEV_INITRD */
443 * Do some initial setup of the system. The parameters are those which
444 * were passed in from the bootloader.
446 void __init setup_system(void)
448 DBG(" -> setup_system()\n");
451 * Unflatten the device-tree passed by prom_init or kexec
453 unflatten_device_tree();
456 * Fill the ppc64_caches & systemcfg structures with informations
457 * retreived from the device-tree. Need to be called before
458 * finish_device_tree() since the later requires some of the
459 * informations filled up here to properly parse the interrupt
461 * It also sets up the cache line sizes which allows to call
462 * routines like flush_icache_range (used by the hash init
465 initialize_cache_info();
467 #ifdef CONFIG_PPC_RTAS
469 * Initialize RTAS if available
472 #endif /* CONFIG_PPC_RTAS */
475 * Check if we have an initrd provided via the device-tree
480 * Do some platform specific early initializations, that includes
481 * setting up the hash table pointers. It also sets up some interrupt-mapping
482 * related options that will be used by finish_device_tree()
487 * "Finish" the device-tree, that is do the actual parsing of
488 * some of the properties like the interrupt map
490 finish_device_tree();
492 #ifdef CONFIG_BOOTX_TEXT
499 #ifdef CONFIG_XMON_DEFAULT
503 * Register early console
505 register_early_udbg_console();
507 /* Save unparsed command line copy for /proc/cmdline */
508 strlcpy(saved_command_line, cmd_line, COMMAND_LINE_SIZE);
513 smp_setup_cpu_maps();
515 /* Release secondary cpus out of their spinloops at 0x60 now that
516 * we can map physical -> logical CPU ids
520 printk("Starting Linux PPC64 %s\n", system_utsname.version);
522 printk("-----------------------------------------------------\n");
523 printk("ppc64_pft_size = 0x%lx\n", ppc64_pft_size);
524 printk("ppc64_debug_switch = 0x%lx\n", ppc64_debug_switch);
525 printk("ppc64_interrupt_controller = 0x%ld\n", ppc64_interrupt_controller);
526 printk("systemcfg = 0x%p\n", systemcfg);
527 printk("systemcfg->platform = 0x%x\n", systemcfg->platform);
528 printk("systemcfg->processorCount = 0x%lx\n", systemcfg->processorCount);
529 printk("systemcfg->physicalMemorySize = 0x%lx\n", systemcfg->physicalMemorySize);
530 printk("ppc64_caches.dcache_line_size = 0x%x\n",
531 ppc64_caches.dline_size);
532 printk("ppc64_caches.icache_line_size = 0x%x\n",
533 ppc64_caches.iline_size);
534 printk("htab_address = 0x%p\n", htab_address);
535 printk("htab_hash_mask = 0x%lx\n", htab_hash_mask);
536 printk("-----------------------------------------------------\n");
540 DBG(" <- setup_system()\n");
543 static int ppc64_panic_event(struct notifier_block *this,
544 unsigned long event, void *ptr)
546 ppc_md.panic((char *)ptr); /* May not return */
550 #ifdef CONFIG_IRQSTACKS
551 static void __init irqstack_early_init(void)
556 * interrupt stacks must be under 256MB, we cannot afford to take
557 * SLB misses on them.
560 softirq_ctx[i] = (struct thread_info *)
561 __va(lmb_alloc_base(THREAD_SIZE,
562 THREAD_SIZE, 0x10000000));
563 hardirq_ctx[i] = (struct thread_info *)
564 __va(lmb_alloc_base(THREAD_SIZE,
565 THREAD_SIZE, 0x10000000));
569 #define irqstack_early_init()
573 * Stack space used when we detect a bad kernel stack pointer, and
574 * early in SMP boots before relocation is enabled.
576 static void __init emergency_stack_init(void)
582 * Emergency stacks must be under 256MB, we cannot afford to take
583 * SLB misses on them. The ABI also requires them to be 128-byte
586 * Since we use these as temporary stacks during secondary CPU
587 * bringup, we need to get at them in real mode. This means they
588 * must also be within the RMO region.
590 limit = min(0x10000000UL, lmb.rmo_size);
593 paca[i].emergency_sp =
594 __va(lmb_alloc_base(HW_PAGE_SIZE, 128, limit)) + HW_PAGE_SIZE;
598 * Called from setup_arch to initialize the bitmap of available
599 * syscalls in the systemcfg page
601 void __init setup_syscall_map(void)
603 unsigned int i, count64 = 0, count32 = 0;
604 extern unsigned long *sys_call_table;
605 extern unsigned long sys_ni_syscall;
608 for (i = 0; i < __NR_syscalls; i++) {
609 if (sys_call_table[i*2] != sys_ni_syscall) {
611 systemcfg->syscall_map_64[i >> 5] |=
612 0x80000000UL >> (i & 0x1f);
614 if (sys_call_table[i*2+1] != sys_ni_syscall) {
616 systemcfg->syscall_map_32[i >> 5] |=
617 0x80000000UL >> (i & 0x1f);
620 printk(KERN_INFO "Syscall map setup, %d 32-bit and %d 64-bit syscalls\n",
625 * Called into from start_kernel, after lock_kernel has been called.
626 * Initializes bootmem, which is unsed to manage page allocation until
627 * mem_init is called.
629 void __init setup_arch(char **cmdline_p)
631 extern void do_init_bootmem(void);
633 ppc64_boot_msg(0x12, "Setup Arch");
635 *cmdline_p = cmd_line;
638 * Set cache line size based on type of cpu as a default.
639 * Systems with OF can look in the properties on the cpu node(s)
640 * for a possibly more accurate value.
642 dcache_bsize = ppc64_caches.dline_size;
643 icache_bsize = ppc64_caches.iline_size;
645 /* reboot on panic */
649 notifier_chain_register(&panic_notifier_list, &ppc64_panic_block);
651 init_mm.start_code = PAGE_OFFSET;
652 init_mm.end_code = (unsigned long) _etext;
653 init_mm.end_data = (unsigned long) _edata;
654 init_mm.brk = klimit;
656 irqstack_early_init();
657 emergency_stack_init();
661 /* set up the bootmem stuff with available memory */
665 /* initialize the syscall map in systemcfg */
668 #ifdef CONFIG_DUMMY_CONSOLE
669 conswitchp = &dummy_con;
674 /* Use the default idle loop if the platform hasn't provided one. */
675 if (NULL == ppc_md.idle_loop) {
676 ppc_md.idle_loop = default_idle;
677 printk(KERN_INFO "Using default idle loop\n");
681 ppc64_boot_msg(0x15, "Setup Done");
685 /* ToDo: do something useful if ppc_md is not yet setup. */
686 #define PPC64_LINUX_FUNCTION 0x0f000000
687 #define PPC64_IPL_MESSAGE 0xc0000000
688 #define PPC64_TERM_MESSAGE 0xb0000000
690 static void ppc64_do_msg(unsigned int src, const char *msg)
692 if (ppc_md.progress) {
695 sprintf(buf, "%08X\n", src);
696 ppc_md.progress(buf, 0);
697 snprintf(buf, 128, "%s", msg);
698 ppc_md.progress(buf, 0);
702 /* Print a boot progress message. */
703 void ppc64_boot_msg(unsigned int src, const char *msg)
705 ppc64_do_msg(PPC64_LINUX_FUNCTION|PPC64_IPL_MESSAGE|src, msg);
706 printk("[boot]%04x %s\n", src, msg);
709 /* Print a termination message (print only -- does not stop the kernel) */
710 void ppc64_terminate_msg(unsigned int src, const char *msg)
712 ppc64_do_msg(PPC64_LINUX_FUNCTION|PPC64_TERM_MESSAGE|src, msg);
713 printk("[terminate]%04x %s\n", src, msg);
716 #ifndef CONFIG_PPC_ISERIES
718 * This function can be used by platforms to "find" legacy serial ports.
719 * It works for "serial" nodes under an "isa" node, and will try to
720 * respect the "ibm,aix-loc" property if any. It works with up to 8
724 #define MAX_LEGACY_SERIAL_PORTS 8
725 static struct plat_serial8250_port serial_ports[MAX_LEGACY_SERIAL_PORTS+1];
726 static unsigned int old_serial_count;
728 void __init generic_find_legacy_serial_ports(u64 *physport,
729 unsigned int *default_speed)
731 struct device_node *np;
734 struct isa_reg_property {
739 struct pci_reg_property {
740 struct pci_address addr;
745 DBG(" -> generic_find_legacy_serial_port()\n");
751 np = of_find_node_by_path("/");
755 /* First fill our array */
756 for (np = NULL; (np = of_find_node_by_type(np, "serial"));) {
757 struct device_node *isa, *pci;
758 struct isa_reg_property *reg;
759 unsigned long phys_size, addr_size, io_base;
761 u32 *interrupts, *clk, *spd;
763 int index, rlen, rentsize;
765 /* Ok, first check if it's under an "isa" parent */
766 isa = of_get_parent(np);
767 if (!isa || strcmp(isa->name, "isa")) {
768 DBG("%s: no isa parent found\n", np->full_name);
772 /* Now look for an "ibm,aix-loc" property that gives us ordering
775 typep = (char *)get_property(np, "ibm,aix-loc", NULL);
777 /* Get the ISA port number */
778 reg = (struct isa_reg_property *)get_property(np, "reg", NULL);
781 /* We assume the interrupt number isn't translated ... */
782 interrupts = (u32 *)get_property(np, "interrupts", NULL);
783 /* get clock freq. if present */
784 clk = (u32 *)get_property(np, "clock-frequency", NULL);
785 /* get default speed if present */
786 spd = (u32 *)get_property(np, "current-speed", NULL);
787 /* Default to locate at end of array */
788 index = old_serial_count; /* end of the array by default */
790 /* If we have a location index, then use it */
791 if (typep && *typep == 'S') {
792 index = simple_strtol(typep+1, NULL, 0) - 1;
793 /* if index is out of range, use end of array instead */
794 if (index >= MAX_LEGACY_SERIAL_PORTS)
795 index = old_serial_count;
796 /* if our index is still out of range, that mean that
797 * array is full, we could scan for a free slot but that
798 * make little sense to bother, just skip the port
800 if (index >= MAX_LEGACY_SERIAL_PORTS)
802 if (index >= old_serial_count)
803 old_serial_count = index + 1;
804 /* Check if there is a port who already claimed our slot */
805 if (serial_ports[index].iobase != 0) {
806 /* if we still have some room, move it, else override */
807 if (old_serial_count < MAX_LEGACY_SERIAL_PORTS) {
808 DBG("Moved legacy port %d -> %d\n", index,
810 serial_ports[old_serial_count++] =
813 DBG("Replacing legacy port %d\n", index);
817 if (index >= MAX_LEGACY_SERIAL_PORTS)
819 if (index >= old_serial_count)
820 old_serial_count = index + 1;
822 /* Now fill the entry */
823 memset(&serial_ports[index], 0, sizeof(struct plat_serial8250_port));
824 serial_ports[index].uartclk = clk ? *clk : BASE_BAUD * 16;
825 serial_ports[index].iobase = reg->address;
826 serial_ports[index].irq = interrupts ? interrupts[0] : 0;
827 serial_ports[index].flags = ASYNC_BOOT_AUTOCONF;
829 DBG("Added legacy port, index: %d, port: %x, irq: %d, clk: %d\n",
831 serial_ports[index].iobase,
832 serial_ports[index].irq,
833 serial_ports[index].uartclk);
835 /* Get phys address of IO reg for port 1 */
839 pci = of_get_parent(isa);
841 DBG("%s: no pci parent found\n", np->full_name);
845 rangesp = (u32 *)get_property(pci, "ranges", &rlen);
846 if (rangesp == NULL) {
852 /* we need the #size-cells of the PCI bridge node itself */
854 sizeprop = (u32 *)get_property(pci, "#size-cells", NULL);
855 if (sizeprop != NULL)
856 phys_size = *sizeprop;
857 /* we need the parent #addr-cells */
858 addr_size = prom_n_addr_cells(pci);
859 rentsize = 3 + addr_size + phys_size;
861 for (;rlen >= rentsize; rlen -= rentsize,rangesp += rentsize) {
862 if (((rangesp[0] >> 24) & 0x3) != 1)
863 continue; /* not IO space */
864 io_base = rangesp[3];
866 io_base = (io_base << 32) | rangesp[4];
869 *physport = io_base + reg->address;
870 if (default_speed && spd)
871 *default_speed = *spd;
878 DBG(" <- generic_find_legacy_serial_port()\n");
881 static struct platform_device serial_device = {
882 .name = "serial8250",
883 .id = PLAT8250_DEV_PLATFORM,
885 .platform_data = serial_ports,
889 static int __init serial_dev_init(void)
891 return platform_device_register(&serial_device);
893 arch_initcall(serial_dev_init);
895 #endif /* CONFIG_PPC_ISERIES */
897 int check_legacy_ioport(unsigned long base_port)
899 if (ppc_md.check_legacy_ioport == NULL)
901 return ppc_md.check_legacy_ioport(base_port);
903 EXPORT_SYMBOL(check_legacy_ioport);
906 static int __init early_xmon(char *p)
908 /* ensure xmon is enabled */
910 if (strncmp(p, "on", 2) == 0)
912 if (strncmp(p, "off", 3) == 0)
914 if (strncmp(p, "early", 5) != 0)
922 early_param("xmon", early_xmon);