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>
25 #include <asm/machdep.h>
26 #include <asm/pci-bridge.h>
27 #include <mm/mmu_decl.h>
31 #include <asm/i8259.h>
32 #include <asm/swiotlb.h>
34 #include <sysdev/fsl_soc.h>
35 #include <sysdev/fsl_pci.h>
43 #define DBG(fmt, args...) printk(KERN_ERR "%s: " fmt, __func__, ## args)
45 #define DBG(fmt, args...)
48 #ifdef CONFIG_PPC_I8259
49 static void mpc85xx_8259_cascade(struct irq_desc
*desc
)
51 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
52 unsigned int cascade_irq
= i8259_irq();
54 if (cascade_irq
!= NO_IRQ
) {
55 generic_handle_irq(cascade_irq
);
57 chip
->irq_eoi(&desc
->irq_data
);
59 #endif /* CONFIG_PPC_I8259 */
61 void __init
mpc85xx_ds_pic_init(void)
64 #ifdef CONFIG_PPC_I8259
65 struct device_node
*np
;
66 struct device_node
*cascade_node
= NULL
;
69 unsigned long root
= of_get_flat_dt_root();
71 if (of_flat_dt_is_compatible(root
, "fsl,MPC8572DS-CAMP")) {
72 mpic
= mpic_alloc(NULL
, 0,
78 mpic
= mpic_alloc(NULL
, 0,
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 irq_set_chained_handler(cascade_irq
, mpc85xx_8259_cascade
);
112 #endif /* CONFIG_PPC_I8259 */
116 extern int uli_exclude_device(struct pci_controller
*hose
,
117 u_char bus
, u_char devfn
);
119 static struct device_node
*pci_with_uli
;
121 static int mpc85xx_exclude_device(struct pci_controller
*hose
,
122 u_char bus
, u_char devfn
)
124 if (hose
->dn
== pci_with_uli
)
125 return uli_exclude_device(hose
, bus
, devfn
);
127 return PCIBIOS_SUCCESSFUL
;
129 #endif /* CONFIG_PCI */
131 static void __init
mpc85xx_ds_uli_init(void)
134 struct device_node
*node
;
136 /* See if we have a ULI under the primary */
138 node
= of_find_node_by_name(NULL
, "uli1575");
139 while ((pci_with_uli
= of_get_parent(node
))) {
143 if (pci_with_uli
== fsl_pci_primary
) {
144 ppc_md
.pci_exclude_device
= mpc85xx_exclude_device
;
152 * Setup the architecture
154 static void __init
mpc85xx_ds_setup_arch(void)
157 ppc_md
.progress("mpc85xx_ds_setup_arch()", 0);
160 fsl_pci_assign_primary();
161 mpc85xx_ds_uli_init();
164 printk("MPC85xx DS board from Freescale Semiconductor\n");
168 * Called very early, device-tree isn't unflattened
170 static int __init
mpc8544_ds_probe(void)
172 unsigned long root
= of_get_flat_dt_root();
174 return !!of_flat_dt_is_compatible(root
, "MPC8544DS");
177 machine_arch_initcall(mpc8544_ds
, mpc85xx_common_publish_devices
);
178 machine_arch_initcall(mpc8572_ds
, mpc85xx_common_publish_devices
);
179 machine_arch_initcall(p2020_ds
, mpc85xx_common_publish_devices
);
181 machine_arch_initcall(mpc8544_ds
, swiotlb_setup_bus_notifier
);
182 machine_arch_initcall(mpc8572_ds
, swiotlb_setup_bus_notifier
);
183 machine_arch_initcall(p2020_ds
, swiotlb_setup_bus_notifier
);
186 * Called very early, device-tree isn't unflattened
188 static int __init
mpc8572_ds_probe(void)
190 unsigned long root
= of_get_flat_dt_root();
192 return !!of_flat_dt_is_compatible(root
, "fsl,MPC8572DS");
196 * Called very early, device-tree isn't unflattened
198 static int __init
p2020_ds_probe(void)
200 unsigned long root
= of_get_flat_dt_root();
202 return !!of_flat_dt_is_compatible(root
, "fsl,P2020DS");
205 define_machine(mpc8544_ds
) {
206 .name
= "MPC8544 DS",
207 .probe
= mpc8544_ds_probe
,
208 .setup_arch
= mpc85xx_ds_setup_arch
,
209 .init_IRQ
= mpc85xx_ds_pic_init
,
211 .pcibios_fixup_bus
= fsl_pcibios_fixup_bus
,
212 .pcibios_fixup_phb
= fsl_pcibios_fixup_phb
,
214 .get_irq
= mpic_get_irq
,
215 .restart
= fsl_rstcr_restart
,
216 .calibrate_decr
= generic_calibrate_decr
,
217 .progress
= udbg_progress
,
220 define_machine(mpc8572_ds
) {
221 .name
= "MPC8572 DS",
222 .probe
= mpc8572_ds_probe
,
223 .setup_arch
= mpc85xx_ds_setup_arch
,
224 .init_IRQ
= mpc85xx_ds_pic_init
,
226 .pcibios_fixup_bus
= fsl_pcibios_fixup_bus
,
227 .pcibios_fixup_phb
= fsl_pcibios_fixup_phb
,
229 .get_irq
= mpic_get_irq
,
230 .restart
= fsl_rstcr_restart
,
231 .calibrate_decr
= generic_calibrate_decr
,
232 .progress
= udbg_progress
,
235 define_machine(p2020_ds
) {
237 .probe
= p2020_ds_probe
,
238 .setup_arch
= mpc85xx_ds_setup_arch
,
239 .init_IRQ
= mpc85xx_ds_pic_init
,
241 .pcibios_fixup_bus
= fsl_pcibios_fixup_bus
,
242 .pcibios_fixup_phb
= fsl_pcibios_fixup_phb
,
244 .get_irq
= mpic_get_irq
,
245 .restart
= fsl_rstcr_restart
,
246 .calibrate_decr
= generic_calibrate_decr
,
247 .progress
= udbg_progress
,