2 * MPC85xx DS Board Setup
4 * Author Xianghua Xiao (x.xiao@freescale.com)
5 * Roy Zang <tie-fei.zang@freescale.com>
6 * - Add PCI/PCI Exprees support
7 * Copyright 2007 Freescale Semiconductor Inc.
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
15 #include <linux/stddef.h>
16 #include <linux/kernel.h>
17 #include <linux/pci.h>
18 #include <linux/kdev_t.h>
19 #include <linux/delay.h>
20 #include <linux/seq_file.h>
21 #include <linux/interrupt.h>
22 #include <linux/of_platform.h>
24 #include <asm/system.h>
26 #include <asm/machdep.h>
27 #include <asm/pci-bridge.h>
28 #include <mm/mmu_decl.h>
32 #include <asm/i8259.h>
34 #include <sysdev/fsl_soc.h>
35 #include <sysdev/fsl_pci.h>
40 #define DBG(fmt, args...) printk(KERN_ERR "%s: " fmt, __func__, ## args)
42 #define DBG(fmt, args...)
45 #ifdef CONFIG_PPC_I8259
46 static void mpc85xx_8259_cascade(unsigned int irq, struct irq_desc *desc)
48 unsigned int cascade_irq = i8259_irq();
50 if (cascade_irq != NO_IRQ) {
51 generic_handle_irq(cascade_irq);
55 #endif /* CONFIG_PPC_I8259 */
57 void __init mpc85xx_ds_pic_init(void)
61 struct device_node *np = NULL;
62 #ifdef CONFIG_PPC_I8259
63 struct device_node *cascade_node = NULL;
67 np = of_find_node_by_type(np, "open-pic");
70 printk(KERN_ERR "Could not find open-pic node\n");
74 if (of_address_to_resource(np, 0, &r)) {
75 printk(KERN_ERR "Failed to map mpic register space\n");
80 mpic = mpic_alloc(np, r.start,
81 MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN,
87 #ifdef CONFIG_PPC_I8259
88 /* Initialize the i8259 controller */
89 for_each_node_by_type(np, "interrupt-controller")
90 if (of_device_is_compatible(np, "chrp,iic")) {
95 if (cascade_node == NULL) {
96 printk(KERN_DEBUG "Could not find i8259 PIC\n");
100 cascade_irq = irq_of_parse_and_map(cascade_node, 0);
101 if (cascade_irq == NO_IRQ) {
102 printk(KERN_ERR "Failed to map cascade interrupt\n");
106 DBG("mpc85xxds: cascade mapped to irq %d\n", cascade_irq);
108 i8259_init(cascade_node, 0);
109 of_node_put(cascade_node);
111 set_irq_chained_handler(cascade_irq, mpc85xx_8259_cascade);
112 #endif /* CONFIG_PPC_I8259 */
116 static int primary_phb_addr;
117 extern int uses_fsl_uli_m1575;
118 extern int uli_exclude_device(struct pci_controller *hose,
119 u_char bus, u_char devfn);
121 static int mpc85xx_exclude_device(struct pci_controller *hose,
122 u_char bus, u_char devfn)
124 struct device_node* node;
125 struct resource rsrc;
128 of_address_to_resource(node, 0, &rsrc);
130 if ((rsrc.start & 0xfffff) == primary_phb_addr) {
131 return uli_exclude_device(hose, bus, devfn);
134 return PCIBIOS_SUCCESSFUL;
136 #endif /* CONFIG_PCI */
139 * Setup the architecture
141 static void __init mpc85xx_ds_setup_arch(void)
144 struct device_node *np;
148 ppc_md.progress("mpc85xx_ds_setup_arch()", 0);
151 for_each_node_by_type(np, "pci") {
152 if (of_device_is_compatible(np, "fsl,mpc8540-pci") ||
153 of_device_is_compatible(np, "fsl,mpc8548-pcie")) {
154 struct resource rsrc;
155 of_address_to_resource(np, 0, &rsrc);
156 if ((rsrc.start & 0xfffff) == primary_phb_addr)
157 fsl_add_bridge(np, 1);
159 fsl_add_bridge(np, 0);
163 uses_fsl_uli_m1575 = 1;
164 ppc_md.pci_exclude_device = mpc85xx_exclude_device;
167 printk("MPC85xx DS board from Freescale Semiconductor\n");
171 * Called very early, device-tree isn't unflattened
173 static int __init mpc8544_ds_probe(void)
175 unsigned long root = of_get_flat_dt_root();
177 if (of_flat_dt_is_compatible(root, "MPC8544DS")) {
179 primary_phb_addr = 0xb000;
187 static struct of_device_id mpc85xxds_ids[] = {
189 { .compatible = "soc", },
193 static int __init mpc85xxds_publish_devices(void)
195 return of_platform_bus_probe(NULL, mpc85xxds_ids, NULL);
197 machine_device_initcall(mpc8544_ds, mpc85xxds_publish_devices);
200 * Called very early, device-tree isn't unflattened
202 static int __init mpc8572_ds_probe(void)
204 unsigned long root = of_get_flat_dt_root();
206 if (of_flat_dt_is_compatible(root, "fsl,MPC8572DS")) {
208 primary_phb_addr = 0x8000;
216 define_machine(mpc8544_ds) {
217 .name = "MPC8544 DS",
218 .probe = mpc8544_ds_probe,
219 .setup_arch = mpc85xx_ds_setup_arch,
220 .init_IRQ = mpc85xx_ds_pic_init,
222 .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
224 .get_irq = mpic_get_irq,
225 .restart = fsl_rstcr_restart,
226 .calibrate_decr = generic_calibrate_decr,
227 .progress = udbg_progress,
230 define_machine(mpc8572_ds) {
231 .name = "MPC8572 DS",
232 .probe = mpc8572_ds_probe,
233 .setup_arch = mpc85xx_ds_setup_arch,
234 .init_IRQ = mpc85xx_ds_pic_init,
236 .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
238 .get_irq = mpic_get_irq,
239 .restart = fsl_rstcr_restart,
240 .calibrate_decr = generic_calibrate_decr,
241 .progress = udbg_progress,