[POWERPC] Generic OF platform driver for PCI host bridges.
[linux-2.6/x86.git] / arch / powerpc / platforms / cell / setup.c
blob7e18420166c44efa17d67381d373b7a6864599b3
1 /*
2 * linux/arch/powerpc/platforms/cell/cell_setup.c
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
8 * Modified by Cell Team, IBM Deutschland Entwicklung GmbH
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.
15 #undef DEBUG
17 #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>
31 #include <linux/mutex.h>
32 #include <linux/memory_hotplug.h>
33 #include <linux/notifier.h>
35 #include <asm/mmu.h>
36 #include <asm/processor.h>
37 #include <asm/io.h>
38 #include <asm/kexec.h>
39 #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>
49 #include <asm/ppc-pci.h>
50 #include <asm/irq.h>
51 #include <asm/spu.h>
52 #include <asm/spu_priv1.h>
53 #include <asm/udbg.h>
54 #include <asm/mpic.h>
55 #include <asm/of_platform.h>
57 #include "interrupt.h"
58 #include "iommu.h"
59 #include "cbe_regs.h"
60 #include "pervasive.h"
61 #include "ras.h"
63 #ifdef DEBUG
64 #define DBG(fmt...) udbg_printf(fmt)
65 #else
66 #define DBG(fmt...)
67 #endif
69 static void cell_show_cpuinfo(struct seq_file *m)
71 struct device_node *root;
72 const char *model = "";
74 root = of_find_node_by_path("/");
75 if (root)
76 model = get_property(root, "model", NULL);
77 seq_printf(m, "machine\t\t: CHRP %s\n", model);
78 of_node_put(root);
81 static void cell_progress(char *s, unsigned short hex)
83 printk("*** %04x : %s\n", hex, s ? s : "");
86 static int cell_of_bus_notify(struct notifier_block *nb, unsigned long action,
87 void *data)
89 struct device *dev = data;
91 if (action != BUS_NOTIFY_ADD_DEVICE)
92 return 0;
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.
98 dev->archdata.dma_ops = pci_dma_ops;
100 return 0;
103 static struct notifier_block cell_of_bus_notifier = {
104 .notifier_call = cell_of_bus_notify
108 static int __init cell_publish_devices(void)
110 if (!machine_is(cell))
111 return 0;
113 /* Register callbacks on OF platform device addition/removal
114 * to handle linking them to the right DMA operations
116 bus_register_notifier(&of_platform_bus_type, &cell_of_bus_notifier);
118 /* Publish OF platform devices for southbridge IOs */
119 of_platform_bus_probe(NULL, NULL, NULL);
121 return 0;
123 device_initcall(cell_publish_devices);
125 static void cell_mpic_cascade(unsigned int irq, struct irq_desc *desc)
127 struct mpic *mpic = desc->handler_data;
128 unsigned int virq;
130 virq = mpic_get_one_irq(mpic);
131 if (virq != NO_IRQ)
132 generic_handle_irq(virq);
133 desc->chip->eoi(irq);
136 static void __init mpic_init_IRQ(void)
138 struct device_node *dn;
139 struct mpic *mpic;
140 unsigned int virq;
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;
147 /* The MPIC driver will get everything it needs from the
148 * device-tree, just pass 0 to all arguments
150 mpic = mpic_alloc(dn, 0, 0, 0, 0, " MPIC ");
151 if (mpic == NULL)
152 continue;
153 mpic_init(mpic);
155 virq = irq_of_parse_and_map(dn, 0);
156 if (virq == NO_IRQ)
157 continue;
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);
167 static void __init cell_init_irq(void)
169 iic_init_IRQ();
170 spider_init_IRQ();
171 mpic_init_IRQ();
174 static void __init cell_setup_arch(void)
176 #ifdef CONFIG_SPU_BASE
177 spu_priv1_ops = &spu_priv1_mmio_ops;
178 #endif
180 cbe_regs_init();
182 #ifdef CONFIG_CBE_RAS
183 cbe_ras_init();
184 #endif
186 #ifdef CONFIG_SMP
187 smp_init_cell();
188 #endif
189 /* init to some ~sane value until calibrate_delay() runs */
190 loops_per_jiffy = 50000000;
192 if (ROOT_DEV == 0) {
193 printk("No ramdisk, default root is /dev/hda2\n");
194 ROOT_DEV = Root_HDA2;
197 /* Find and initialize PCI host bridges */
198 init_pci_config_tokens();
199 find_and_init_phbs();
200 cbe_pervasive_init();
201 #ifdef CONFIG_DUMMY_CONSOLE
202 conswitchp = &dummy_con;
203 #endif
205 mmio_nvram_init();
209 * Early initialization. Relocation is on but do not reference unbolted pages
211 static void __init cell_init_early(void)
213 DBG(" -> cell_init_early()\n");
215 cell_init_iommu();
217 DBG(" <- cell_init_early()\n");
221 static int __init cell_probe(void)
223 unsigned long root = of_get_flat_dt_root();
225 if (!of_flat_dt_is_compatible(root, "IBM,CBEA") &&
226 !of_flat_dt_is_compatible(root, "IBM,CPBW-1.0"))
227 return 0;
229 hpte_init_native();
231 return 1;
235 * Cell has no legacy IO; anything calling this function has to
236 * fail or bad things will happen
238 static int cell_check_legacy_ioport(unsigned int baseport)
240 return -ENODEV;
243 define_machine(cell) {
244 .name = "Cell",
245 .probe = cell_probe,
246 .setup_arch = cell_setup_arch,
247 .init_early = cell_init_early,
248 .show_cpuinfo = cell_show_cpuinfo,
249 .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,
256 .check_legacy_ioport = cell_check_legacy_ioport,
257 .progress = cell_progress,
258 .init_IRQ = cell_init_irq,
259 .pci_setup_phb = rtas_setup_phb,
260 #ifdef CONFIG_KEXEC
261 .machine_kexec = default_machine_kexec,
262 .machine_kexec_prepare = default_machine_kexec_prepare,
263 .machine_crash_shutdown = default_machine_crash_shutdown,
264 #endif