1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19#include <linux/stddef.h>
20#include <linux/kernel.h>
21#include <linux/compiler.h>
22#include <linux/init.h>
23#include <linux/errno.h>
24#include <linux/reboot.h>
25#include <linux/pci.h>
26#include <linux/kdev_t.h>
27#include <linux/major.h>
28#include <linux/console.h>
29#include <linux/delay.h>
30#include <linux/seq_file.h>
31#include <linux/root_dev.h>
32#include <linux/initrd.h>
33#include <linux/of_platform.h>
34#include <linux/of_device.h>
35
36#include <linux/atomic.h>
37#include <asm/time.h>
38#include <asm/io.h>
39#include <asm/machdep.h>
40#include <asm/ipic.h>
41#include <asm/irq.h>
42#include <asm/prom.h>
43#include <asm/udbg.h>
44#include <sysdev/fsl_soc.h>
45#include <sysdev/fsl_pci.h>
46#include <sysdev/simple_gpio.h>
47#include <asm/qe.h>
48#include <asm/qe_ic.h>
49
50#include "mpc83xx.h"
51
52#undef DEBUG
53#ifdef DEBUG
54#define DBG(fmt...) udbg_printf(fmt)
55#else
56#define DBG(fmt...)
57#endif
58
59
60
61
62
63
64static void __init mpc836x_mds_setup_arch(void)
65{
66 struct device_node *np;
67 u8 __iomem *bcsr_regs = NULL;
68
69 if (ppc_md.progress)
70 ppc_md.progress("mpc836x_mds_setup_arch()", 0);
71
72
73 np = of_find_node_by_name(NULL, "bcsr");
74 if (np) {
75 struct resource res;
76
77 of_address_to_resource(np, 0, &res);
78 bcsr_regs = ioremap(res.start, resource_size(&res));
79 of_node_put(np);
80 }
81
82 mpc83xx_setup_pci();
83
84#ifdef CONFIG_QUICC_ENGINE
85 qe_reset();
86
87 if ((np = of_find_node_by_name(NULL, "par_io")) != NULL) {
88 par_io_init(np);
89 of_node_put(np);
90
91 for (np = NULL; (np = of_find_node_by_name(np, "ucc")) != NULL;)
92 par_io_of_config(np);
93#ifdef CONFIG_QE_USB
94
95 par_io_config_pin(1, 2, 1, 0, 3, 0);
96 par_io_config_pin(1, 3, 1, 0, 3, 0);
97 par_io_config_pin(1, 8, 1, 0, 1, 0);
98 par_io_config_pin(1, 10, 2, 0, 3, 0);
99 par_io_config_pin(1, 9, 2, 1, 3, 0);
100 par_io_config_pin(1, 11, 2, 1, 3, 0);
101 par_io_config_pin(2, 20, 2, 0, 1, 0);
102#endif
103 }
104
105 if ((np = of_find_compatible_node(NULL, "network", "ucc_geth"))
106 != NULL){
107 uint svid;
108
109
110#define BCSR9_GETHRST 0x20
111 clrbits8(&bcsr_regs[9], BCSR9_GETHRST);
112 udelay(1000);
113 setbits8(&bcsr_regs[9], BCSR9_GETHRST);
114
115
116 svid = mfspr(SPRN_SVR);
117 if (svid == 0x80480021) {
118 void __iomem *immap;
119
120 immap = ioremap(get_immrbase() + 0x14a8, 8);
121
122
123
124
125
126 setbits32(immap, 0x0c003000);
127
128
129
130
131
132 clrsetbits_be32(immap + 4, 0xff0, 0xaa0);
133
134 iounmap(immap);
135 }
136
137 iounmap(bcsr_regs);
138 of_node_put(np);
139 }
140#endif
141}
142
143machine_device_initcall(mpc836x_mds, mpc83xx_declare_of_platform_devices);
144
145#ifdef CONFIG_QE_USB
146static int __init mpc836x_usb_cfg(void)
147{
148 u8 __iomem *bcsr;
149 struct device_node *np;
150 const char *mode;
151 int ret = 0;
152
153 np = of_find_compatible_node(NULL, NULL, "fsl,mpc8360mds-bcsr");
154 if (!np)
155 return -ENODEV;
156
157 bcsr = of_iomap(np, 0);
158 of_node_put(np);
159 if (!bcsr)
160 return -ENOMEM;
161
162 np = of_find_compatible_node(NULL, NULL, "fsl,mpc8323-qe-usb");
163 if (!np) {
164 ret = -ENODEV;
165 goto err;
166 }
167
168#define BCSR8_TSEC1M_MASK (0x3 << 6)
169#define BCSR8_TSEC1M_RGMII (0x0 << 6)
170#define BCSR8_TSEC2M_MASK (0x3 << 4)
171#define BCSR8_TSEC2M_RGMII (0x0 << 4)
172
173
174
175
176 clrsetbits_8(&bcsr[8], BCSR8_TSEC1M_MASK | BCSR8_TSEC2M_MASK,
177 BCSR8_TSEC1M_RGMII | BCSR8_TSEC2M_RGMII);
178
179#define BCSR13_USBMASK 0x0f
180#define BCSR13_nUSBEN 0x08
181#define BCSR13_USBSPEED 0x04
182#define BCSR13_USBMODE 0x02
183#define BCSR13_nUSBVCC 0x01
184
185 clrsetbits_8(&bcsr[13], BCSR13_USBMASK, BCSR13_USBSPEED);
186
187 mode = of_get_property(np, "mode", NULL);
188 if (mode && !strcmp(mode, "peripheral")) {
189 setbits8(&bcsr[13], BCSR13_nUSBVCC);
190 qe_usb_clock_set(QE_CLK21, 48000000);
191 } else {
192 setbits8(&bcsr[13], BCSR13_USBMODE);
193
194
195
196
197
198 simple_gpiochip_init("fsl,mpc8360mds-bcsr-gpio");
199 }
200
201 of_node_put(np);
202err:
203 iounmap(bcsr);
204 return ret;
205}
206machine_arch_initcall(mpc836x_mds, mpc836x_usb_cfg);
207#endif
208
209
210
211
212static int __init mpc836x_mds_probe(void)
213{
214 unsigned long root = of_get_flat_dt_root();
215
216 return of_flat_dt_is_compatible(root, "MPC836xMDS");
217}
218
219define_machine(mpc836x_mds) {
220 .name = "MPC836x MDS",
221 .probe = mpc836x_mds_probe,
222 .setup_arch = mpc836x_mds_setup_arch,
223 .init_IRQ = mpc83xx_ipic_and_qe_init_IRQ,
224 .get_irq = ipic_get_irq,
225 .restart = mpc83xx_restart,
226 .time_init = mpc83xx_time_init,
227 .calibrate_decr = generic_calibrate_decr,
228 .progress = udbg_progress,
229};
230