diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2008-01-24 18:41:23 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2008-01-28 09:30:46 -0500 |
commit | 2c19806122832a5fd83253ba8321308a531051da (patch) | |
tree | 0d2f93e5e263f877b0f96bfa271e096fc6854a8f /arch/powerpc | |
parent | 1a7507c7da2df6856e085e0fbb0c9ea8c12ac4e2 (diff) |
[POWERPC] 85xx: Add support for Wind River SBC8560 in arch/powerpc
This adds support for the Wind River SBC8560 board, implemented as
powerpc. It closely follows the implementation of the MPC8560ADS.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/platforms/85xx/Kconfig | 11 | ||||
-rw-r--r-- | arch/powerpc/platforms/85xx/Makefile | 1 | ||||
-rw-r--r-- | arch/powerpc/platforms/85xx/sbc8560.c | 285 |
3 files changed, 295 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/85xx/Kconfig b/arch/powerpc/platforms/85xx/Kconfig index 7896f0686bca..06ccb64293e2 100644 --- a/arch/powerpc/platforms/85xx/Kconfig +++ b/arch/powerpc/platforms/85xx/Kconfig | |||
@@ -81,6 +81,13 @@ config TQM8560 | |||
81 | select TQM85xx | 81 | select TQM85xx |
82 | select CPM2 | 82 | select CPM2 |
83 | 83 | ||
84 | config SBC8560 | ||
85 | bool "Wind River SBC8560" | ||
86 | select DEFAULT_UIMAGE | ||
87 | select PPC_CPM_NEW_BINDING | ||
88 | help | ||
89 | This option enables support for the Wind River SBC8560 board | ||
90 | |||
84 | endchoice | 91 | endchoice |
85 | 92 | ||
86 | config TQM85xx | 93 | config TQM85xx |
@@ -96,7 +103,7 @@ config MPC8540 | |||
96 | config MPC8560 | 103 | config MPC8560 |
97 | bool | 104 | bool |
98 | select CPM2 | 105 | select CPM2 |
99 | default y if MPC8560_ADS || STX_GP3 | 106 | default y if MPC8560_ADS || STX_GP3 || SBC8560 |
100 | 107 | ||
101 | config MPC85xx | 108 | config MPC85xx |
102 | bool | 109 | bool |
@@ -106,4 +113,4 @@ config MPC85xx | |||
106 | select FSL_PCI if PCI | 113 | select FSL_PCI if PCI |
107 | select SERIAL_8250_SHARE_IRQ if SERIAL_8250 | 114 | select SERIAL_8250_SHARE_IRQ if SERIAL_8250 |
108 | default y if MPC8540_ADS || MPC85xx_CDS || MPC8560_ADS \ | 115 | default y if MPC8540_ADS || MPC85xx_CDS || MPC8560_ADS \ |
109 | || MPC85xx_MDS || MPC85xx_DS || STX_GP3 | 116 | || MPC85xx_MDS || MPC85xx_DS || STX_GP3 || SBC8560 |
diff --git a/arch/powerpc/platforms/85xx/Makefile b/arch/powerpc/platforms/85xx/Makefile index 8c761d1671a1..698f9f950504 100644 --- a/arch/powerpc/platforms/85xx/Makefile +++ b/arch/powerpc/platforms/85xx/Makefile | |||
@@ -8,3 +8,4 @@ obj-$(CONFIG_MPC85xx_DS) += mpc85xx_ds.o | |||
8 | obj-$(CONFIG_MPC85xx_MDS) += mpc85xx_mds.o | 8 | obj-$(CONFIG_MPC85xx_MDS) += mpc85xx_mds.o |
9 | obj-$(CONFIG_STX_GP3) += stx_gp3.o | 9 | obj-$(CONFIG_STX_GP3) += stx_gp3.o |
10 | obj-$(CONFIG_TQM85xx) += tqm85xx.o | 10 | obj-$(CONFIG_TQM85xx) += tqm85xx.o |
11 | obj-$(CONFIG_SBC8560) += sbc8560.o | ||
diff --git a/arch/powerpc/platforms/85xx/sbc8560.c b/arch/powerpc/platforms/85xx/sbc8560.c new file mode 100644 index 000000000000..e2bc368b38d9 --- /dev/null +++ b/arch/powerpc/platforms/85xx/sbc8560.c | |||
@@ -0,0 +1,285 @@ | |||
1 | /* | ||
2 | * Wind River SBC8560 setup and early boot code. | ||
3 | * | ||
4 | * Copyright 2007 Wind River Systems Inc. | ||
5 | * | ||
6 | * By Paul Gortmaker (see MAINTAINERS for contact information) | ||
7 | * | ||
8 | * Based largely on the MPC8560ADS support - Copyright 2005 Freescale Inc. | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify it | ||
11 | * under the terms of the GNU General Public License as published by the | ||
12 | * Free Software Foundation; either version 2 of the License, or (at your | ||
13 | * option) any later version. | ||
14 | */ | ||
15 | |||
16 | #include <linux/stddef.h> | ||
17 | #include <linux/kernel.h> | ||
18 | #include <linux/pci.h> | ||
19 | #include <linux/kdev_t.h> | ||
20 | #include <linux/delay.h> | ||
21 | #include <linux/seq_file.h> | ||
22 | #include <linux/of_platform.h> | ||
23 | |||
24 | #include <asm/system.h> | ||
25 | #include <asm/time.h> | ||
26 | #include <asm/machdep.h> | ||
27 | #include <asm/pci-bridge.h> | ||
28 | #include <asm/mpic.h> | ||
29 | #include <mm/mmu_decl.h> | ||
30 | #include <asm/udbg.h> | ||
31 | |||
32 | #include <sysdev/fsl_soc.h> | ||
33 | #include <sysdev/fsl_pci.h> | ||
34 | |||
35 | #ifdef CONFIG_CPM2 | ||
36 | #include <asm/cpm2.h> | ||
37 | #include <sysdev/cpm2_pic.h> | ||
38 | #endif | ||
39 | |||
40 | #ifdef CONFIG_CPM2 | ||
41 | |||
42 | static void cpm2_cascade(unsigned int irq, struct irq_desc *desc) | ||
43 | { | ||
44 | int cascade_irq; | ||
45 | |||
46 | while ((cascade_irq = cpm2_get_irq()) >= 0) | ||
47 | generic_handle_irq(cascade_irq); | ||
48 | |||
49 | desc->chip->eoi(irq); | ||
50 | } | ||
51 | |||
52 | #endif /* CONFIG_CPM2 */ | ||
53 | |||
54 | static void __init sbc8560_pic_init(void) | ||
55 | { | ||
56 | struct mpic *mpic; | ||
57 | struct resource r; | ||
58 | struct device_node *np = NULL; | ||
59 | #ifdef CONFIG_CPM2 | ||
60 | int irq; | ||
61 | #endif | ||
62 | |||
63 | np = of_find_node_by_type(np, "open-pic"); | ||
64 | if (!np) { | ||
65 | printk(KERN_ERR "Could not find open-pic node\n"); | ||
66 | return; | ||
67 | } | ||
68 | |||
69 | if (of_address_to_resource(np, 0, &r)) { | ||
70 | printk(KERN_ERR "Could not map mpic register space\n"); | ||
71 | of_node_put(np); | ||
72 | return; | ||
73 | } | ||
74 | |||
75 | mpic = mpic_alloc(np, r.start, | ||
76 | MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN, | ||
77 | 0, 256, " OpenPIC "); | ||
78 | BUG_ON(mpic == NULL); | ||
79 | of_node_put(np); | ||
80 | |||
81 | mpic_init(mpic); | ||
82 | |||
83 | #ifdef CONFIG_CPM2 | ||
84 | /* Setup CPM2 PIC */ | ||
85 | np = of_find_compatible_node(NULL, NULL, "fsl,cpm2-pic"); | ||
86 | if (np == NULL) { | ||
87 | printk(KERN_ERR "PIC init: can not find fsl,cpm2-pic node\n"); | ||
88 | return; | ||
89 | } | ||
90 | irq = irq_of_parse_and_map(np, 0); | ||
91 | |||
92 | cpm2_pic_init(np); | ||
93 | of_node_put(np); | ||
94 | set_irq_chained_handler(irq, cpm2_cascade); | ||
95 | #endif | ||
96 | } | ||
97 | |||
98 | /* | ||
99 | * Setup the architecture | ||
100 | */ | ||
101 | #ifdef CONFIG_CPM2 | ||
102 | struct cpm_pin { | ||
103 | int port, pin, flags; | ||
104 | }; | ||
105 | |||
106 | static const struct cpm_pin sbc8560_pins[] = { | ||
107 | /* SCC1 */ | ||
108 | {3, 29, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
109 | {3, 30, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY}, | ||
110 | {3, 31, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
111 | |||
112 | /* SCC2 */ | ||
113 | {3, 26, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
114 | {3, 27, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
115 | {3, 28, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
116 | |||
117 | /* FCC2 */ | ||
118 | {1, 18, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
119 | {1, 19, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
120 | {1, 20, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
121 | {1, 21, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
122 | {1, 22, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
123 | {1, 23, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
124 | {1, 24, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
125 | {1, 25, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
126 | {1, 26, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
127 | {1, 27, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
128 | {1, 28, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
129 | {1, 29, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY}, | ||
130 | {1, 30, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
131 | {1, 31, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
132 | {2, 18, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, /* CLK14 */ | ||
133 | {2, 19, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, /* CLK13 */ | ||
134 | |||
135 | /* FCC3 */ | ||
136 | {1, 4, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
137 | {1, 5, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
138 | {1, 6, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
139 | {1, 7, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
140 | {1, 8, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
141 | {1, 9, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
142 | {1, 10, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
143 | {1, 11, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
144 | {1, 12, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
145 | {1, 13, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
146 | {1, 14, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
147 | {1, 15, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY}, | ||
148 | {1, 16, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
149 | {1, 17, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, | ||
150 | {2, 16, CPM_PIN_INPUT | CPM_PIN_SECONDARY}, /* CLK16 */ | ||
151 | {2, 17, CPM_PIN_INPUT | CPM_PIN_SECONDARY}, /* CLK15 */ | ||
152 | }; | ||
153 | |||
154 | static void __init init_ioports(void) | ||
155 | { | ||
156 | int i; | ||
157 | |||
158 | for (i = 0; i < ARRAY_SIZE(sbc8560_pins); i++) { | ||
159 | struct cpm_pin *pin = &sbc8560_pins[i]; | ||
160 | cpm2_set_pin(pin->port, pin->pin, pin->flags); | ||
161 | } | ||
162 | |||
163 | cpm2_clk_setup(CPM_CLK_SCC1, CPM_BRG1, CPM_CLK_RX); | ||
164 | cpm2_clk_setup(CPM_CLK_SCC1, CPM_BRG1, CPM_CLK_TX); | ||
165 | cpm2_clk_setup(CPM_CLK_SCC2, CPM_BRG2, CPM_CLK_RX); | ||
166 | cpm2_clk_setup(CPM_CLK_SCC2, CPM_BRG2, CPM_CLK_TX); | ||
167 | cpm2_clk_setup(CPM_CLK_FCC2, CPM_CLK13, CPM_CLK_RX); | ||
168 | cpm2_clk_setup(CPM_CLK_FCC2, CPM_CLK14, CPM_CLK_TX); | ||
169 | cpm2_clk_setup(CPM_CLK_FCC3, CPM_CLK15, CPM_CLK_RX); | ||
170 | cpm2_clk_setup(CPM_CLK_FCC3, CPM_CLK16, CPM_CLK_TX); | ||
171 | } | ||
172 | #endif | ||
173 | |||
174 | static void __init sbc8560_setup_arch(void) | ||
175 | { | ||
176 | #ifdef CONFIG_PCI | ||
177 | struct device_node *np; | ||
178 | #endif | ||
179 | |||
180 | if (ppc_md.progress) | ||
181 | ppc_md.progress("sbc8560_setup_arch()", 0); | ||
182 | |||
183 | #ifdef CONFIG_CPM2 | ||
184 | cpm2_reset(); | ||
185 | init_ioports(); | ||
186 | #endif | ||
187 | |||
188 | #ifdef CONFIG_PCI | ||
189 | for_each_compatible_node(np, "pci", "fsl,mpc8540-pci") | ||
190 | fsl_add_bridge(np, 1); | ||
191 | #endif | ||
192 | } | ||
193 | |||
194 | static void sbc8560_show_cpuinfo(struct seq_file *m) | ||
195 | { | ||
196 | uint pvid, svid, phid1; | ||
197 | uint memsize = total_memory; | ||
198 | |||
199 | pvid = mfspr(SPRN_PVR); | ||
200 | svid = mfspr(SPRN_SVR); | ||
201 | |||
202 | seq_printf(m, "Vendor\t\t: Wind River\n"); | ||
203 | seq_printf(m, "Machine\t\t: SBC8560\n"); | ||
204 | seq_printf(m, "PVR\t\t: 0x%x\n", pvid); | ||
205 | seq_printf(m, "SVR\t\t: 0x%x\n", svid); | ||
206 | |||
207 | /* Display cpu Pll setting */ | ||
208 | phid1 = mfspr(SPRN_HID1); | ||
209 | seq_printf(m, "PLL setting\t: 0x%x\n", ((phid1 >> 24) & 0x3f)); | ||
210 | |||
211 | /* Display the amount of memory */ | ||
212 | seq_printf(m, "Memory\t\t: %d MB\n", memsize / (1024 * 1024)); | ||
213 | } | ||
214 | |||
215 | static struct of_device_id __initdata of_bus_ids[] = { | ||
216 | { .name = "soc", }, | ||
217 | { .type = "soc", }, | ||
218 | { .name = "cpm", }, | ||
219 | { .name = "localbus", }, | ||
220 | {}, | ||
221 | }; | ||
222 | |||
223 | static int __init declare_of_platform_devices(void) | ||
224 | { | ||
225 | if (!machine_is(sbc8560)) | ||
226 | return 0; | ||
227 | |||
228 | of_platform_bus_probe(NULL, of_bus_ids, NULL); | ||
229 | return 0; | ||
230 | } | ||
231 | device_initcall(declare_of_platform_devices); | ||
232 | |||
233 | /* | ||
234 | * Called very early, device-tree isn't unflattened | ||
235 | */ | ||
236 | static int __init sbc8560_probe(void) | ||
237 | { | ||
238 | unsigned long root = of_get_flat_dt_root(); | ||
239 | |||
240 | return of_flat_dt_is_compatible(root, "SBC8560"); | ||
241 | } | ||
242 | |||
243 | #ifdef CONFIG_RTC_DRV_M48T59 | ||
244 | static int __init sbc8560_rtc_init(void) | ||
245 | { | ||
246 | struct device_node *np; | ||
247 | struct resource res; | ||
248 | struct platform_device *rtc_dev; | ||
249 | |||
250 | np = of_find_compatible_node(NULL, NULL, "m48t59"); | ||
251 | if (np == NULL) { | ||
252 | printk("No RTC in DTB. Has it been eaten by wild dogs?\n"); | ||
253 | return -ENODEV; | ||
254 | } | ||
255 | |||
256 | of_address_to_resource(np, 0, &res); | ||
257 | of_node_put(np); | ||
258 | |||
259 | printk("Found RTC (m48t59) at i/o 0x%x\n", res.start); | ||
260 | |||
261 | rtc_dev = platform_device_register_simple("rtc-m48t59", 0, &res, 1); | ||
262 | |||
263 | if (IS_ERR(rtc_dev)) { | ||
264 | printk("Registering sbc8560 RTC device failed\n"); | ||
265 | return PTR_ERR(rtc_dev); | ||
266 | } | ||
267 | |||
268 | return 0; | ||
269 | } | ||
270 | |||
271 | arch_initcall(sbc8560_rtc_init); | ||
272 | |||
273 | #endif /* M48T59 */ | ||
274 | |||
275 | define_machine(sbc8560) { | ||
276 | .name = "SBC8560", | ||
277 | .probe = sbc8560_probe, | ||
278 | .setup_arch = sbc8560_setup_arch, | ||
279 | .init_IRQ = sbc8560_pic_init, | ||
280 | .show_cpuinfo = sbc8560_show_cpuinfo, | ||
281 | .get_irq = mpic_get_irq, | ||
282 | .restart = fsl_rstcr_restart, | ||
283 | .calibrate_decr = generic_calibrate_decr, | ||
284 | .progress = udbg_progress, | ||
285 | }; | ||