4 * Maintained by Kumar Gala (see MAINTAINERS for contact information)
6 * 2006 (c) MontaVista Software, Inc.
7 * Vitaly Bordug <vbordug@ru.mvista.com>
9 * 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.
15 #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>
25 #include <linux/of_platform.h>
26 #include <linux/phy.h>
27 #include <linux/phy_fixed.h>
28 #include <linux/spi/spi.h>
29 #include <linux/fsl_devices.h>
30 #include <linux/fs_enet_pd.h>
31 #include <linux/fs_uart_pd.h>
33 #include <asm/system.h>
34 #include <asm/atomic.h>
39 #include <sysdev/fsl_soc.h>
40 #include <mm/mmu_decl.h>
43 extern void init_fcc_ioports(struct fs_platform_info*);
44 extern void init_fec_ioports(struct fs_platform_info*);
45 extern void init_smc_ioports(struct fs_uart_platform_info*);
46 static phys_addr_t immrbase = -1;
48 phys_addr_t get_immrbase(void)
50 struct device_node *soc;
55 soc = of_find_node_by_type(NULL, "soc");
59 const u32 *prop = of_get_property(soc, "#address-cells", &size);
61 if (prop && size == 4)
66 prop = of_get_property(soc, "ranges", &size);
68 immrbase = of_translate_address(soc, prop + naddr);
76 EXPORT_SYMBOL(get_immrbase);
78 static u32 sysfreq = -1;
80 u32 fsl_get_sys_freq(void)
82 struct device_node *soc;
89 soc = of_find_node_by_type(NULL, "soc");
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);
97 if (prop && size == sizeof(*prop))
103 EXPORT_SYMBOL(fsl_get_sys_freq);
105 #if defined(CONFIG_CPM2) || defined(CONFIG_QUICC_ENGINE) || defined(CONFIG_8xx)
107 static u32 brgfreq = -1;
109 u32 get_brgfreq(void)
111 struct device_node *node;
112 const unsigned int *prop;
118 node = of_find_compatible_node(NULL, NULL, "fsl,cpm-brg");
120 prop = of_get_property(node, "clock-frequency", &size);
121 if (prop && size == 4)
128 /* Legacy device binding -- will go away when no users are left. */
129 node = of_find_node_by_type(NULL, "cpm");
131 node = of_find_compatible_node(NULL, NULL, "fsl,qe");
133 node = of_find_node_by_type(NULL, "qe");
136 prop = of_get_property(node, "brg-frequency", &size);
137 if (prop && size == 4)
140 if (brgfreq == -1 || brgfreq == 0) {
141 prop = of_get_property(node, "bus-frequency", &size);
142 if (prop && size == 4)
151 EXPORT_SYMBOL(get_brgfreq);
153 static u32 fs_baudrate = -1;
155 u32 get_baudrate(void)
157 struct device_node *node;
159 if (fs_baudrate != -1)
162 node = of_find_node_by_type(NULL, "serial");
165 const unsigned int *prop = of_get_property(node,
166 "current-speed", &size);
176 EXPORT_SYMBOL(get_baudrate);
177 #endif /* CONFIG_CPM2 */
179 #ifdef CONFIG_FIXED_PHY
180 static int __init of_add_fixed_phys(void)
183 struct device_node *np;
185 struct fixed_phy_status status = {};
187 for_each_node_by_name(np, "ethernet") {
188 fixed_link = (u32 *)of_get_property(np, "fixed-link", NULL);
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];
198 ret = fixed_phy_add(PHY_POLL, fixed_link[0], &status);
207 arch_initcall(of_add_fixed_phys);
208 #endif /* CONFIG_FIXED_PHY */
210 static int __init gfar_mdio_of_init(void)
212 struct device_node *np = NULL;
213 struct platform_device *mdio_dev;
217 np = of_find_compatible_node(np, NULL, "fsl,gianfar-mdio");
219 /* try the deprecated version */
221 np = of_find_compatible_node(np, "mdio", "gianfar");
225 struct device_node *child = NULL;
226 struct gianfar_mdio_data mdio_data;
228 memset(&res, 0, sizeof(res));
229 memset(&mdio_data, 0, sizeof(mdio_data));
231 ret = of_address_to_resource(np, 0, &res);
236 platform_device_register_simple("fsl-gianfar_mdio",
238 if (IS_ERR(mdio_dev)) {
239 ret = PTR_ERR(mdio_dev);
243 for (k = 0; k < 32; k++)
244 mdio_data.irq[k] = PHY_POLL;
246 while ((child = of_get_next_child(np, child)) != NULL) {
247 int irq = irq_of_parse_and_map(child, 0);
249 const u32 *id = of_get_property(child,
251 mdio_data.irq[*id] = irq;
256 platform_device_add_data(mdio_dev, &mdio_data,
257 sizeof(struct gianfar_mdio_data));
266 platform_device_unregister(mdio_dev);
272 arch_initcall(gfar_mdio_of_init);
274 static const char *gfar_tx_intr = "tx";
275 static const char *gfar_rx_intr = "rx";
276 static const char *gfar_err_intr = "error";
278 static int __init gfar_of_init(void)
280 struct device_node *np;
282 struct platform_device *gfar_dev;
286 for (np = NULL, i = 0;
287 (np = of_find_compatible_node(np, "network", "gianfar")) != NULL;
289 struct resource r[4];
290 struct device_node *phy, *mdio;
291 struct gianfar_platform_data gfar_data;
292 const unsigned int *id;
295 const void *mac_addr;
299 memset(r, 0, sizeof(r));
300 memset(&gfar_data, 0, sizeof(gfar_data));
302 ret = of_address_to_resource(np, 0, &r[0]);
306 of_irq_to_resource(np, 0, &r[1]);
308 model = of_get_property(np, "model", NULL);
310 /* If we aren't the FEC we have multiple interrupts */
311 if (model && strcasecmp(model, "FEC")) {
312 r[1].name = gfar_tx_intr;
314 r[2].name = gfar_rx_intr;
315 of_irq_to_resource(np, 1, &r[2]);
317 r[3].name = gfar_err_intr;
318 of_irq_to_resource(np, 2, &r[3]);
324 platform_device_register_simple("fsl-gianfar", i, &r[0],
327 if (IS_ERR(gfar_dev)) {
328 ret = PTR_ERR(gfar_dev);
332 mac_addr = of_get_mac_address(np);
334 memcpy(gfar_data.mac_addr, mac_addr, 6);
336 if (model && !strcasecmp(model, "TSEC"))
337 gfar_data.device_flags =
338 FSL_GIANFAR_DEV_HAS_GIGABIT |
339 FSL_GIANFAR_DEV_HAS_COALESCE |
340 FSL_GIANFAR_DEV_HAS_RMON |
341 FSL_GIANFAR_DEV_HAS_MULTI_INTR;
342 if (model && !strcasecmp(model, "eTSEC"))
343 gfar_data.device_flags =
344 FSL_GIANFAR_DEV_HAS_GIGABIT |
345 FSL_GIANFAR_DEV_HAS_COALESCE |
346 FSL_GIANFAR_DEV_HAS_RMON |
347 FSL_GIANFAR_DEV_HAS_MULTI_INTR |
348 FSL_GIANFAR_DEV_HAS_CSUM |
349 FSL_GIANFAR_DEV_HAS_VLAN |
350 FSL_GIANFAR_DEV_HAS_EXTENDED_HASH;
352 ctype = of_get_property(np, "phy-connection-type", NULL);
354 /* We only care about rgmii-id. The rest are autodetected */
355 if (ctype && !strcmp(ctype, "rgmii-id"))
356 gfar_data.interface = PHY_INTERFACE_MODE_RGMII_ID;
358 gfar_data.interface = PHY_INTERFACE_MODE_MII;
360 ph = of_get_property(np, "phy-handle", NULL);
364 fixed_link = (u32 *)of_get_property(np, "fixed-link",
371 snprintf(gfar_data.bus_id, MII_BUS_ID_SIZE, "0");
372 gfar_data.phy_id = fixed_link[0];
374 phy = of_find_node_by_phandle(*ph);
381 mdio = of_get_parent(phy);
383 id = of_get_property(phy, "reg", NULL);
384 ret = of_address_to_resource(mdio, 0, &res);
391 gfar_data.phy_id = *id;
392 snprintf(gfar_data.bus_id, MII_BUS_ID_SIZE, "%x",
400 platform_device_add_data(gfar_dev, &gfar_data,
402 gianfar_platform_data));
410 platform_device_unregister(gfar_dev);
415 arch_initcall(gfar_of_init);
417 #ifdef CONFIG_I2C_BOARDINFO
418 #include <linux/i2c.h>
419 struct i2c_driver_device {
425 static struct i2c_driver_device i2c_devices[] __initdata = {
426 {"ricoh,rs5c372a", "rtc-rs5c372", "rs5c372a",},
427 {"ricoh,rs5c372b", "rtc-rs5c372", "rs5c372b",},
428 {"ricoh,rv5c386", "rtc-rs5c372", "rv5c386",},
429 {"ricoh,rv5c387a", "rtc-rs5c372", "rv5c387a",},
430 {"dallas,ds1307", "rtc-ds1307", "ds1307",},
431 {"dallas,ds1337", "rtc-ds1307", "ds1337",},
432 {"dallas,ds1338", "rtc-ds1307", "ds1338",},
433 {"dallas,ds1339", "rtc-ds1307", "ds1339",},
434 {"dallas,ds1340", "rtc-ds1307", "ds1340",},
435 {"stm,m41t00", "rtc-ds1307", "m41t00"},
436 {"dallas,ds1374", "rtc-ds1374", "rtc-ds1374",},
439 static int __init of_find_i2c_driver(struct device_node *node,
440 struct i2c_board_info *info)
444 for (i = 0; i < ARRAY_SIZE(i2c_devices); i++) {
445 if (!of_device_is_compatible(node, i2c_devices[i].of_device))
447 if (strlcpy(info->driver_name, i2c_devices[i].i2c_driver,
448 KOBJ_NAME_LEN) >= KOBJ_NAME_LEN ||
449 strlcpy(info->type, i2c_devices[i].i2c_type,
450 I2C_NAME_SIZE) >= I2C_NAME_SIZE)
457 static void __init of_register_i2c_devices(struct device_node *adap_node,
460 struct device_node *node = NULL;
462 while ((node = of_get_next_child(adap_node, node))) {
463 struct i2c_board_info info = {};
467 addr = of_get_property(node, "reg", &len);
468 if (!addr || len < sizeof(int) || *addr > (1 << 10) - 1) {
469 printk(KERN_WARNING "fsl_soc.c: invalid i2c device entry\n");
473 info.irq = irq_of_parse_and_map(node, 0);
474 if (info.irq == NO_IRQ)
477 if (of_find_i2c_driver(node, &info) < 0)
482 i2c_register_board_info(bus_num, &info, 1);
486 static int __init fsl_i2c_of_init(void)
488 struct device_node *np;
490 struct platform_device *i2c_dev;
493 for_each_compatible_node(np, NULL, "fsl-i2c") {
494 struct resource r[2];
495 struct fsl_i2c_platform_data i2c_data;
496 const unsigned char *flags = NULL;
498 memset(&r, 0, sizeof(r));
499 memset(&i2c_data, 0, sizeof(i2c_data));
501 ret = of_address_to_resource(np, 0, &r[0]);
505 of_irq_to_resource(np, 0, &r[1]);
507 i2c_dev = platform_device_register_simple("fsl-i2c", i, r, 2);
508 if (IS_ERR(i2c_dev)) {
509 ret = PTR_ERR(i2c_dev);
513 i2c_data.device_flags = 0;
514 flags = of_get_property(np, "dfsrr", NULL);
516 i2c_data.device_flags |= FSL_I2C_DEV_SEPARATE_DFSRR;
518 flags = of_get_property(np, "fsl5200-clocking", NULL);
520 i2c_data.device_flags |= FSL_I2C_DEV_CLOCK_5200;
523 platform_device_add_data(i2c_dev, &i2c_data,
525 fsl_i2c_platform_data));
529 of_register_i2c_devices(np, i++);
535 platform_device_unregister(i2c_dev);
540 arch_initcall(fsl_i2c_of_init);
543 #ifdef CONFIG_PPC_83xx
544 static int __init mpc83xx_wdt_init(void)
547 struct device_node *np;
548 struct platform_device *dev;
549 u32 freq = fsl_get_sys_freq();
552 np = of_find_compatible_node(NULL, "watchdog", "mpc83xx_wdt");
559 memset(&r, 0, sizeof(r));
561 ret = of_address_to_resource(np, 0, &r);
565 dev = platform_device_register_simple("mpc83xx_wdt", 0, &r, 1);
571 ret = platform_device_add_data(dev, &freq, sizeof(freq));
579 platform_device_unregister(dev);
586 arch_initcall(mpc83xx_wdt_init);
589 static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type)
592 return FSL_USB2_PHY_NONE;
593 if (!strcasecmp(phy_type, "ulpi"))
594 return FSL_USB2_PHY_ULPI;
595 if (!strcasecmp(phy_type, "utmi"))
596 return FSL_USB2_PHY_UTMI;
597 if (!strcasecmp(phy_type, "utmi_wide"))
598 return FSL_USB2_PHY_UTMI_WIDE;
599 if (!strcasecmp(phy_type, "serial"))
600 return FSL_USB2_PHY_SERIAL;
602 return FSL_USB2_PHY_NONE;
605 static int __init fsl_usb_of_init(void)
607 struct device_node *np;
609 struct platform_device *usb_dev_mph = NULL, *usb_dev_dr_host = NULL,
610 *usb_dev_dr_client = NULL;
613 for_each_compatible_node(np, NULL, "fsl-usb2-mph") {
614 struct resource r[2];
615 struct fsl_usb2_platform_data usb_data;
616 const unsigned char *prop = NULL;
618 memset(&r, 0, sizeof(r));
619 memset(&usb_data, 0, sizeof(usb_data));
621 ret = of_address_to_resource(np, 0, &r[0]);
625 of_irq_to_resource(np, 0, &r[1]);
628 platform_device_register_simple("fsl-ehci", i, r, 2);
629 if (IS_ERR(usb_dev_mph)) {
630 ret = PTR_ERR(usb_dev_mph);
634 usb_dev_mph->dev.coherent_dma_mask = 0xffffffffUL;
635 usb_dev_mph->dev.dma_mask = &usb_dev_mph->dev.coherent_dma_mask;
637 usb_data.operating_mode = FSL_USB2_MPH_HOST;
639 prop = of_get_property(np, "port0", NULL);
641 usb_data.port_enables |= FSL_USB2_PORT0_ENABLED;
643 prop = of_get_property(np, "port1", NULL);
645 usb_data.port_enables |= FSL_USB2_PORT1_ENABLED;
647 prop = of_get_property(np, "phy_type", NULL);
648 usb_data.phy_mode = determine_usb_phy(prop);
651 platform_device_add_data(usb_dev_mph, &usb_data,
653 fsl_usb2_platform_data));
659 for_each_compatible_node(np, NULL, "fsl-usb2-dr") {
660 struct resource r[2];
661 struct fsl_usb2_platform_data usb_data;
662 const unsigned char *prop = NULL;
664 memset(&r, 0, sizeof(r));
665 memset(&usb_data, 0, sizeof(usb_data));
667 ret = of_address_to_resource(np, 0, &r[0]);
671 of_irq_to_resource(np, 0, &r[1]);
673 prop = of_get_property(np, "dr_mode", NULL);
675 if (!prop || !strcmp(prop, "host")) {
676 usb_data.operating_mode = FSL_USB2_DR_HOST;
677 usb_dev_dr_host = platform_device_register_simple(
678 "fsl-ehci", i, r, 2);
679 if (IS_ERR(usb_dev_dr_host)) {
680 ret = PTR_ERR(usb_dev_dr_host);
683 } else if (prop && !strcmp(prop, "peripheral")) {
684 usb_data.operating_mode = FSL_USB2_DR_DEVICE;
685 usb_dev_dr_client = platform_device_register_simple(
686 "fsl-usb2-udc", i, r, 2);
687 if (IS_ERR(usb_dev_dr_client)) {
688 ret = PTR_ERR(usb_dev_dr_client);
691 } else if (prop && !strcmp(prop, "otg")) {
692 usb_data.operating_mode = FSL_USB2_DR_OTG;
693 usb_dev_dr_host = platform_device_register_simple(
694 "fsl-ehci", i, r, 2);
695 if (IS_ERR(usb_dev_dr_host)) {
696 ret = PTR_ERR(usb_dev_dr_host);
699 usb_dev_dr_client = platform_device_register_simple(
700 "fsl-usb2-udc", i, r, 2);
701 if (IS_ERR(usb_dev_dr_client)) {
702 ret = PTR_ERR(usb_dev_dr_client);
710 prop = of_get_property(np, "phy_type", NULL);
711 usb_data.phy_mode = determine_usb_phy(prop);
713 if (usb_dev_dr_host) {
714 usb_dev_dr_host->dev.coherent_dma_mask = 0xffffffffUL;
715 usb_dev_dr_host->dev.dma_mask = &usb_dev_dr_host->
716 dev.coherent_dma_mask;
717 if ((ret = platform_device_add_data(usb_dev_dr_host,
718 &usb_data, sizeof(struct
719 fsl_usb2_platform_data))))
722 if (usb_dev_dr_client) {
723 usb_dev_dr_client->dev.coherent_dma_mask = 0xffffffffUL;
724 usb_dev_dr_client->dev.dma_mask = &usb_dev_dr_client->
725 dev.coherent_dma_mask;
726 if ((ret = platform_device_add_data(usb_dev_dr_client,
727 &usb_data, sizeof(struct
728 fsl_usb2_platform_data))))
737 platform_device_unregister(usb_dev_dr_host);
738 if (usb_dev_dr_client)
739 platform_device_unregister(usb_dev_dr_client);
742 platform_device_unregister(usb_dev_mph);
747 arch_initcall(fsl_usb_of_init);
749 static int __init of_fsl_spi_probe(char *type, char *compatible, u32 sysclk,
750 struct spi_board_info *board_infos,
751 unsigned int num_board_infos,
752 void (*activate_cs)(u8 cs, u8 polarity),
753 void (*deactivate_cs)(u8 cs, u8 polarity))
755 struct device_node *np;
758 for_each_compatible_node(np, type, compatible) {
762 struct resource res[2];
763 struct platform_device *pdev;
764 struct fsl_spi_platform_data pdata = {
765 .activate_cs = activate_cs,
766 .deactivate_cs = deactivate_cs,
769 memset(res, 0, sizeof(res));
771 pdata.sysclk = sysclk;
773 prop = of_get_property(np, "reg", NULL);
776 pdata.bus_num = *(u32 *)prop;
778 prop = of_get_property(np, "cell-index", NULL);
782 prop = of_get_property(np, "mode", NULL);
783 if (prop && !strcmp(prop, "cpu-qe"))
786 for (j = 0; j < num_board_infos; j++) {
787 if (board_infos[j].bus_num == pdata.bus_num)
788 pdata.max_chipselect++;
791 if (!pdata.max_chipselect)
794 ret = of_address_to_resource(np, 0, &res[0]);
798 ret = of_irq_to_resource(np, 0, &res[1]);
802 pdev = platform_device_alloc("mpc83xx_spi", i);
806 ret = platform_device_add_data(pdev, &pdata, sizeof(pdata));
810 ret = platform_device_add_resources(pdev, res,
815 ret = platform_device_add(pdev);
821 platform_device_del(pdev);
823 pr_err("%s: registration failed\n", np->full_name);
831 int __init fsl_spi_init(struct spi_board_info *board_infos,
832 unsigned int num_board_infos,
833 void (*activate_cs)(u8 cs, u8 polarity),
834 void (*deactivate_cs)(u8 cs, u8 polarity))
839 #ifdef CONFIG_QUICC_ENGINE
840 /* SPI controller is either clocked from QE or SoC clock */
841 sysclk = get_brgfreq();
844 sysclk = fsl_get_sys_freq();
849 ret = of_fsl_spi_probe(NULL, "fsl,spi", sysclk, board_infos,
850 num_board_infos, activate_cs, deactivate_cs);
852 of_fsl_spi_probe("spi", "fsl_spi", sysclk, board_infos,
853 num_board_infos, activate_cs, deactivate_cs);
855 return spi_register_board_info(board_infos, num_board_infos);
858 #if defined(CONFIG_PPC_85xx) || defined(CONFIG_PPC_86xx)
859 static __be32 __iomem *rstcr;
861 static int __init setup_rstcr(void)
863 struct device_node *np;
864 np = of_find_node_by_name(NULL, "global-utilities");
865 if ((np && of_get_property(np, "fsl,has-rstcr", NULL))) {
866 const u32 *prop = of_get_property(np, "reg", NULL);
868 /* map reset control register
869 * 0xE00B0 is offset of reset control register
871 rstcr = ioremap(get_immrbase() + *prop + 0xB0, 0xff);
873 printk (KERN_EMERG "Error: reset control "
874 "register not mapped!\n");
877 printk (KERN_INFO "rstcr compatible register does not exist!\n");
883 arch_initcall(setup_rstcr);
885 void fsl_rstcr_restart(char *cmd)
889 /* set reset control register */
890 out_be32(rstcr, 0x2); /* HRESET_REQ */