blob: 2c5388ce902abfaa3fd9f400c231a3dd64735cc5 [file] [log] [blame]
Kumar Galaeed32002006-01-13 11:19:13 -06001/*
2 * FSL SoC setup code
3 *
4 * Maintained by Kumar Gala (see MAINTAINERS for contact information)
5 *
Vitaly Bordugfba43662006-09-21 17:26:34 +04006 * 2006 (c) MontaVista Software, Inc.
7 * Vitaly Bordug <vbordug@ru.mvista.com>
8 *
Kumar Galaeed32002006-01-13 11:19:13 -06009 * 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.
13 */
14
Kumar Galaeed32002006-01-13 11:19:13 -060015#include <linux/stddef.h>
16#include <linux/kernel.h>
17#include <linux/init.h>
18#include <linux/errno.h>
19#include <linux/major.h>
20#include <linux/delay.h>
21#include <linux/irq.h>
22#include <linux/module.h>
23#include <linux/device.h>
24#include <linux/platform_device.h>
Kumar Gala0af666f2007-08-17 08:23:06 -050025#include <linux/of_platform.h>
Andy Fleminga9b14972006-10-19 19:52:26 -050026#include <linux/phy.h>
Vitaly Borduga21e2822007-12-07 01:51:31 +030027#include <linux/phy_fixed.h>
Anton Vorontsov26f6cb92007-08-23 15:35:56 +040028#include <linux/spi/spi.h>
Kumar Galaeed32002006-01-13 11:19:13 -060029#include <linux/fsl_devices.h>
Vitaly Bordugfba43662006-09-21 17:26:34 +040030#include <linux/fs_enet_pd.h>
31#include <linux/fs_uart_pd.h>
Kumar Galaeed32002006-01-13 11:19:13 -060032
33#include <asm/system.h>
34#include <asm/atomic.h>
35#include <asm/io.h>
36#include <asm/irq.h>
Vitaly Bordugfba43662006-09-21 17:26:34 +040037#include <asm/time.h>
Kumar Galaeed32002006-01-13 11:19:13 -060038#include <asm/prom.h>
39#include <sysdev/fsl_soc.h>
40#include <mm/mmu_decl.h>
Vitaly Bordugfba43662006-09-21 17:26:34 +040041#include <asm/cpm2.h>
Kumar Galaeed32002006-01-13 11:19:13 -060042
Vitaly Bordugd3465c92006-09-21 22:38:05 +040043extern void init_fcc_ioports(struct fs_platform_info*);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +030044extern void init_fec_ioports(struct fs_platform_info*);
45extern void init_smc_ioports(struct fs_uart_platform_info*);
Kumar Galaeed32002006-01-13 11:19:13 -060046static phys_addr_t immrbase = -1;
47
48phys_addr_t get_immrbase(void)
49{
50 struct device_node *soc;
51
52 if (immrbase != -1)
53 return immrbase;
54
55 soc = of_find_node_by_type(NULL, "soc");
Kumar Gala2fb07d72006-01-23 16:58:04 -060056 if (soc) {
Scott Woodf9234732007-08-20 11:38:12 -050057 int size;
Scott Wood6c7e0722008-01-14 10:29:35 -060058 u32 naddr;
59 const u32 *prop = of_get_property(soc, "#address-cells", &size);
Vitaly Bordugfba43662006-09-21 17:26:34 +040060
Scott Wood6c7e0722008-01-14 10:29:35 -060061 if (prop && size == 4)
62 naddr = *prop;
63 else
64 naddr = 2;
65
66 prop = of_get_property(soc, "ranges", &size);
Vitaly Bordugfba43662006-09-21 17:26:34 +040067 if (prop)
Scott Wood6c7e0722008-01-14 10:29:35 -060068 immrbase = of_translate_address(soc, prop + naddr);
69
Kumar Galaeed32002006-01-13 11:19:13 -060070 of_node_put(soc);
Scott Woodf9234732007-08-20 11:38:12 -050071 }
Kumar Galaeed32002006-01-13 11:19:13 -060072
73 return immrbase;
74}
Kumar Gala2fb07d72006-01-23 16:58:04 -060075
Kumar Galaeed32002006-01-13 11:19:13 -060076EXPORT_SYMBOL(get_immrbase);
77
Anton Vorontsov59a0ea52008-01-24 18:40:03 +030078#if defined(CONFIG_CPM2) || defined(CONFIG_QUICC_ENGINE) || defined(CONFIG_8xx)
Vitaly Bordugfba43662006-09-21 17:26:34 +040079
80static u32 brgfreq = -1;
81
82u32 get_brgfreq(void)
83{
84 struct device_node *node;
Scott Wood6d817aa2007-08-29 15:08:40 -050085 const unsigned int *prop;
86 int size;
Vitaly Bordugfba43662006-09-21 17:26:34 +040087
88 if (brgfreq != -1)
89 return brgfreq;
90
Scott Wood6d817aa2007-08-29 15:08:40 -050091 node = of_find_compatible_node(NULL, NULL, "fsl,cpm-brg");
Vitaly Bordugfba43662006-09-21 17:26:34 +040092 if (node) {
Scott Wood6d817aa2007-08-29 15:08:40 -050093 prop = of_get_property(node, "clock-frequency", &size);
94 if (prop && size == 4)
95 brgfreq = *prop;
Vitaly Bordugfba43662006-09-21 17:26:34 +040096
Scott Wood6d817aa2007-08-29 15:08:40 -050097 of_node_put(node);
98 return brgfreq;
99 }
100
101 /* Legacy device binding -- will go away when no users are left. */
102 node = of_find_node_by_type(NULL, "cpm");
Anton Vorontsov59a0ea52008-01-24 18:40:03 +0300103 if (!node)
104 node = of_find_compatible_node(NULL, NULL, "fsl,qe");
105 if (!node)
106 node = of_find_node_by_type(NULL, "qe");
107
Scott Wood6d817aa2007-08-29 15:08:40 -0500108 if (node) {
109 prop = of_get_property(node, "brg-frequency", &size);
Scott Woodf9234732007-08-20 11:38:12 -0500110 if (prop && size == 4)
Vitaly Bordugfba43662006-09-21 17:26:34 +0400111 brgfreq = *prop;
Scott Woodf9234732007-08-20 11:38:12 -0500112
Anton Vorontsov59a0ea52008-01-24 18:40:03 +0300113 if (brgfreq == -1 || brgfreq == 0) {
114 prop = of_get_property(node, "bus-frequency", &size);
115 if (prop && size == 4)
116 brgfreq = *prop / 2;
117 }
Vitaly Bordugfba43662006-09-21 17:26:34 +0400118 of_node_put(node);
Scott Woodf9234732007-08-20 11:38:12 -0500119 }
Vitaly Bordugfba43662006-09-21 17:26:34 +0400120
121 return brgfreq;
122}
123
124EXPORT_SYMBOL(get_brgfreq);
125
126static u32 fs_baudrate = -1;
127
128u32 get_baudrate(void)
129{
130 struct device_node *node;
131
132 if (fs_baudrate != -1)
133 return fs_baudrate;
134
135 node = of_find_node_by_type(NULL, "serial");
136 if (node) {
Scott Woodf9234732007-08-20 11:38:12 -0500137 int size;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000138 const unsigned int *prop = of_get_property(node,
139 "current-speed", &size);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400140
141 if (prop)
142 fs_baudrate = *prop;
143 of_node_put(node);
Scott Woodf9234732007-08-20 11:38:12 -0500144 }
Vitaly Bordugfba43662006-09-21 17:26:34 +0400145
146 return fs_baudrate;
147}
148
149EXPORT_SYMBOL(get_baudrate);
150#endif /* CONFIG_CPM2 */
151
Vitaly Borduga21e2822007-12-07 01:51:31 +0300152#ifdef CONFIG_FIXED_PHY
153static int __init of_add_fixed_phys(void)
154{
155 int ret;
156 struct device_node *np;
157 u32 *fixed_link;
158 struct fixed_phy_status status = {};
159
160 for_each_node_by_name(np, "ethernet") {
161 fixed_link = (u32 *)of_get_property(np, "fixed-link", NULL);
162 if (!fixed_link)
163 continue;
164
165 status.link = 1;
166 status.duplex = fixed_link[1];
167 status.speed = fixed_link[2];
168 status.pause = fixed_link[3];
169 status.asym_pause = fixed_link[4];
170
171 ret = fixed_phy_add(PHY_POLL, fixed_link[0], &status);
172 if (ret) {
173 of_node_put(np);
174 return ret;
175 }
176 }
177
178 return 0;
179}
180arch_initcall(of_add_fixed_phys);
181#endif /* CONFIG_FIXED_PHY */
182
Kumar Gala2fb07d72006-01-23 16:58:04 -0600183static int __init gfar_mdio_of_init(void)
Kumar Galaeed32002006-01-13 11:19:13 -0600184{
Kumar Galae77b28e2007-12-12 00:28:35 -0600185 struct device_node *np = NULL;
Kumar Gala2fb07d72006-01-23 16:58:04 -0600186 struct platform_device *mdio_dev;
Kumar Galaeed32002006-01-13 11:19:13 -0600187 struct resource res;
188 int ret;
189
Kumar Galae77b28e2007-12-12 00:28:35 -0600190 np = of_find_compatible_node(np, NULL, "fsl,gianfar-mdio");
191
192 /* try the deprecated version */
193 if (!np)
194 np = of_find_compatible_node(np, "mdio", "gianfar");
195
196 if (np) {
Kumar Galaeed32002006-01-13 11:19:13 -0600197 int k;
198 struct device_node *child = NULL;
199 struct gianfar_mdio_data mdio_data;
200
201 memset(&res, 0, sizeof(res));
202 memset(&mdio_data, 0, sizeof(mdio_data));
203
204 ret = of_address_to_resource(np, 0, &res);
205 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600206 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600207
Kumar Gala2fb07d72006-01-23 16:58:04 -0600208 mdio_dev =
209 platform_device_register_simple("fsl-gianfar_mdio",
210 res.start, &res, 1);
Kumar Galaeed32002006-01-13 11:19:13 -0600211 if (IS_ERR(mdio_dev)) {
212 ret = PTR_ERR(mdio_dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600213 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600214 }
215
216 for (k = 0; k < 32; k++)
Andy Fleminga9b14972006-10-19 19:52:26 -0500217 mdio_data.irq[k] = PHY_POLL;
Kumar Galaeed32002006-01-13 11:19:13 -0600218
219 while ((child = of_get_next_child(np, child)) != NULL) {
Vitaly Bordugfba43662006-09-21 17:26:34 +0400220 int irq = irq_of_parse_and_map(child, 0);
221 if (irq != NO_IRQ) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000222 const u32 *id = of_get_property(child,
223 "reg", NULL);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400224 mdio_data.irq[*id] = irq;
225 }
Kumar Galaeed32002006-01-13 11:19:13 -0600226 }
227
Kumar Gala2fb07d72006-01-23 16:58:04 -0600228 ret =
229 platform_device_add_data(mdio_dev, &mdio_data,
230 sizeof(struct gianfar_mdio_data));
Kumar Galaeed32002006-01-13 11:19:13 -0600231 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600232 goto unreg;
Kumar Galaeed32002006-01-13 11:19:13 -0600233 }
234
Kumar Galae77b28e2007-12-12 00:28:35 -0600235 of_node_put(np);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600236 return 0;
237
238unreg:
239 platform_device_unregister(mdio_dev);
240err:
Kumar Galae77b28e2007-12-12 00:28:35 -0600241 of_node_put(np);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600242 return ret;
243}
244
245arch_initcall(gfar_mdio_of_init);
246
247static const char *gfar_tx_intr = "tx";
248static const char *gfar_rx_intr = "rx";
249static const char *gfar_err_intr = "error";
250
251static int __init gfar_of_init(void)
252{
253 struct device_node *np;
254 unsigned int i;
255 struct platform_device *gfar_dev;
256 struct resource res;
257 int ret;
258
259 for (np = NULL, i = 0;
260 (np = of_find_compatible_node(np, "network", "gianfar")) != NULL;
261 i++) {
Kumar Galaeed32002006-01-13 11:19:13 -0600262 struct resource r[4];
263 struct device_node *phy, *mdio;
264 struct gianfar_platform_data gfar_data;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000265 const unsigned int *id;
266 const char *model;
Andy Fleming7132ab72007-07-11 11:43:07 -0500267 const char *ctype;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000268 const void *mac_addr;
269 const phandle *ph;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400270 int n_res = 2;
Kumar Galaeed32002006-01-13 11:19:13 -0600271
272 memset(r, 0, sizeof(r));
273 memset(&gfar_data, 0, sizeof(gfar_data));
274
275 ret = of_address_to_resource(np, 0, &r[0]);
276 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600277 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600278
Andy Fleminga9b14972006-10-19 19:52:26 -0500279 of_irq_to_resource(np, 0, &r[1]);
Kumar Galaeed32002006-01-13 11:19:13 -0600280
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000281 model = of_get_property(np, "model", NULL);
Kumar Galaeed32002006-01-13 11:19:13 -0600282
283 /* If we aren't the FEC we have multiple interrupts */
284 if (model && strcasecmp(model, "FEC")) {
285 r[1].name = gfar_tx_intr;
286
287 r[2].name = gfar_rx_intr;
Andy Fleminga9b14972006-10-19 19:52:26 -0500288 of_irq_to_resource(np, 1, &r[2]);
Kumar Galaeed32002006-01-13 11:19:13 -0600289
290 r[3].name = gfar_err_intr;
Andy Fleminga9b14972006-10-19 19:52:26 -0500291 of_irq_to_resource(np, 2, &r[3]);
Jon Loeliger919fede2006-07-31 15:35:41 -0500292
293 n_res += 2;
Kumar Galaeed32002006-01-13 11:19:13 -0600294 }
295
Kumar Gala2fb07d72006-01-23 16:58:04 -0600296 gfar_dev =
297 platform_device_register_simple("fsl-gianfar", i, &r[0],
Vitaly Bordugfba43662006-09-21 17:26:34 +0400298 n_res);
Kumar Galaeed32002006-01-13 11:19:13 -0600299
300 if (IS_ERR(gfar_dev)) {
301 ret = PTR_ERR(gfar_dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600302 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600303 }
304
Timur Tabi29cfe6f2007-02-16 12:01:29 -0600305 mac_addr = of_get_mac_address(np);
Jon Loeligerf5831652006-08-17 08:42:35 -0500306 if (mac_addr)
307 memcpy(gfar_data.mac_addr, mac_addr, 6);
Kumar Galaeed32002006-01-13 11:19:13 -0600308
309 if (model && !strcasecmp(model, "TSEC"))
310 gfar_data.device_flags =
Kumar Gala2fb07d72006-01-23 16:58:04 -0600311 FSL_GIANFAR_DEV_HAS_GIGABIT |
312 FSL_GIANFAR_DEV_HAS_COALESCE |
313 FSL_GIANFAR_DEV_HAS_RMON |
314 FSL_GIANFAR_DEV_HAS_MULTI_INTR;
Kumar Galaeed32002006-01-13 11:19:13 -0600315 if (model && !strcasecmp(model, "eTSEC"))
316 gfar_data.device_flags =
Kumar Gala2fb07d72006-01-23 16:58:04 -0600317 FSL_GIANFAR_DEV_HAS_GIGABIT |
318 FSL_GIANFAR_DEV_HAS_COALESCE |
319 FSL_GIANFAR_DEV_HAS_RMON |
320 FSL_GIANFAR_DEV_HAS_MULTI_INTR |
321 FSL_GIANFAR_DEV_HAS_CSUM |
322 FSL_GIANFAR_DEV_HAS_VLAN |
323 FSL_GIANFAR_DEV_HAS_EXTENDED_HASH;
Kumar Galaeed32002006-01-13 11:19:13 -0600324
Andy Fleming7132ab72007-07-11 11:43:07 -0500325 ctype = of_get_property(np, "phy-connection-type", NULL);
326
327 /* We only care about rgmii-id. The rest are autodetected */
328 if (ctype && !strcmp(ctype, "rgmii-id"))
329 gfar_data.interface = PHY_INTERFACE_MODE_RGMII_ID;
330 else
331 gfar_data.interface = PHY_INTERFACE_MODE_MII;
332
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000333 ph = of_get_property(np, "phy-handle", NULL);
Vitaly Borduga21e2822007-12-07 01:51:31 +0300334 if (ph == NULL) {
335 u32 *fixed_link;
Kumar Galaeed32002006-01-13 11:19:13 -0600336
Vitaly Borduga21e2822007-12-07 01:51:31 +0300337 fixed_link = (u32 *)of_get_property(np, "fixed-link",
338 NULL);
339 if (!fixed_link) {
340 ret = -ENODEV;
341 goto unreg;
342 }
Kumar Galaeed32002006-01-13 11:19:13 -0600343
Vitaly Borduga21e2822007-12-07 01:51:31 +0300344 gfar_data.bus_id = 0;
345 gfar_data.phy_id = fixed_link[0];
346 } else {
347 phy = of_find_node_by_phandle(*ph);
Kumar Galaeed32002006-01-13 11:19:13 -0600348
Vitaly Borduga21e2822007-12-07 01:51:31 +0300349 if (phy == NULL) {
350 ret = -ENODEV;
351 goto unreg;
352 }
353
354 mdio = of_get_parent(phy);
355
356 id = of_get_property(phy, "reg", NULL);
357 ret = of_address_to_resource(mdio, 0, &res);
358 if (ret) {
359 of_node_put(phy);
360 of_node_put(mdio);
361 goto unreg;
362 }
363
364 gfar_data.phy_id = *id;
365 gfar_data.bus_id = res.start;
366
Kumar Galaeed32002006-01-13 11:19:13 -0600367 of_node_put(phy);
368 of_node_put(mdio);
Kumar Galaeed32002006-01-13 11:19:13 -0600369 }
370
Kumar Gala2fb07d72006-01-23 16:58:04 -0600371 ret =
372 platform_device_add_data(gfar_dev, &gfar_data,
373 sizeof(struct
374 gianfar_platform_data));
Kumar Galaeed32002006-01-13 11:19:13 -0600375 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600376 goto unreg;
Kumar Galaeed32002006-01-13 11:19:13 -0600377 }
378
379 return 0;
380
Kumar Gala2fb07d72006-01-23 16:58:04 -0600381unreg:
Kumar Galaeed32002006-01-13 11:19:13 -0600382 platform_device_unregister(gfar_dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600383err:
Kumar Galaeed32002006-01-13 11:19:13 -0600384 return ret;
385}
Kumar Gala2fb07d72006-01-23 16:58:04 -0600386
Kumar Galaeed32002006-01-13 11:19:13 -0600387arch_initcall(gfar_of_init);
388
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000389#ifdef CONFIG_I2C_BOARDINFO
390#include <linux/i2c.h>
391struct i2c_driver_device {
392 char *of_device;
393 char *i2c_driver;
394 char *i2c_type;
395};
396
397static struct i2c_driver_device i2c_devices[] __initdata = {
398 {"ricoh,rs5c372a", "rtc-rs5c372", "rs5c372a",},
399 {"ricoh,rs5c372b", "rtc-rs5c372", "rs5c372b",},
400 {"ricoh,rv5c386", "rtc-rs5c372", "rv5c386",},
401 {"ricoh,rv5c387a", "rtc-rs5c372", "rv5c387a",},
Peter Korsgaard0438c282007-09-20 12:42:13 +0200402 {"dallas,ds1307", "rtc-ds1307", "ds1307",},
403 {"dallas,ds1337", "rtc-ds1307", "ds1337",},
404 {"dallas,ds1338", "rtc-ds1307", "ds1338",},
405 {"dallas,ds1339", "rtc-ds1307", "ds1339",},
406 {"dallas,ds1340", "rtc-ds1307", "ds1340",},
407 {"stm,m41t00", "rtc-ds1307", "m41t00"},
Anton Vorontsovc0e4eb22007-10-02 17:47:43 +0400408 {"dallas,ds1374", "rtc-ds1374", "rtc-ds1374",},
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000409};
410
Guennadi Liakhovetskie78bb5d2007-08-16 05:15:03 +1000411static int __init of_find_i2c_driver(struct device_node *node,
412 struct i2c_board_info *info)
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000413{
414 int i;
415
416 for (i = 0; i < ARRAY_SIZE(i2c_devices); i++) {
417 if (!of_device_is_compatible(node, i2c_devices[i].of_device))
418 continue;
Guennadi Liakhovetskie78bb5d2007-08-16 05:15:03 +1000419 if (strlcpy(info->driver_name, i2c_devices[i].i2c_driver,
420 KOBJ_NAME_LEN) >= KOBJ_NAME_LEN ||
421 strlcpy(info->type, i2c_devices[i].i2c_type,
422 I2C_NAME_SIZE) >= I2C_NAME_SIZE)
423 return -ENOMEM;
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000424 return 0;
425 }
426 return -ENODEV;
427}
428
Guennadi Liakhovetskie78bb5d2007-08-16 05:15:03 +1000429static void __init of_register_i2c_devices(struct device_node *adap_node,
430 int bus_num)
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000431{
432 struct device_node *node = NULL;
433
434 while ((node = of_get_next_child(adap_node, node))) {
Anton Vorontsovda1bb3a2007-10-02 17:47:40 +0400435 struct i2c_board_info info = {};
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000436 const u32 *addr;
437 int len;
438
439 addr = of_get_property(node, "reg", &len);
440 if (!addr || len < sizeof(int) || *addr > (1 << 10) - 1) {
Peter Korsgaard210805e2007-09-20 12:42:12 +0200441 printk(KERN_WARNING "fsl_soc.c: invalid i2c device entry\n");
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000442 continue;
443 }
444
445 info.irq = irq_of_parse_and_map(node, 0);
446 if (info.irq == NO_IRQ)
447 info.irq = -1;
448
449 if (of_find_i2c_driver(node, &info) < 0)
450 continue;
451
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000452 info.addr = *addr;
453
454 i2c_register_board_info(bus_num, &info, 1);
455 }
456}
457
Kumar Galaeed32002006-01-13 11:19:13 -0600458static int __init fsl_i2c_of_init(void)
459{
460 struct device_node *np;
Kumar Galaec9686c2007-12-11 23:17:24 -0600461 unsigned int i = 0;
Kumar Galaeed32002006-01-13 11:19:13 -0600462 struct platform_device *i2c_dev;
463 int ret;
464
Kumar Galaec9686c2007-12-11 23:17:24 -0600465 for_each_compatible_node(np, NULL, "fsl-i2c") {
Kumar Galaeed32002006-01-13 11:19:13 -0600466 struct resource r[2];
467 struct fsl_i2c_platform_data i2c_data;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000468 const unsigned char *flags = NULL;
Kumar Galaeed32002006-01-13 11:19:13 -0600469
470 memset(&r, 0, sizeof(r));
471 memset(&i2c_data, 0, sizeof(i2c_data));
472
473 ret = of_address_to_resource(np, 0, &r[0]);
474 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600475 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600476
Andy Fleminga9b14972006-10-19 19:52:26 -0500477 of_irq_to_resource(np, 0, &r[1]);
Kumar Galaeed32002006-01-13 11:19:13 -0600478
479 i2c_dev = platform_device_register_simple("fsl-i2c", i, r, 2);
480 if (IS_ERR(i2c_dev)) {
481 ret = PTR_ERR(i2c_dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600482 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600483 }
484
485 i2c_data.device_flags = 0;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000486 flags = of_get_property(np, "dfsrr", NULL);
Kumar Galaeed32002006-01-13 11:19:13 -0600487 if (flags)
488 i2c_data.device_flags |= FSL_I2C_DEV_SEPARATE_DFSRR;
489
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000490 flags = of_get_property(np, "fsl5200-clocking", NULL);
Kumar Galaeed32002006-01-13 11:19:13 -0600491 if (flags)
492 i2c_data.device_flags |= FSL_I2C_DEV_CLOCK_5200;
493
Kumar Gala2fb07d72006-01-23 16:58:04 -0600494 ret =
495 platform_device_add_data(i2c_dev, &i2c_data,
496 sizeof(struct
497 fsl_i2c_platform_data));
Kumar Galaeed32002006-01-13 11:19:13 -0600498 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600499 goto unreg;
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000500
Kumar Galaec9686c2007-12-11 23:17:24 -0600501 of_register_i2c_devices(np, i++);
Kumar Galaeed32002006-01-13 11:19:13 -0600502 }
503
504 return 0;
505
Kumar Gala2fb07d72006-01-23 16:58:04 -0600506unreg:
Kumar Galaeed32002006-01-13 11:19:13 -0600507 platform_device_unregister(i2c_dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600508err:
Kumar Galaeed32002006-01-13 11:19:13 -0600509 return ret;
510}
Kumar Gala2fb07d72006-01-23 16:58:04 -0600511
Kumar Galaeed32002006-01-13 11:19:13 -0600512arch_initcall(fsl_i2c_of_init);
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000513#endif
Kumar Galaeed32002006-01-13 11:19:13 -0600514
515#ifdef CONFIG_PPC_83xx
516static int __init mpc83xx_wdt_init(void)
517{
518 struct resource r;
519 struct device_node *soc, *np;
520 struct platform_device *dev;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000521 const unsigned int *freq;
Kumar Galaeed32002006-01-13 11:19:13 -0600522 int ret;
523
524 np = of_find_compatible_node(NULL, "watchdog", "mpc83xx_wdt");
525
526 if (!np) {
527 ret = -ENODEV;
Kumar Gala2fb07d72006-01-23 16:58:04 -0600528 goto nodev;
Kumar Galaeed32002006-01-13 11:19:13 -0600529 }
530
531 soc = of_find_node_by_type(NULL, "soc");
532
533 if (!soc) {
534 ret = -ENODEV;
Kumar Gala2fb07d72006-01-23 16:58:04 -0600535 goto nosoc;
Kumar Galaeed32002006-01-13 11:19:13 -0600536 }
537
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000538 freq = of_get_property(soc, "bus-frequency", NULL);
Kumar Galaeed32002006-01-13 11:19:13 -0600539 if (!freq) {
540 ret = -ENODEV;
Kumar Gala2fb07d72006-01-23 16:58:04 -0600541 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600542 }
543
544 memset(&r, 0, sizeof(r));
545
546 ret = of_address_to_resource(np, 0, &r);
547 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600548 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600549
550 dev = platform_device_register_simple("mpc83xx_wdt", 0, &r, 1);
551 if (IS_ERR(dev)) {
552 ret = PTR_ERR(dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600553 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600554 }
555
556 ret = platform_device_add_data(dev, freq, sizeof(int));
557 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600558 goto unreg;
Kumar Galaeed32002006-01-13 11:19:13 -0600559
560 of_node_put(soc);
561 of_node_put(np);
562
563 return 0;
564
Kumar Gala2fb07d72006-01-23 16:58:04 -0600565unreg:
Kumar Galaeed32002006-01-13 11:19:13 -0600566 platform_device_unregister(dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600567err:
Kumar Galaeed32002006-01-13 11:19:13 -0600568 of_node_put(soc);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600569nosoc:
Kumar Galaeed32002006-01-13 11:19:13 -0600570 of_node_put(np);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600571nodev:
Kumar Galaeed32002006-01-13 11:19:13 -0600572 return ret;
573}
Kumar Gala2fb07d72006-01-23 16:58:04 -0600574
Kumar Galaeed32002006-01-13 11:19:13 -0600575arch_initcall(mpc83xx_wdt_init);
576#endif
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600577
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000578static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type)
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600579{
580 if (!phy_type)
581 return FSL_USB2_PHY_NONE;
582 if (!strcasecmp(phy_type, "ulpi"))
583 return FSL_USB2_PHY_ULPI;
584 if (!strcasecmp(phy_type, "utmi"))
585 return FSL_USB2_PHY_UTMI;
586 if (!strcasecmp(phy_type, "utmi_wide"))
587 return FSL_USB2_PHY_UTMI_WIDE;
588 if (!strcasecmp(phy_type, "serial"))
589 return FSL_USB2_PHY_SERIAL;
590
591 return FSL_USB2_PHY_NONE;
592}
593
594static int __init fsl_usb_of_init(void)
595{
596 struct device_node *np;
Li Yang866b6dd2008-01-08 15:18:46 +0800597 unsigned int i = 0;
Li Yang97c5a202007-02-07 13:49:24 +0800598 struct platform_device *usb_dev_mph = NULL, *usb_dev_dr_host = NULL,
599 *usb_dev_dr_client = NULL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600600 int ret;
601
Li Yang866b6dd2008-01-08 15:18:46 +0800602 for_each_compatible_node(np, NULL, "fsl-usb2-mph") {
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600603 struct resource r[2];
604 struct fsl_usb2_platform_data usb_data;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000605 const unsigned char *prop = NULL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600606
607 memset(&r, 0, sizeof(r));
608 memset(&usb_data, 0, sizeof(usb_data));
609
610 ret = of_address_to_resource(np, 0, &r[0]);
611 if (ret)
612 goto err;
613
Andy Fleminga9b14972006-10-19 19:52:26 -0500614 of_irq_to_resource(np, 0, &r[1]);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600615
Kumar Gala01cced22006-04-11 10:07:16 -0500616 usb_dev_mph =
617 platform_device_register_simple("fsl-ehci", i, r, 2);
618 if (IS_ERR(usb_dev_mph)) {
619 ret = PTR_ERR(usb_dev_mph);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600620 goto err;
621 }
622
Kumar Gala01cced22006-04-11 10:07:16 -0500623 usb_dev_mph->dev.coherent_dma_mask = 0xffffffffUL;
624 usb_dev_mph->dev.dma_mask = &usb_dev_mph->dev.coherent_dma_mask;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600625
626 usb_data.operating_mode = FSL_USB2_MPH_HOST;
627
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000628 prop = of_get_property(np, "port0", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600629 if (prop)
630 usb_data.port_enables |= FSL_USB2_PORT0_ENABLED;
631
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000632 prop = of_get_property(np, "port1", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600633 if (prop)
634 usb_data.port_enables |= FSL_USB2_PORT1_ENABLED;
635
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000636 prop = of_get_property(np, "phy_type", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600637 usb_data.phy_mode = determine_usb_phy(prop);
638
639 ret =
Kumar Gala01cced22006-04-11 10:07:16 -0500640 platform_device_add_data(usb_dev_mph, &usb_data,
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600641 sizeof(struct
642 fsl_usb2_platform_data));
643 if (ret)
Kumar Gala01cced22006-04-11 10:07:16 -0500644 goto unreg_mph;
Li Yang866b6dd2008-01-08 15:18:46 +0800645 i++;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600646 }
647
Li Yang866b6dd2008-01-08 15:18:46 +0800648 for_each_compatible_node(np, NULL, "fsl-usb2-dr") {
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600649 struct resource r[2];
650 struct fsl_usb2_platform_data usb_data;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000651 const unsigned char *prop = NULL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600652
653 memset(&r, 0, sizeof(r));
654 memset(&usb_data, 0, sizeof(usb_data));
655
656 ret = of_address_to_resource(np, 0, &r[0]);
657 if (ret)
Kumar Gala01cced22006-04-11 10:07:16 -0500658 goto unreg_mph;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600659
Andy Fleminga9b14972006-10-19 19:52:26 -0500660 of_irq_to_resource(np, 0, &r[1]);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600661
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000662 prop = of_get_property(np, "dr_mode", NULL);
Li Yang97c5a202007-02-07 13:49:24 +0800663
664 if (!prop || !strcmp(prop, "host")) {
665 usb_data.operating_mode = FSL_USB2_DR_HOST;
666 usb_dev_dr_host = platform_device_register_simple(
667 "fsl-ehci", i, r, 2);
668 if (IS_ERR(usb_dev_dr_host)) {
669 ret = PTR_ERR(usb_dev_dr_host);
670 goto err;
671 }
672 } else if (prop && !strcmp(prop, "peripheral")) {
673 usb_data.operating_mode = FSL_USB2_DR_DEVICE;
674 usb_dev_dr_client = platform_device_register_simple(
675 "fsl-usb2-udc", i, r, 2);
676 if (IS_ERR(usb_dev_dr_client)) {
677 ret = PTR_ERR(usb_dev_dr_client);
678 goto err;
679 }
680 } else if (prop && !strcmp(prop, "otg")) {
681 usb_data.operating_mode = FSL_USB2_DR_OTG;
682 usb_dev_dr_host = platform_device_register_simple(
683 "fsl-ehci", i, r, 2);
684 if (IS_ERR(usb_dev_dr_host)) {
685 ret = PTR_ERR(usb_dev_dr_host);
686 goto err;
687 }
688 usb_dev_dr_client = platform_device_register_simple(
689 "fsl-usb2-udc", i, r, 2);
690 if (IS_ERR(usb_dev_dr_client)) {
691 ret = PTR_ERR(usb_dev_dr_client);
692 goto err;
693 }
694 } else {
695 ret = -EINVAL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600696 goto err;
697 }
698
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000699 prop = of_get_property(np, "phy_type", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600700 usb_data.phy_mode = determine_usb_phy(prop);
701
Li Yang97c5a202007-02-07 13:49:24 +0800702 if (usb_dev_dr_host) {
703 usb_dev_dr_host->dev.coherent_dma_mask = 0xffffffffUL;
704 usb_dev_dr_host->dev.dma_mask = &usb_dev_dr_host->
705 dev.coherent_dma_mask;
706 if ((ret = platform_device_add_data(usb_dev_dr_host,
707 &usb_data, sizeof(struct
708 fsl_usb2_platform_data))))
709 goto unreg_dr;
710 }
711 if (usb_dev_dr_client) {
712 usb_dev_dr_client->dev.coherent_dma_mask = 0xffffffffUL;
713 usb_dev_dr_client->dev.dma_mask = &usb_dev_dr_client->
714 dev.coherent_dma_mask;
715 if ((ret = platform_device_add_data(usb_dev_dr_client,
716 &usb_data, sizeof(struct
717 fsl_usb2_platform_data))))
718 goto unreg_dr;
719 }
Li Yang866b6dd2008-01-08 15:18:46 +0800720 i++;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600721 }
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600722 return 0;
723
Kumar Gala01cced22006-04-11 10:07:16 -0500724unreg_dr:
Li Yang97c5a202007-02-07 13:49:24 +0800725 if (usb_dev_dr_host)
726 platform_device_unregister(usb_dev_dr_host);
727 if (usb_dev_dr_client)
728 platform_device_unregister(usb_dev_dr_client);
Kumar Gala01cced22006-04-11 10:07:16 -0500729unreg_mph:
730 if (usb_dev_mph)
731 platform_device_unregister(usb_dev_mph);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600732err:
733 return ret;
734}
735
Kumar Gala01cced22006-04-11 10:07:16 -0500736arch_initcall(fsl_usb_of_init);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400737
Scott Woode631ae32007-09-14 13:04:54 -0500738#ifndef CONFIG_PPC_CPM_NEW_BINDING
Vitaly Bordugfba43662006-09-21 17:26:34 +0400739#ifdef CONFIG_CPM2
740
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +0300741extern void init_scc_ioports(struct fs_uart_platform_info*);
742
Vitaly Bordugfba43662006-09-21 17:26:34 +0400743static const char fcc_regs[] = "fcc_regs";
744static const char fcc_regs_c[] = "fcc_regs_c";
745static const char fcc_pram[] = "fcc_pram";
746static char bus_id[9][BUS_ID_SIZE];
747
748static int __init fs_enet_of_init(void)
749{
750 struct device_node *np;
751 unsigned int i;
752 struct platform_device *fs_enet_dev;
753 struct resource res;
754 int ret;
755
756 for (np = NULL, i = 0;
757 (np = of_find_compatible_node(np, "network", "fs_enet")) != NULL;
758 i++) {
759 struct resource r[4];
760 struct device_node *phy, *mdio;
761 struct fs_platform_info fs_enet_data;
Olof Johansson2b00b252006-10-05 21:16:48 -0500762 const unsigned int *id, *phy_addr, *phy_irq;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400763 const void *mac_addr;
764 const phandle *ph;
765 const char *model;
766
767 memset(r, 0, sizeof(r));
768 memset(&fs_enet_data, 0, sizeof(fs_enet_data));
769
770 ret = of_address_to_resource(np, 0, &r[0]);
771 if (ret)
772 goto err;
773 r[0].name = fcc_regs;
774
775 ret = of_address_to_resource(np, 1, &r[1]);
776 if (ret)
777 goto err;
778 r[1].name = fcc_pram;
779
780 ret = of_address_to_resource(np, 2, &r[2]);
781 if (ret)
782 goto err;
783 r[2].name = fcc_regs_c;
Vitaly Borduged943c12006-10-02 22:41:50 +0400784 fs_enet_data.fcc_regs_c = r[2].start;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400785
Andy Fleminga9b14972006-10-19 19:52:26 -0500786 of_irq_to_resource(np, 0, &r[3]);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400787
788 fs_enet_dev =
789 platform_device_register_simple("fsl-cpm-fcc", i, &r[0], 4);
790
791 if (IS_ERR(fs_enet_dev)) {
792 ret = PTR_ERR(fs_enet_dev);
793 goto err;
794 }
795
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000796 model = of_get_property(np, "model", NULL);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400797 if (model == NULL) {
798 ret = -ENODEV;
799 goto unreg;
800 }
801
Timur Tabi29cfe6f2007-02-16 12:01:29 -0600802 mac_addr = of_get_mac_address(np);
803 if (mac_addr)
804 memcpy(fs_enet_data.macaddr, mac_addr, 6);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400805
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000806 ph = of_get_property(np, "phy-handle", NULL);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400807 phy = of_find_node_by_phandle(*ph);
808
809 if (phy == NULL) {
810 ret = -ENODEV;
811 goto unreg;
812 }
813
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000814 phy_addr = of_get_property(phy, "reg", NULL);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400815 fs_enet_data.phy_addr = *phy_addr;
816
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000817 phy_irq = of_get_property(phy, "interrupts", NULL);
Vitaly Borduged943c12006-10-02 22:41:50 +0400818
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000819 id = of_get_property(np, "device-id", NULL);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400820 fs_enet_data.fs_no = *id;
Vitaly Bordug611a15a2006-09-21 22:38:05 +0400821 strcpy(fs_enet_data.fs_type, model);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400822
823 mdio = of_get_parent(phy);
824 ret = of_address_to_resource(mdio, 0, &res);
825 if (ret) {
826 of_node_put(phy);
827 of_node_put(mdio);
828 goto unreg;
829 }
830
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000831 fs_enet_data.clk_rx = *((u32 *)of_get_property(np,
832 "rx-clock", NULL));
833 fs_enet_data.clk_tx = *((u32 *)of_get_property(np,
834 "tx-clock", NULL));
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400835
Vitaly Bordugfba43662006-09-21 17:26:34 +0400836 if (strstr(model, "FCC")) {
Vitaly Bordug611a15a2006-09-21 22:38:05 +0400837 int fcc_index = *id - 1;
Olof Johansson2b00b252006-10-05 21:16:48 -0500838 const unsigned char *mdio_bb_prop;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400839
Vitaly Bordugfc8e50e2006-09-21 22:37:58 +0400840 fs_enet_data.dpram_offset = (u32)cpm_dpram_addr(0);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400841 fs_enet_data.rx_ring = 32;
842 fs_enet_data.tx_ring = 32;
843 fs_enet_data.rx_copybreak = 240;
844 fs_enet_data.use_napi = 0;
845 fs_enet_data.napi_weight = 17;
846 fs_enet_data.mem_offset = FCC_MEM_OFFSET(fcc_index);
847 fs_enet_data.cp_page = CPM_CR_FCC_PAGE(fcc_index);
848 fs_enet_data.cp_block = CPM_CR_FCC_SBLOCK(fcc_index);
849
850 snprintf((char*)&bus_id[(*id)], BUS_ID_SIZE, "%x:%02x",
851 (u32)res.start, fs_enet_data.phy_addr);
852 fs_enet_data.bus_id = (char*)&bus_id[(*id)];
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400853 fs_enet_data.init_ioports = init_fcc_ioports;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400854
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000855 mdio_bb_prop = of_get_property(phy, "bitbang", NULL);
Vitaly Borduged943c12006-10-02 22:41:50 +0400856 if (mdio_bb_prop) {
857 struct platform_device *fs_enet_mdio_bb_dev;
858 struct fs_mii_bb_platform_info fs_enet_mdio_bb_data;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400859
Vitaly Borduged943c12006-10-02 22:41:50 +0400860 fs_enet_mdio_bb_dev =
861 platform_device_register_simple("fsl-bb-mdio",
862 i, NULL, 0);
863 memset(&fs_enet_mdio_bb_data, 0,
864 sizeof(struct fs_mii_bb_platform_info));
865 fs_enet_mdio_bb_data.mdio_dat.bit =
866 mdio_bb_prop[0];
867 fs_enet_mdio_bb_data.mdio_dir.bit =
868 mdio_bb_prop[1];
869 fs_enet_mdio_bb_data.mdc_dat.bit =
870 mdio_bb_prop[2];
871 fs_enet_mdio_bb_data.mdio_port =
872 mdio_bb_prop[3];
873 fs_enet_mdio_bb_data.mdc_port =
874 mdio_bb_prop[4];
875 fs_enet_mdio_bb_data.delay =
876 mdio_bb_prop[5];
877
878 fs_enet_mdio_bb_data.irq[0] = phy_irq[0];
879 fs_enet_mdio_bb_data.irq[1] = -1;
880 fs_enet_mdio_bb_data.irq[2] = -1;
881 fs_enet_mdio_bb_data.irq[3] = phy_irq[0];
882 fs_enet_mdio_bb_data.irq[31] = -1;
883
884 fs_enet_mdio_bb_data.mdio_dat.offset =
885 (u32)&cpm2_immr->im_ioport.iop_pdatc;
886 fs_enet_mdio_bb_data.mdio_dir.offset =
887 (u32)&cpm2_immr->im_ioport.iop_pdirc;
888 fs_enet_mdio_bb_data.mdc_dat.offset =
889 (u32)&cpm2_immr->im_ioport.iop_pdatc;
890
891 ret = platform_device_add_data(
892 fs_enet_mdio_bb_dev,
893 &fs_enet_mdio_bb_data,
894 sizeof(struct fs_mii_bb_platform_info));
895 if (ret)
896 goto unreg;
897 }
Li Yang97c5a202007-02-07 13:49:24 +0800898
Vitaly Borduged943c12006-10-02 22:41:50 +0400899 of_node_put(phy);
900 of_node_put(mdio);
901
902 ret = platform_device_add_data(fs_enet_dev, &fs_enet_data,
903 sizeof(struct
904 fs_platform_info));
Olof Johansson2b00b252006-10-05 21:16:48 -0500905 if (ret)
906 goto unreg;
907 }
Vitaly Bordugfba43662006-09-21 17:26:34 +0400908 }
909 return 0;
910
911unreg:
912 platform_device_unregister(fs_enet_dev);
913err:
914 return ret;
915}
916
917arch_initcall(fs_enet_of_init);
918
919static const char scc_regs[] = "regs";
920static const char scc_pram[] = "pram";
921
922static int __init cpm_uart_of_init(void)
923{
924 struct device_node *np;
925 unsigned int i;
926 struct platform_device *cpm_uart_dev;
927 int ret;
928
929 for (np = NULL, i = 0;
930 (np = of_find_compatible_node(np, "serial", "cpm_uart")) != NULL;
931 i++) {
932 struct resource r[3];
933 struct fs_uart_platform_info cpm_uart_data;
934 const int *id;
Vitaly Bordug611a15a2006-09-21 22:38:05 +0400935 const char *model;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400936
937 memset(r, 0, sizeof(r));
938 memset(&cpm_uart_data, 0, sizeof(cpm_uart_data));
939
940 ret = of_address_to_resource(np, 0, &r[0]);
941 if (ret)
942 goto err;
943
944 r[0].name = scc_regs;
945
946 ret = of_address_to_resource(np, 1, &r[1]);
947 if (ret)
948 goto err;
949 r[1].name = scc_pram;
950
Andy Fleminga9b14972006-10-19 19:52:26 -0500951 of_irq_to_resource(np, 0, &r[2]);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400952
953 cpm_uart_dev =
954 platform_device_register_simple("fsl-cpm-scc:uart", i, &r[0], 3);
955
956 if (IS_ERR(cpm_uart_dev)) {
957 ret = PTR_ERR(cpm_uart_dev);
958 goto err;
959 }
960
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000961 id = of_get_property(np, "device-id", NULL);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400962 cpm_uart_data.fs_no = *id;
Vitaly Bordug611a15a2006-09-21 22:38:05 +0400963
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000964 model = of_get_property(np, "model", NULL);
Vitaly Bordug611a15a2006-09-21 22:38:05 +0400965 strcpy(cpm_uart_data.fs_type, model);
966
Vitaly Bordugfba43662006-09-21 17:26:34 +0400967 cpm_uart_data.uart_clk = ppc_proc_freq;
968
969 cpm_uart_data.tx_num_fifo = 4;
970 cpm_uart_data.tx_buf_size = 32;
971 cpm_uart_data.rx_num_fifo = 4;
972 cpm_uart_data.rx_buf_size = 32;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000973 cpm_uart_data.clk_rx = *((u32 *)of_get_property(np,
974 "rx-clock", NULL));
975 cpm_uart_data.clk_tx = *((u32 *)of_get_property(np,
976 "tx-clock", NULL));
Vitaly Bordugfba43662006-09-21 17:26:34 +0400977
978 ret =
979 platform_device_add_data(cpm_uart_dev, &cpm_uart_data,
980 sizeof(struct
981 fs_uart_platform_info));
982 if (ret)
983 goto unreg;
984 }
985
986 return 0;
987
988unreg:
989 platform_device_unregister(cpm_uart_dev);
990err:
991 return ret;
992}
993
994arch_initcall(cpm_uart_of_init);
995#endif /* CONFIG_CPM2 */
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +0300996
997#ifdef CONFIG_8xx
998
999extern void init_scc_ioports(struct fs_platform_info*);
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001000extern int platform_device_skip(const char *model, int id);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001001
1002static int __init fs_enet_mdio_of_init(void)
1003{
1004 struct device_node *np;
1005 unsigned int i;
1006 struct platform_device *mdio_dev;
1007 struct resource res;
1008 int ret;
1009
1010 for (np = NULL, i = 0;
1011 (np = of_find_compatible_node(np, "mdio", "fs_enet")) != NULL;
1012 i++) {
1013 struct fs_mii_fec_platform_info mdio_data;
1014
1015 memset(&res, 0, sizeof(res));
1016 memset(&mdio_data, 0, sizeof(mdio_data));
1017
1018 ret = of_address_to_resource(np, 0, &res);
1019 if (ret)
1020 goto err;
1021
1022 mdio_dev =
1023 platform_device_register_simple("fsl-cpm-fec-mdio",
1024 res.start, &res, 1);
1025 if (IS_ERR(mdio_dev)) {
1026 ret = PTR_ERR(mdio_dev);
1027 goto err;
1028 }
1029
1030 mdio_data.mii_speed = ((((ppc_proc_freq + 4999999) / 2500000) / 2) & 0x3F) << 1;
1031
1032 ret =
1033 platform_device_add_data(mdio_dev, &mdio_data,
1034 sizeof(struct fs_mii_fec_platform_info));
1035 if (ret)
1036 goto unreg;
1037 }
1038 return 0;
1039
1040unreg:
1041 platform_device_unregister(mdio_dev);
1042err:
1043 return ret;
1044}
1045
1046arch_initcall(fs_enet_mdio_of_init);
1047
1048static const char *enet_regs = "regs";
1049static const char *enet_pram = "pram";
1050static const char *enet_irq = "interrupt";
1051static char bus_id[9][BUS_ID_SIZE];
1052
1053static int __init fs_enet_of_init(void)
1054{
1055 struct device_node *np;
1056 unsigned int i;
1057 struct platform_device *fs_enet_dev = NULL;
1058 struct resource res;
1059 int ret;
1060
1061 for (np = NULL, i = 0;
1062 (np = of_find_compatible_node(np, "network", "fs_enet")) != NULL;
1063 i++) {
1064 struct resource r[4];
1065 struct device_node *phy = NULL, *mdio = NULL;
1066 struct fs_platform_info fs_enet_data;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001067 const unsigned int *id;
1068 const unsigned int *phy_addr;
Scott Woodb7a69122007-05-09 03:15:34 +10001069 const void *mac_addr;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001070 const phandle *ph;
1071 const char *model;
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001072
1073 memset(r, 0, sizeof(r));
1074 memset(&fs_enet_data, 0, sizeof(fs_enet_data));
1075
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001076 model = of_get_property(np, "model", NULL);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001077 if (model == NULL) {
1078 ret = -ENODEV;
1079 goto unreg;
1080 }
1081
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001082 id = of_get_property(np, "device-id", NULL);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001083 fs_enet_data.fs_no = *id;
1084
1085 if (platform_device_skip(model, *id))
1086 continue;
1087
1088 ret = of_address_to_resource(np, 0, &r[0]);
1089 if (ret)
1090 goto err;
1091 r[0].name = enet_regs;
1092
Timur Tabi29cfe6f2007-02-16 12:01:29 -06001093 mac_addr = of_get_mac_address(np);
1094 if (mac_addr)
1095 memcpy(fs_enet_data.macaddr, mac_addr, 6);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001096
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001097 ph = of_get_property(np, "phy-handle", NULL);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001098 if (ph != NULL)
1099 phy = of_find_node_by_phandle(*ph);
1100
1101 if (phy != NULL) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001102 phy_addr = of_get_property(phy, "reg", NULL);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001103 fs_enet_data.phy_addr = *phy_addr;
1104 fs_enet_data.has_phy = 1;
1105
1106 mdio = of_get_parent(phy);
1107 ret = of_address_to_resource(mdio, 0, &res);
1108 if (ret) {
1109 of_node_put(phy);
1110 of_node_put(mdio);
1111 goto unreg;
1112 }
1113 }
1114
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001115 model = of_get_property(np, "model", NULL);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001116 strcpy(fs_enet_data.fs_type, model);
1117
1118 if (strstr(model, "FEC")) {
1119 r[1].start = r[1].end = irq_of_parse_and_map(np, 0);
1120 r[1].flags = IORESOURCE_IRQ;
1121 r[1].name = enet_irq;
1122
1123 fs_enet_dev =
1124 platform_device_register_simple("fsl-cpm-fec", i, &r[0], 2);
1125
1126 if (IS_ERR(fs_enet_dev)) {
1127 ret = PTR_ERR(fs_enet_dev);
1128 goto err;
1129 }
1130
1131 fs_enet_data.rx_ring = 128;
1132 fs_enet_data.tx_ring = 16;
1133 fs_enet_data.rx_copybreak = 240;
1134 fs_enet_data.use_napi = 1;
1135 fs_enet_data.napi_weight = 17;
1136
1137 snprintf((char*)&bus_id[i], BUS_ID_SIZE, "%x:%02x",
1138 (u32)res.start, fs_enet_data.phy_addr);
1139 fs_enet_data.bus_id = (char*)&bus_id[i];
1140 fs_enet_data.init_ioports = init_fec_ioports;
1141 }
1142 if (strstr(model, "SCC")) {
1143 ret = of_address_to_resource(np, 1, &r[1]);
1144 if (ret)
1145 goto err;
1146 r[1].name = enet_pram;
1147
1148 r[2].start = r[2].end = irq_of_parse_and_map(np, 0);
1149 r[2].flags = IORESOURCE_IRQ;
1150 r[2].name = enet_irq;
1151
1152 fs_enet_dev =
1153 platform_device_register_simple("fsl-cpm-scc", i, &r[0], 3);
1154
1155 if (IS_ERR(fs_enet_dev)) {
1156 ret = PTR_ERR(fs_enet_dev);
1157 goto err;
1158 }
1159
1160 fs_enet_data.rx_ring = 64;
1161 fs_enet_data.tx_ring = 8;
1162 fs_enet_data.rx_copybreak = 240;
1163 fs_enet_data.use_napi = 1;
1164 fs_enet_data.napi_weight = 17;
1165
1166 snprintf((char*)&bus_id[i], BUS_ID_SIZE, "%s", "fixed@10:1");
1167 fs_enet_data.bus_id = (char*)&bus_id[i];
1168 fs_enet_data.init_ioports = init_scc_ioports;
1169 }
1170
1171 of_node_put(phy);
1172 of_node_put(mdio);
1173
1174 ret = platform_device_add_data(fs_enet_dev, &fs_enet_data,
1175 sizeof(struct
1176 fs_platform_info));
1177 if (ret)
1178 goto unreg;
1179 }
1180 return 0;
1181
1182unreg:
1183 platform_device_unregister(fs_enet_dev);
1184err:
1185 return ret;
1186}
1187
1188arch_initcall(fs_enet_of_init);
1189
Vitaly Bordug80128ff2007-07-09 11:37:35 -07001190static int __init fsl_pcmcia_of_init(void)
1191{
Cyrill Gorcunov26cb7d82007-11-30 06:44:36 +11001192 struct device_node *np;
Vitaly Bordug80128ff2007-07-09 11:37:35 -07001193 /*
1194 * Register all the devices which type is "pcmcia"
1195 */
Cyrill Gorcunov26cb7d82007-11-30 06:44:36 +11001196 for_each_compatible_node(np, "pcmcia", "fsl,pq-pcmcia")
1197 of_platform_device_create(np, "m8xx-pcmcia", NULL);
Vitaly Bordug80128ff2007-07-09 11:37:35 -07001198 return 0;
1199}
1200
1201arch_initcall(fsl_pcmcia_of_init);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001202
1203static const char *smc_regs = "regs";
1204static const char *smc_pram = "pram";
1205
1206static int __init cpm_smc_uart_of_init(void)
1207{
1208 struct device_node *np;
1209 unsigned int i;
1210 struct platform_device *cpm_uart_dev;
1211 int ret;
1212
1213 for (np = NULL, i = 0;
1214 (np = of_find_compatible_node(np, "serial", "cpm_uart")) != NULL;
1215 i++) {
1216 struct resource r[3];
1217 struct fs_uart_platform_info cpm_uart_data;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001218 const int *id;
1219 const char *model;
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001220
1221 memset(r, 0, sizeof(r));
1222 memset(&cpm_uart_data, 0, sizeof(cpm_uart_data));
1223
1224 ret = of_address_to_resource(np, 0, &r[0]);
1225 if (ret)
1226 goto err;
1227
1228 r[0].name = smc_regs;
1229
1230 ret = of_address_to_resource(np, 1, &r[1]);
1231 if (ret)
1232 goto err;
1233 r[1].name = smc_pram;
1234
1235 r[2].start = r[2].end = irq_of_parse_and_map(np, 0);
1236 r[2].flags = IORESOURCE_IRQ;
1237
1238 cpm_uart_dev =
1239 platform_device_register_simple("fsl-cpm-smc:uart", i, &r[0], 3);
1240
1241 if (IS_ERR(cpm_uart_dev)) {
1242 ret = PTR_ERR(cpm_uart_dev);
1243 goto err;
1244 }
1245
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001246 model = of_get_property(np, "model", NULL);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001247 strcpy(cpm_uart_data.fs_type, model);
1248
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001249 id = of_get_property(np, "device-id", NULL);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001250 cpm_uart_data.fs_no = *id;
1251 cpm_uart_data.uart_clk = ppc_proc_freq;
1252
1253 cpm_uart_data.tx_num_fifo = 4;
1254 cpm_uart_data.tx_buf_size = 32;
1255 cpm_uart_data.rx_num_fifo = 4;
1256 cpm_uart_data.rx_buf_size = 32;
1257
1258 ret =
1259 platform_device_add_data(cpm_uart_dev, &cpm_uart_data,
1260 sizeof(struct
1261 fs_uart_platform_info));
1262 if (ret)
1263 goto unreg;
1264 }
1265
1266 return 0;
1267
1268unreg:
1269 platform_device_unregister(cpm_uart_dev);
1270err:
1271 return ret;
1272}
1273
1274arch_initcall(cpm_smc_uart_of_init);
1275
1276#endif /* CONFIG_8xx */
Scott Woode631ae32007-09-14 13:04:54 -05001277#endif /* CONFIG_PPC_CPM_NEW_BINDING */
Anton Vorontsov26f6cb92007-08-23 15:35:56 +04001278
Anton Vorontsovf3a2b292008-01-24 18:40:07 +03001279static int __init of_fsl_spi_probe(char *type, char *compatible, u32 sysclk,
1280 struct spi_board_info *board_infos,
1281 unsigned int num_board_infos,
1282 void (*activate_cs)(u8 cs, u8 polarity),
1283 void (*deactivate_cs)(u8 cs, u8 polarity))
Anton Vorontsov26f6cb92007-08-23 15:35:56 +04001284{
1285 struct device_node *np;
Anton Vorontsovf3a2b292008-01-24 18:40:07 +03001286 unsigned int i = 0;
Anton Vorontsov26f6cb92007-08-23 15:35:56 +04001287
Anton Vorontsovf3a2b292008-01-24 18:40:07 +03001288 for_each_compatible_node(np, type, compatible) {
1289 int ret;
Anton Vorontsov26f6cb92007-08-23 15:35:56 +04001290 unsigned int j;
1291 const void *prop;
1292 struct resource res[2];
1293 struct platform_device *pdev;
1294 struct fsl_spi_platform_data pdata = {
1295 .activate_cs = activate_cs,
1296 .deactivate_cs = deactivate_cs,
1297 };
1298
1299 memset(res, 0, sizeof(res));
1300
Anton Vorontsov59a0ea52008-01-24 18:40:03 +03001301 pdata.sysclk = sysclk;
Anton Vorontsov26f6cb92007-08-23 15:35:56 +04001302
1303 prop = of_get_property(np, "reg", NULL);
1304 if (!prop)
1305 goto err;
1306 pdata.bus_num = *(u32 *)prop;
1307
Anton Vorontsovf3a2b292008-01-24 18:40:07 +03001308 prop = of_get_property(np, "cell-index", NULL);
1309 if (prop)
1310 i = *(u32 *)prop;
1311
Anton Vorontsov26f6cb92007-08-23 15:35:56 +04001312 prop = of_get_property(np, "mode", NULL);
1313 if (prop && !strcmp(prop, "cpu-qe"))
1314 pdata.qe_mode = 1;
1315
1316 for (j = 0; j < num_board_infos; j++) {
1317 if (board_infos[j].bus_num == pdata.bus_num)
1318 pdata.max_chipselect++;
1319 }
1320
1321 if (!pdata.max_chipselect)
Anton Vorontsovf3a2b292008-01-24 18:40:07 +03001322 continue;
Anton Vorontsov26f6cb92007-08-23 15:35:56 +04001323
1324 ret = of_address_to_resource(np, 0, &res[0]);
1325 if (ret)
1326 goto err;
1327
1328 ret = of_irq_to_resource(np, 0, &res[1]);
1329 if (ret == NO_IRQ)
1330 goto err;
1331
1332 pdev = platform_device_alloc("mpc83xx_spi", i);
1333 if (!pdev)
1334 goto err;
1335
1336 ret = platform_device_add_data(pdev, &pdata, sizeof(pdata));
1337 if (ret)
1338 goto unreg;
1339
1340 ret = platform_device_add_resources(pdev, res,
1341 ARRAY_SIZE(res));
1342 if (ret)
1343 goto unreg;
1344
Kim Phillipsdc4e4202008-02-01 18:09:58 -06001345 ret = platform_device_add(pdev);
Anton Vorontsov26f6cb92007-08-23 15:35:56 +04001346 if (ret)
1347 goto unreg;
1348
Anton Vorontsovf3a2b292008-01-24 18:40:07 +03001349 goto next;
Anton Vorontsov26f6cb92007-08-23 15:35:56 +04001350unreg:
1351 platform_device_del(pdev);
1352err:
Anton Vorontsovf3a2b292008-01-24 18:40:07 +03001353 pr_err("%s: registration failed\n", np->full_name);
1354next:
1355 i++;
Anton Vorontsov26f6cb92007-08-23 15:35:56 +04001356 }
1357
Anton Vorontsovf3a2b292008-01-24 18:40:07 +03001358 return i;
1359}
1360
1361int __init fsl_spi_init(struct spi_board_info *board_infos,
1362 unsigned int num_board_infos,
1363 void (*activate_cs)(u8 cs, u8 polarity),
1364 void (*deactivate_cs)(u8 cs, u8 polarity))
1365{
1366 u32 sysclk = -1;
1367 int ret;
1368
1369#ifdef CONFIG_QUICC_ENGINE
1370 /* SPI controller is either clocked from QE or SoC clock */
1371 sysclk = get_brgfreq();
1372#endif
1373 if (sysclk == -1) {
1374 struct device_node *np;
1375 const u32 *freq;
1376 int size;
1377
1378 np = of_find_node_by_type(NULL, "soc");
1379 if (!np)
1380 return -ENODEV;
1381
1382 freq = of_get_property(np, "clock-frequency", &size);
1383 if (!freq || size != sizeof(*freq) || *freq == 0) {
1384 freq = of_get_property(np, "bus-frequency", &size);
1385 if (!freq || size != sizeof(*freq) || *freq == 0) {
1386 of_node_put(np);
1387 return -ENODEV;
1388 }
1389 }
1390
1391 sysclk = *freq;
1392 of_node_put(np);
1393 }
1394
1395 ret = of_fsl_spi_probe(NULL, "fsl,spi", sysclk, board_infos,
1396 num_board_infos, activate_cs, deactivate_cs);
1397 if (!ret)
1398 of_fsl_spi_probe("spi", "fsl_spi", sysclk, board_infos,
1399 num_board_infos, activate_cs, deactivate_cs);
1400
Anton Vorontsov26f6cb92007-08-23 15:35:56 +04001401 return spi_register_board_info(board_infos, num_board_infos);
1402}
Kumar Galae1c15752007-10-04 01:04:57 -05001403
1404#if defined(CONFIG_PPC_85xx) || defined(CONFIG_PPC_86xx)
1405static __be32 __iomem *rstcr;
1406
1407static int __init setup_rstcr(void)
1408{
1409 struct device_node *np;
1410 np = of_find_node_by_name(NULL, "global-utilities");
1411 if ((np && of_get_property(np, "fsl,has-rstcr", NULL))) {
1412 const u32 *prop = of_get_property(np, "reg", NULL);
1413 if (prop) {
1414 /* map reset control register
1415 * 0xE00B0 is offset of reset control register
1416 */
1417 rstcr = ioremap(get_immrbase() + *prop + 0xB0, 0xff);
1418 if (!rstcr)
1419 printk (KERN_EMERG "Error: reset control "
1420 "register not mapped!\n");
1421 }
1422 } else
1423 printk (KERN_INFO "rstcr compatible register does not exist!\n");
1424 if (np)
1425 of_node_put(np);
1426 return 0;
1427}
1428
1429arch_initcall(setup_rstcr);
1430
1431void fsl_rstcr_restart(char *cmd)
1432{
1433 local_irq_disable();
1434 if (rstcr)
1435 /* set reset control register */
1436 out_be32(rstcr, 0x2); /* HRESET_REQ */
1437
1438 while (1) ;
1439}
1440#endif