blob: f5c240242cfd136c31a599708871ae350b62e486 [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>
Anton Vorontsov26f6cb92007-08-23 15:35:56 +040027#include <linux/spi/spi.h>
Kumar Galaeed32002006-01-13 11:19:13 -060028#include <linux/fsl_devices.h>
Vitaly Bordugfba43662006-09-21 17:26:34 +040029#include <linux/fs_enet_pd.h>
30#include <linux/fs_uart_pd.h>
Kumar Galaeed32002006-01-13 11:19:13 -060031
32#include <asm/system.h>
33#include <asm/atomic.h>
34#include <asm/io.h>
35#include <asm/irq.h>
Vitaly Bordugfba43662006-09-21 17:26:34 +040036#include <asm/time.h>
Kumar Galaeed32002006-01-13 11:19:13 -060037#include <asm/prom.h>
38#include <sysdev/fsl_soc.h>
39#include <mm/mmu_decl.h>
Vitaly Bordugfba43662006-09-21 17:26:34 +040040#include <asm/cpm2.h>
Kumar Galaeed32002006-01-13 11:19:13 -060041
Vitaly Bordugd3465c92006-09-21 22:38:05 +040042extern void init_fcc_ioports(struct fs_platform_info*);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +030043extern void init_fec_ioports(struct fs_platform_info*);
44extern void init_smc_ioports(struct fs_uart_platform_info*);
Kumar Galaeed32002006-01-13 11:19:13 -060045static phys_addr_t immrbase = -1;
46
47phys_addr_t get_immrbase(void)
48{
49 struct device_node *soc;
50
51 if (immrbase != -1)
52 return immrbase;
53
54 soc = of_find_node_by_type(NULL, "soc");
Kumar Gala2fb07d72006-01-23 16:58:04 -060055 if (soc) {
Scott Woodf9234732007-08-20 11:38:12 -050056 int size;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100057 const void *prop = of_get_property(soc, "reg", &size);
Vitaly Bordugfba43662006-09-21 17:26:34 +040058
59 if (prop)
60 immrbase = of_translate_address(soc, prop);
Kumar Galaeed32002006-01-13 11:19:13 -060061 of_node_put(soc);
Scott Woodf9234732007-08-20 11:38:12 -050062 }
Kumar Galaeed32002006-01-13 11:19:13 -060063
64 return immrbase;
65}
Kumar Gala2fb07d72006-01-23 16:58:04 -060066
Kumar Galaeed32002006-01-13 11:19:13 -060067EXPORT_SYMBOL(get_immrbase);
68
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +030069#if defined(CONFIG_CPM2) || defined(CONFIG_8xx)
Vitaly Bordugfba43662006-09-21 17:26:34 +040070
71static u32 brgfreq = -1;
72
73u32 get_brgfreq(void)
74{
75 struct device_node *node;
Scott Wood6d817aa2007-08-29 15:08:40 -050076 const unsigned int *prop;
77 int size;
Vitaly Bordugfba43662006-09-21 17:26:34 +040078
79 if (brgfreq != -1)
80 return brgfreq;
81
Scott Wood6d817aa2007-08-29 15:08:40 -050082 node = of_find_compatible_node(NULL, NULL, "fsl,cpm-brg");
Vitaly Bordugfba43662006-09-21 17:26:34 +040083 if (node) {
Scott Wood6d817aa2007-08-29 15:08:40 -050084 prop = of_get_property(node, "clock-frequency", &size);
85 if (prop && size == 4)
86 brgfreq = *prop;
Vitaly Bordugfba43662006-09-21 17:26:34 +040087
Scott Wood6d817aa2007-08-29 15:08:40 -050088 of_node_put(node);
89 return brgfreq;
90 }
91
92 /* Legacy device binding -- will go away when no users are left. */
93 node = of_find_node_by_type(NULL, "cpm");
94 if (node) {
95 prop = of_get_property(node, "brg-frequency", &size);
Scott Woodf9234732007-08-20 11:38:12 -050096 if (prop && size == 4)
Vitaly Bordugfba43662006-09-21 17:26:34 +040097 brgfreq = *prop;
Scott Woodf9234732007-08-20 11:38:12 -050098
Vitaly Bordugfba43662006-09-21 17:26:34 +040099 of_node_put(node);
Scott Woodf9234732007-08-20 11:38:12 -0500100 }
Vitaly Bordugfba43662006-09-21 17:26:34 +0400101
102 return brgfreq;
103}
104
105EXPORT_SYMBOL(get_brgfreq);
106
107static u32 fs_baudrate = -1;
108
109u32 get_baudrate(void)
110{
111 struct device_node *node;
112
113 if (fs_baudrate != -1)
114 return fs_baudrate;
115
116 node = of_find_node_by_type(NULL, "serial");
117 if (node) {
Scott Woodf9234732007-08-20 11:38:12 -0500118 int size;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000119 const unsigned int *prop = of_get_property(node,
120 "current-speed", &size);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400121
122 if (prop)
123 fs_baudrate = *prop;
124 of_node_put(node);
Scott Woodf9234732007-08-20 11:38:12 -0500125 }
Vitaly Bordugfba43662006-09-21 17:26:34 +0400126
127 return fs_baudrate;
128}
129
130EXPORT_SYMBOL(get_baudrate);
131#endif /* CONFIG_CPM2 */
132
Kumar Gala2fb07d72006-01-23 16:58:04 -0600133static int __init gfar_mdio_of_init(void)
Kumar Galaeed32002006-01-13 11:19:13 -0600134{
Kumar Galae77b28e2007-12-12 00:28:35 -0600135 struct device_node *np = NULL;
Kumar Gala2fb07d72006-01-23 16:58:04 -0600136 struct platform_device *mdio_dev;
Kumar Galaeed32002006-01-13 11:19:13 -0600137 struct resource res;
138 int ret;
139
Kumar Galae77b28e2007-12-12 00:28:35 -0600140 np = of_find_compatible_node(np, NULL, "fsl,gianfar-mdio");
141
142 /* try the deprecated version */
143 if (!np)
144 np = of_find_compatible_node(np, "mdio", "gianfar");
145
146 if (np) {
Kumar Galaeed32002006-01-13 11:19:13 -0600147 int k;
148 struct device_node *child = NULL;
149 struct gianfar_mdio_data mdio_data;
150
151 memset(&res, 0, sizeof(res));
152 memset(&mdio_data, 0, sizeof(mdio_data));
153
154 ret = of_address_to_resource(np, 0, &res);
155 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600156 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600157
Kumar Gala2fb07d72006-01-23 16:58:04 -0600158 mdio_dev =
159 platform_device_register_simple("fsl-gianfar_mdio",
160 res.start, &res, 1);
Kumar Galaeed32002006-01-13 11:19:13 -0600161 if (IS_ERR(mdio_dev)) {
162 ret = PTR_ERR(mdio_dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600163 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600164 }
165
166 for (k = 0; k < 32; k++)
Andy Fleminga9b14972006-10-19 19:52:26 -0500167 mdio_data.irq[k] = PHY_POLL;
Kumar Galaeed32002006-01-13 11:19:13 -0600168
169 while ((child = of_get_next_child(np, child)) != NULL) {
Vitaly Bordugfba43662006-09-21 17:26:34 +0400170 int irq = irq_of_parse_and_map(child, 0);
171 if (irq != NO_IRQ) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000172 const u32 *id = of_get_property(child,
173 "reg", NULL);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400174 mdio_data.irq[*id] = irq;
175 }
Kumar Galaeed32002006-01-13 11:19:13 -0600176 }
177
Kumar Gala2fb07d72006-01-23 16:58:04 -0600178 ret =
179 platform_device_add_data(mdio_dev, &mdio_data,
180 sizeof(struct gianfar_mdio_data));
Kumar Galaeed32002006-01-13 11:19:13 -0600181 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600182 goto unreg;
Kumar Galaeed32002006-01-13 11:19:13 -0600183 }
184
Kumar Galae77b28e2007-12-12 00:28:35 -0600185 of_node_put(np);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600186 return 0;
187
188unreg:
189 platform_device_unregister(mdio_dev);
190err:
Kumar Galae77b28e2007-12-12 00:28:35 -0600191 of_node_put(np);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600192 return ret;
193}
194
195arch_initcall(gfar_mdio_of_init);
196
197static const char *gfar_tx_intr = "tx";
198static const char *gfar_rx_intr = "rx";
199static const char *gfar_err_intr = "error";
200
Andy Fleminga9b14972006-10-19 19:52:26 -0500201
Kumar Gala2fb07d72006-01-23 16:58:04 -0600202static int __init gfar_of_init(void)
203{
204 struct device_node *np;
205 unsigned int i;
206 struct platform_device *gfar_dev;
207 struct resource res;
208 int ret;
209
210 for (np = NULL, i = 0;
211 (np = of_find_compatible_node(np, "network", "gianfar")) != NULL;
212 i++) {
Kumar Galaeed32002006-01-13 11:19:13 -0600213 struct resource r[4];
214 struct device_node *phy, *mdio;
215 struct gianfar_platform_data gfar_data;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000216 const unsigned int *id;
217 const char *model;
Andy Fleming7132ab72007-07-11 11:43:07 -0500218 const char *ctype;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000219 const void *mac_addr;
220 const phandle *ph;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400221 int n_res = 2;
Kumar Galaeed32002006-01-13 11:19:13 -0600222
223 memset(r, 0, sizeof(r));
224 memset(&gfar_data, 0, sizeof(gfar_data));
225
226 ret = of_address_to_resource(np, 0, &r[0]);
227 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600228 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600229
Andy Fleminga9b14972006-10-19 19:52:26 -0500230 of_irq_to_resource(np, 0, &r[1]);
Kumar Galaeed32002006-01-13 11:19:13 -0600231
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000232 model = of_get_property(np, "model", NULL);
Kumar Galaeed32002006-01-13 11:19:13 -0600233
234 /* If we aren't the FEC we have multiple interrupts */
235 if (model && strcasecmp(model, "FEC")) {
236 r[1].name = gfar_tx_intr;
237
238 r[2].name = gfar_rx_intr;
Andy Fleminga9b14972006-10-19 19:52:26 -0500239 of_irq_to_resource(np, 1, &r[2]);
Kumar Galaeed32002006-01-13 11:19:13 -0600240
241 r[3].name = gfar_err_intr;
Andy Fleminga9b14972006-10-19 19:52:26 -0500242 of_irq_to_resource(np, 2, &r[3]);
Jon Loeliger919fede2006-07-31 15:35:41 -0500243
244 n_res += 2;
Kumar Galaeed32002006-01-13 11:19:13 -0600245 }
246
Kumar Gala2fb07d72006-01-23 16:58:04 -0600247 gfar_dev =
248 platform_device_register_simple("fsl-gianfar", i, &r[0],
Vitaly Bordugfba43662006-09-21 17:26:34 +0400249 n_res);
Kumar Galaeed32002006-01-13 11:19:13 -0600250
251 if (IS_ERR(gfar_dev)) {
252 ret = PTR_ERR(gfar_dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600253 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600254 }
255
Timur Tabi29cfe6f2007-02-16 12:01:29 -0600256 mac_addr = of_get_mac_address(np);
Jon Loeligerf5831652006-08-17 08:42:35 -0500257 if (mac_addr)
258 memcpy(gfar_data.mac_addr, mac_addr, 6);
Kumar Galaeed32002006-01-13 11:19:13 -0600259
260 if (model && !strcasecmp(model, "TSEC"))
261 gfar_data.device_flags =
Kumar Gala2fb07d72006-01-23 16:58:04 -0600262 FSL_GIANFAR_DEV_HAS_GIGABIT |
263 FSL_GIANFAR_DEV_HAS_COALESCE |
264 FSL_GIANFAR_DEV_HAS_RMON |
265 FSL_GIANFAR_DEV_HAS_MULTI_INTR;
Kumar Galaeed32002006-01-13 11:19:13 -0600266 if (model && !strcasecmp(model, "eTSEC"))
267 gfar_data.device_flags =
Kumar Gala2fb07d72006-01-23 16:58:04 -0600268 FSL_GIANFAR_DEV_HAS_GIGABIT |
269 FSL_GIANFAR_DEV_HAS_COALESCE |
270 FSL_GIANFAR_DEV_HAS_RMON |
271 FSL_GIANFAR_DEV_HAS_MULTI_INTR |
272 FSL_GIANFAR_DEV_HAS_CSUM |
273 FSL_GIANFAR_DEV_HAS_VLAN |
274 FSL_GIANFAR_DEV_HAS_EXTENDED_HASH;
Kumar Galaeed32002006-01-13 11:19:13 -0600275
Andy Fleming7132ab72007-07-11 11:43:07 -0500276 ctype = of_get_property(np, "phy-connection-type", NULL);
277
278 /* We only care about rgmii-id. The rest are autodetected */
279 if (ctype && !strcmp(ctype, "rgmii-id"))
280 gfar_data.interface = PHY_INTERFACE_MODE_RGMII_ID;
281 else
282 gfar_data.interface = PHY_INTERFACE_MODE_MII;
283
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000284 ph = of_get_property(np, "phy-handle", NULL);
Kumar Galaeed32002006-01-13 11:19:13 -0600285 phy = of_find_node_by_phandle(*ph);
286
287 if (phy == NULL) {
288 ret = -ENODEV;
Kumar Gala2fb07d72006-01-23 16:58:04 -0600289 goto unreg;
Kumar Galaeed32002006-01-13 11:19:13 -0600290 }
291
292 mdio = of_get_parent(phy);
293
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000294 id = of_get_property(phy, "reg", NULL);
Kumar Galaeed32002006-01-13 11:19:13 -0600295 ret = of_address_to_resource(mdio, 0, &res);
296 if (ret) {
297 of_node_put(phy);
298 of_node_put(mdio);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600299 goto unreg;
Kumar Galaeed32002006-01-13 11:19:13 -0600300 }
301
302 gfar_data.phy_id = *id;
303 gfar_data.bus_id = res.start;
304
305 of_node_put(phy);
306 of_node_put(mdio);
307
Kumar Gala2fb07d72006-01-23 16:58:04 -0600308 ret =
309 platform_device_add_data(gfar_dev, &gfar_data,
310 sizeof(struct
311 gianfar_platform_data));
Kumar Galaeed32002006-01-13 11:19:13 -0600312 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600313 goto unreg;
Kumar Galaeed32002006-01-13 11:19:13 -0600314 }
315
316 return 0;
317
Kumar Gala2fb07d72006-01-23 16:58:04 -0600318unreg:
Kumar Galaeed32002006-01-13 11:19:13 -0600319 platform_device_unregister(gfar_dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600320err:
Kumar Galaeed32002006-01-13 11:19:13 -0600321 return ret;
322}
Kumar Gala2fb07d72006-01-23 16:58:04 -0600323
Kumar Galaeed32002006-01-13 11:19:13 -0600324arch_initcall(gfar_of_init);
325
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000326#ifdef CONFIG_I2C_BOARDINFO
327#include <linux/i2c.h>
328struct i2c_driver_device {
329 char *of_device;
330 char *i2c_driver;
331 char *i2c_type;
332};
333
334static struct i2c_driver_device i2c_devices[] __initdata = {
335 {"ricoh,rs5c372a", "rtc-rs5c372", "rs5c372a",},
336 {"ricoh,rs5c372b", "rtc-rs5c372", "rs5c372b",},
337 {"ricoh,rv5c386", "rtc-rs5c372", "rv5c386",},
338 {"ricoh,rv5c387a", "rtc-rs5c372", "rv5c387a",},
Peter Korsgaard0438c282007-09-20 12:42:13 +0200339 {"dallas,ds1307", "rtc-ds1307", "ds1307",},
340 {"dallas,ds1337", "rtc-ds1307", "ds1337",},
341 {"dallas,ds1338", "rtc-ds1307", "ds1338",},
342 {"dallas,ds1339", "rtc-ds1307", "ds1339",},
343 {"dallas,ds1340", "rtc-ds1307", "ds1340",},
344 {"stm,m41t00", "rtc-ds1307", "m41t00"},
Anton Vorontsovc0e4eb22007-10-02 17:47:43 +0400345 {"dallas,ds1374", "rtc-ds1374", "rtc-ds1374",},
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000346};
347
Guennadi Liakhovetskie78bb5d2007-08-16 05:15:03 +1000348static int __init of_find_i2c_driver(struct device_node *node,
349 struct i2c_board_info *info)
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000350{
351 int i;
352
353 for (i = 0; i < ARRAY_SIZE(i2c_devices); i++) {
354 if (!of_device_is_compatible(node, i2c_devices[i].of_device))
355 continue;
Guennadi Liakhovetskie78bb5d2007-08-16 05:15:03 +1000356 if (strlcpy(info->driver_name, i2c_devices[i].i2c_driver,
357 KOBJ_NAME_LEN) >= KOBJ_NAME_LEN ||
358 strlcpy(info->type, i2c_devices[i].i2c_type,
359 I2C_NAME_SIZE) >= I2C_NAME_SIZE)
360 return -ENOMEM;
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000361 return 0;
362 }
363 return -ENODEV;
364}
365
Guennadi Liakhovetskie78bb5d2007-08-16 05:15:03 +1000366static void __init of_register_i2c_devices(struct device_node *adap_node,
367 int bus_num)
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000368{
369 struct device_node *node = NULL;
370
371 while ((node = of_get_next_child(adap_node, node))) {
Anton Vorontsovda1bb3a2007-10-02 17:47:40 +0400372 struct i2c_board_info info = {};
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000373 const u32 *addr;
374 int len;
375
376 addr = of_get_property(node, "reg", &len);
377 if (!addr || len < sizeof(int) || *addr > (1 << 10) - 1) {
Peter Korsgaard210805e2007-09-20 12:42:12 +0200378 printk(KERN_WARNING "fsl_soc.c: invalid i2c device entry\n");
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000379 continue;
380 }
381
382 info.irq = irq_of_parse_and_map(node, 0);
383 if (info.irq == NO_IRQ)
384 info.irq = -1;
385
386 if (of_find_i2c_driver(node, &info) < 0)
387 continue;
388
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000389 info.addr = *addr;
390
391 i2c_register_board_info(bus_num, &info, 1);
392 }
393}
394
Kumar Galaeed32002006-01-13 11:19:13 -0600395static int __init fsl_i2c_of_init(void)
396{
397 struct device_node *np;
Kumar Galaec9686c2007-12-11 23:17:24 -0600398 unsigned int i = 0;
Kumar Galaeed32002006-01-13 11:19:13 -0600399 struct platform_device *i2c_dev;
400 int ret;
401
Kumar Galaec9686c2007-12-11 23:17:24 -0600402 for_each_compatible_node(np, NULL, "fsl-i2c") {
Kumar Galaeed32002006-01-13 11:19:13 -0600403 struct resource r[2];
404 struct fsl_i2c_platform_data i2c_data;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000405 const unsigned char *flags = NULL;
Kumar Galaeed32002006-01-13 11:19:13 -0600406
407 memset(&r, 0, sizeof(r));
408 memset(&i2c_data, 0, sizeof(i2c_data));
409
410 ret = of_address_to_resource(np, 0, &r[0]);
411 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600412 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600413
Andy Fleminga9b14972006-10-19 19:52:26 -0500414 of_irq_to_resource(np, 0, &r[1]);
Kumar Galaeed32002006-01-13 11:19:13 -0600415
416 i2c_dev = platform_device_register_simple("fsl-i2c", i, r, 2);
417 if (IS_ERR(i2c_dev)) {
418 ret = PTR_ERR(i2c_dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600419 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600420 }
421
422 i2c_data.device_flags = 0;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000423 flags = of_get_property(np, "dfsrr", NULL);
Kumar Galaeed32002006-01-13 11:19:13 -0600424 if (flags)
425 i2c_data.device_flags |= FSL_I2C_DEV_SEPARATE_DFSRR;
426
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000427 flags = of_get_property(np, "fsl5200-clocking", NULL);
Kumar Galaeed32002006-01-13 11:19:13 -0600428 if (flags)
429 i2c_data.device_flags |= FSL_I2C_DEV_CLOCK_5200;
430
Kumar Gala2fb07d72006-01-23 16:58:04 -0600431 ret =
432 platform_device_add_data(i2c_dev, &i2c_data,
433 sizeof(struct
434 fsl_i2c_platform_data));
Kumar Galaeed32002006-01-13 11:19:13 -0600435 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600436 goto unreg;
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000437
Kumar Galaec9686c2007-12-11 23:17:24 -0600438 of_register_i2c_devices(np, i++);
Kumar Galaeed32002006-01-13 11:19:13 -0600439 }
440
441 return 0;
442
Kumar Gala2fb07d72006-01-23 16:58:04 -0600443unreg:
Kumar Galaeed32002006-01-13 11:19:13 -0600444 platform_device_unregister(i2c_dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600445err:
Kumar Galaeed32002006-01-13 11:19:13 -0600446 return ret;
447}
Kumar Gala2fb07d72006-01-23 16:58:04 -0600448
Kumar Galaeed32002006-01-13 11:19:13 -0600449arch_initcall(fsl_i2c_of_init);
Guennadi Liakhovetskid13ae862007-07-21 06:26:15 +1000450#endif
Kumar Galaeed32002006-01-13 11:19:13 -0600451
452#ifdef CONFIG_PPC_83xx
453static int __init mpc83xx_wdt_init(void)
454{
455 struct resource r;
456 struct device_node *soc, *np;
457 struct platform_device *dev;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000458 const unsigned int *freq;
Kumar Galaeed32002006-01-13 11:19:13 -0600459 int ret;
460
461 np = of_find_compatible_node(NULL, "watchdog", "mpc83xx_wdt");
462
463 if (!np) {
464 ret = -ENODEV;
Kumar Gala2fb07d72006-01-23 16:58:04 -0600465 goto nodev;
Kumar Galaeed32002006-01-13 11:19:13 -0600466 }
467
468 soc = of_find_node_by_type(NULL, "soc");
469
470 if (!soc) {
471 ret = -ENODEV;
Kumar Gala2fb07d72006-01-23 16:58:04 -0600472 goto nosoc;
Kumar Galaeed32002006-01-13 11:19:13 -0600473 }
474
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000475 freq = of_get_property(soc, "bus-frequency", NULL);
Kumar Galaeed32002006-01-13 11:19:13 -0600476 if (!freq) {
477 ret = -ENODEV;
Kumar Gala2fb07d72006-01-23 16:58:04 -0600478 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600479 }
480
481 memset(&r, 0, sizeof(r));
482
483 ret = of_address_to_resource(np, 0, &r);
484 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600485 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600486
487 dev = platform_device_register_simple("mpc83xx_wdt", 0, &r, 1);
488 if (IS_ERR(dev)) {
489 ret = PTR_ERR(dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600490 goto err;
Kumar Galaeed32002006-01-13 11:19:13 -0600491 }
492
493 ret = platform_device_add_data(dev, freq, sizeof(int));
494 if (ret)
Kumar Gala2fb07d72006-01-23 16:58:04 -0600495 goto unreg;
Kumar Galaeed32002006-01-13 11:19:13 -0600496
497 of_node_put(soc);
498 of_node_put(np);
499
500 return 0;
501
Kumar Gala2fb07d72006-01-23 16:58:04 -0600502unreg:
Kumar Galaeed32002006-01-13 11:19:13 -0600503 platform_device_unregister(dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600504err:
Kumar Galaeed32002006-01-13 11:19:13 -0600505 of_node_put(soc);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600506nosoc:
Kumar Galaeed32002006-01-13 11:19:13 -0600507 of_node_put(np);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600508nodev:
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(mpc83xx_wdt_init);
513#endif
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600514
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000515static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type)
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600516{
517 if (!phy_type)
518 return FSL_USB2_PHY_NONE;
519 if (!strcasecmp(phy_type, "ulpi"))
520 return FSL_USB2_PHY_ULPI;
521 if (!strcasecmp(phy_type, "utmi"))
522 return FSL_USB2_PHY_UTMI;
523 if (!strcasecmp(phy_type, "utmi_wide"))
524 return FSL_USB2_PHY_UTMI_WIDE;
525 if (!strcasecmp(phy_type, "serial"))
526 return FSL_USB2_PHY_SERIAL;
527
528 return FSL_USB2_PHY_NONE;
529}
530
531static int __init fsl_usb_of_init(void)
532{
533 struct device_node *np;
Li Yang866b6dd2008-01-08 15:18:46 +0800534 unsigned int i = 0;
Li Yang97c5a202007-02-07 13:49:24 +0800535 struct platform_device *usb_dev_mph = NULL, *usb_dev_dr_host = NULL,
536 *usb_dev_dr_client = NULL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600537 int ret;
538
Li Yang866b6dd2008-01-08 15:18:46 +0800539 for_each_compatible_node(np, NULL, "fsl-usb2-mph") {
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600540 struct resource r[2];
541 struct fsl_usb2_platform_data usb_data;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000542 const unsigned char *prop = NULL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600543
544 memset(&r, 0, sizeof(r));
545 memset(&usb_data, 0, sizeof(usb_data));
546
547 ret = of_address_to_resource(np, 0, &r[0]);
548 if (ret)
549 goto err;
550
Andy Fleminga9b14972006-10-19 19:52:26 -0500551 of_irq_to_resource(np, 0, &r[1]);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600552
Kumar Gala01cced22006-04-11 10:07:16 -0500553 usb_dev_mph =
554 platform_device_register_simple("fsl-ehci", i, r, 2);
555 if (IS_ERR(usb_dev_mph)) {
556 ret = PTR_ERR(usb_dev_mph);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600557 goto err;
558 }
559
Kumar Gala01cced22006-04-11 10:07:16 -0500560 usb_dev_mph->dev.coherent_dma_mask = 0xffffffffUL;
561 usb_dev_mph->dev.dma_mask = &usb_dev_mph->dev.coherent_dma_mask;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600562
563 usb_data.operating_mode = FSL_USB2_MPH_HOST;
564
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000565 prop = of_get_property(np, "port0", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600566 if (prop)
567 usb_data.port_enables |= FSL_USB2_PORT0_ENABLED;
568
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000569 prop = of_get_property(np, "port1", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600570 if (prop)
571 usb_data.port_enables |= FSL_USB2_PORT1_ENABLED;
572
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000573 prop = of_get_property(np, "phy_type", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600574 usb_data.phy_mode = determine_usb_phy(prop);
575
576 ret =
Kumar Gala01cced22006-04-11 10:07:16 -0500577 platform_device_add_data(usb_dev_mph, &usb_data,
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600578 sizeof(struct
579 fsl_usb2_platform_data));
580 if (ret)
Kumar Gala01cced22006-04-11 10:07:16 -0500581 goto unreg_mph;
Li Yang866b6dd2008-01-08 15:18:46 +0800582 i++;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600583 }
584
Li Yang866b6dd2008-01-08 15:18:46 +0800585 for_each_compatible_node(np, NULL, "fsl-usb2-dr") {
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600586 struct resource r[2];
587 struct fsl_usb2_platform_data usb_data;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000588 const unsigned char *prop = NULL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600589
590 memset(&r, 0, sizeof(r));
591 memset(&usb_data, 0, sizeof(usb_data));
592
593 ret = of_address_to_resource(np, 0, &r[0]);
594 if (ret)
Kumar Gala01cced22006-04-11 10:07:16 -0500595 goto unreg_mph;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600596
Andy Fleminga9b14972006-10-19 19:52:26 -0500597 of_irq_to_resource(np, 0, &r[1]);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600598
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000599 prop = of_get_property(np, "dr_mode", NULL);
Li Yang97c5a202007-02-07 13:49:24 +0800600
601 if (!prop || !strcmp(prop, "host")) {
602 usb_data.operating_mode = FSL_USB2_DR_HOST;
603 usb_dev_dr_host = platform_device_register_simple(
604 "fsl-ehci", i, r, 2);
605 if (IS_ERR(usb_dev_dr_host)) {
606 ret = PTR_ERR(usb_dev_dr_host);
607 goto err;
608 }
609 } else if (prop && !strcmp(prop, "peripheral")) {
610 usb_data.operating_mode = FSL_USB2_DR_DEVICE;
611 usb_dev_dr_client = platform_device_register_simple(
612 "fsl-usb2-udc", i, r, 2);
613 if (IS_ERR(usb_dev_dr_client)) {
614 ret = PTR_ERR(usb_dev_dr_client);
615 goto err;
616 }
617 } else if (prop && !strcmp(prop, "otg")) {
618 usb_data.operating_mode = FSL_USB2_DR_OTG;
619 usb_dev_dr_host = platform_device_register_simple(
620 "fsl-ehci", i, r, 2);
621 if (IS_ERR(usb_dev_dr_host)) {
622 ret = PTR_ERR(usb_dev_dr_host);
623 goto err;
624 }
625 usb_dev_dr_client = platform_device_register_simple(
626 "fsl-usb2-udc", i, r, 2);
627 if (IS_ERR(usb_dev_dr_client)) {
628 ret = PTR_ERR(usb_dev_dr_client);
629 goto err;
630 }
631 } else {
632 ret = -EINVAL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600633 goto err;
634 }
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
Li Yang97c5a202007-02-07 13:49:24 +0800639 if (usb_dev_dr_host) {
640 usb_dev_dr_host->dev.coherent_dma_mask = 0xffffffffUL;
641 usb_dev_dr_host->dev.dma_mask = &usb_dev_dr_host->
642 dev.coherent_dma_mask;
643 if ((ret = platform_device_add_data(usb_dev_dr_host,
644 &usb_data, sizeof(struct
645 fsl_usb2_platform_data))))
646 goto unreg_dr;
647 }
648 if (usb_dev_dr_client) {
649 usb_dev_dr_client->dev.coherent_dma_mask = 0xffffffffUL;
650 usb_dev_dr_client->dev.dma_mask = &usb_dev_dr_client->
651 dev.coherent_dma_mask;
652 if ((ret = platform_device_add_data(usb_dev_dr_client,
653 &usb_data, sizeof(struct
654 fsl_usb2_platform_data))))
655 goto unreg_dr;
656 }
Li Yang866b6dd2008-01-08 15:18:46 +0800657 i++;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600658 }
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600659 return 0;
660
Kumar Gala01cced22006-04-11 10:07:16 -0500661unreg_dr:
Li Yang97c5a202007-02-07 13:49:24 +0800662 if (usb_dev_dr_host)
663 platform_device_unregister(usb_dev_dr_host);
664 if (usb_dev_dr_client)
665 platform_device_unregister(usb_dev_dr_client);
Kumar Gala01cced22006-04-11 10:07:16 -0500666unreg_mph:
667 if (usb_dev_mph)
668 platform_device_unregister(usb_dev_mph);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600669err:
670 return ret;
671}
672
Kumar Gala01cced22006-04-11 10:07:16 -0500673arch_initcall(fsl_usb_of_init);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400674
Scott Woode631ae32007-09-14 13:04:54 -0500675#ifndef CONFIG_PPC_CPM_NEW_BINDING
Vitaly Bordugfba43662006-09-21 17:26:34 +0400676#ifdef CONFIG_CPM2
677
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +0300678extern void init_scc_ioports(struct fs_uart_platform_info*);
679
Vitaly Bordugfba43662006-09-21 17:26:34 +0400680static const char fcc_regs[] = "fcc_regs";
681static const char fcc_regs_c[] = "fcc_regs_c";
682static const char fcc_pram[] = "fcc_pram";
683static char bus_id[9][BUS_ID_SIZE];
684
685static int __init fs_enet_of_init(void)
686{
687 struct device_node *np;
688 unsigned int i;
689 struct platform_device *fs_enet_dev;
690 struct resource res;
691 int ret;
692
693 for (np = NULL, i = 0;
694 (np = of_find_compatible_node(np, "network", "fs_enet")) != NULL;
695 i++) {
696 struct resource r[4];
697 struct device_node *phy, *mdio;
698 struct fs_platform_info fs_enet_data;
Olof Johansson2b00b252006-10-05 21:16:48 -0500699 const unsigned int *id, *phy_addr, *phy_irq;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400700 const void *mac_addr;
701 const phandle *ph;
702 const char *model;
703
704 memset(r, 0, sizeof(r));
705 memset(&fs_enet_data, 0, sizeof(fs_enet_data));
706
707 ret = of_address_to_resource(np, 0, &r[0]);
708 if (ret)
709 goto err;
710 r[0].name = fcc_regs;
711
712 ret = of_address_to_resource(np, 1, &r[1]);
713 if (ret)
714 goto err;
715 r[1].name = fcc_pram;
716
717 ret = of_address_to_resource(np, 2, &r[2]);
718 if (ret)
719 goto err;
720 r[2].name = fcc_regs_c;
Vitaly Borduged943c12006-10-02 22:41:50 +0400721 fs_enet_data.fcc_regs_c = r[2].start;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400722
Andy Fleminga9b14972006-10-19 19:52:26 -0500723 of_irq_to_resource(np, 0, &r[3]);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400724
725 fs_enet_dev =
726 platform_device_register_simple("fsl-cpm-fcc", i, &r[0], 4);
727
728 if (IS_ERR(fs_enet_dev)) {
729 ret = PTR_ERR(fs_enet_dev);
730 goto err;
731 }
732
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000733 model = of_get_property(np, "model", NULL);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400734 if (model == NULL) {
735 ret = -ENODEV;
736 goto unreg;
737 }
738
Timur Tabi29cfe6f2007-02-16 12:01:29 -0600739 mac_addr = of_get_mac_address(np);
740 if (mac_addr)
741 memcpy(fs_enet_data.macaddr, mac_addr, 6);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400742
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000743 ph = of_get_property(np, "phy-handle", NULL);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400744 phy = of_find_node_by_phandle(*ph);
745
746 if (phy == NULL) {
747 ret = -ENODEV;
748 goto unreg;
749 }
750
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000751 phy_addr = of_get_property(phy, "reg", NULL);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400752 fs_enet_data.phy_addr = *phy_addr;
753
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000754 phy_irq = of_get_property(phy, "interrupts", NULL);
Vitaly Borduged943c12006-10-02 22:41:50 +0400755
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000756 id = of_get_property(np, "device-id", NULL);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400757 fs_enet_data.fs_no = *id;
Vitaly Bordug611a15a2006-09-21 22:38:05 +0400758 strcpy(fs_enet_data.fs_type, model);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400759
760 mdio = of_get_parent(phy);
761 ret = of_address_to_resource(mdio, 0, &res);
762 if (ret) {
763 of_node_put(phy);
764 of_node_put(mdio);
765 goto unreg;
766 }
767
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000768 fs_enet_data.clk_rx = *((u32 *)of_get_property(np,
769 "rx-clock", NULL));
770 fs_enet_data.clk_tx = *((u32 *)of_get_property(np,
771 "tx-clock", NULL));
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400772
Vitaly Bordugfba43662006-09-21 17:26:34 +0400773 if (strstr(model, "FCC")) {
Vitaly Bordug611a15a2006-09-21 22:38:05 +0400774 int fcc_index = *id - 1;
Olof Johansson2b00b252006-10-05 21:16:48 -0500775 const unsigned char *mdio_bb_prop;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400776
Vitaly Bordugfc8e50e2006-09-21 22:37:58 +0400777 fs_enet_data.dpram_offset = (u32)cpm_dpram_addr(0);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400778 fs_enet_data.rx_ring = 32;
779 fs_enet_data.tx_ring = 32;
780 fs_enet_data.rx_copybreak = 240;
781 fs_enet_data.use_napi = 0;
782 fs_enet_data.napi_weight = 17;
783 fs_enet_data.mem_offset = FCC_MEM_OFFSET(fcc_index);
784 fs_enet_data.cp_page = CPM_CR_FCC_PAGE(fcc_index);
785 fs_enet_data.cp_block = CPM_CR_FCC_SBLOCK(fcc_index);
786
787 snprintf((char*)&bus_id[(*id)], BUS_ID_SIZE, "%x:%02x",
788 (u32)res.start, fs_enet_data.phy_addr);
789 fs_enet_data.bus_id = (char*)&bus_id[(*id)];
Vitaly Bordugd3465c92006-09-21 22:38:05 +0400790 fs_enet_data.init_ioports = init_fcc_ioports;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400791
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000792 mdio_bb_prop = of_get_property(phy, "bitbang", NULL);
Vitaly Borduged943c12006-10-02 22:41:50 +0400793 if (mdio_bb_prop) {
794 struct platform_device *fs_enet_mdio_bb_dev;
795 struct fs_mii_bb_platform_info fs_enet_mdio_bb_data;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400796
Vitaly Borduged943c12006-10-02 22:41:50 +0400797 fs_enet_mdio_bb_dev =
798 platform_device_register_simple("fsl-bb-mdio",
799 i, NULL, 0);
800 memset(&fs_enet_mdio_bb_data, 0,
801 sizeof(struct fs_mii_bb_platform_info));
802 fs_enet_mdio_bb_data.mdio_dat.bit =
803 mdio_bb_prop[0];
804 fs_enet_mdio_bb_data.mdio_dir.bit =
805 mdio_bb_prop[1];
806 fs_enet_mdio_bb_data.mdc_dat.bit =
807 mdio_bb_prop[2];
808 fs_enet_mdio_bb_data.mdio_port =
809 mdio_bb_prop[3];
810 fs_enet_mdio_bb_data.mdc_port =
811 mdio_bb_prop[4];
812 fs_enet_mdio_bb_data.delay =
813 mdio_bb_prop[5];
814
815 fs_enet_mdio_bb_data.irq[0] = phy_irq[0];
816 fs_enet_mdio_bb_data.irq[1] = -1;
817 fs_enet_mdio_bb_data.irq[2] = -1;
818 fs_enet_mdio_bb_data.irq[3] = phy_irq[0];
819 fs_enet_mdio_bb_data.irq[31] = -1;
820
821 fs_enet_mdio_bb_data.mdio_dat.offset =
822 (u32)&cpm2_immr->im_ioport.iop_pdatc;
823 fs_enet_mdio_bb_data.mdio_dir.offset =
824 (u32)&cpm2_immr->im_ioport.iop_pdirc;
825 fs_enet_mdio_bb_data.mdc_dat.offset =
826 (u32)&cpm2_immr->im_ioport.iop_pdatc;
827
828 ret = platform_device_add_data(
829 fs_enet_mdio_bb_dev,
830 &fs_enet_mdio_bb_data,
831 sizeof(struct fs_mii_bb_platform_info));
832 if (ret)
833 goto unreg;
834 }
Li Yang97c5a202007-02-07 13:49:24 +0800835
Vitaly Borduged943c12006-10-02 22:41:50 +0400836 of_node_put(phy);
837 of_node_put(mdio);
838
839 ret = platform_device_add_data(fs_enet_dev, &fs_enet_data,
840 sizeof(struct
841 fs_platform_info));
Olof Johansson2b00b252006-10-05 21:16:48 -0500842 if (ret)
843 goto unreg;
844 }
Vitaly Bordugfba43662006-09-21 17:26:34 +0400845 }
846 return 0;
847
848unreg:
849 platform_device_unregister(fs_enet_dev);
850err:
851 return ret;
852}
853
854arch_initcall(fs_enet_of_init);
855
856static const char scc_regs[] = "regs";
857static const char scc_pram[] = "pram";
858
859static int __init cpm_uart_of_init(void)
860{
861 struct device_node *np;
862 unsigned int i;
863 struct platform_device *cpm_uart_dev;
864 int ret;
865
866 for (np = NULL, i = 0;
867 (np = of_find_compatible_node(np, "serial", "cpm_uart")) != NULL;
868 i++) {
869 struct resource r[3];
870 struct fs_uart_platform_info cpm_uart_data;
871 const int *id;
Vitaly Bordug611a15a2006-09-21 22:38:05 +0400872 const char *model;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400873
874 memset(r, 0, sizeof(r));
875 memset(&cpm_uart_data, 0, sizeof(cpm_uart_data));
876
877 ret = of_address_to_resource(np, 0, &r[0]);
878 if (ret)
879 goto err;
880
881 r[0].name = scc_regs;
882
883 ret = of_address_to_resource(np, 1, &r[1]);
884 if (ret)
885 goto err;
886 r[1].name = scc_pram;
887
Andy Fleminga9b14972006-10-19 19:52:26 -0500888 of_irq_to_resource(np, 0, &r[2]);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400889
890 cpm_uart_dev =
891 platform_device_register_simple("fsl-cpm-scc:uart", i, &r[0], 3);
892
893 if (IS_ERR(cpm_uart_dev)) {
894 ret = PTR_ERR(cpm_uart_dev);
895 goto err;
896 }
897
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000898 id = of_get_property(np, "device-id", NULL);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400899 cpm_uart_data.fs_no = *id;
Vitaly Bordug611a15a2006-09-21 22:38:05 +0400900
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000901 model = of_get_property(np, "model", NULL);
Vitaly Bordug611a15a2006-09-21 22:38:05 +0400902 strcpy(cpm_uart_data.fs_type, model);
903
Vitaly Bordugfba43662006-09-21 17:26:34 +0400904 cpm_uart_data.uart_clk = ppc_proc_freq;
905
906 cpm_uart_data.tx_num_fifo = 4;
907 cpm_uart_data.tx_buf_size = 32;
908 cpm_uart_data.rx_num_fifo = 4;
909 cpm_uart_data.rx_buf_size = 32;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000910 cpm_uart_data.clk_rx = *((u32 *)of_get_property(np,
911 "rx-clock", NULL));
912 cpm_uart_data.clk_tx = *((u32 *)of_get_property(np,
913 "tx-clock", NULL));
Vitaly Bordugfba43662006-09-21 17:26:34 +0400914
915 ret =
916 platform_device_add_data(cpm_uart_dev, &cpm_uart_data,
917 sizeof(struct
918 fs_uart_platform_info));
919 if (ret)
920 goto unreg;
921 }
922
923 return 0;
924
925unreg:
926 platform_device_unregister(cpm_uart_dev);
927err:
928 return ret;
929}
930
931arch_initcall(cpm_uart_of_init);
932#endif /* CONFIG_CPM2 */
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +0300933
934#ifdef CONFIG_8xx
935
936extern void init_scc_ioports(struct fs_platform_info*);
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000937extern int platform_device_skip(const char *model, int id);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +0300938
939static int __init fs_enet_mdio_of_init(void)
940{
941 struct device_node *np;
942 unsigned int i;
943 struct platform_device *mdio_dev;
944 struct resource res;
945 int ret;
946
947 for (np = NULL, i = 0;
948 (np = of_find_compatible_node(np, "mdio", "fs_enet")) != NULL;
949 i++) {
950 struct fs_mii_fec_platform_info mdio_data;
951
952 memset(&res, 0, sizeof(res));
953 memset(&mdio_data, 0, sizeof(mdio_data));
954
955 ret = of_address_to_resource(np, 0, &res);
956 if (ret)
957 goto err;
958
959 mdio_dev =
960 platform_device_register_simple("fsl-cpm-fec-mdio",
961 res.start, &res, 1);
962 if (IS_ERR(mdio_dev)) {
963 ret = PTR_ERR(mdio_dev);
964 goto err;
965 }
966
967 mdio_data.mii_speed = ((((ppc_proc_freq + 4999999) / 2500000) / 2) & 0x3F) << 1;
968
969 ret =
970 platform_device_add_data(mdio_dev, &mdio_data,
971 sizeof(struct fs_mii_fec_platform_info));
972 if (ret)
973 goto unreg;
974 }
975 return 0;
976
977unreg:
978 platform_device_unregister(mdio_dev);
979err:
980 return ret;
981}
982
983arch_initcall(fs_enet_mdio_of_init);
984
985static const char *enet_regs = "regs";
986static const char *enet_pram = "pram";
987static const char *enet_irq = "interrupt";
988static char bus_id[9][BUS_ID_SIZE];
989
990static int __init fs_enet_of_init(void)
991{
992 struct device_node *np;
993 unsigned int i;
994 struct platform_device *fs_enet_dev = NULL;
995 struct resource res;
996 int ret;
997
998 for (np = NULL, i = 0;
999 (np = of_find_compatible_node(np, "network", "fs_enet")) != NULL;
1000 i++) {
1001 struct resource r[4];
1002 struct device_node *phy = NULL, *mdio = NULL;
1003 struct fs_platform_info fs_enet_data;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001004 const unsigned int *id;
1005 const unsigned int *phy_addr;
Scott Woodb7a69122007-05-09 03:15:34 +10001006 const void *mac_addr;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001007 const phandle *ph;
1008 const char *model;
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001009
1010 memset(r, 0, sizeof(r));
1011 memset(&fs_enet_data, 0, sizeof(fs_enet_data));
1012
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001013 model = of_get_property(np, "model", NULL);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001014 if (model == NULL) {
1015 ret = -ENODEV;
1016 goto unreg;
1017 }
1018
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001019 id = of_get_property(np, "device-id", NULL);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001020 fs_enet_data.fs_no = *id;
1021
1022 if (platform_device_skip(model, *id))
1023 continue;
1024
1025 ret = of_address_to_resource(np, 0, &r[0]);
1026 if (ret)
1027 goto err;
1028 r[0].name = enet_regs;
1029
Timur Tabi29cfe6f2007-02-16 12:01:29 -06001030 mac_addr = of_get_mac_address(np);
1031 if (mac_addr)
1032 memcpy(fs_enet_data.macaddr, mac_addr, 6);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001033
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001034 ph = of_get_property(np, "phy-handle", NULL);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001035 if (ph != NULL)
1036 phy = of_find_node_by_phandle(*ph);
1037
1038 if (phy != NULL) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001039 phy_addr = of_get_property(phy, "reg", NULL);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001040 fs_enet_data.phy_addr = *phy_addr;
1041 fs_enet_data.has_phy = 1;
1042
1043 mdio = of_get_parent(phy);
1044 ret = of_address_to_resource(mdio, 0, &res);
1045 if (ret) {
1046 of_node_put(phy);
1047 of_node_put(mdio);
1048 goto unreg;
1049 }
1050 }
1051
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001052 model = of_get_property(np, "model", NULL);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001053 strcpy(fs_enet_data.fs_type, model);
1054
1055 if (strstr(model, "FEC")) {
1056 r[1].start = r[1].end = irq_of_parse_and_map(np, 0);
1057 r[1].flags = IORESOURCE_IRQ;
1058 r[1].name = enet_irq;
1059
1060 fs_enet_dev =
1061 platform_device_register_simple("fsl-cpm-fec", i, &r[0], 2);
1062
1063 if (IS_ERR(fs_enet_dev)) {
1064 ret = PTR_ERR(fs_enet_dev);
1065 goto err;
1066 }
1067
1068 fs_enet_data.rx_ring = 128;
1069 fs_enet_data.tx_ring = 16;
1070 fs_enet_data.rx_copybreak = 240;
1071 fs_enet_data.use_napi = 1;
1072 fs_enet_data.napi_weight = 17;
1073
1074 snprintf((char*)&bus_id[i], BUS_ID_SIZE, "%x:%02x",
1075 (u32)res.start, fs_enet_data.phy_addr);
1076 fs_enet_data.bus_id = (char*)&bus_id[i];
1077 fs_enet_data.init_ioports = init_fec_ioports;
1078 }
1079 if (strstr(model, "SCC")) {
1080 ret = of_address_to_resource(np, 1, &r[1]);
1081 if (ret)
1082 goto err;
1083 r[1].name = enet_pram;
1084
1085 r[2].start = r[2].end = irq_of_parse_and_map(np, 0);
1086 r[2].flags = IORESOURCE_IRQ;
1087 r[2].name = enet_irq;
1088
1089 fs_enet_dev =
1090 platform_device_register_simple("fsl-cpm-scc", i, &r[0], 3);
1091
1092 if (IS_ERR(fs_enet_dev)) {
1093 ret = PTR_ERR(fs_enet_dev);
1094 goto err;
1095 }
1096
1097 fs_enet_data.rx_ring = 64;
1098 fs_enet_data.tx_ring = 8;
1099 fs_enet_data.rx_copybreak = 240;
1100 fs_enet_data.use_napi = 1;
1101 fs_enet_data.napi_weight = 17;
1102
1103 snprintf((char*)&bus_id[i], BUS_ID_SIZE, "%s", "fixed@10:1");
1104 fs_enet_data.bus_id = (char*)&bus_id[i];
1105 fs_enet_data.init_ioports = init_scc_ioports;
1106 }
1107
1108 of_node_put(phy);
1109 of_node_put(mdio);
1110
1111 ret = platform_device_add_data(fs_enet_dev, &fs_enet_data,
1112 sizeof(struct
1113 fs_platform_info));
1114 if (ret)
1115 goto unreg;
1116 }
1117 return 0;
1118
1119unreg:
1120 platform_device_unregister(fs_enet_dev);
1121err:
1122 return ret;
1123}
1124
1125arch_initcall(fs_enet_of_init);
1126
Vitaly Bordug80128ff2007-07-09 11:37:35 -07001127static int __init fsl_pcmcia_of_init(void)
1128{
Cyrill Gorcunov26cb7d82007-11-30 06:44:36 +11001129 struct device_node *np;
Vitaly Bordug80128ff2007-07-09 11:37:35 -07001130 /*
1131 * Register all the devices which type is "pcmcia"
1132 */
Cyrill Gorcunov26cb7d82007-11-30 06:44:36 +11001133 for_each_compatible_node(np, "pcmcia", "fsl,pq-pcmcia")
1134 of_platform_device_create(np, "m8xx-pcmcia", NULL);
Vitaly Bordug80128ff2007-07-09 11:37:35 -07001135 return 0;
1136}
1137
1138arch_initcall(fsl_pcmcia_of_init);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001139
1140static const char *smc_regs = "regs";
1141static const char *smc_pram = "pram";
1142
1143static int __init cpm_smc_uart_of_init(void)
1144{
1145 struct device_node *np;
1146 unsigned int i;
1147 struct platform_device *cpm_uart_dev;
1148 int ret;
1149
1150 for (np = NULL, i = 0;
1151 (np = of_find_compatible_node(np, "serial", "cpm_uart")) != NULL;
1152 i++) {
1153 struct resource r[3];
1154 struct fs_uart_platform_info cpm_uart_data;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001155 const int *id;
1156 const char *model;
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001157
1158 memset(r, 0, sizeof(r));
1159 memset(&cpm_uart_data, 0, sizeof(cpm_uart_data));
1160
1161 ret = of_address_to_resource(np, 0, &r[0]);
1162 if (ret)
1163 goto err;
1164
1165 r[0].name = smc_regs;
1166
1167 ret = of_address_to_resource(np, 1, &r[1]);
1168 if (ret)
1169 goto err;
1170 r[1].name = smc_pram;
1171
1172 r[2].start = r[2].end = irq_of_parse_and_map(np, 0);
1173 r[2].flags = IORESOURCE_IRQ;
1174
1175 cpm_uart_dev =
1176 platform_device_register_simple("fsl-cpm-smc:uart", i, &r[0], 3);
1177
1178 if (IS_ERR(cpm_uart_dev)) {
1179 ret = PTR_ERR(cpm_uart_dev);
1180 goto err;
1181 }
1182
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001183 model = of_get_property(np, "model", NULL);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001184 strcpy(cpm_uart_data.fs_type, model);
1185
Stephen Rothwelle2eb6392007-04-03 22:26:41 +10001186 id = of_get_property(np, "device-id", NULL);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +03001187 cpm_uart_data.fs_no = *id;
1188 cpm_uart_data.uart_clk = ppc_proc_freq;
1189
1190 cpm_uart_data.tx_num_fifo = 4;
1191 cpm_uart_data.tx_buf_size = 32;
1192 cpm_uart_data.rx_num_fifo = 4;
1193 cpm_uart_data.rx_buf_size = 32;
1194
1195 ret =
1196 platform_device_add_data(cpm_uart_dev, &cpm_uart_data,
1197 sizeof(struct
1198 fs_uart_platform_info));
1199 if (ret)
1200 goto unreg;
1201 }
1202
1203 return 0;
1204
1205unreg:
1206 platform_device_unregister(cpm_uart_dev);
1207err:
1208 return ret;
1209}
1210
1211arch_initcall(cpm_smc_uart_of_init);
1212
1213#endif /* CONFIG_8xx */
Scott Woode631ae32007-09-14 13:04:54 -05001214#endif /* CONFIG_PPC_CPM_NEW_BINDING */
Anton Vorontsov26f6cb92007-08-23 15:35:56 +04001215
1216int __init fsl_spi_init(struct spi_board_info *board_infos,
1217 unsigned int num_board_infos,
1218 void (*activate_cs)(u8 cs, u8 polarity),
1219 void (*deactivate_cs)(u8 cs, u8 polarity))
1220{
1221 struct device_node *np;
1222 unsigned int i;
1223 const u32 *sysclk;
1224
Peter Korsgaard082ea862007-10-06 22:06:40 +02001225 /* SPI controller is either clocked from QE or SoC clock */
Anton Vorontsov26f6cb92007-08-23 15:35:56 +04001226 np = of_find_node_by_type(NULL, "qe");
1227 if (!np)
Peter Korsgaard082ea862007-10-06 22:06:40 +02001228 np = of_find_node_by_type(NULL, "soc");
1229
1230 if (!np)
Anton Vorontsov26f6cb92007-08-23 15:35:56 +04001231 return -ENODEV;
1232
1233 sysclk = of_get_property(np, "bus-frequency", NULL);
1234 if (!sysclk)
1235 return -ENODEV;
1236
1237 for (np = NULL, i = 1;
1238 (np = of_find_compatible_node(np, "spi", "fsl_spi")) != NULL;
1239 i++) {
1240 int ret = 0;
1241 unsigned int j;
1242 const void *prop;
1243 struct resource res[2];
1244 struct platform_device *pdev;
1245 struct fsl_spi_platform_data pdata = {
1246 .activate_cs = activate_cs,
1247 .deactivate_cs = deactivate_cs,
1248 };
1249
1250 memset(res, 0, sizeof(res));
1251
1252 pdata.sysclk = *sysclk;
1253
1254 prop = of_get_property(np, "reg", NULL);
1255 if (!prop)
1256 goto err;
1257 pdata.bus_num = *(u32 *)prop;
1258
1259 prop = of_get_property(np, "mode", NULL);
1260 if (prop && !strcmp(prop, "cpu-qe"))
1261 pdata.qe_mode = 1;
1262
1263 for (j = 0; j < num_board_infos; j++) {
1264 if (board_infos[j].bus_num == pdata.bus_num)
1265 pdata.max_chipselect++;
1266 }
1267
1268 if (!pdata.max_chipselect)
1269 goto err;
1270
1271 ret = of_address_to_resource(np, 0, &res[0]);
1272 if (ret)
1273 goto err;
1274
1275 ret = of_irq_to_resource(np, 0, &res[1]);
1276 if (ret == NO_IRQ)
1277 goto err;
1278
1279 pdev = platform_device_alloc("mpc83xx_spi", i);
1280 if (!pdev)
1281 goto err;
1282
1283 ret = platform_device_add_data(pdev, &pdata, sizeof(pdata));
1284 if (ret)
1285 goto unreg;
1286
1287 ret = platform_device_add_resources(pdev, res,
1288 ARRAY_SIZE(res));
1289 if (ret)
1290 goto unreg;
1291
1292 ret = platform_device_register(pdev);
1293 if (ret)
1294 goto unreg;
1295
1296 continue;
1297unreg:
1298 platform_device_del(pdev);
1299err:
1300 continue;
1301 }
1302
1303 return spi_register_board_info(board_infos, num_board_infos);
1304}
Kumar Galae1c15752007-10-04 01:04:57 -05001305
1306#if defined(CONFIG_PPC_85xx) || defined(CONFIG_PPC_86xx)
1307static __be32 __iomem *rstcr;
1308
1309static int __init setup_rstcr(void)
1310{
1311 struct device_node *np;
1312 np = of_find_node_by_name(NULL, "global-utilities");
1313 if ((np && of_get_property(np, "fsl,has-rstcr", NULL))) {
1314 const u32 *prop = of_get_property(np, "reg", NULL);
1315 if (prop) {
1316 /* map reset control register
1317 * 0xE00B0 is offset of reset control register
1318 */
1319 rstcr = ioremap(get_immrbase() + *prop + 0xB0, 0xff);
1320 if (!rstcr)
1321 printk (KERN_EMERG "Error: reset control "
1322 "register not mapped!\n");
1323 }
1324 } else
1325 printk (KERN_INFO "rstcr compatible register does not exist!\n");
1326 if (np)
1327 of_node_put(np);
1328 return 0;
1329}
1330
1331arch_initcall(setup_rstcr);
1332
1333void fsl_rstcr_restart(char *cmd)
1334{
1335 local_irq_disable();
1336 if (rstcr)
1337 /* set reset control register */
1338 out_be32(rstcr, 0x2); /* HRESET_REQ */
1339
1340 while (1) ;
1341}
1342#endif