mx31moboard.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. /*
  2. * Copyright (C) 2008 Valentin Longchamp, EPFL Mobots group
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. */
  18. #include <linux/delay.h>
  19. #include <linux/fsl_devices.h>
  20. #include <linux/gpio.h>
  21. #include <linux/init.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/memory.h>
  24. #include <linux/mtd/physmap.h>
  25. #include <linux/mtd/partitions.h>
  26. #include <linux/platform_device.h>
  27. #include <linux/types.h>
  28. #include <asm/mach-types.h>
  29. #include <asm/mach/arch.h>
  30. #include <asm/mach/time.h>
  31. #include <asm/mach/map.h>
  32. #include <mach/board-mx31moboard.h>
  33. #include <mach/common.h>
  34. #include <mach/hardware.h>
  35. #include <mach/imx-uart.h>
  36. #include <mach/iomux-mx3.h>
  37. #include <mach/i2c.h>
  38. #include <mach/mmc.h>
  39. #include <mach/mx31.h>
  40. #include "devices.h"
  41. static unsigned int moboard_pins[] = {
  42. /* UART0 */
  43. MX31_PIN_CTS1__CTS1, MX31_PIN_RTS1__RTS1,
  44. MX31_PIN_TXD1__TXD1, MX31_PIN_RXD1__RXD1,
  45. /* UART4 */
  46. MX31_PIN_PC_RST__CTS5, MX31_PIN_PC_VS2__RTS5,
  47. MX31_PIN_PC_BVD2__TXD5, MX31_PIN_PC_BVD1__RXD5,
  48. /* I2C0 */
  49. MX31_PIN_I2C_DAT__I2C1_SDA, MX31_PIN_I2C_CLK__I2C1_SCL,
  50. /* I2C1 */
  51. MX31_PIN_DCD_DTE1__I2C2_SDA, MX31_PIN_RI_DTE1__I2C2_SCL,
  52. /* SDHC1 */
  53. MX31_PIN_SD1_DATA3__SD1_DATA3, MX31_PIN_SD1_DATA2__SD1_DATA2,
  54. MX31_PIN_SD1_DATA1__SD1_DATA1, MX31_PIN_SD1_DATA0__SD1_DATA0,
  55. MX31_PIN_SD1_CLK__SD1_CLK, MX31_PIN_SD1_CMD__SD1_CMD,
  56. MX31_PIN_ATA_CS0__GPIO3_26, MX31_PIN_ATA_CS1__GPIO3_27,
  57. /* USB reset */
  58. MX31_PIN_GPIO1_0__GPIO1_0,
  59. /* USB OTG */
  60. MX31_PIN_USBOTG_DATA0__USBOTG_DATA0,
  61. MX31_PIN_USBOTG_DATA1__USBOTG_DATA1,
  62. MX31_PIN_USBOTG_DATA2__USBOTG_DATA2,
  63. MX31_PIN_USBOTG_DATA3__USBOTG_DATA3,
  64. MX31_PIN_USBOTG_DATA4__USBOTG_DATA4,
  65. MX31_PIN_USBOTG_DATA5__USBOTG_DATA5,
  66. MX31_PIN_USBOTG_DATA6__USBOTG_DATA6,
  67. MX31_PIN_USBOTG_DATA7__USBOTG_DATA7,
  68. MX31_PIN_USBOTG_CLK__USBOTG_CLK, MX31_PIN_USBOTG_DIR__USBOTG_DIR,
  69. MX31_PIN_USBOTG_NXT__USBOTG_NXT, MX31_PIN_USBOTG_STP__USBOTG_STP,
  70. MX31_PIN_USB_OC__GPIO1_30,
  71. };
  72. static struct physmap_flash_data mx31moboard_flash_data = {
  73. .width = 2,
  74. };
  75. static struct resource mx31moboard_flash_resource = {
  76. .start = 0xa0000000,
  77. .end = 0xa1ffffff,
  78. .flags = IORESOURCE_MEM,
  79. };
  80. static struct platform_device mx31moboard_flash = {
  81. .name = "physmap-flash",
  82. .id = 0,
  83. .dev = {
  84. .platform_data = &mx31moboard_flash_data,
  85. },
  86. .resource = &mx31moboard_flash_resource,
  87. .num_resources = 1,
  88. };
  89. static struct imxuart_platform_data uart_pdata = {
  90. .flags = IMXUART_HAVE_RTSCTS,
  91. };
  92. static struct imxi2c_platform_data moboard_i2c0_pdata = {
  93. .bitrate = 400000,
  94. };
  95. static struct imxi2c_platform_data moboard_i2c1_pdata = {
  96. .bitrate = 100000,
  97. };
  98. #define SDHC1_CD IOMUX_TO_GPIO(MX31_PIN_ATA_CS0)
  99. #define SDHC1_WP IOMUX_TO_GPIO(MX31_PIN_ATA_CS1)
  100. static int moboard_sdhc1_get_ro(struct device *dev)
  101. {
  102. return gpio_get_value(SDHC1_WP);
  103. }
  104. static int moboard_sdhc1_init(struct device *dev, irq_handler_t detect_irq,
  105. void *data)
  106. {
  107. int ret;
  108. ret = gpio_request(SDHC1_CD, "sdhc-detect");
  109. if (ret)
  110. return ret;
  111. gpio_direction_input(SDHC1_CD);
  112. ret = gpio_request(SDHC1_WP, "sdhc-wp");
  113. if (ret)
  114. goto err_gpio_free;
  115. gpio_direction_input(SDHC1_WP);
  116. ret = request_irq(gpio_to_irq(SDHC1_CD), detect_irq,
  117. IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
  118. "sdhc1-card-detect", data);
  119. if (ret)
  120. goto err_gpio_free_2;
  121. return 0;
  122. err_gpio_free_2:
  123. gpio_free(SDHC1_WP);
  124. err_gpio_free:
  125. gpio_free(SDHC1_CD);
  126. return ret;
  127. }
  128. static void moboard_sdhc1_exit(struct device *dev, void *data)
  129. {
  130. free_irq(gpio_to_irq(SDHC1_CD), data);
  131. gpio_free(SDHC1_WP);
  132. gpio_free(SDHC1_CD);
  133. }
  134. static struct imxmmc_platform_data sdhc1_pdata = {
  135. .get_ro = moboard_sdhc1_get_ro,
  136. .init = moboard_sdhc1_init,
  137. .exit = moboard_sdhc1_exit,
  138. };
  139. /*
  140. * this pin is dedicated for all mx31moboard systems, so we do it here
  141. */
  142. #define USB_RESET_B IOMUX_TO_GPIO(MX31_PIN_GPIO1_0)
  143. static void usb_xcvr_reset(void)
  144. {
  145. gpio_request(USB_RESET_B, "usb-reset");
  146. gpio_direction_output(USB_RESET_B, 0);
  147. mdelay(1);
  148. gpio_set_value(USB_RESET_B, 1);
  149. }
  150. #define USB_PAD_CFG (PAD_CTL_DRV_MAX | PAD_CTL_SRE_FAST | PAD_CTL_HYS_CMOS | \
  151. PAD_CTL_ODE_CMOS | PAD_CTL_100K_PU)
  152. #define OTG_EN_B IOMUX_TO_GPIO(MX31_PIN_USB_OC)
  153. static void moboard_usbotg_init(void)
  154. {
  155. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA0, USB_PAD_CFG);
  156. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA1, USB_PAD_CFG);
  157. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA2, USB_PAD_CFG);
  158. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA3, USB_PAD_CFG);
  159. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA4, USB_PAD_CFG);
  160. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA5, USB_PAD_CFG);
  161. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA6, USB_PAD_CFG);
  162. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA7, USB_PAD_CFG);
  163. mxc_iomux_set_pad(MX31_PIN_USBOTG_CLK, USB_PAD_CFG);
  164. mxc_iomux_set_pad(MX31_PIN_USBOTG_DIR, USB_PAD_CFG);
  165. mxc_iomux_set_pad(MX31_PIN_USBOTG_NXT, USB_PAD_CFG);
  166. mxc_iomux_set_pad(MX31_PIN_USBOTG_STP, USB_PAD_CFG);
  167. gpio_request(OTG_EN_B, "usb-udc-en");
  168. gpio_direction_output(OTG_EN_B, 0);
  169. }
  170. static struct fsl_usb2_platform_data usb_pdata = {
  171. .operating_mode = FSL_USB2_DR_DEVICE,
  172. .phy_mode = FSL_USB2_PHY_ULPI,
  173. };
  174. static struct platform_device *devices[] __initdata = {
  175. &mx31moboard_flash,
  176. };
  177. static int mx31moboard_baseboard;
  178. core_param(mx31moboard_baseboard, mx31moboard_baseboard, int, 0444);
  179. /*
  180. * Board specific initialization.
  181. */
  182. static void __init mxc_board_init(void)
  183. {
  184. mxc_iomux_setup_multiple_pins(moboard_pins, ARRAY_SIZE(moboard_pins),
  185. "moboard");
  186. platform_add_devices(devices, ARRAY_SIZE(devices));
  187. mxc_register_device(&mxc_uart_device0, &uart_pdata);
  188. mxc_register_device(&mxc_uart_device4, &uart_pdata);
  189. mxc_register_device(&mxc_i2c_device0, &moboard_i2c0_pdata);
  190. mxc_register_device(&mxc_i2c_device1, &moboard_i2c1_pdata);
  191. mxc_register_device(&mxcsdhc_device0, &sdhc1_pdata);
  192. usb_xcvr_reset();
  193. moboard_usbotg_init();
  194. mxc_register_device(&mxc_otg_udc_device, &usb_pdata);
  195. switch (mx31moboard_baseboard) {
  196. case MX31NOBOARD:
  197. break;
  198. case MX31DEVBOARD:
  199. mx31moboard_devboard_init();
  200. break;
  201. case MX31MARXBOT:
  202. mx31moboard_marxbot_init();
  203. break;
  204. default:
  205. printk(KERN_ERR "Illegal mx31moboard_baseboard type %d\n",
  206. mx31moboard_baseboard);
  207. }
  208. }
  209. static void __init mx31moboard_timer_init(void)
  210. {
  211. mx31_clocks_init(26000000);
  212. }
  213. struct sys_timer mx31moboard_timer = {
  214. .init = mx31moboard_timer_init,
  215. };
  216. MACHINE_START(MX31MOBOARD, "EPFL Mobots mx31moboard")
  217. /* Maintainer: Valentin Longchamp, EPFL Mobots group */
  218. .phys_io = AIPS1_BASE_ADDR,
  219. .io_pg_offst = ((AIPS1_BASE_ADDR_VIRT) >> 18) & 0xfffc,
  220. .boot_params = PHYS_OFFSET + 0x100,
  221. .map_io = mx31_map_io,
  222. .init_irq = mx31_init_irq,
  223. .init_machine = mxc_board_init,
  224. .timer = &mx31moboard_timer,
  225. MACHINE_END