blob: 115cb16351fd97b3dfcac78fca07634f0f0ba8eb [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
Scott Wood38664092008-04-15 13:52:34 -050078static u32 sysfreq = -1;
79
80u32 fsl_get_sys_freq(void)
81{
82 struct device_node *soc;
83 const u32 *prop;
84 int size;
85
86 if (sysfreq != -1)
87 return sysfreq;
88
89 soc = of_find_node_by_type(NULL, "soc");
90 if (!soc)
91 return -1;
92
93 prop = of_get_property(soc, "clock-frequency", &size);
94 if (!prop || size != sizeof(*prop) || *prop == 0)
95 prop = of_get_property(soc, "bus-frequency", &size);
96
97 if (prop && size == sizeof(*prop))
98 sysfreq = *prop;
99
100 of_node_put(soc);
101 return sysfreq;
102}
103EXPORT_SYMBOL(fsl_get_sys_freq);
104
Anton Vorontsov59a0ea52008-01-24 18:40:03 +0300105#if defined(CONFIG_CPM2) || defined(CONFIG_QUICC_ENGINE) || defined(CONFIG_8xx)
Vitaly Bordugfba43662006-09-21 17:26:34 +0400106
107static u32 brgfreq = -1;
108
109u32 get_brgfreq(void)
110{
111 struct device_node *node;
Scott Wood6d817aa2007-08-29 15:08:40 -0500112 const unsigned int *prop;
113 int size;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400114
115 if (brgfreq != -1)
116 return brgfreq;
117
Scott Wood6d817aa2007-08-29 15:08:40 -0500118 node = of_find_compatible_node(NULL, NULL, "fsl,cpm-brg");
Vitaly Bordugfba43662006-09-21 17:26:34 +0400119 if (node) {
Scott Wood6d817aa2007-08-29 15:08:40 -0500120 prop = of_get_property(node, "clock-frequency", &size);
121 if (prop && size == 4)
122 brgfreq = *prop;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400123
Scott Wood6d817aa2007-08-29 15:08:40 -0500124 of_node_put(node);
125 return brgfreq;
126 }
127
128 /* Legacy device binding -- will go away when no users are left. */
129 node = of_find_node_by_type(NULL, "cpm");
Anton Vorontsov59a0ea52008-01-24 18:40:03 +0300130 if (!node)
131 node = of_find_compatible_node(NULL, NULL, "fsl,qe");
132 if (!node)
133 node = of_find_node_by_type(NULL, "qe");
134
Scott Wood6d817aa2007-08-29 15:08:40 -0500135 if (node) {
136 prop = of_get_property(node, "brg-frequency", &size);
Scott Woodf9234732007-08-20 11:38:12 -0500137 if (prop && size == 4)
Vitaly Bordugfba43662006-09-21 17:26:34 +0400138 brgfreq = *prop;
Scott Woodf9234732007-08-20 11:38:12 -0500139
Anton Vorontsov59a0ea52008-01-24 18:40:03 +0300140 if (brgfreq == -1 || brgfreq == 0) {
141 prop = of_get_property(node, "bus-frequency", &size);
142 if (prop && size == 4)
143 brgfreq = *prop / 2;
144 }
Vitaly Bordugfba43662006-09-21 17:26:34 +0400145 of_node_put(node);
Scott Woodf9234732007-08-20 11:38:12 -0500146 }
Vitaly Bordugfba43662006-09-21 17:26:34 +0400147
148 return brgfreq;
149}
150
151EXPORT_SYMBOL(get_brgfreq);
152
153static u32 fs_baudrate = -1;
154
155u32 get_baudrate(void)
156{
157 struct device_node *node;
158
159 if (fs_baudrate != -1)
160 return fs_baudrate;
161
162 node = of_find_node_by_type(NULL, "serial");
163 if (node) {
Scott Woodf9234732007-08-20 11:38:12 -0500164 int size;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000165 const unsigned int *prop = of_get_property(node,
166 "current-speed", &size);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400167
168 if (prop)
169 fs_baudrate = *prop;
170 of_node_put(node);
Scott Woodf9234732007-08-20 11:38:12 -0500171 }
Vitaly Bordugfba43662006-09-21 17:26:34 +0400172
173 return fs_baudrate;
174}
175
176EXPORT_SYMBOL(get_baudrate);
177#endif /* CONFIG_CPM2 */
178
Vitaly Borduga21e2822007-12-07 01:51:31 +0300179#ifdef CONFIG_FIXED_PHY
180static int __init of_add_fixed_phys(void)
181{
182 int ret;
183 struct device_node *np;
184 u32 *fixed_link;
185 struct fixed_phy_status status = {};
186
187 for_each_node_by_name(np, "ethernet") {
188 fixed_link = (u32 *)of_get_property(np, "fixed-link", NULL);
189 if (!fixed_link)
190 continue;
191
192 status.link = 1;
193 status.duplex = fixed_link[1];
194 status.speed = fixed_link[2];
195 status.pause = fixed_link[3];
196 status.asym_pause = fixed_link[4];
197
198 ret = fixed_phy_add(PHY_POLL, fixed_link[0], &status);
199 if (ret) {
200 of_node_put(np);
201 return ret;
202 }
203 }
204
205 return 0;
206}
207arch_initcall(of_add_fixed_phys);
208#endif /* CONFIG_FIXED_PHY */
209
Andy Flemingb31a1d82008-12-16 15:29:15 -0800210#ifdef CONFIG_PPC_83xx
211static int __init mpc83xx_wdt_init(void)
Kumar Galaeed32002006-01-13 11:19:13 -0600212{
Andy Flemingb31a1d82008-12-16 15:29:15 -0800213 struct resource r;
Kumar Gala2fb07d72006-01-23 16:58:04 -0600214 struct device_node *np;
Andy Flemingb31a1d82008-12-16 15:29:15 -0800215 struct platform_device *dev;
216 u32 freq = fsl_get_sys_freq();
Kumar Gala2fb07d72006-01-23 16:58:04 -0600217 int ret;
218
Andy Flemingb31a1d82008-12-16 15:29:15 -0800219 np = of_find_compatible_node(NULL, "watchdog", "mpc83xx_wdt");
Kumar Galaeed32002006-01-13 11:19:13 -0600220
Andy Flemingb31a1d82008-12-16 15:29:15 -0800221 if (!np) {
222 ret = -ENODEV;
223 goto nodev;
Kumar Galaeed32002006-01-13 11:19:13 -0600224 }
225
Andy Flemingb31a1d82008-12-16 15:29:15 -0800226 memset(&r, 0, sizeof(r));
227
228 ret = of_address_to_resource(np, 0, &r);
229 if (ret)
230 goto err;
231
232 dev = platform_device_register_simple("mpc83xx_wdt", 0, &r, 1);
233 if (IS_ERR(dev)) {
234 ret = PTR_ERR(dev);
235 goto err;
236 }
237
238 ret = platform_device_add_data(dev, &freq, sizeof(freq));
239 if (ret)
240 goto unreg;
241
242 of_node_put(np);
Kumar Galaeed32002006-01-13 11:19:13 -0600243 return 0;
244
Kumar Gala2fb07d72006-01-23 16:58:04 -0600245unreg:
Andy Flemingb31a1d82008-12-16 15:29:15 -0800246 platform_device_unregister(dev);
Kumar Gala2fb07d72006-01-23 16:58:04 -0600247err:
Andy Flemingb31a1d82008-12-16 15:29:15 -0800248 of_node_put(np);
249nodev:
Kumar Galaeed32002006-01-13 11:19:13 -0600250 return ret;
251}
Kumar Gala2fb07d72006-01-23 16:58:04 -0600252
Andy Flemingb31a1d82008-12-16 15:29:15 -0800253arch_initcall(mpc83xx_wdt_init);
254#endif
Kumar Galaeed32002006-01-13 11:19:13 -0600255
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000256static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type)
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600257{
258 if (!phy_type)
259 return FSL_USB2_PHY_NONE;
260 if (!strcasecmp(phy_type, "ulpi"))
261 return FSL_USB2_PHY_ULPI;
262 if (!strcasecmp(phy_type, "utmi"))
263 return FSL_USB2_PHY_UTMI;
264 if (!strcasecmp(phy_type, "utmi_wide"))
265 return FSL_USB2_PHY_UTMI_WIDE;
266 if (!strcasecmp(phy_type, "serial"))
267 return FSL_USB2_PHY_SERIAL;
268
269 return FSL_USB2_PHY_NONE;
270}
271
272static int __init fsl_usb_of_init(void)
273{
274 struct device_node *np;
Li Yang866b6dd2008-01-08 15:18:46 +0800275 unsigned int i = 0;
Li Yang97c5a202007-02-07 13:49:24 +0800276 struct platform_device *usb_dev_mph = NULL, *usb_dev_dr_host = NULL,
277 *usb_dev_dr_client = NULL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600278 int ret;
279
Li Yang866b6dd2008-01-08 15:18:46 +0800280 for_each_compatible_node(np, NULL, "fsl-usb2-mph") {
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600281 struct resource r[2];
282 struct fsl_usb2_platform_data usb_data;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000283 const unsigned char *prop = NULL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600284
285 memset(&r, 0, sizeof(r));
286 memset(&usb_data, 0, sizeof(usb_data));
287
288 ret = of_address_to_resource(np, 0, &r[0]);
289 if (ret)
290 goto err;
291
Andy Fleminga9b14972006-10-19 19:52:26 -0500292 of_irq_to_resource(np, 0, &r[1]);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600293
Kumar Gala01cced22006-04-11 10:07:16 -0500294 usb_dev_mph =
295 platform_device_register_simple("fsl-ehci", i, r, 2);
296 if (IS_ERR(usb_dev_mph)) {
297 ret = PTR_ERR(usb_dev_mph);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600298 goto err;
299 }
300
Kumar Gala01cced22006-04-11 10:07:16 -0500301 usb_dev_mph->dev.coherent_dma_mask = 0xffffffffUL;
302 usb_dev_mph->dev.dma_mask = &usb_dev_mph->dev.coherent_dma_mask;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600303
304 usb_data.operating_mode = FSL_USB2_MPH_HOST;
305
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000306 prop = of_get_property(np, "port0", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600307 if (prop)
308 usb_data.port_enables |= FSL_USB2_PORT0_ENABLED;
309
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000310 prop = of_get_property(np, "port1", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600311 if (prop)
312 usb_data.port_enables |= FSL_USB2_PORT1_ENABLED;
313
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000314 prop = of_get_property(np, "phy_type", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600315 usb_data.phy_mode = determine_usb_phy(prop);
316
317 ret =
Kumar Gala01cced22006-04-11 10:07:16 -0500318 platform_device_add_data(usb_dev_mph, &usb_data,
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600319 sizeof(struct
320 fsl_usb2_platform_data));
321 if (ret)
Kumar Gala01cced22006-04-11 10:07:16 -0500322 goto unreg_mph;
Li Yang866b6dd2008-01-08 15:18:46 +0800323 i++;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600324 }
325
Li Yang866b6dd2008-01-08 15:18:46 +0800326 for_each_compatible_node(np, NULL, "fsl-usb2-dr") {
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600327 struct resource r[2];
328 struct fsl_usb2_platform_data usb_data;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000329 const unsigned char *prop = NULL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600330
331 memset(&r, 0, sizeof(r));
332 memset(&usb_data, 0, sizeof(usb_data));
333
334 ret = of_address_to_resource(np, 0, &r[0]);
335 if (ret)
Kumar Gala01cced22006-04-11 10:07:16 -0500336 goto unreg_mph;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600337
Andy Fleminga9b14972006-10-19 19:52:26 -0500338 of_irq_to_resource(np, 0, &r[1]);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600339
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000340 prop = of_get_property(np, "dr_mode", NULL);
Li Yang97c5a202007-02-07 13:49:24 +0800341
342 if (!prop || !strcmp(prop, "host")) {
343 usb_data.operating_mode = FSL_USB2_DR_HOST;
344 usb_dev_dr_host = platform_device_register_simple(
345 "fsl-ehci", i, r, 2);
346 if (IS_ERR(usb_dev_dr_host)) {
347 ret = PTR_ERR(usb_dev_dr_host);
348 goto err;
349 }
350 } else if (prop && !strcmp(prop, "peripheral")) {
351 usb_data.operating_mode = FSL_USB2_DR_DEVICE;
352 usb_dev_dr_client = platform_device_register_simple(
353 "fsl-usb2-udc", i, r, 2);
354 if (IS_ERR(usb_dev_dr_client)) {
355 ret = PTR_ERR(usb_dev_dr_client);
356 goto err;
357 }
358 } else if (prop && !strcmp(prop, "otg")) {
359 usb_data.operating_mode = FSL_USB2_DR_OTG;
360 usb_dev_dr_host = platform_device_register_simple(
361 "fsl-ehci", i, r, 2);
362 if (IS_ERR(usb_dev_dr_host)) {
363 ret = PTR_ERR(usb_dev_dr_host);
364 goto err;
365 }
366 usb_dev_dr_client = platform_device_register_simple(
367 "fsl-usb2-udc", i, r, 2);
368 if (IS_ERR(usb_dev_dr_client)) {
369 ret = PTR_ERR(usb_dev_dr_client);
370 goto err;
371 }
372 } else {
373 ret = -EINVAL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600374 goto err;
375 }
376
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000377 prop = of_get_property(np, "phy_type", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600378 usb_data.phy_mode = determine_usb_phy(prop);
379
Li Yang97c5a202007-02-07 13:49:24 +0800380 if (usb_dev_dr_host) {
381 usb_dev_dr_host->dev.coherent_dma_mask = 0xffffffffUL;
382 usb_dev_dr_host->dev.dma_mask = &usb_dev_dr_host->
383 dev.coherent_dma_mask;
384 if ((ret = platform_device_add_data(usb_dev_dr_host,
385 &usb_data, sizeof(struct
386 fsl_usb2_platform_data))))
387 goto unreg_dr;
388 }
389 if (usb_dev_dr_client) {
390 usb_dev_dr_client->dev.coherent_dma_mask = 0xffffffffUL;
391 usb_dev_dr_client->dev.dma_mask = &usb_dev_dr_client->
392 dev.coherent_dma_mask;
393 if ((ret = platform_device_add_data(usb_dev_dr_client,
394 &usb_data, sizeof(struct
395 fsl_usb2_platform_data))))
396 goto unreg_dr;
397 }
Li Yang866b6dd2008-01-08 15:18:46 +0800398 i++;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600399 }
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600400 return 0;
401
Kumar Gala01cced22006-04-11 10:07:16 -0500402unreg_dr:
Li Yang97c5a202007-02-07 13:49:24 +0800403 if (usb_dev_dr_host)
404 platform_device_unregister(usb_dev_dr_host);
405 if (usb_dev_dr_client)
406 platform_device_unregister(usb_dev_dr_client);
Kumar Gala01cced22006-04-11 10:07:16 -0500407unreg_mph:
408 if (usb_dev_mph)
409 platform_device_unregister(usb_dev_mph);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600410err:
411 return ret;
412}
413
Kumar Gala01cced22006-04-11 10:07:16 -0500414arch_initcall(fsl_usb_of_init);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400415
Anton Vorontsovf3a2b292008-01-24 18:40:07 +0300416static int __init of_fsl_spi_probe(char *type, char *compatible, u32 sysclk,
417 struct spi_board_info *board_infos,
418 unsigned int num_board_infos,
419 void (*activate_cs)(u8 cs, u8 polarity),
420 void (*deactivate_cs)(u8 cs, u8 polarity))
Anton Vorontsov26f6cb92007-08-23 15:35:56 +0400421{
422 struct device_node *np;
Anton Vorontsovf3a2b292008-01-24 18:40:07 +0300423 unsigned int i = 0;
Anton Vorontsov26f6cb92007-08-23 15:35:56 +0400424
Anton Vorontsovf3a2b292008-01-24 18:40:07 +0300425 for_each_compatible_node(np, type, compatible) {
426 int ret;
Anton Vorontsov26f6cb92007-08-23 15:35:56 +0400427 unsigned int j;
428 const void *prop;
429 struct resource res[2];
430 struct platform_device *pdev;
431 struct fsl_spi_platform_data pdata = {
432 .activate_cs = activate_cs,
433 .deactivate_cs = deactivate_cs,
434 };
435
436 memset(res, 0, sizeof(res));
437
Anton Vorontsov59a0ea52008-01-24 18:40:03 +0300438 pdata.sysclk = sysclk;
Anton Vorontsov26f6cb92007-08-23 15:35:56 +0400439
440 prop = of_get_property(np, "reg", NULL);
441 if (!prop)
442 goto err;
443 pdata.bus_num = *(u32 *)prop;
444
Anton Vorontsovf3a2b292008-01-24 18:40:07 +0300445 prop = of_get_property(np, "cell-index", NULL);
446 if (prop)
447 i = *(u32 *)prop;
448
Anton Vorontsov26f6cb92007-08-23 15:35:56 +0400449 prop = of_get_property(np, "mode", NULL);
450 if (prop && !strcmp(prop, "cpu-qe"))
451 pdata.qe_mode = 1;
452
453 for (j = 0; j < num_board_infos; j++) {
454 if (board_infos[j].bus_num == pdata.bus_num)
455 pdata.max_chipselect++;
456 }
457
458 if (!pdata.max_chipselect)
Anton Vorontsovf3a2b292008-01-24 18:40:07 +0300459 continue;
Anton Vorontsov26f6cb92007-08-23 15:35:56 +0400460
461 ret = of_address_to_resource(np, 0, &res[0]);
462 if (ret)
463 goto err;
464
465 ret = of_irq_to_resource(np, 0, &res[1]);
466 if (ret == NO_IRQ)
467 goto err;
468
469 pdev = platform_device_alloc("mpc83xx_spi", i);
470 if (!pdev)
471 goto err;
472
473 ret = platform_device_add_data(pdev, &pdata, sizeof(pdata));
474 if (ret)
475 goto unreg;
476
477 ret = platform_device_add_resources(pdev, res,
478 ARRAY_SIZE(res));
479 if (ret)
480 goto unreg;
481
Kim Phillipsdc4e4202008-02-01 18:09:58 -0600482 ret = platform_device_add(pdev);
Anton Vorontsov26f6cb92007-08-23 15:35:56 +0400483 if (ret)
484 goto unreg;
485
Anton Vorontsovf3a2b292008-01-24 18:40:07 +0300486 goto next;
Anton Vorontsov26f6cb92007-08-23 15:35:56 +0400487unreg:
488 platform_device_del(pdev);
489err:
Anton Vorontsovf3a2b292008-01-24 18:40:07 +0300490 pr_err("%s: registration failed\n", np->full_name);
491next:
492 i++;
Anton Vorontsov26f6cb92007-08-23 15:35:56 +0400493 }
494
Anton Vorontsovf3a2b292008-01-24 18:40:07 +0300495 return i;
496}
497
498int __init fsl_spi_init(struct spi_board_info *board_infos,
499 unsigned int num_board_infos,
500 void (*activate_cs)(u8 cs, u8 polarity),
501 void (*deactivate_cs)(u8 cs, u8 polarity))
502{
503 u32 sysclk = -1;
504 int ret;
505
506#ifdef CONFIG_QUICC_ENGINE
507 /* SPI controller is either clocked from QE or SoC clock */
508 sysclk = get_brgfreq();
509#endif
510 if (sysclk == -1) {
Scott Wood38664092008-04-15 13:52:34 -0500511 sysclk = fsl_get_sys_freq();
512 if (sysclk == -1)
Anton Vorontsovf3a2b292008-01-24 18:40:07 +0300513 return -ENODEV;
Anton Vorontsovf3a2b292008-01-24 18:40:07 +0300514 }
515
516 ret = of_fsl_spi_probe(NULL, "fsl,spi", sysclk, board_infos,
517 num_board_infos, activate_cs, deactivate_cs);
518 if (!ret)
519 of_fsl_spi_probe("spi", "fsl_spi", sysclk, board_infos,
520 num_board_infos, activate_cs, deactivate_cs);
521
Anton Vorontsov26f6cb92007-08-23 15:35:56 +0400522 return spi_register_board_info(board_infos, num_board_infos);
523}
Kumar Galae1c15752007-10-04 01:04:57 -0500524
525#if defined(CONFIG_PPC_85xx) || defined(CONFIG_PPC_86xx)
526static __be32 __iomem *rstcr;
527
528static int __init setup_rstcr(void)
529{
530 struct device_node *np;
531 np = of_find_node_by_name(NULL, "global-utilities");
532 if ((np && of_get_property(np, "fsl,has-rstcr", NULL))) {
533 const u32 *prop = of_get_property(np, "reg", NULL);
534 if (prop) {
535 /* map reset control register
536 * 0xE00B0 is offset of reset control register
537 */
538 rstcr = ioremap(get_immrbase() + *prop + 0xB0, 0xff);
539 if (!rstcr)
540 printk (KERN_EMERG "Error: reset control "
541 "register not mapped!\n");
542 }
543 } else
544 printk (KERN_INFO "rstcr compatible register does not exist!\n");
545 if (np)
546 of_node_put(np);
547 return 0;
548}
549
550arch_initcall(setup_rstcr);
551
552void fsl_rstcr_restart(char *cmd)
553{
554 local_irq_disable();
555 if (rstcr)
556 /* set reset control register */
557 out_be32(rstcr, 0x2); /* HRESET_REQ */
558
559 while (1) ;
560}
561#endif
York Sun6f90a8bd2008-04-28 02:15:36 -0700562
563#if defined(CONFIG_FB_FSL_DIU) || defined(CONFIG_FB_FSL_DIU_MODULE)
Timur Tabi43c9f432008-09-23 09:47:01 -0500564struct platform_diu_data_ops diu_ops;
York Sun6f90a8bd2008-04-28 02:15:36 -0700565EXPORT_SYMBOL(diu_ops);
York Sun6f90a8bd2008-04-28 02:15:36 -0700566#endif