mach-mx35_3ds.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. /*
  2. * Copyright 2009 Freescale Semiconductor, Inc. All Rights Reserved.
  3. * Copyright (C) 2009 Marc Kleine-Budde, Pengutronix
  4. *
  5. * Author: Fabio Estevam <fabio.estevam@freescale.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. */
  17. /*
  18. * This machine is known as:
  19. * - i.MX35 3-Stack Development System
  20. * - i.MX35 Platform Development Kit (i.MX35 PDK)
  21. */
  22. #include <linux/types.h>
  23. #include <linux/init.h>
  24. #include <linux/platform_device.h>
  25. #include <linux/memory.h>
  26. #include <linux/gpio.h>
  27. #include <linux/usb/otg.h>
  28. #include <linux/mtd/physmap.h>
  29. #include <asm/mach-types.h>
  30. #include <asm/mach/arch.h>
  31. #include <asm/mach/time.h>
  32. #include <asm/mach/map.h>
  33. #include <mach/hardware.h>
  34. #include <mach/common.h>
  35. #include <mach/iomux-mx35.h>
  36. #include <mach/irqs.h>
  37. #include <mach/3ds_debugboard.h>
  38. #include "devices-imx35.h"
  39. #define EXPIO_PARENT_INT gpio_to_irq(IMX_GPIO_NR(1, 1))
  40. static const struct imxuart_platform_data uart_pdata __initconst = {
  41. .flags = IMXUART_HAVE_RTSCTS,
  42. };
  43. static struct physmap_flash_data mx35pdk_flash_data = {
  44. .width = 2,
  45. };
  46. static struct resource mx35pdk_flash_resource = {
  47. .start = MX35_CS0_BASE_ADDR,
  48. .end = MX35_CS0_BASE_ADDR + SZ_64M - 1,
  49. .flags = IORESOURCE_MEM,
  50. };
  51. static struct platform_device mx35pdk_flash = {
  52. .name = "physmap-flash",
  53. .id = 0,
  54. .dev = {
  55. .platform_data = &mx35pdk_flash_data,
  56. },
  57. .resource = &mx35pdk_flash_resource,
  58. .num_resources = 1,
  59. };
  60. static const struct mxc_nand_platform_data mx35pdk_nand_board_info __initconst = {
  61. .width = 1,
  62. .hw_ecc = 1,
  63. .flash_bbt = 1,
  64. };
  65. static struct platform_device *devices[] __initdata = {
  66. &mx35pdk_flash,
  67. };
  68. static iomux_v3_cfg_t mx35pdk_pads[] = {
  69. /* UART1 */
  70. MX35_PAD_CTS1__UART1_CTS,
  71. MX35_PAD_RTS1__UART1_RTS,
  72. MX35_PAD_TXD1__UART1_TXD_MUX,
  73. MX35_PAD_RXD1__UART1_RXD_MUX,
  74. /* FEC */
  75. MX35_PAD_FEC_TX_CLK__FEC_TX_CLK,
  76. MX35_PAD_FEC_RX_CLK__FEC_RX_CLK,
  77. MX35_PAD_FEC_RX_DV__FEC_RX_DV,
  78. MX35_PAD_FEC_COL__FEC_COL,
  79. MX35_PAD_FEC_RDATA0__FEC_RDATA_0,
  80. MX35_PAD_FEC_TDATA0__FEC_TDATA_0,
  81. MX35_PAD_FEC_TX_EN__FEC_TX_EN,
  82. MX35_PAD_FEC_MDC__FEC_MDC,
  83. MX35_PAD_FEC_MDIO__FEC_MDIO,
  84. MX35_PAD_FEC_TX_ERR__FEC_TX_ERR,
  85. MX35_PAD_FEC_RX_ERR__FEC_RX_ERR,
  86. MX35_PAD_FEC_CRS__FEC_CRS,
  87. MX35_PAD_FEC_RDATA1__FEC_RDATA_1,
  88. MX35_PAD_FEC_TDATA1__FEC_TDATA_1,
  89. MX35_PAD_FEC_RDATA2__FEC_RDATA_2,
  90. MX35_PAD_FEC_TDATA2__FEC_TDATA_2,
  91. MX35_PAD_FEC_RDATA3__FEC_RDATA_3,
  92. MX35_PAD_FEC_TDATA3__FEC_TDATA_3,
  93. /* USBOTG */
  94. MX35_PAD_USBOTG_PWR__USB_TOP_USBOTG_PWR,
  95. MX35_PAD_USBOTG_OC__USB_TOP_USBOTG_OC,
  96. /* USBH1 */
  97. MX35_PAD_I2C2_CLK__USB_TOP_USBH2_PWR,
  98. MX35_PAD_I2C2_DAT__USB_TOP_USBH2_OC,
  99. /* SDCARD */
  100. MX35_PAD_SD1_CMD__ESDHC1_CMD,
  101. MX35_PAD_SD1_CLK__ESDHC1_CLK,
  102. MX35_PAD_SD1_DATA0__ESDHC1_DAT0,
  103. MX35_PAD_SD1_DATA1__ESDHC1_DAT1,
  104. MX35_PAD_SD1_DATA2__ESDHC1_DAT2,
  105. MX35_PAD_SD1_DATA3__ESDHC1_DAT3,
  106. /* I2C1 */
  107. MX35_PAD_I2C1_CLK__I2C1_SCL,
  108. MX35_PAD_I2C1_DAT__I2C1_SDA,
  109. };
  110. static int mx35_3ds_otg_init(struct platform_device *pdev)
  111. {
  112. return mx35_initialize_usb_hw(pdev->id, MXC_EHCI_INTERNAL_PHY);
  113. }
  114. /* OTG config */
  115. static const struct fsl_usb2_platform_data usb_otg_pdata __initconst = {
  116. .operating_mode = FSL_USB2_DR_DEVICE,
  117. .phy_mode = FSL_USB2_PHY_UTMI_WIDE,
  118. .workaround = FLS_USB2_WORKAROUND_ENGCM09152,
  119. /*
  120. * ENGCM09152 also requires a hardware change.
  121. * Please check the MX35 Chip Errata document for details.
  122. */
  123. };
  124. static struct mxc_usbh_platform_data otg_pdata __initdata = {
  125. .init = mx35_3ds_otg_init,
  126. .portsc = MXC_EHCI_MODE_UTMI,
  127. };
  128. static int mx35_3ds_usbh_init(struct platform_device *pdev)
  129. {
  130. return mx35_initialize_usb_hw(pdev->id, MXC_EHCI_INTERFACE_SINGLE_UNI |
  131. MXC_EHCI_INTERNAL_PHY);
  132. }
  133. /* USB HOST config */
  134. static const struct mxc_usbh_platform_data usb_host_pdata __initconst = {
  135. .init = mx35_3ds_usbh_init,
  136. .portsc = MXC_EHCI_MODE_SERIAL,
  137. };
  138. static int otg_mode_host;
  139. static int __init mx35_3ds_otg_mode(char *options)
  140. {
  141. if (!strcmp(options, "host"))
  142. otg_mode_host = 1;
  143. else if (!strcmp(options, "device"))
  144. otg_mode_host = 0;
  145. else
  146. pr_info("otg_mode neither \"host\" nor \"device\". "
  147. "Defaulting to device\n");
  148. return 0;
  149. }
  150. __setup("otg_mode=", mx35_3ds_otg_mode);
  151. static const struct imxi2c_platform_data mx35_3ds_i2c0_data __initconst = {
  152. .bitrate = 100000,
  153. };
  154. /*
  155. * Board specific initialization.
  156. */
  157. static void __init mx35_3ds_init(void)
  158. {
  159. imx35_soc_init();
  160. mxc_iomux_v3_setup_multiple_pads(mx35pdk_pads, ARRAY_SIZE(mx35pdk_pads));
  161. imx35_add_fec(NULL);
  162. imx35_add_imx2_wdt(NULL);
  163. platform_add_devices(devices, ARRAY_SIZE(devices));
  164. imx35_add_imx_uart0(&uart_pdata);
  165. if (otg_mode_host)
  166. imx35_add_mxc_ehci_otg(&otg_pdata);
  167. imx35_add_mxc_ehci_hs(&usb_host_pdata);
  168. if (!otg_mode_host)
  169. imx35_add_fsl_usb2_udc(&usb_otg_pdata);
  170. imx35_add_mxc_nand(&mx35pdk_nand_board_info);
  171. imx35_add_sdhci_esdhc_imx(0, NULL);
  172. if (mxc_expio_init(MX35_CS5_BASE_ADDR, EXPIO_PARENT_INT))
  173. pr_warn("Init of the debugboard failed, all "
  174. "devices on the debugboard are unusable.\n");
  175. imx35_add_imx_i2c0(&mx35_3ds_i2c0_data);
  176. }
  177. static void __init mx35pdk_timer_init(void)
  178. {
  179. mx35_clocks_init();
  180. }
  181. struct sys_timer mx35pdk_timer = {
  182. .init = mx35pdk_timer_init,
  183. };
  184. MACHINE_START(MX35_3DS, "Freescale MX35PDK")
  185. /* Maintainer: Freescale Semiconductor, Inc */
  186. .boot_params = MX3x_PHYS_OFFSET + 0x100,
  187. .map_io = mx35_map_io,
  188. .init_early = imx35_init_early,
  189. .init_irq = mx35_init_irq,
  190. .timer = &mx35pdk_timer,
  191. .init_machine = mx35_3ds_init,
  192. MACHINE_END