2 * arch/ppc/platforms/setup.c
5 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
7 * Adapted for Power Macintosh by Paul Mackerras
8 * Copyright (C) 1996 Paul Mackerras (paulus@cs.anu.edu.au)
10 * Derived from "arch/alpha/kernel/setup.c"
11 * Copyright (C) 1995 Linus Torvalds
13 * Maintained by Benjamin Herrenschmidt (benh@kernel.crashing.org)
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
23 * bootup setup stuff..
28 #include <linux/config.h>
29 #include <linux/init.h>
30 #include <linux/errno.h>
31 #include <linux/sched.h>
32 #include <linux/kernel.h>
34 #include <linux/stddef.h>
35 #include <linux/unistd.h>
36 #include <linux/ptrace.h>
37 #include <linux/slab.h>
38 #include <linux/user.h>
39 #include <linux/a.out.h>
40 #include <linux/tty.h>
41 #include <linux/string.h>
42 #include <linux/delay.h>
43 #include <linux/ioport.h>
44 #include <linux/major.h>
45 #include <linux/initrd.h>
46 #include <linux/vt_kern.h>
47 #include <linux/console.h>
48 #include <linux/ide.h>
49 #include <linux/pci.h>
50 #include <linux/adb.h>
51 #include <linux/cuda.h>
52 #include <linux/pmu.h>
53 #include <linux/irq.h>
54 #include <linux/seq_file.h>
55 #include <linux/root_dev.h>
56 #include <linux/bitops.h>
58 #include <asm/processor.h>
59 #include <asm/sections.h>
61 #include <asm/system.h>
63 #include <asm/pci-bridge.h>
64 #include <asm/iommu.h>
65 #include <asm/machdep.h>
67 #include <asm/btext.h>
68 #include <asm/cputable.h>
69 #include <asm/pmac_feature.h>
71 #include <asm/of_device.h>
79 #define DBG(fmt...) udbg_printf(fmt)
84 static int current_root_goodness
= -1;
85 #define DEFAULT_ROOT_DEVICE Root_SDA1 /* sda1 - slightly silly choice */
87 extern int powersave_nap
;
90 sys_ctrler_t sys_ctrler
;
91 EXPORT_SYMBOL(sys_ctrler
);
93 #ifdef CONFIG_PMAC_SMU
94 unsigned long smu_cmdbuf_abs
;
95 EXPORT_SYMBOL(smu_cmdbuf_abs
);
98 extern void udbg_init_scc(struct device_node
*np
);
100 static void __pmac
pmac_show_cpuinfo(struct seq_file
*m
)
102 struct device_node
*np
;
106 int mbmodel
= pmac_call_feature(PMAC_FTR_GET_MB_INFO
, NULL
,
107 PMAC_MB_INFO_MODEL
, 0);
108 unsigned int mbflags
= pmac_call_feature(PMAC_FTR_GET_MB_INFO
, NULL
,
109 PMAC_MB_INFO_FLAGS
, 0);
111 if (pmac_call_feature(PMAC_FTR_GET_MB_INFO
, NULL
, PMAC_MB_INFO_NAME
,
115 /* find motherboard type */
116 seq_printf(m
, "machine\t\t: ");
117 np
= find_devices("device-tree");
119 pp
= (char *) get_property(np
, "model", NULL
);
121 seq_printf(m
, "%s\n", pp
);
123 seq_printf(m
, "PowerMac\n");
124 pp
= (char *) get_property(np
, "compatible", &plen
);
126 seq_printf(m
, "motherboard\t:");
128 int l
= strlen(pp
) + 1;
129 seq_printf(m
, " %s", pp
);
136 seq_printf(m
, "PowerMac\n");
138 /* print parsed model */
139 seq_printf(m
, "detected as\t: %d (%s)\n", mbmodel
, mbname
);
140 seq_printf(m
, "pmac flags\t: %08x\n", mbflags
);
142 /* Indicate newworld */
143 seq_printf(m
, "pmac-generation\t: NewWorld\n");
147 static void __init
pmac_setup_arch(void)
149 /* init to some ~sane value until calibrate_delay() runs */
150 loops_per_jiffy
= 50000000;
152 /* Probe motherboard chipset */
155 /* Lock-enable the SCC channel used for debug */
157 np
= of_find_node_by_name(NULL
, "escc");
159 pmac_call_feature(PMAC_FTR_SCC_ENABLE
, np
,
160 PMAC_SCC_ASYNC
| PMAC_SCC_FLAG_XMON
, 1);
166 #ifdef CONFIG_ADB_PMU
167 /* Initialize the PMU if any */
170 #ifdef CONFIG_PMAC_SMU
171 /* Initialize the SMU if any */
175 /* Init NVRAM access */
178 /* Setup SMP callback */
183 /* Lookup PCI hosts */
186 #ifdef CONFIG_DUMMY_CONSOLE
187 conswitchp
= &dummy_con
;
190 printk(KERN_INFO
"Using native/NAP idle loop\n");
194 void note_scsi_host(struct device_node
*node
, void *host
)
201 static int initializing
= 1;
203 static int pmac_late_init(void)
209 late_initcall(pmac_late_init
);
211 /* can't be __init - can be called whenever a disk is first accessed */
212 void __pmac
note_bootable_part(dev_t dev
, int part
, int goodness
)
214 extern dev_t boot_dev
;
219 if ((goodness
<= current_root_goodness
) &&
220 ROOT_DEV
!= DEFAULT_ROOT_DEVICE
)
222 p
= strstr(saved_command_line
, "root=");
223 if (p
!= NULL
&& (p
== saved_command_line
|| p
[-1] == ' '))
226 if (!boot_dev
|| dev
== boot_dev
) {
227 ROOT_DEV
= dev
+ part
;
229 current_root_goodness
= goodness
;
233 static void __pmac
pmac_restart(char *cmd
)
236 #ifdef CONFIG_ADB_PMU
242 #ifdef CONFIG_PMAC_SMU
252 static void __pmac
pmac_power_off(void)
255 #ifdef CONFIG_ADB_PMU
260 #ifdef CONFIG_PMAC_SMU
270 static void __pmac
pmac_halt(void)
275 #ifdef CONFIG_BOOTX_TEXT
276 static int dummy_getc_poll(void)
281 static unsigned char dummy_getc(void)
286 static void btext_putc(unsigned char c
)
291 static void __init
init_boot_display(void)
294 struct device_node
*np
= NULL
;
297 printk("trying to initialize btext ...\n");
299 name
= (char *)get_property(of_chosen
, "linux,stdout-path", NULL
);
301 np
= of_find_node_by_path(name
);
303 if (strcmp(np
->type
, "display") != 0) {
304 printk("boot stdout isn't a display !\n");
311 rc
= btext_initialize(np
);
315 for (np
= NULL
; (np
= of_find_node_by_type(np
, "display"));) {
316 if (get_property(np
, "linux,opened", NULL
)) {
317 printk("trying %s ...\n", np
->full_name
);
318 rc
= btext_initialize(np
);
319 printk("result: %d\n", rc
);
325 #endif /* CONFIG_BOOTX_TEXT */
328 * Early initialization.
330 static void __init
pmac_init_early(void)
332 DBG(" -> pmac_init_early\n");
334 /* Initialize hash table, from now on, we can take hash faults
340 if (strstr(cmd_line
, "sccdbg")) {
346 #ifdef CONFIG_BOOTX_TEXT
349 ppc_md
.udbg_putc
= btext_putc
;
350 ppc_md
.udbg_getc
= dummy_getc
;
351 ppc_md
.udbg_getc_poll
= dummy_getc_poll
;
352 #endif /* CONFIG_BOOTX_TEXT */
355 /* Setup interrupt mapping options */
356 ppc64_interrupt_controller
= IC_OPEN_PIC
;
358 iommu_init_early_u3();
360 DBG(" <- pmac_init_early\n");
363 static int pmac_u3_cascade(struct pt_regs
*regs
, void *data
)
365 return mpic_get_one_irq((struct mpic
*)data
, regs
);
368 static __init
void pmac_init_IRQ(void)
370 struct device_node
*irqctrler
= NULL
;
371 struct device_node
*irqctrler2
= NULL
;
372 struct device_node
*np
= NULL
;
373 struct mpic
*mpic1
, *mpic2
;
375 /* We first try to detect Apple's new Core99 chipset, since mac-io
376 * is quite different on those machines and contains an IBM MPIC2.
378 while ((np
= of_find_node_by_type(np
, "open-pic")) != NULL
) {
379 struct device_node
*parent
= of_get_parent(np
);
380 if (parent
&& !strcmp(parent
->name
, "u3"))
381 irqctrler2
= of_node_get(np
);
383 irqctrler
= of_node_get(np
);
386 if (irqctrler
!= NULL
&& irqctrler
->n_addrs
> 0) {
387 unsigned char senses
[128];
389 printk(KERN_INFO
"PowerMac using OpenPIC irq controller at 0x%08x\n",
390 (unsigned int)irqctrler
->addrs
[0].address
);
392 prom_get_irq_senses(senses
, 0, 128);
393 mpic1
= mpic_alloc(irqctrler
->addrs
[0].address
,
394 MPIC_PRIMARY
| MPIC_WANTS_RESET
,
395 0, 0, 128, 256, senses
, 128, " K2-MPIC ");
396 BUG_ON(mpic1
== NULL
);
399 if (irqctrler2
!= NULL
&& irqctrler2
->n_intrs
> 0 &&
400 irqctrler2
->n_addrs
> 0) {
401 printk(KERN_INFO
"Slave OpenPIC at 0x%08x hooked on IRQ %d\n",
402 (u32
)irqctrler2
->addrs
[0].address
,
403 irqctrler2
->intrs
[0].line
);
405 pmac_call_feature(PMAC_FTR_ENABLE_MPIC
, irqctrler2
, 0, 0);
406 prom_get_irq_senses(senses
, 128, 128 + 128);
408 /* We don't need to set MPIC_BROKEN_U3 here since we don't have
409 * hypertransport interrupts routed to it
411 mpic2
= mpic_alloc(irqctrler2
->addrs
[0].address
,
412 MPIC_BIG_ENDIAN
| MPIC_WANTS_RESET
,
413 0, 128, 128, 0, senses
, 128, " U3-MPIC ");
414 BUG_ON(mpic2
== NULL
);
416 mpic_setup_cascade(irqctrler2
->intrs
[0].line
,
417 pmac_u3_cascade
, mpic2
);
420 of_node_put(irqctrler
);
421 of_node_put(irqctrler2
);
424 static void __init
pmac_progress(char *s
, unsigned short hex
)
430 #ifdef CONFIG_BOOTX_TEXT
431 else if (boot_text_mapped
) {
433 btext_drawstring("\n");
435 #endif /* CONFIG_BOOTX_TEXT */
439 * pmac has no legacy IO, anything calling this function has to
440 * fail or bad things will happen
442 static int pmac_check_legacy_ioport(unsigned int baseport
)
447 static int __init
pmac_declare_of_platform_devices(void)
449 struct device_node
*np
;
451 np
= find_devices("u3");
453 for (np
= np
->child
; np
!= NULL
; np
= np
->sibling
)
454 if (strncmp(np
->name
, "i2c", 3) == 0) {
455 of_platform_device_create(np
, "u3-i2c");
463 device_initcall(pmac_declare_of_platform_devices
);
466 * Called very early, MMU is off, device-tree isn't unflattened
468 static int __init
pmac_probe(int platform
)
470 if (platform
!= PLATFORM_POWERMAC
)
473 * On U3, the DART (iommu) must be allocated now since it
474 * has an impact on htab_initialize (due to the large page it
475 * occupies having to be broken up so the DART itself is not
476 * part of the cacheable linar mapping
478 alloc_u3_dart_table();
480 #ifdef CONFIG_PMAC_SMU
482 * SMU based G5s need some memory below 2Gb, at least the current
483 * driver needs that. We have to allocate it now. We allocate 4k
484 * (1 small page) for now.
486 smu_cmdbuf_abs
= lmb_alloc_base(4096, 4096, 0x80000000UL
);
487 #endif /* CONFIG_PMAC_SMU */
492 struct machdep_calls __initdata pmac_md
= {
493 #ifdef CONFIG_HOTPLUG_CPU
494 .cpu_die
= generic_mach_cpu_die
,
497 .setup_arch
= pmac_setup_arch
,
498 .init_early
= pmac_init_early
,
499 .get_cpuinfo
= pmac_show_cpuinfo
,
500 .init_IRQ
= pmac_init_IRQ
,
501 .get_irq
= mpic_get_irq
,
502 .pcibios_fixup
= pmac_pcibios_fixup
,
503 .restart
= pmac_restart
,
504 .power_off
= pmac_power_off
,
506 .get_boot_time
= pmac_get_boot_time
,
507 .set_rtc_time
= pmac_set_rtc_time
,
508 .get_rtc_time
= pmac_get_rtc_time
,
509 .calibrate_decr
= pmac_calibrate_decr
,
510 .feature_call
= pmac_do_feature_call
,
511 .progress
= pmac_progress
,
512 .check_legacy_ioport
= pmac_check_legacy_ioport
,
513 .idle_loop
= native_idle
,