Merge git://git.infradead.org/mtd-2.6
[deliverable/linux.git] / arch / powerpc / platforms / 85xx / mpc85xx_ads.c
CommitLineData
63dafe57
BB
1/*
2 * MPC85xx setup and early boot code plus other random bits.
3 *
4 * Maintained by Kumar Gala (see MAINTAINERS for contact information)
5 *
6 * Copyright 2005 Freescale Semiconductor Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 */
13
63dafe57
BB
14#include <linux/stddef.h>
15#include <linux/kernel.h>
63dafe57
BB
16#include <linux/pci.h>
17#include <linux/kdev_t.h>
63dafe57 18#include <linux/delay.h>
63dafe57 19#include <linux/seq_file.h>
8abc8f5f 20#include <linux/of_platform.h>
63dafe57
BB
21
22#include <asm/system.h>
63dafe57 23#include <asm/time.h>
63dafe57 24#include <asm/machdep.h>
63dafe57 25#include <asm/pci-bridge.h>
63dafe57
BB
26#include <asm/mpic.h>
27#include <mm/mmu_decl.h>
28#include <asm/udbg.h>
29
30#include <sysdev/fsl_soc.h>
3f6c5dae 31#include <sysdev/fsl_pci.h>
63dafe57 32
902f392d
VB
33#ifdef CONFIG_CPM2
34#include <asm/cpm2.h>
35#include <sysdev/cpm2_pic.h>
902f392d
VB
36#endif
37
8080d549 38#ifdef CONFIG_PCI
7d52c7b0
KG
39static int mpc85xx_exclude_device(struct pci_controller *hose,
40 u_char bus, u_char devfn)
8080d549
AF
41{
42 if (bus == 0 && PCI_SLOT(devfn) == 0)
43 return PCIBIOS_DEVICE_NOT_FOUND;
44 else
45 return PCIBIOS_SUCCESSFUL;
46}
8080d549
AF
47#endif /* CONFIG_PCI */
48
902f392d
VB
49#ifdef CONFIG_CPM2
50
35a84c2f 51static void cpm2_cascade(unsigned int irq, struct irq_desc *desc)
902f392d
VB
52{
53 int cascade_irq;
54
e5091842 55 while ((cascade_irq = cpm2_get_irq()) >= 0)
49f19ce4 56 generic_handle_irq(cascade_irq);
e5091842 57
902f392d
VB
58 desc->chip->eoi(irq);
59}
60
61#endif /* CONFIG_CPM2 */
8080d549 62
27630bec 63static void __init mpc85xx_ads_pic_init(void)
63dafe57 64{
4c86cd9c
AF
65 struct mpic *mpic;
66 struct resource r;
67 struct device_node *np = NULL;
902f392d
VB
68#ifdef CONFIG_CPM2
69 int irq;
70#endif
4c86cd9c
AF
71
72 np = of_find_node_by_type(np, "open-pic");
e5091842 73 if (!np) {
4c86cd9c
AF
74 printk(KERN_ERR "Could not find open-pic node\n");
75 return;
76 }
77
e5091842 78 if (of_address_to_resource(np, 0, &r)) {
4c86cd9c
AF
79 printk(KERN_ERR "Could not map mpic register space\n");
80 of_node_put(np);
81 return;
82 }
83
84 mpic = mpic_alloc(np, r.start,
85 MPIC_PRIMARY | MPIC_WANTS_RESET | MPIC_BIG_ENDIAN,
b533f8ae 86 0, 256, " OpenPIC ");
4c86cd9c
AF
87 BUG_ON(mpic == NULL);
88 of_node_put(np);
89
4c86cd9c 90 mpic_init(mpic);
902f392d
VB
91
92#ifdef CONFIG_CPM2
93 /* Setup CPM2 PIC */
8abc8f5f 94 np = of_find_compatible_node(NULL, NULL, "fsl,cpm2-pic");
902f392d 95 if (np == NULL) {
8abc8f5f
SW
96 printk(KERN_ERR "PIC init: can not find fsl,cpm2-pic node\n");
97 return;
902f392d
VB
98 }
99 irq = irq_of_parse_and_map(np, 0);
100
101 cpm2_pic_init(np);
e5091842 102 of_node_put(np);
902f392d
VB
103 set_irq_chained_handler(irq, cpm2_cascade);
104#endif
63dafe57
BB
105}
106
63dafe57
BB
107/*
108 * Setup the architecture
109 */
902f392d 110#ifdef CONFIG_CPM2
8abc8f5f
SW
111struct cpm_pin {
112 int port, pin, flags;
113};
114
e5091842 115static const struct cpm_pin mpc8560_ads_pins[] = {
8abc8f5f
SW
116 /* SCC1 */
117 {3, 29, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
118 {3, 30, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
119 {3, 31, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
120
121 /* SCC2 */
2308c954
VB
122 {2, 12, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
123 {2, 13, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
8abc8f5f
SW
124 {3, 26, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
125 {3, 27, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
126 {3, 28, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
127
128 /* FCC2 */
129 {1, 18, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
130 {1, 19, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
131 {1, 20, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
132 {1, 21, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
133 {1, 22, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
134 {1, 23, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
135 {1, 24, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
136 {1, 25, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
137 {1, 26, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
138 {1, 27, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
139 {1, 28, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
140 {1, 29, CPM_PIN_OUTPUT | CPM_PIN_SECONDARY},
141 {1, 30, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
142 {1, 31, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
143 {2, 18, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, /* CLK14 */
144 {2, 19, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, /* CLK13 */
145
146 /* FCC3 */
147 {1, 4, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
148 {1, 5, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
149 {1, 6, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
8abc8f5f
SW
150 {1, 8, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
151 {1, 9, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
152 {1, 10, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
153 {1, 11, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
154 {1, 12, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
155 {1, 13, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
156 {1, 14, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
157 {1, 15, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
158 {1, 16, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
159 {1, 17, CPM_PIN_INPUT | CPM_PIN_PRIMARY},
2308c954
VB
160 {2, 16, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, /* CLK16 */
161 {2, 17, CPM_PIN_INPUT | CPM_PIN_PRIMARY}, /* CLK15 */
162 {2, 27, CPM_PIN_OUTPUT | CPM_PIN_PRIMARY},
8abc8f5f
SW
163};
164
165static void __init init_ioports(void)
902f392d 166{
8abc8f5f
SW
167 int i;
168
169 for (i = 0; i < ARRAY_SIZE(mpc8560_ads_pins); i++) {
a5dc66e2 170 const struct cpm_pin *pin = &mpc8560_ads_pins[i];
8abc8f5f 171 cpm2_set_pin(pin->port, pin->pin, pin->flags);
d3465c92 172 }
902f392d 173
8abc8f5f
SW
174 cpm2_clk_setup(CPM_CLK_SCC1, CPM_BRG1, CPM_CLK_RX);
175 cpm2_clk_setup(CPM_CLK_SCC1, CPM_BRG1, CPM_CLK_TX);
176 cpm2_clk_setup(CPM_CLK_SCC2, CPM_BRG2, CPM_CLK_RX);
177 cpm2_clk_setup(CPM_CLK_SCC2, CPM_BRG2, CPM_CLK_TX);
178 cpm2_clk_setup(CPM_CLK_FCC2, CPM_CLK13, CPM_CLK_RX);
179 cpm2_clk_setup(CPM_CLK_FCC2, CPM_CLK14, CPM_CLK_TX);
180 cpm2_clk_setup(CPM_CLK_FCC3, CPM_CLK15, CPM_CLK_RX);
181 cpm2_clk_setup(CPM_CLK_FCC3, CPM_CLK16, CPM_CLK_TX);
902f392d
VB
182}
183#endif
184
fbc94e7c 185static void __init mpc85xx_ads_setup_arch(void)
63dafe57 186{
4c86cd9c 187#ifdef CONFIG_PCI
8080d549 188 struct device_node *np;
4c86cd9c 189#endif
63dafe57
BB
190
191 if (ppc_md.progress)
192 ppc_md.progress("mpc85xx_ads_setup_arch()", 0);
193
902f392d
VB
194#ifdef CONFIG_CPM2
195 cpm2_reset();
8abc8f5f 196 init_ioports();
902f392d
VB
197#endif
198
8080d549 199#ifdef CONFIG_PCI
c9438aff 200 for_each_compatible_node(np, "pci", "fsl,mpc8540-pci")
3f6c5dae 201 fsl_add_bridge(np, 1);
c9438aff 202
8080d549
AF
203 ppc_md.pci_exclude_device = mpc85xx_exclude_device;
204#endif
63dafe57
BB
205}
206
27630bec 207static void mpc85xx_ads_show_cpuinfo(struct seq_file *m)
63dafe57
BB
208{
209 uint pvid, svid, phid1;
63dafe57
BB
210
211 pvid = mfspr(SPRN_PVR);
212 svid = mfspr(SPRN_SVR);
213
214 seq_printf(m, "Vendor\t\t: Freescale Semiconductor\n");
63dafe57
BB
215 seq_printf(m, "PVR\t\t: 0x%x\n", pvid);
216 seq_printf(m, "SVR\t\t: 0x%x\n", svid);
217
218 /* Display cpu Pll setting */
219 phid1 = mfspr(SPRN_HID1);
220 seq_printf(m, "PLL setting\t: 0x%x\n", ((phid1 >> 24) & 0x3f));
63dafe57
BB
221}
222
8abc8f5f
SW
223static struct of_device_id __initdata of_bus_ids[] = {
224 { .name = "soc", },
225 { .type = "soc", },
226 { .name = "cpm", },
227 { .name = "localbus", },
cf0d19fb 228 { .compatible = "simple-bus", },
8abc8f5f
SW
229 {},
230};
231
232static int __init declare_of_platform_devices(void)
233{
8abc8f5f 234 of_platform_bus_probe(NULL, of_bus_ids, NULL);
277982e2 235
8abc8f5f
SW
236 return 0;
237}
277982e2 238machine_device_initcall(mpc85xx_ads, declare_of_platform_devices);
8abc8f5f 239
72d2c3e0
KG
240/*
241 * Called very early, device-tree isn't unflattened
242 */
243static int __init mpc85xx_ads_probe(void)
63dafe57 244{
6936c625
KG
245 unsigned long root = of_get_flat_dt_root();
246
247 return of_flat_dt_is_compatible(root, "MPC85xxADS");
63dafe57 248}
72d2c3e0
KG
249
250define_machine(mpc85xx_ads) {
251 .name = "MPC85xx ADS",
252 .probe = mpc85xx_ads_probe,
253 .setup_arch = mpc85xx_ads_setup_arch,
254 .init_IRQ = mpc85xx_ads_pic_init,
255 .show_cpuinfo = mpc85xx_ads_show_cpuinfo,
256 .get_irq = mpic_get_irq,
e1c1575f 257 .restart = fsl_rstcr_restart,
72d2c3e0
KG
258 .calibrate_decr = generic_calibrate_decr,
259 .progress = udbg_progress,
260};
This page took 0.253656 seconds and 5 git commands to generate.