blob: 144177d77cf1075bf590afb8492141d932f59200 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Paul Mackerras0cb7b2a2005-10-29 22:07:56 +10002 * Maple (970 eval board) setup code
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * (c) Copyright 2004 Benjamin Herrenschmidt (benh@kernel.crashing.org),
5 * 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
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +100014#undef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/init.h>
17#include <linux/errno.h>
18#include <linux/sched.h>
19#include <linux/kernel.h>
20#include <linux/mm.h>
21#include <linux/stddef.h>
22#include <linux/unistd.h>
23#include <linux/ptrace.h>
24#include <linux/slab.h>
25#include <linux/user.h>
26#include <linux/a.out.h>
27#include <linux/tty.h>
28#include <linux/string.h>
29#include <linux/delay.h>
30#include <linux/ioport.h>
31#include <linux/major.h>
32#include <linux/initrd.h>
33#include <linux/vt_kern.h>
34#include <linux/console.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/pci.h>
36#include <linux/adb.h>
37#include <linux/cuda.h>
38#include <linux/pmu.h>
39#include <linux/irq.h>
40#include <linux/seq_file.h>
41#include <linux/root_dev.h>
42#include <linux/serial.h>
43#include <linux/smp.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070044#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <asm/processor.h>
47#include <asm/sections.h>
48#include <asm/prom.h>
49#include <asm/system.h>
50#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/io.h>
Michael Ellerman3d1229d2005-11-14 23:35:00 +110052#include <asm/kexec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/pci-bridge.h>
54#include <asm/iommu.h>
55#include <asm/machdep.h>
56#include <asm/dma.h>
57#include <asm/cputable.h>
58#include <asm/time.h>
59#include <asm/of_device.h>
60#include <asm/lmb.h>
Stephen Rothwellbbeb3f42005-09-27 13:51:59 +100061#include <asm/mpic.h>
Nathan Lynch9e254c42006-12-06 18:50:46 -060062#include <asm/rtas.h>
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100063#include <asm/udbg.h>
Nathan Lynch4297c982007-02-05 20:01:15 -060064#include <asm/nvram.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Paul Mackerras0cb7b2a2005-10-29 22:07:56 +100066#include "maple.h"
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#ifdef DEBUG
69#define DBG(fmt...) udbg_printf(fmt)
70#else
71#define DBG(fmt...)
72#endif
73
Benjamin Herrenschmidt4c882b02006-01-14 16:35:35 +110074static unsigned long maple_find_nvram_base(void)
75{
76 struct device_node *rtcs;
77 unsigned long result = 0;
78
79 /* find NVRAM device */
80 rtcs = of_find_compatible_node(NULL, "nvram", "AMD8111");
81 if (rtcs) {
82 struct resource r;
83 if (of_address_to_resource(rtcs, 0, &r)) {
84 printk(KERN_EMERG "Maple: Unable to translate NVRAM"
85 " address\n");
86 goto bail;
87 }
88 if (!(r.flags & IORESOURCE_IO)) {
89 printk(KERN_EMERG "Maple: NVRAM address isn't PIO!\n");
90 goto bail;
91 }
92 result = r.start;
93 } else
94 printk(KERN_EMERG "Maple: Unable to find NVRAM\n");
95 bail:
96 of_node_put(rtcs);
97 return result;
98}
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static void maple_restart(char *cmd)
101{
David Gibsond7152fe2005-06-23 17:14:39 +1000102 unsigned int maple_nvram_base;
Jeremy Kerreeb2b722006-07-12 15:40:17 +1000103 const unsigned int *maple_nvram_offset, *maple_nvram_command;
Benjamin Herrenschmidt4c882b02006-01-14 16:35:35 +1100104 struct device_node *sp;
David Gibsond7152fe2005-06-23 17:14:39 +1000105
Benjamin Herrenschmidt4c882b02006-01-14 16:35:35 +1100106 maple_nvram_base = maple_find_nvram_base();
107 if (maple_nvram_base == 0)
108 goto fail;
David Gibsond7152fe2005-06-23 17:14:39 +1000109
110 /* find service processor device */
Benjamin Herrenschmidt4c882b02006-01-14 16:35:35 +1100111 sp = of_find_node_by_name(NULL, "service-processor");
112 if (!sp) {
David Gibsond7152fe2005-06-23 17:14:39 +1000113 printk(KERN_EMERG "Maple: Unable to find Service Processor\n");
Benjamin Herrenschmidt4c882b02006-01-14 16:35:35 +1100114 goto fail;
David Gibsond7152fe2005-06-23 17:14:39 +1000115 }
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000116 maple_nvram_offset = of_get_property(sp, "restart-addr", NULL);
117 maple_nvram_command = of_get_property(sp, "restart-value", NULL);
Benjamin Herrenschmidt4c882b02006-01-14 16:35:35 +1100118 of_node_put(sp);
David Gibsond7152fe2005-06-23 17:14:39 +1000119
120 /* send command */
Jeremy Kerreeb2b722006-07-12 15:40:17 +1000121 outb_p(*maple_nvram_command, maple_nvram_base + *maple_nvram_offset);
David Gibsond7152fe2005-06-23 17:14:39 +1000122 for (;;) ;
Benjamin Herrenschmidt4c882b02006-01-14 16:35:35 +1100123 fail:
124 printk(KERN_EMERG "Maple: Manual Restart Required\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
127static void maple_power_off(void)
128{
David Gibsond7152fe2005-06-23 17:14:39 +1000129 unsigned int maple_nvram_base;
Jeremy Kerreeb2b722006-07-12 15:40:17 +1000130 const unsigned int *maple_nvram_offset, *maple_nvram_command;
Benjamin Herrenschmidt4c882b02006-01-14 16:35:35 +1100131 struct device_node *sp;
David Gibsond7152fe2005-06-23 17:14:39 +1000132
Benjamin Herrenschmidt4c882b02006-01-14 16:35:35 +1100133 maple_nvram_base = maple_find_nvram_base();
134 if (maple_nvram_base == 0)
135 goto fail;
David Gibsond7152fe2005-06-23 17:14:39 +1000136
137 /* find service processor device */
Benjamin Herrenschmidt4c882b02006-01-14 16:35:35 +1100138 sp = of_find_node_by_name(NULL, "service-processor");
139 if (!sp) {
David Gibsond7152fe2005-06-23 17:14:39 +1000140 printk(KERN_EMERG "Maple: Unable to find Service Processor\n");
Benjamin Herrenschmidt4c882b02006-01-14 16:35:35 +1100141 goto fail;
David Gibsond7152fe2005-06-23 17:14:39 +1000142 }
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000143 maple_nvram_offset = of_get_property(sp, "power-off-addr", NULL);
144 maple_nvram_command = of_get_property(sp, "power-off-value", NULL);
Benjamin Herrenschmidt4c882b02006-01-14 16:35:35 +1100145 of_node_put(sp);
David Gibsond7152fe2005-06-23 17:14:39 +1000146
147 /* send command */
Jeremy Kerreeb2b722006-07-12 15:40:17 +1000148 outb_p(*maple_nvram_command, maple_nvram_base + *maple_nvram_offset);
David Gibsond7152fe2005-06-23 17:14:39 +1000149 for (;;) ;
Benjamin Herrenschmidt4c882b02006-01-14 16:35:35 +1100150 fail:
151 printk(KERN_EMERG "Maple: Manual Power-Down Required\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
154static void maple_halt(void)
155{
David Gibsond7152fe2005-06-23 17:14:39 +1000156 maple_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159#ifdef CONFIG_SMP
160struct smp_ops_t maple_smp_ops = {
161 .probe = smp_mpic_probe,
162 .message_pass = smp_mpic_message_pass,
163 .kick_cpu = smp_generic_kick_cpu,
164 .setup_cpu = smp_mpic_setup_cpu,
165 .give_timebase = smp_generic_give_timebase,
166 .take_timebase = smp_generic_take_timebase,
167};
168#endif /* CONFIG_SMP */
169
Nathan Lynch9e254c42006-12-06 18:50:46 -0600170static void __init maple_use_rtas_reboot_and_halt_if_present(void)
171{
172 if (rtas_service_present("system-reboot") &&
173 rtas_service_present("power-off")) {
174 ppc_md.restart = rtas_restart;
175 ppc_md.power_off = rtas_power_off;
176 ppc_md.halt = rtas_halt;
177 }
178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180void __init maple_setup_arch(void)
181{
182 /* init to some ~sane value until calibrate_delay() runs */
183 loops_per_jiffy = 50000000;
184
185 /* Setup SMP callback */
186#ifdef CONFIG_SMP
187 smp_ops = &maple_smp_ops;
188#endif
189 /* Lookup PCI hosts */
190 maple_pci_init();
191
192#ifdef CONFIG_DUMMY_CONSOLE
193 conswitchp = &dummy_con;
194#endif
Nathan Lynch9e254c42006-12-06 18:50:46 -0600195 maple_use_rtas_reboot_and_halt_if_present();
Michael Ellerman62d60e92005-07-07 17:56:30 -0700196
Olof Johansson4baaf0c2006-04-12 15:23:22 -0500197 printk(KERN_DEBUG "Using native/NAP idle loop\n");
Nathan Lynch4297c982007-02-05 20:01:15 -0600198
199 mmio_nvram_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
202/*
203 * Early initialization.
204 */
205static void __init maple_init_early(void)
206{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 DBG(" -> maple_init_early\n");
208
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100209 iommu_init_early_dart();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 DBG(" <- maple_init_early\n");
212}
213
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000214/*
215 * This is almost identical to pSeries and CHRP. We need to make that
216 * code generic at one point, with appropriate bits in the device-tree to
217 * identify the presence of an HT APIC
218 */
219static void __init maple_init_IRQ(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000221 struct device_node *root, *np, *mpic_node = NULL;
Jeremy Kerreeb2b722006-07-12 15:40:17 +1000222 const unsigned int *opprop;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000223 unsigned long openpic_addr = 0;
224 int naddr, n, i, opplen, has_isus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 struct mpic *mpic;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000226 unsigned int flags = MPIC_PRIMARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000228 /* Locate MPIC in the device-tree. Note that there is a bug
229 * in Maple device-tree where the type of the controller is
230 * open-pic and not interrupt-controller
231 */
Segher Boessenkool96278d22006-07-08 02:37:20 +0200232
233 for_each_node_by_type(np, "interrupt-controller")
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000234 if (of_device_is_compatible(np, "open-pic")) {
Segher Boessenkool96278d22006-07-08 02:37:20 +0200235 mpic_node = np;
236 break;
237 }
238 if (mpic_node == NULL)
239 for_each_node_by_type(np, "open-pic") {
240 mpic_node = np;
241 break;
242 }
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000243 if (mpic_node == NULL) {
244 printk(KERN_ERR
245 "Failed to locate the MPIC interrupt controller\n");
246 return;
247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000249 /* Find address list in /platform-open-pic */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 root = of_find_node_by_path("/");
Stephen Rothwella8bda5d2007-04-03 10:56:50 +1000251 naddr = of_n_addr_cells(root);
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000252 opprop = of_get_property(root, "platform-open-pic", &opplen);
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000253 if (opprop != 0) {
254 openpic_addr = of_read_number(opprop, naddr);
255 has_isus = (opplen > naddr);
256 printk(KERN_DEBUG "OpenPIC addr: %lx, has ISUs: %d\n",
257 openpic_addr, has_isus);
258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000260 BUG_ON(openpic_addr == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000262 /* Check for a big endian MPIC */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000263 if (of_get_property(np, "big-endian", NULL) != NULL)
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000264 flags |= MPIC_BIG_ENDIAN;
265
266 /* XXX Maple specific bits */
Michael Ellerman6cfef5b2007-04-23 18:47:08 +1000267 flags |= MPIC_U3_HT_IRQS | MPIC_WANTS_RESET;
Segher Boessenkoold319a032006-07-08 02:37:23 +0200268 /* All U3/U4 are big-endian, older SLOF firmware doesn't encode this */
269 flags |= MPIC_BIG_ENDIAN;
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000270
271 /* Setup the openpic driver. More device-tree junks, we hard code no
272 * ISUs for now. I'll have to revisit some stuffs with the folks doing
273 * the firmware for those
274 */
275 mpic = mpic_alloc(mpic_node, openpic_addr, flags,
276 /*has_isus ? 16 :*/ 0, 0, " MPIC ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 BUG_ON(mpic == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Benjamin Herrenschmidt0ebfff12006-07-03 21:36:01 +1000279 /* Add ISUs */
280 opplen /= sizeof(u32);
281 for (n = 0, i = naddr; i < opplen; i += naddr, n++) {
282 unsigned long isuaddr = of_read_number(opprop + i, naddr);
283 mpic_assign_isu(mpic, n, isuaddr);
284 }
285
286 /* All ISUs are setup, complete initialization */
287 mpic_init(mpic);
288 ppc_md.get_irq = mpic_get_irq;
289 of_node_put(mpic_node);
290 of_node_put(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
293static void __init maple_progress(char *s, unsigned short hex)
294{
295 printk("*** %04x : %s\n", hex, s ? s : "");
296}
297
298
299/*
300 * Called very early, MMU is off, device-tree isn't unflattened
301 */
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100302static int __init maple_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100304 unsigned long root = of_get_flat_dt_root();
Benjamin Herrenschmidt980a6512006-07-03 17:22:05 +1000305
306 if (!of_flat_dt_is_compatible(root, "Momentum,Maple") &&
307 !of_flat_dt_is_compatible(root, "Momentum,Apache"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return 0;
309 /*
310 * On U3, the DART (iommu) must be allocated now since it
311 * has an impact on htab_initialize (due to the large page it
312 * occupies having to be broken up so the DART itself is not
313 * part of the cacheable linar mapping
314 */
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +1100315 alloc_dart_table();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000317 hpte_init_native();
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return 1;
320}
321
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100322define_machine(maple_md) {
323 .name = "Maple",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 .probe = maple_probe,
325 .setup_arch = maple_setup_arch,
326 .init_early = maple_init_early,
327 .init_IRQ = maple_init_IRQ,
Benjamin Herrenschmidtf90bb152006-11-11 17:24:51 +1100328 .pci_irq_fixup = maple_pci_irq_fixup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 .pci_get_legacy_ide_irq = maple_pci_get_legacy_ide_irq,
330 .restart = maple_restart,
331 .power_off = maple_power_off,
332 .halt = maple_halt,
333 .get_boot_time = maple_get_boot_time,
334 .set_rtc_time = maple_set_rtc_time,
335 .get_rtc_time = maple_get_rtc_time,
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000336 .calibrate_decr = generic_calibrate_decr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 .progress = maple_progress,
Paul Mackerrasa0652fc2006-03-27 15:03:03 +1100338 .power_save = power4_idle,
Michael Ellerman3d1229d2005-11-14 23:35:00 +1100339#ifdef CONFIG_KEXEC
340 .machine_kexec = default_machine_kexec,
341 .machine_kexec_prepare = default_machine_kexec_prepare,
Michael Ellermancc532912005-12-04 18:39:43 +1100342 .machine_crash_shutdown = default_machine_crash_shutdown,
Michael Ellerman3d1229d2005-11-14 23:35:00 +1100343#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344};