blob: 95dbc643c4fc0ba2c411809b624e8fbc7bd1e734 [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>
Anton Vorontsovc026c982009-02-19 19:02:23 +030025#include <linux/of.h>
Kumar Gala0af666f2007-08-17 08:23:06 -050026#include <linux/of_platform.h>
Andy Fleminga9b14972006-10-19 19:52:26 -050027#include <linux/phy.h>
Vitaly Borduga21e2822007-12-07 01:51:31 +030028#include <linux/phy_fixed.h>
Anton Vorontsov26f6cb92007-08-23 15:35:56 +040029#include <linux/spi/spi.h>
Kumar Galaeed32002006-01-13 11:19:13 -060030#include <linux/fsl_devices.h>
Vitaly Bordugfba43662006-09-21 17:26:34 +040031#include <linux/fs_enet_pd.h>
32#include <linux/fs_uart_pd.h>
Kumar Galaeed32002006-01-13 11:19:13 -060033
34#include <asm/system.h>
35#include <asm/atomic.h>
36#include <asm/io.h>
37#include <asm/irq.h>
Vitaly Bordugfba43662006-09-21 17:26:34 +040038#include <asm/time.h>
Kumar Galaeed32002006-01-13 11:19:13 -060039#include <asm/prom.h>
40#include <sysdev/fsl_soc.h>
41#include <mm/mmu_decl.h>
Vitaly Bordugfba43662006-09-21 17:26:34 +040042#include <asm/cpm2.h>
Kumar Galaeed32002006-01-13 11:19:13 -060043
Vitaly Bordugd3465c92006-09-21 22:38:05 +040044extern void init_fcc_ioports(struct fs_platform_info*);
Vitaly Bordug88bdc6f2007-01-24 22:41:15 +030045extern void init_fec_ioports(struct fs_platform_info*);
46extern void init_smc_ioports(struct fs_uart_platform_info*);
Kumar Galaeed32002006-01-13 11:19:13 -060047static phys_addr_t immrbase = -1;
48
49phys_addr_t get_immrbase(void)
50{
51 struct device_node *soc;
52
53 if (immrbase != -1)
54 return immrbase;
55
56 soc = of_find_node_by_type(NULL, "soc");
Kumar Gala2fb07d72006-01-23 16:58:04 -060057 if (soc) {
Scott Woodf9234732007-08-20 11:38:12 -050058 int size;
Scott Wood6c7e0722008-01-14 10:29:35 -060059 u32 naddr;
60 const u32 *prop = of_get_property(soc, "#address-cells", &size);
Vitaly Bordugfba43662006-09-21 17:26:34 +040061
Scott Wood6c7e0722008-01-14 10:29:35 -060062 if (prop && size == 4)
63 naddr = *prop;
64 else
65 naddr = 2;
66
67 prop = of_get_property(soc, "ranges", &size);
Vitaly Bordugfba43662006-09-21 17:26:34 +040068 if (prop)
Scott Wood6c7e0722008-01-14 10:29:35 -060069 immrbase = of_translate_address(soc, prop + naddr);
70
Kumar Galaeed32002006-01-13 11:19:13 -060071 of_node_put(soc);
Scott Woodf9234732007-08-20 11:38:12 -050072 }
Kumar Galaeed32002006-01-13 11:19:13 -060073
74 return immrbase;
75}
Kumar Gala2fb07d72006-01-23 16:58:04 -060076
Kumar Galaeed32002006-01-13 11:19:13 -060077EXPORT_SYMBOL(get_immrbase);
78
Scott Wood38664092008-04-15 13:52:34 -050079static u32 sysfreq = -1;
80
81u32 fsl_get_sys_freq(void)
82{
83 struct device_node *soc;
84 const u32 *prop;
85 int size;
86
87 if (sysfreq != -1)
88 return sysfreq;
89
90 soc = of_find_node_by_type(NULL, "soc");
91 if (!soc)
92 return -1;
93
94 prop = of_get_property(soc, "clock-frequency", &size);
95 if (!prop || size != sizeof(*prop) || *prop == 0)
96 prop = of_get_property(soc, "bus-frequency", &size);
97
98 if (prop && size == sizeof(*prop))
99 sysfreq = *prop;
100
101 of_node_put(soc);
102 return sysfreq;
103}
104EXPORT_SYMBOL(fsl_get_sys_freq);
105
Anton Vorontsov59a0ea52008-01-24 18:40:03 +0300106#if defined(CONFIG_CPM2) || defined(CONFIG_QUICC_ENGINE) || defined(CONFIG_8xx)
Vitaly Bordugfba43662006-09-21 17:26:34 +0400107
108static u32 brgfreq = -1;
109
110u32 get_brgfreq(void)
111{
112 struct device_node *node;
Scott Wood6d817aa2007-08-29 15:08:40 -0500113 const unsigned int *prop;
114 int size;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400115
116 if (brgfreq != -1)
117 return brgfreq;
118
Scott Wood6d817aa2007-08-29 15:08:40 -0500119 node = of_find_compatible_node(NULL, NULL, "fsl,cpm-brg");
Vitaly Bordugfba43662006-09-21 17:26:34 +0400120 if (node) {
Scott Wood6d817aa2007-08-29 15:08:40 -0500121 prop = of_get_property(node, "clock-frequency", &size);
122 if (prop && size == 4)
123 brgfreq = *prop;
Vitaly Bordugfba43662006-09-21 17:26:34 +0400124
Scott Wood6d817aa2007-08-29 15:08:40 -0500125 of_node_put(node);
126 return brgfreq;
127 }
128
129 /* Legacy device binding -- will go away when no users are left. */
130 node = of_find_node_by_type(NULL, "cpm");
Anton Vorontsov59a0ea52008-01-24 18:40:03 +0300131 if (!node)
132 node = of_find_compatible_node(NULL, NULL, "fsl,qe");
133 if (!node)
134 node = of_find_node_by_type(NULL, "qe");
135
Scott Wood6d817aa2007-08-29 15:08:40 -0500136 if (node) {
137 prop = of_get_property(node, "brg-frequency", &size);
Scott Woodf9234732007-08-20 11:38:12 -0500138 if (prop && size == 4)
Vitaly Bordugfba43662006-09-21 17:26:34 +0400139 brgfreq = *prop;
Scott Woodf9234732007-08-20 11:38:12 -0500140
Anton Vorontsov59a0ea52008-01-24 18:40:03 +0300141 if (brgfreq == -1 || brgfreq == 0) {
142 prop = of_get_property(node, "bus-frequency", &size);
143 if (prop && size == 4)
144 brgfreq = *prop / 2;
145 }
Vitaly Bordugfba43662006-09-21 17:26:34 +0400146 of_node_put(node);
Scott Woodf9234732007-08-20 11:38:12 -0500147 }
Vitaly Bordugfba43662006-09-21 17:26:34 +0400148
149 return brgfreq;
150}
151
152EXPORT_SYMBOL(get_brgfreq);
153
154static u32 fs_baudrate = -1;
155
156u32 get_baudrate(void)
157{
158 struct device_node *node;
159
160 if (fs_baudrate != -1)
161 return fs_baudrate;
162
163 node = of_find_node_by_type(NULL, "serial");
164 if (node) {
Scott Woodf9234732007-08-20 11:38:12 -0500165 int size;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000166 const unsigned int *prop = of_get_property(node,
167 "current-speed", &size);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400168
169 if (prop)
170 fs_baudrate = *prop;
171 of_node_put(node);
Scott Woodf9234732007-08-20 11:38:12 -0500172 }
Vitaly Bordugfba43662006-09-21 17:26:34 +0400173
174 return fs_baudrate;
175}
176
177EXPORT_SYMBOL(get_baudrate);
178#endif /* CONFIG_CPM2 */
179
Vitaly Borduga21e2822007-12-07 01:51:31 +0300180#ifdef CONFIG_FIXED_PHY
181static int __init of_add_fixed_phys(void)
182{
183 int ret;
184 struct device_node *np;
185 u32 *fixed_link;
186 struct fixed_phy_status status = {};
187
188 for_each_node_by_name(np, "ethernet") {
189 fixed_link = (u32 *)of_get_property(np, "fixed-link", NULL);
190 if (!fixed_link)
191 continue;
192
193 status.link = 1;
194 status.duplex = fixed_link[1];
195 status.speed = fixed_link[2];
196 status.pause = fixed_link[3];
197 status.asym_pause = fixed_link[4];
198
199 ret = fixed_phy_add(PHY_POLL, fixed_link[0], &status);
200 if (ret) {
201 of_node_put(np);
202 return ret;
203 }
204 }
205
206 return 0;
207}
208arch_initcall(of_add_fixed_phys);
209#endif /* CONFIG_FIXED_PHY */
210
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000211static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type)
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600212{
213 if (!phy_type)
214 return FSL_USB2_PHY_NONE;
215 if (!strcasecmp(phy_type, "ulpi"))
216 return FSL_USB2_PHY_ULPI;
217 if (!strcasecmp(phy_type, "utmi"))
218 return FSL_USB2_PHY_UTMI;
219 if (!strcasecmp(phy_type, "utmi_wide"))
220 return FSL_USB2_PHY_UTMI_WIDE;
221 if (!strcasecmp(phy_type, "serial"))
222 return FSL_USB2_PHY_SERIAL;
223
224 return FSL_USB2_PHY_NONE;
225}
226
227static int __init fsl_usb_of_init(void)
228{
229 struct device_node *np;
Li Yang866b6dd2008-01-08 15:18:46 +0800230 unsigned int i = 0;
Li Yang97c5a202007-02-07 13:49:24 +0800231 struct platform_device *usb_dev_mph = NULL, *usb_dev_dr_host = NULL,
232 *usb_dev_dr_client = NULL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600233 int ret;
234
Li Yang866b6dd2008-01-08 15:18:46 +0800235 for_each_compatible_node(np, NULL, "fsl-usb2-mph") {
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600236 struct resource r[2];
237 struct fsl_usb2_platform_data usb_data;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000238 const unsigned char *prop = NULL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600239
240 memset(&r, 0, sizeof(r));
241 memset(&usb_data, 0, sizeof(usb_data));
242
243 ret = of_address_to_resource(np, 0, &r[0]);
244 if (ret)
245 goto err;
246
Andy Fleminga9b14972006-10-19 19:52:26 -0500247 of_irq_to_resource(np, 0, &r[1]);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600248
Kumar Gala01cced22006-04-11 10:07:16 -0500249 usb_dev_mph =
250 platform_device_register_simple("fsl-ehci", i, r, 2);
251 if (IS_ERR(usb_dev_mph)) {
252 ret = PTR_ERR(usb_dev_mph);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600253 goto err;
254 }
255
Kumar Gala01cced22006-04-11 10:07:16 -0500256 usb_dev_mph->dev.coherent_dma_mask = 0xffffffffUL;
257 usb_dev_mph->dev.dma_mask = &usb_dev_mph->dev.coherent_dma_mask;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600258
259 usb_data.operating_mode = FSL_USB2_MPH_HOST;
260
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000261 prop = of_get_property(np, "port0", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600262 if (prop)
263 usb_data.port_enables |= FSL_USB2_PORT0_ENABLED;
264
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000265 prop = of_get_property(np, "port1", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600266 if (prop)
267 usb_data.port_enables |= FSL_USB2_PORT1_ENABLED;
268
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000269 prop = of_get_property(np, "phy_type", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600270 usb_data.phy_mode = determine_usb_phy(prop);
271
272 ret =
Kumar Gala01cced22006-04-11 10:07:16 -0500273 platform_device_add_data(usb_dev_mph, &usb_data,
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600274 sizeof(struct
275 fsl_usb2_platform_data));
276 if (ret)
Kumar Gala01cced22006-04-11 10:07:16 -0500277 goto unreg_mph;
Li Yang866b6dd2008-01-08 15:18:46 +0800278 i++;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600279 }
280
Li Yang866b6dd2008-01-08 15:18:46 +0800281 for_each_compatible_node(np, NULL, "fsl-usb2-dr") {
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600282 struct resource r[2];
283 struct fsl_usb2_platform_data usb_data;
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000284 const unsigned char *prop = NULL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600285
Anton Vorontsovc026c982009-02-19 19:02:23 +0300286 if (!of_device_is_available(np))
287 continue;
288
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600289 memset(&r, 0, sizeof(r));
290 memset(&usb_data, 0, sizeof(usb_data));
291
292 ret = of_address_to_resource(np, 0, &r[0]);
293 if (ret)
Kumar Gala01cced22006-04-11 10:07:16 -0500294 goto unreg_mph;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600295
Andy Fleminga9b14972006-10-19 19:52:26 -0500296 of_irq_to_resource(np, 0, &r[1]);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600297
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000298 prop = of_get_property(np, "dr_mode", NULL);
Li Yang97c5a202007-02-07 13:49:24 +0800299
300 if (!prop || !strcmp(prop, "host")) {
301 usb_data.operating_mode = FSL_USB2_DR_HOST;
302 usb_dev_dr_host = platform_device_register_simple(
303 "fsl-ehci", i, r, 2);
304 if (IS_ERR(usb_dev_dr_host)) {
305 ret = PTR_ERR(usb_dev_dr_host);
306 goto err;
307 }
308 } else if (prop && !strcmp(prop, "peripheral")) {
309 usb_data.operating_mode = FSL_USB2_DR_DEVICE;
310 usb_dev_dr_client = platform_device_register_simple(
311 "fsl-usb2-udc", i, r, 2);
312 if (IS_ERR(usb_dev_dr_client)) {
313 ret = PTR_ERR(usb_dev_dr_client);
314 goto err;
315 }
316 } else if (prop && !strcmp(prop, "otg")) {
317 usb_data.operating_mode = FSL_USB2_DR_OTG;
318 usb_dev_dr_host = platform_device_register_simple(
319 "fsl-ehci", i, r, 2);
320 if (IS_ERR(usb_dev_dr_host)) {
321 ret = PTR_ERR(usb_dev_dr_host);
322 goto err;
323 }
324 usb_dev_dr_client = platform_device_register_simple(
325 "fsl-usb2-udc", i, r, 2);
326 if (IS_ERR(usb_dev_dr_client)) {
327 ret = PTR_ERR(usb_dev_dr_client);
328 goto err;
329 }
330 } else {
331 ret = -EINVAL;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600332 goto err;
333 }
334
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000335 prop = of_get_property(np, "phy_type", NULL);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600336 usb_data.phy_mode = determine_usb_phy(prop);
337
Li Yang97c5a202007-02-07 13:49:24 +0800338 if (usb_dev_dr_host) {
339 usb_dev_dr_host->dev.coherent_dma_mask = 0xffffffffUL;
340 usb_dev_dr_host->dev.dma_mask = &usb_dev_dr_host->
341 dev.coherent_dma_mask;
342 if ((ret = platform_device_add_data(usb_dev_dr_host,
343 &usb_data, sizeof(struct
344 fsl_usb2_platform_data))))
345 goto unreg_dr;
346 }
347 if (usb_dev_dr_client) {
348 usb_dev_dr_client->dev.coherent_dma_mask = 0xffffffffUL;
349 usb_dev_dr_client->dev.dma_mask = &usb_dev_dr_client->
350 dev.coherent_dma_mask;
351 if ((ret = platform_device_add_data(usb_dev_dr_client,
352 &usb_data, sizeof(struct
353 fsl_usb2_platform_data))))
354 goto unreg_dr;
355 }
Li Yang866b6dd2008-01-08 15:18:46 +0800356 i++;
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600357 }
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600358 return 0;
359
Kumar Gala01cced22006-04-11 10:07:16 -0500360unreg_dr:
Li Yang97c5a202007-02-07 13:49:24 +0800361 if (usb_dev_dr_host)
362 platform_device_unregister(usb_dev_dr_host);
363 if (usb_dev_dr_client)
364 platform_device_unregister(usb_dev_dr_client);
Kumar Gala01cced22006-04-11 10:07:16 -0500365unreg_mph:
366 if (usb_dev_mph)
367 platform_device_unregister(usb_dev_mph);
Kumar Gala4b10cfd2006-02-02 12:31:00 -0600368err:
369 return ret;
370}
371
Kumar Gala01cced22006-04-11 10:07:16 -0500372arch_initcall(fsl_usb_of_init);
Vitaly Bordugfba43662006-09-21 17:26:34 +0400373
Kumar Galae1c15752007-10-04 01:04:57 -0500374#if defined(CONFIG_PPC_85xx) || defined(CONFIG_PPC_86xx)
375static __be32 __iomem *rstcr;
376
377static int __init setup_rstcr(void)
378{
379 struct device_node *np;
380 np = of_find_node_by_name(NULL, "global-utilities");
381 if ((np && of_get_property(np, "fsl,has-rstcr", NULL))) {
Kumar Gala81db7182009-04-22 13:18:02 -0500382 rstcr = of_iomap(np, 0) + 0xb0;
383 if (!rstcr)
384 printk (KERN_EMERG "Error: reset control register "
385 "not mapped!\n");
Kumar Galae1c15752007-10-04 01:04:57 -0500386 } else
387 printk (KERN_INFO "rstcr compatible register does not exist!\n");
388 if (np)
389 of_node_put(np);
390 return 0;
391}
392
393arch_initcall(setup_rstcr);
394
395void fsl_rstcr_restart(char *cmd)
396{
397 local_irq_disable();
398 if (rstcr)
399 /* set reset control register */
400 out_be32(rstcr, 0x2); /* HRESET_REQ */
401
402 while (1) ;
403}
404#endif
York Sun6f90a8bd2008-04-28 02:15:36 -0700405
406#if defined(CONFIG_FB_FSL_DIU) || defined(CONFIG_FB_FSL_DIU_MODULE)
Timur Tabi43c9f432008-09-23 09:47:01 -0500407struct platform_diu_data_ops diu_ops;
York Sun6f90a8bd2008-04-28 02:15:36 -0700408EXPORT_SYMBOL(diu_ops);
York Sun6f90a8bd2008-04-28 02:15:36 -0700409#endif