mach-cpuimx25.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * Copyright 2009 Sascha Hauer, <kernel@pengutronix.de>
  3. * Copyright 2010 Eric Bénard - Eukréa Electromatique, <eric@eukrea.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or (at your option) any later version.
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor,
  17. * Boston, MA 02110-1301, USA.
  18. */
  19. #include <linux/types.h>
  20. #include <linux/init.h>
  21. #include <linux/delay.h>
  22. #include <linux/clk.h>
  23. #include <linux/irq.h>
  24. #include <linux/gpio.h>
  25. #include <linux/fec.h>
  26. #include <linux/platform_device.h>
  27. #include <linux/usb/otg.h>
  28. #include <linux/usb/ulpi.h>
  29. #include <linux/fsl_devices.h>
  30. #include <mach/eukrea-baseboards.h>
  31. #include <mach/hardware.h>
  32. #include <asm/mach-types.h>
  33. #include <asm/mach/arch.h>
  34. #include <asm/mach/time.h>
  35. #include <asm/memory.h>
  36. #include <asm/mach/map.h>
  37. #include <mach/common.h>
  38. #include <mach/mx25.h>
  39. #include <mach/mxc_nand.h>
  40. #include <mach/imxfb.h>
  41. #include <mach/mxc_ehci.h>
  42. #include <mach/ulpi.h>
  43. #include <mach/iomux-mx25.h>
  44. #include "devices-imx25.h"
  45. #include "devices.h"
  46. static const struct imxuart_platform_data uart_pdata __initconst = {
  47. .flags = IMXUART_HAVE_RTSCTS,
  48. };
  49. static struct pad_desc eukrea_cpuimx25_pads[] = {
  50. /* FEC - RMII */
  51. MX25_PAD_FEC_MDC__FEC_MDC,
  52. MX25_PAD_FEC_MDIO__FEC_MDIO,
  53. MX25_PAD_FEC_TDATA0__FEC_TDATA0,
  54. MX25_PAD_FEC_TDATA1__FEC_TDATA1,
  55. MX25_PAD_FEC_TX_EN__FEC_TX_EN,
  56. MX25_PAD_FEC_RDATA0__FEC_RDATA0,
  57. MX25_PAD_FEC_RDATA1__FEC_RDATA1,
  58. MX25_PAD_FEC_RX_DV__FEC_RX_DV,
  59. MX25_PAD_FEC_TX_CLK__FEC_TX_CLK,
  60. /* I2C1 */
  61. MX25_PAD_I2C1_CLK__I2C1_CLK,
  62. MX25_PAD_I2C1_DAT__I2C1_DAT,
  63. };
  64. static struct fec_platform_data mx25_fec_pdata = {
  65. .phy = PHY_INTERFACE_MODE_RMII,
  66. };
  67. static const struct mxc_nand_platform_data
  68. eukrea_cpuimx25_nand_board_info __initconst = {
  69. .width = 1,
  70. .hw_ecc = 1,
  71. .flash_bbt = 1,
  72. };
  73. static const struct imxi2c_platform_data
  74. eukrea_cpuimx25_i2c0_data __initconst = {
  75. .bitrate = 100000,
  76. };
  77. static struct i2c_board_info eukrea_cpuimx25_i2c_devices[] = {
  78. {
  79. I2C_BOARD_INFO("pcf8563", 0x51),
  80. },
  81. };
  82. static struct mxc_usbh_platform_data otg_pdata = {
  83. .portsc = MXC_EHCI_MODE_UTMI,
  84. .flags = MXC_EHCI_INTERFACE_DIFF_UNI,
  85. };
  86. static struct mxc_usbh_platform_data usbh2_pdata = {
  87. .portsc = MXC_EHCI_MODE_SERIAL,
  88. .flags = MXC_EHCI_INTERFACE_SINGLE_UNI | MXC_EHCI_INTERNAL_PHY |
  89. MXC_EHCI_IPPUE_DOWN,
  90. };
  91. static struct fsl_usb2_platform_data otg_device_pdata = {
  92. .operating_mode = FSL_USB2_DR_DEVICE,
  93. .phy_mode = FSL_USB2_PHY_UTMI,
  94. };
  95. static int otg_mode_host;
  96. static int __init eukrea_cpuimx25_otg_mode(char *options)
  97. {
  98. if (!strcmp(options, "host"))
  99. otg_mode_host = 1;
  100. else if (!strcmp(options, "device"))
  101. otg_mode_host = 0;
  102. else
  103. pr_info("otg_mode neither \"host\" nor \"device\". "
  104. "Defaulting to device\n");
  105. return 0;
  106. }
  107. __setup("otg_mode=", eukrea_cpuimx25_otg_mode);
  108. static void __init eukrea_cpuimx25_init(void)
  109. {
  110. if (mxc_iomux_v3_setup_multiple_pads(eukrea_cpuimx25_pads,
  111. ARRAY_SIZE(eukrea_cpuimx25_pads)))
  112. printk(KERN_ERR "error setting cpuimx25 pads !\n");
  113. imx25_add_imx_uart0(&uart_pdata);
  114. imx25_add_mxc_nand(&eukrea_cpuimx25_nand_board_info);
  115. mxc_register_device(&mx25_rtc_device, NULL);
  116. mxc_register_device(&mx25_fec_device, &mx25_fec_pdata);
  117. i2c_register_board_info(0, eukrea_cpuimx25_i2c_devices,
  118. ARRAY_SIZE(eukrea_cpuimx25_i2c_devices));
  119. imx25_add_imx_i2c0(&eukrea_cpuimx25_i2c0_data);
  120. #if defined(CONFIG_USB_ULPI)
  121. if (otg_mode_host) {
  122. otg_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops,
  123. ULPI_OTG_DRVVBUS | ULPI_OTG_DRVVBUS_EXT);
  124. mxc_register_device(&mxc_otg, &otg_pdata);
  125. }
  126. mxc_register_device(&mxc_usbh2, &usbh2_pdata);
  127. #endif
  128. if (!otg_mode_host)
  129. mxc_register_device(&otg_udc_device, &otg_device_pdata);
  130. #ifdef CONFIG_MACH_EUKREA_MBIMXSD25_BASEBOARD
  131. eukrea_mbimxsd25_baseboard_init();
  132. #endif
  133. }
  134. static void __init eukrea_cpuimx25_timer_init(void)
  135. {
  136. mx25_clocks_init();
  137. }
  138. static struct sys_timer eukrea_cpuimx25_timer = {
  139. .init = eukrea_cpuimx25_timer_init,
  140. };
  141. MACHINE_START(EUKREA_CPUIMX25, "Eukrea CPUIMX25")
  142. /* Maintainer: Eukrea Electromatique */
  143. .phys_io = MX25_AIPS1_BASE_ADDR,
  144. .io_pg_offst = ((MX25_AIPS1_BASE_ADDR_VIRT) >> 18) & 0xfffc,
  145. .boot_params = MX25_PHYS_OFFSET + 0x100,
  146. .map_io = mx25_map_io,
  147. .init_irq = mx25_init_irq,
  148. .init_machine = eukrea_cpuimx25_init,
  149. .timer = &eukrea_cpuimx25_timer,
  150. MACHINE_END