blob: b39753f16d482db58899e8ace9eb8ff41c2a78f1 [file] [log] [blame]
Arnd Bergmannfef1c772005-06-23 09:43:37 +10001/*
Arnd Bergmannf3f66f52005-10-31 20:08:37 -05002 * linux/arch/powerpc/platforms/cell/cell_setup.c
Arnd Bergmannfef1c772005-06-23 09:43:37 +10003 *
4 * Copyright (C) 1995 Linus Torvalds
5 * Adapted from 'alpha' version by Gary Thomas
6 * Modified by Cort Dougan (cort@cs.nmt.edu)
7 * Modified by PPC64 Team, IBM Corp
Arnd Bergmannf3f66f52005-10-31 20:08:37 -05008 * Modified by Cell Team, IBM Deutschland Entwicklung GmbH
Arnd Bergmannfef1c772005-06-23 09:43:37 +10009 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15#undef DEBUG
16
Arnd Bergmannfef1c772005-06-23 09:43:37 +100017#include <linux/sched.h>
18#include <linux/kernel.h>
19#include <linux/mm.h>
20#include <linux/stddef.h>
21#include <linux/unistd.h>
22#include <linux/slab.h>
23#include <linux/user.h>
24#include <linux/reboot.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/irq.h>
28#include <linux/seq_file.h>
29#include <linux/root_dev.h>
30#include <linux/console.h>
Joel H Schoppbed120c2006-05-01 12:16:11 -070031#include <linux/mutex.h>
32#include <linux/memory_hotplug.h>
Benjamin Herrenschmidt86810872006-11-11 17:25:04 +110033#include <linux/notifier.h>
Arnd Bergmannfef1c772005-06-23 09:43:37 +100034
35#include <asm/mmu.h>
36#include <asm/processor.h>
37#include <asm/io.h>
Michael Ellerman3d1229d2005-11-14 23:35:00 +110038#include <asm/kexec.h>
Arnd Bergmannfef1c772005-06-23 09:43:37 +100039#include <asm/pgtable.h>
40#include <asm/prom.h>
41#include <asm/rtas.h>
42#include <asm/pci-bridge.h>
43#include <asm/iommu.h>
44#include <asm/dma.h>
45#include <asm/machdep.h>
46#include <asm/time.h>
47#include <asm/nvram.h>
48#include <asm/cputable.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100049#include <asm/ppc-pci.h>
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100050#include <asm/irq.h>
Joel H Schoppbed120c2006-05-01 12:16:11 -070051#include <asm/spu.h>
Geoff Levand540270d2006-06-19 20:33:29 +020052#include <asm/spu_priv1.h>
Dave Jones609c9992006-06-29 16:52:53 -040053#include <asm/udbg.h>
Benjamin Herrenschmidt21fb5a12006-11-11 17:24:58 +110054#include <asm/mpic.h>
Benjamin Herrenschmidt96289b02006-11-11 17:25:00 +110055#include <asm/of_platform.h>
Arnd Bergmannfef1c772005-06-23 09:43:37 +100056
Arnd Bergmannf3f66f52005-10-31 20:08:37 -050057#include "interrupt.h"
58#include "iommu.h"
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +020059#include "cbe_regs.h"
Arnd Bergmannc902be72006-01-04 19:55:53 +000060#include "pervasive.h"
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +020061#include "ras.h"
Arnd Bergmannfef1c772005-06-23 09:43:37 +100062
63#ifdef DEBUG
64#define DBG(fmt...) udbg_printf(fmt)
65#else
66#define DBG(fmt...)
67#endif
68
Arnd Bergmann8fce10a2006-01-11 23:07:11 +000069static void cell_show_cpuinfo(struct seq_file *m)
Arnd Bergmannfef1c772005-06-23 09:43:37 +100070{
71 struct device_node *root;
72 const char *model = "";
73
74 root = of_find_node_by_path("/");
75 if (root)
76 model = get_property(root, "model", NULL);
Arnd Bergmannf3f66f52005-10-31 20:08:37 -050077 seq_printf(m, "machine\t\t: CHRP %s\n", model);
Arnd Bergmannfef1c772005-06-23 09:43:37 +100078 of_node_put(root);
79}
80
Arnd Bergmannf3f66f52005-10-31 20:08:37 -050081static void cell_progress(char *s, unsigned short hex)
Arnd Bergmannfef1c772005-06-23 09:43:37 +100082{
83 printk("*** %04x : %s\n", hex, s ? s : "");
84}
85
Benjamin Herrenschmidt86810872006-11-11 17:25:04 +110086static int cell_of_bus_notify(struct notifier_block *nb, unsigned long action,
87 void *data)
88{
89 struct device *dev = data;
90
91 if (action != BUS_NOTIFY_ADD_DEVICE)
92 return 0;
93
94 /* For now, we just use the PCI DMA ops for everything, though
95 * we'll need something better when we have a real iommu
96 * implementation.
97 */
98 dev->archdata.dma_ops = pci_dma_ops;
99
100 return 0;
101}
102
103static struct notifier_block cell_of_bus_notifier = {
104 .notifier_call = cell_of_bus_notify
105};
106
107
Benjamin Herrenschmidt96289b02006-11-11 17:25:00 +1100108static int __init cell_publish_devices(void)
109{
Benjamin Herrenschmidt86810872006-11-11 17:25:04 +1100110 if (!machine_is(cell))
111 return 0;
112
113 /* Register callbacks on OF platform device addition/removal
114 * to handle linking them to the right DMA operations
115 */
116 bus_register_notifier(&of_platform_bus_type, &cell_of_bus_notifier);
117
118 /* Publish OF platform devices for southbridge IOs */
119 of_platform_bus_probe(NULL, NULL, NULL);
120
Benjamin Herrenschmidt96289b02006-11-11 17:25:00 +1100121 return 0;
122}
123device_initcall(cell_publish_devices);
124
Benjamin Herrenschmidt21fb5a12006-11-11 17:24:58 +1100125static void cell_mpic_cascade(unsigned int irq, struct irq_desc *desc)
126{
127 struct mpic *mpic = desc->handler_data;
128 unsigned int virq;
129
130 virq = mpic_get_one_irq(mpic);
131 if (virq != NO_IRQ)
132 generic_handle_irq(virq);
133 desc->chip->eoi(irq);
134}
135
136static void __init mpic_init_IRQ(void)
137{
138 struct device_node *dn;
139 struct mpic *mpic;
140 unsigned int virq;
141
142 for (dn = NULL;
143 (dn = of_find_node_by_name(dn, "interrupt-controller"));) {
144 if (!device_is_compatible(dn, "CBEA,platform-open-pic"))
145 continue;
146
147 /* The MPIC driver will get everything it needs from the
148 * device-tree, just pass 0 to all arguments
149 */
150 mpic = mpic_alloc(dn, 0, 0, 0, 0, " MPIC ");
151 if (mpic == NULL)
152 continue;
153 mpic_init(mpic);
154
155 virq = irq_of_parse_and_map(dn, 0);
156 if (virq == NO_IRQ)
157 continue;
158
159 printk(KERN_INFO "%s : hooking up to IRQ %d\n",
160 dn->full_name, virq);
161 set_irq_data(virq, mpic);
162 set_irq_chained_handler(virq, cell_mpic_cascade);
163 }
164}
165
166
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000167static void __init cell_init_irq(void)
168{
169 iic_init_IRQ();
170 spider_init_IRQ();
Benjamin Herrenschmidt21fb5a12006-11-11 17:24:58 +1100171 mpic_init_IRQ();
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000172}
173
Arnd Bergmannf3f66f52005-10-31 20:08:37 -0500174static void __init cell_setup_arch(void)
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000175{
Geoff Levand540270d2006-06-19 20:33:29 +0200176#ifdef CONFIG_SPU_BASE
177 spu_priv1_ops = &spu_priv1_mmio_ops;
178#endif
Arnd Bergmanncebf5892005-06-23 09:43:43 +1000179
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +0200180 cbe_regs_init();
181
182#ifdef CONFIG_CBE_RAS
183 cbe_ras_init();
184#endif
185
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000186#ifdef CONFIG_SMP
Arnd Bergmannf3f66f52005-10-31 20:08:37 -0500187 smp_init_cell();
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000188#endif
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000189 /* init to some ~sane value until calibrate_delay() runs */
190 loops_per_jiffy = 50000000;
191
192 if (ROOT_DEV == 0) {
193 printk("No ramdisk, default root is /dev/hda2\n");
194 ROOT_DEV = Root_HDA2;
195 }
196
197 /* Find and initialize PCI host bridges */
198 init_pci_config_tokens();
199 find_and_init_phbs();
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +0200200 cbe_pervasive_init();
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000201#ifdef CONFIG_DUMMY_CONSOLE
202 conswitchp = &dummy_con;
203#endif
204
Arnd Bergmannf3f66f52005-10-31 20:08:37 -0500205 mmio_nvram_init();
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000206}
207
208/*
209 * Early initialization. Relocation is on but do not reference unbolted pages
210 */
Arnd Bergmannf3f66f52005-10-31 20:08:37 -0500211static void __init cell_init_early(void)
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000212{
Arnd Bergmannf3f66f52005-10-31 20:08:37 -0500213 DBG(" -> cell_init_early()\n");
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000214
Arnd Bergmannf3f66f52005-10-31 20:08:37 -0500215 cell_init_iommu();
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000216
Arnd Bergmannf3f66f52005-10-31 20:08:37 -0500217 DBG(" <- cell_init_early()\n");
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000218}
219
220
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100221static int __init cell_probe(void)
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000222{
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100223 unsigned long root = of_get_flat_dt_root();
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000224
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000225 if (!of_flat_dt_is_compatible(root, "IBM,CBEA") &&
226 !of_flat_dt_is_compatible(root, "IBM,CPBW-1.0"))
227 return 0;
Arnd Bergmann133dda12006-06-07 12:04:18 +1000228
Michael Ellerman7d0daae2006-06-23 18:16:38 +1000229 hpte_init_native();
230
231 return 1;
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000232}
233
David Woodhoused52771f2005-12-09 19:04:21 +0100234/*
235 * Cell has no legacy IO; anything calling this function has to
236 * fail or bad things will happen
237 */
238static int cell_check_legacy_ioport(unsigned int baseport)
239{
240 return -ENODEV;
241}
242
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100243define_machine(cell) {
244 .name = "Cell",
Arnd Bergmannf3f66f52005-10-31 20:08:37 -0500245 .probe = cell_probe,
246 .setup_arch = cell_setup_arch,
247 .init_early = cell_init_early,
248 .show_cpuinfo = cell_show_cpuinfo,
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000249 .restart = rtas_restart,
250 .power_off = rtas_power_off,
251 .halt = rtas_halt,
252 .get_boot_time = rtas_get_boot_time,
253 .get_rtc_time = rtas_get_rtc_time,
254 .set_rtc_time = rtas_set_rtc_time,
255 .calibrate_decr = generic_calibrate_decr,
David Woodhoused52771f2005-12-09 19:04:21 +0100256 .check_legacy_ioport = cell_check_legacy_ioport,
Arnd Bergmannf3f66f52005-10-31 20:08:37 -0500257 .progress = cell_progress,
Benjamin Herrenschmidtb9e5b4e2006-07-03 19:32:51 +1000258 .init_IRQ = cell_init_irq,
Michael Ellerman3d1229d2005-11-14 23:35:00 +1100259#ifdef CONFIG_KEXEC
260 .machine_kexec = default_machine_kexec,
261 .machine_kexec_prepare = default_machine_kexec_prepare,
Michael Ellermancc532912005-12-04 18:39:43 +1100262 .machine_crash_shutdown = default_machine_crash_shutdown,
Michael Ellerman3d1229d2005-11-14 23:35:00 +1100263#endif
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000264};