2 * Board setup routines for the storcenter
4 * Copyright 2007 (C) Oyvind Repvik (nail@nslu2-linux.org)
5 * Copyright 2007 Andy Wilcox, Jon Loeliger
7 * Based on linkstation.c by G. Liakhovetski
9 * This file is licensed under the terms of the GNU General Public License
10 * version 2. This program is licensed "as is" without any warranty of
11 * any kind, whether express or implied.
14 #include <linux/kernel.h>
15 #include <linux/pci.h>
16 #include <linux/initrd.h>
17 #include <linux/mtd/physmap.h>
18 #include <linux/of_platform.h>
20 #include <asm/system.h>
24 #include <asm/pci-bridge.h>
29 #ifdef CONFIG_MTD_PHYSMAP
30 static struct mtd_partition storcenter_physmap_partitions[] = {
55 static __initdata struct of_device_id storcenter_of_bus[] = {
60 static int __init storcenter_device_probe(void)
62 of_platform_bus_probe(NULL, storcenter_of_bus, NULL);
65 machine_device_initcall(storcenter, storcenter_device_probe);
68 static int __init storcenter_add_bridge(struct device_node *dev)
72 struct pci_controller *hose;
75 printk("Adding PCI host bridge %s\n", dev->full_name);
77 hose = pcibios_alloc_controller(dev);
81 bus_range = of_get_property(dev, "bus-range", &len);
82 hose->first_busno = bus_range ? bus_range[0] : 0;
83 hose->last_busno = bus_range ? bus_range[1] : 0xff;
85 setup_indirect_pci(hose, MPC10X_MAPB_CNFG_ADDR, MPC10X_MAPB_CNFG_DATA, 0);
87 /* Interpret the "ranges" property */
88 /* This also maps the I/O region and sets isa_io/mem_base */
89 pci_process_bridge_OF_ranges(hose, dev, 1);
95 static void __init storcenter_setup_arch(void)
97 struct device_node *np;
99 #ifdef CONFIG_MTD_PHYSMAP
100 physmap_set_partitions(storcenter_physmap_partitions,
101 ARRAY_SIZE(storcenter_physmap_partitions));
104 /* Lookup PCI host bridges */
105 for_each_compatible_node(np, "pci", "mpc10x-pci")
106 storcenter_add_bridge(np);
108 printk(KERN_INFO "IOMEGA StorCenter\n");
112 * Interrupt setup and service. Interrrupts on the turbostation come
113 * from the four PCI slots plus onboard 8241 devices: I2C, DUART.
115 static void __init storcenter_init_IRQ(void)
118 struct device_node *dnp;
123 dnp = of_find_node_by_type(NULL, "open-pic");
127 prop = of_get_property(dnp, "reg", &size);
133 paddr = (phys_addr_t)of_translate_address(dnp, prop);
134 mpic = mpic_alloc(dnp, paddr, MPIC_PRIMARY | MPIC_WANTS_RESET,
135 16, 32, " OpenPIC ");
139 BUG_ON(mpic == NULL);
142 * 16 Serial Interrupts followed by 16 Internal Interrupts.
143 * I2C is the second internal, so it is at 17, 0x11020.
145 mpic_assign_isu(mpic, 0, paddr + 0x10200);
146 mpic_assign_isu(mpic, 1, paddr + 0x11000);
151 static void storcenter_restart(char *cmd)
155 /* Set exception prefix high - to the firmware */
156 _nmask_and_or_msr(0, MSR_IP);
158 /* Wait for reset to happen */
162 static int __init storcenter_probe(void)
164 unsigned long root = of_get_flat_dt_root();
166 return of_flat_dt_is_compatible(root, "iomega,storcenter");
169 define_machine(storcenter){
170 .name = "IOMEGA StorCenter",
171 .probe = storcenter_probe,
172 .setup_arch = storcenter_setup_arch,
173 .init_IRQ = storcenter_init_IRQ,
174 .get_irq = mpic_get_irq,
175 .restart = storcenter_restart,
176 .calibrate_decr = generic_calibrate_decr,