2 * MPC86xx HPCN board specific routines
4 * Recode: ZHANG WEI <wei.zhang@freescale.com>
5 * Initial author: Xianghua Xiao <x.xiao@freescale.com>
7 * Copyright 2006 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/of_platform.h>
22 #include <linux/lmb.h>
24 #include <asm/system.h>
26 #include <asm/machdep.h>
27 #include <asm/pci-bridge.h>
29 #include <mm/mmu_decl.h>
31 #include <asm/swiotlb.h>
35 #include <sysdev/fsl_pci.h>
36 #include <sysdev/fsl_soc.h>
43 #define DBG(fmt...) do { printk(KERN_ERR fmt); } while(0)
45 #define DBG(fmt...) do { } while(0)
49 extern int uli_exclude_device(struct pci_controller
*hose
,
50 u_char bus
, u_char devfn
);
52 static int mpc86xx_exclude_device(struct pci_controller
*hose
,
53 u_char bus
, u_char devfn
)
55 struct device_node
* node
;
59 of_address_to_resource(node
, 0, &rsrc
);
61 if ((rsrc
.start
& 0xfffff) == 0x8000) {
62 return uli_exclude_device(hose
, bus
, devfn
);
65 return PCIBIOS_SUCCESSFUL
;
67 #endif /* CONFIG_PCI */
71 mpc86xx_hpcn_setup_arch(void)
74 struct device_node
*np
;
75 struct pci_controller
*hose
;
77 dma_addr_t max
= 0xffffffff;
80 ppc_md
.progress("mpc86xx_hpcn_setup_arch()", 0);
83 for_each_compatible_node(np
, "pci", "fsl,mpc8641-pcie") {
85 of_address_to_resource(np
, 0, &rsrc
);
86 if ((rsrc
.start
& 0xfffff) == 0x8000)
87 fsl_add_bridge(np
, 1);
89 fsl_add_bridge(np
, 0);
90 hose
= pci_find_hose_for_OF_device(np
);
91 max
= min(max
, hose
->dma_window_base_cur
+
92 hose
->dma_window_size
);
95 ppc_md
.pci_exclude_device
= mpc86xx_exclude_device
;
99 printk("MPC86xx HPCN board from Freescale Semiconductor\n");
105 #ifdef CONFIG_SWIOTLB
106 if (lmb_end_of_DRAM() > max
) {
107 ppc_swiotlb_enable
= 1;
108 set_pci_dma_ops(&swiotlb_pci_dma_ops
);
115 mpc86xx_hpcn_show_cpuinfo(struct seq_file
*m
)
117 uint svid
= mfspr(SPRN_SVR
);
119 seq_printf(m
, "Vendor\t\t: Freescale Semiconductor\n");
121 seq_printf(m
, "SVR\t\t: 0x%x\n", svid
);
126 * Called very early, device-tree isn't unflattened
128 static int __init
mpc86xx_hpcn_probe(void)
130 unsigned long root
= of_get_flat_dt_root();
132 if (of_flat_dt_is_compatible(root
, "fsl,mpc8641hpcn"))
133 return 1; /* Looks good */
135 /* Be nice and don't give silent boot death. Delete this in 2.6.27 */
136 if (of_flat_dt_is_compatible(root
, "mpc86xx")) {
137 pr_warning("WARNING: your dts/dtb is old. You must update before the next kernel release\n");
145 mpc86xx_time_init(void)
149 /* Set the time base to zero */
153 temp
= mfspr(SPRN_HID0
);
155 mtspr(SPRN_HID0
, temp
);
156 asm volatile("isync");
161 static __initdata
struct of_device_id of_bus_ids
[] = {
162 { .compatible
= "simple-bus", },
163 { .compatible
= "fsl,rapidio-delta", },
164 { .compatible
= "gianfar", },
168 static int __init
declare_of_platform_devices(void)
170 of_platform_bus_probe(NULL
, of_bus_ids
, NULL
);
174 machine_device_initcall(mpc86xx_hpcn
, declare_of_platform_devices
);
175 machine_arch_initcall(mpc86xx_hpcn
, swiotlb_setup_bus_notifier
);
177 define_machine(mpc86xx_hpcn
) {
178 .name
= "MPC86xx HPCN",
179 .probe
= mpc86xx_hpcn_probe
,
180 .setup_arch
= mpc86xx_hpcn_setup_arch
,
181 .init_IRQ
= mpc86xx_init_irq
,
182 .show_cpuinfo
= mpc86xx_hpcn_show_cpuinfo
,
183 .get_irq
= mpic_get_irq
,
184 .restart
= fsl_rstcr_restart
,
185 .time_init
= mpc86xx_time_init
,
186 .calibrate_decr
= generic_calibrate_decr
,
187 .progress
= udbg_progress
,
189 .pcibios_fixup_bus
= fsl_pcibios_fixup_bus
,