mx31moboard.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  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/dma-mapping.h>
  20. #include <linux/fsl_devices.h>
  21. #include <linux/gpio.h>
  22. #include <linux/init.h>
  23. #include <linux/interrupt.h>
  24. #include <linux/leds.h>
  25. #include <linux/memory.h>
  26. #include <linux/mtd/physmap.h>
  27. #include <linux/mtd/partitions.h>
  28. #include <linux/platform_device.h>
  29. #include <linux/regulator/machine.h>
  30. #include <linux/mfd/mc13783.h>
  31. #include <linux/spi/spi.h>
  32. #include <linux/types.h>
  33. #include <asm/mach-types.h>
  34. #include <asm/mach/arch.h>
  35. #include <asm/mach/time.h>
  36. #include <asm/mach/map.h>
  37. #include <mach/board-mx31moboard.h>
  38. #include <mach/common.h>
  39. #include <mach/hardware.h>
  40. #include <mach/imx-uart.h>
  41. #include <mach/iomux-mx3.h>
  42. #include <mach/ipu.h>
  43. #include <mach/i2c.h>
  44. #include <mach/mmc.h>
  45. #include <mach/mx3_camera.h>
  46. #include <mach/spi.h>
  47. #include "devices.h"
  48. static unsigned int moboard_pins[] = {
  49. /* UART0 */
  50. MX31_PIN_TXD1__TXD1, MX31_PIN_RXD1__RXD1,
  51. MX31_PIN_CTS1__GPIO2_7,
  52. /* UART4 */
  53. MX31_PIN_PC_RST__CTS5, MX31_PIN_PC_VS2__RTS5,
  54. MX31_PIN_PC_BVD2__TXD5, MX31_PIN_PC_BVD1__RXD5,
  55. /* I2C0 */
  56. MX31_PIN_I2C_DAT__I2C1_SDA, MX31_PIN_I2C_CLK__I2C1_SCL,
  57. /* I2C1 */
  58. MX31_PIN_DCD_DTE1__I2C2_SDA, MX31_PIN_RI_DTE1__I2C2_SCL,
  59. /* SDHC1 */
  60. MX31_PIN_SD1_DATA3__SD1_DATA3, MX31_PIN_SD1_DATA2__SD1_DATA2,
  61. MX31_PIN_SD1_DATA1__SD1_DATA1, MX31_PIN_SD1_DATA0__SD1_DATA0,
  62. MX31_PIN_SD1_CLK__SD1_CLK, MX31_PIN_SD1_CMD__SD1_CMD,
  63. MX31_PIN_ATA_CS0__GPIO3_26, MX31_PIN_ATA_CS1__GPIO3_27,
  64. /* USB reset */
  65. MX31_PIN_GPIO1_0__GPIO1_0,
  66. /* USB OTG */
  67. MX31_PIN_USBOTG_DATA0__USBOTG_DATA0,
  68. MX31_PIN_USBOTG_DATA1__USBOTG_DATA1,
  69. MX31_PIN_USBOTG_DATA2__USBOTG_DATA2,
  70. MX31_PIN_USBOTG_DATA3__USBOTG_DATA3,
  71. MX31_PIN_USBOTG_DATA4__USBOTG_DATA4,
  72. MX31_PIN_USBOTG_DATA5__USBOTG_DATA5,
  73. MX31_PIN_USBOTG_DATA6__USBOTG_DATA6,
  74. MX31_PIN_USBOTG_DATA7__USBOTG_DATA7,
  75. MX31_PIN_USBOTG_CLK__USBOTG_CLK, MX31_PIN_USBOTG_DIR__USBOTG_DIR,
  76. MX31_PIN_USBOTG_NXT__USBOTG_NXT, MX31_PIN_USBOTG_STP__USBOTG_STP,
  77. MX31_PIN_USB_OC__GPIO1_30,
  78. /* LEDs */
  79. MX31_PIN_SVEN0__GPIO2_0, MX31_PIN_STX0__GPIO2_1,
  80. MX31_PIN_SRX0__GPIO2_2, MX31_PIN_SIMPD0__GPIO2_3,
  81. /* SEL */
  82. MX31_PIN_DTR_DCE1__GPIO2_8, MX31_PIN_DSR_DCE1__GPIO2_9,
  83. MX31_PIN_RI_DCE1__GPIO2_10, MX31_PIN_DCD_DCE1__GPIO2_11,
  84. /* SPI1 */
  85. MX31_PIN_CSPI2_MOSI__MOSI, MX31_PIN_CSPI2_MISO__MISO,
  86. MX31_PIN_CSPI2_SCLK__SCLK, MX31_PIN_CSPI2_SPI_RDY__SPI_RDY,
  87. MX31_PIN_CSPI2_SS0__SS0, MX31_PIN_CSPI2_SS2__SS2,
  88. /* Atlas IRQ */
  89. MX31_PIN_GPIO1_3__GPIO1_3,
  90. /* SPI2 */
  91. MX31_PIN_CSPI3_MOSI__MOSI, MX31_PIN_CSPI3_MISO__MISO,
  92. MX31_PIN_CSPI3_SCLK__SCLK, MX31_PIN_CSPI3_SPI_RDY__SPI_RDY,
  93. MX31_PIN_CSPI2_SS1__CSPI3_SS1,
  94. };
  95. static struct physmap_flash_data mx31moboard_flash_data = {
  96. .width = 2,
  97. };
  98. static struct resource mx31moboard_flash_resource = {
  99. .start = 0xa0000000,
  100. .end = 0xa1ffffff,
  101. .flags = IORESOURCE_MEM,
  102. };
  103. static struct platform_device mx31moboard_flash = {
  104. .name = "physmap-flash",
  105. .id = 0,
  106. .dev = {
  107. .platform_data = &mx31moboard_flash_data,
  108. },
  109. .resource = &mx31moboard_flash_resource,
  110. .num_resources = 1,
  111. };
  112. static int moboard_uart0_init(struct platform_device *pdev)
  113. {
  114. gpio_request(IOMUX_TO_GPIO(MX31_PIN_CTS1), "uart0-cts-hack");
  115. gpio_direction_output(IOMUX_TO_GPIO(MX31_PIN_CTS1), 0);
  116. return 0;
  117. }
  118. static struct imxuart_platform_data uart0_pdata = {
  119. .init = moboard_uart0_init,
  120. };
  121. static struct imxuart_platform_data uart4_pdata = {
  122. .flags = IMXUART_HAVE_RTSCTS,
  123. };
  124. static struct imxi2c_platform_data moboard_i2c0_pdata = {
  125. .bitrate = 400000,
  126. };
  127. static struct imxi2c_platform_data moboard_i2c1_pdata = {
  128. .bitrate = 100000,
  129. };
  130. static int moboard_spi1_cs[] = {
  131. MXC_SPI_CS(0),
  132. MXC_SPI_CS(2),
  133. };
  134. static struct spi_imx_master moboard_spi1_master = {
  135. .chipselect = moboard_spi1_cs,
  136. .num_chipselect = ARRAY_SIZE(moboard_spi1_cs),
  137. };
  138. static struct regulator_consumer_supply sdhc_consumers[] = {
  139. {
  140. .dev = &mxcsdhc_device0.dev,
  141. .supply = "sdhc0_vcc",
  142. },
  143. {
  144. .dev = &mxcsdhc_device1.dev,
  145. .supply = "sdhc1_vcc",
  146. },
  147. };
  148. static struct regulator_init_data sdhc_vreg_data = {
  149. .constraints = {
  150. .min_uV = 2700000,
  151. .max_uV = 3000000,
  152. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE |
  153. REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS,
  154. .valid_modes_mask = REGULATOR_MODE_NORMAL |
  155. REGULATOR_MODE_FAST,
  156. .always_on = 0,
  157. .boot_on = 1,
  158. },
  159. .num_consumer_supplies = ARRAY_SIZE(sdhc_consumers),
  160. .consumer_supplies = sdhc_consumers,
  161. };
  162. static struct regulator_consumer_supply cam_consumers[] = {
  163. {
  164. .dev = &mx3_camera.dev,
  165. .supply = "cam_vcc",
  166. },
  167. };
  168. static struct regulator_init_data cam_vreg_data = {
  169. .constraints = {
  170. .min_uV = 2700000,
  171. .max_uV = 3000000,
  172. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE |
  173. REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS,
  174. .valid_modes_mask = REGULATOR_MODE_NORMAL |
  175. REGULATOR_MODE_FAST,
  176. .always_on = 0,
  177. .boot_on = 1,
  178. },
  179. .num_consumer_supplies = ARRAY_SIZE(cam_consumers),
  180. .consumer_supplies = cam_consumers,
  181. };
  182. static struct mc13783_regulator_init_data moboard_regulators[] = {
  183. {
  184. .id = MC13783_REGU_VMMC1,
  185. .init_data = &sdhc_vreg_data,
  186. },
  187. {
  188. .id = MC13783_REGU_VCAM,
  189. .init_data = &cam_vreg_data,
  190. },
  191. };
  192. static struct mc13783_platform_data moboard_pmic = {
  193. .regulators = moboard_regulators,
  194. .num_regulators = ARRAY_SIZE(moboard_regulators),
  195. .flags = MC13783_USE_REGULATOR | MC13783_USE_RTC,
  196. };
  197. static struct spi_board_info moboard_spi_board_info[] __initdata = {
  198. {
  199. .modalias = "mc13783",
  200. .irq = IOMUX_TO_IRQ(MX31_PIN_GPIO1_3),
  201. .max_speed_hz = 300000,
  202. .bus_num = 1,
  203. .chip_select = 0,
  204. .platform_data = &moboard_pmic,
  205. .mode = SPI_CS_HIGH,
  206. },
  207. {
  208. .modalias = "spidev",
  209. .max_speed_hz = 300000,
  210. .bus_num = 1,
  211. .chip_select = 1, /* according spi1_cs[] ! */
  212. },
  213. };
  214. static int moboard_spi2_cs[] = {
  215. MXC_SPI_CS(1),
  216. };
  217. static struct spi_imx_master moboard_spi2_master = {
  218. .chipselect = moboard_spi2_cs,
  219. .num_chipselect = ARRAY_SIZE(moboard_spi2_cs),
  220. };
  221. #define SDHC1_CD IOMUX_TO_GPIO(MX31_PIN_ATA_CS0)
  222. #define SDHC1_WP IOMUX_TO_GPIO(MX31_PIN_ATA_CS1)
  223. static int moboard_sdhc1_get_ro(struct device *dev)
  224. {
  225. return !gpio_get_value(SDHC1_WP);
  226. }
  227. static int moboard_sdhc1_init(struct device *dev, irq_handler_t detect_irq,
  228. void *data)
  229. {
  230. int ret;
  231. ret = gpio_request(SDHC1_CD, "sdhc-detect");
  232. if (ret)
  233. return ret;
  234. gpio_direction_input(SDHC1_CD);
  235. ret = gpio_request(SDHC1_WP, "sdhc-wp");
  236. if (ret)
  237. goto err_gpio_free;
  238. gpio_direction_input(SDHC1_WP);
  239. ret = request_irq(gpio_to_irq(SDHC1_CD), detect_irq,
  240. IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
  241. "sdhc1-card-detect", data);
  242. if (ret)
  243. goto err_gpio_free_2;
  244. return 0;
  245. err_gpio_free_2:
  246. gpio_free(SDHC1_WP);
  247. err_gpio_free:
  248. gpio_free(SDHC1_CD);
  249. return ret;
  250. }
  251. static void moboard_sdhc1_exit(struct device *dev, void *data)
  252. {
  253. free_irq(gpio_to_irq(SDHC1_CD), data);
  254. gpio_free(SDHC1_WP);
  255. gpio_free(SDHC1_CD);
  256. }
  257. static struct imxmmc_platform_data sdhc1_pdata = {
  258. .get_ro = moboard_sdhc1_get_ro,
  259. .init = moboard_sdhc1_init,
  260. .exit = moboard_sdhc1_exit,
  261. };
  262. /*
  263. * this pin is dedicated for all mx31moboard systems, so we do it here
  264. */
  265. #define USB_RESET_B IOMUX_TO_GPIO(MX31_PIN_GPIO1_0)
  266. static void usb_xcvr_reset(void)
  267. {
  268. gpio_request(USB_RESET_B, "usb-reset");
  269. gpio_direction_output(USB_RESET_B, 0);
  270. mdelay(1);
  271. gpio_set_value(USB_RESET_B, 1);
  272. }
  273. #define USB_PAD_CFG (PAD_CTL_DRV_MAX | PAD_CTL_SRE_FAST | PAD_CTL_HYS_CMOS | \
  274. PAD_CTL_ODE_CMOS | PAD_CTL_100K_PU)
  275. #define OTG_EN_B IOMUX_TO_GPIO(MX31_PIN_USB_OC)
  276. static void moboard_usbotg_init(void)
  277. {
  278. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA0, USB_PAD_CFG);
  279. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA1, USB_PAD_CFG);
  280. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA2, USB_PAD_CFG);
  281. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA3, USB_PAD_CFG);
  282. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA4, USB_PAD_CFG);
  283. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA5, USB_PAD_CFG);
  284. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA6, USB_PAD_CFG);
  285. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA7, USB_PAD_CFG);
  286. mxc_iomux_set_pad(MX31_PIN_USBOTG_CLK, USB_PAD_CFG);
  287. mxc_iomux_set_pad(MX31_PIN_USBOTG_DIR, USB_PAD_CFG);
  288. mxc_iomux_set_pad(MX31_PIN_USBOTG_NXT, USB_PAD_CFG);
  289. mxc_iomux_set_pad(MX31_PIN_USBOTG_STP, USB_PAD_CFG);
  290. gpio_request(OTG_EN_B, "usb-udc-en");
  291. gpio_direction_output(OTG_EN_B, 0);
  292. }
  293. static struct fsl_usb2_platform_data usb_pdata = {
  294. .operating_mode = FSL_USB2_DR_DEVICE,
  295. .phy_mode = FSL_USB2_PHY_ULPI,
  296. };
  297. static struct gpio_led mx31moboard_leds[] = {
  298. {
  299. .name = "coreboard-led-0:red:running",
  300. .default_trigger = "heartbeat",
  301. .gpio = IOMUX_TO_GPIO(MX31_PIN_SVEN0),
  302. }, {
  303. .name = "coreboard-led-1:red",
  304. .gpio = IOMUX_TO_GPIO(MX31_PIN_STX0),
  305. }, {
  306. .name = "coreboard-led-2:red",
  307. .gpio = IOMUX_TO_GPIO(MX31_PIN_SRX0),
  308. }, {
  309. .name = "coreboard-led-3:red",
  310. .gpio = IOMUX_TO_GPIO(MX31_PIN_SIMPD0),
  311. },
  312. };
  313. static struct gpio_led_platform_data mx31moboard_led_pdata = {
  314. .num_leds = ARRAY_SIZE(mx31moboard_leds),
  315. .leds = mx31moboard_leds,
  316. };
  317. static struct platform_device mx31moboard_leds_device = {
  318. .name = "leds-gpio",
  319. .id = -1,
  320. .dev = {
  321. .platform_data = &mx31moboard_led_pdata,
  322. },
  323. };
  324. #define SEL0 IOMUX_TO_GPIO(MX31_PIN_DTR_DCE1)
  325. #define SEL1 IOMUX_TO_GPIO(MX31_PIN_DSR_DCE1)
  326. #define SEL2 IOMUX_TO_GPIO(MX31_PIN_RI_DCE1)
  327. #define SEL3 IOMUX_TO_GPIO(MX31_PIN_DCD_DCE1)
  328. static void mx31moboard_init_sel_gpios(void)
  329. {
  330. if (!gpio_request(SEL0, "sel0")) {
  331. gpio_direction_input(SEL0);
  332. gpio_export(SEL0, true);
  333. }
  334. if (!gpio_request(SEL1, "sel1")) {
  335. gpio_direction_input(SEL1);
  336. gpio_export(SEL1, true);
  337. }
  338. if (!gpio_request(SEL2, "sel2")) {
  339. gpio_direction_input(SEL2);
  340. gpio_export(SEL2, true);
  341. }
  342. if (!gpio_request(SEL3, "sel3")) {
  343. gpio_direction_input(SEL3);
  344. gpio_export(SEL3, true);
  345. }
  346. }
  347. static struct ipu_platform_data mx3_ipu_data = {
  348. .irq_base = MXC_IPU_IRQ_START,
  349. };
  350. static struct platform_device *devices[] __initdata = {
  351. &mx31moboard_flash,
  352. &mx31moboard_leds_device,
  353. };
  354. static struct mx3_camera_pdata camera_pdata = {
  355. .dma_dev = &mx3_ipu.dev,
  356. .flags = MX3_CAMERA_DATAWIDTH_8 | MX3_CAMERA_DATAWIDTH_10,
  357. .mclk_10khz = 4800,
  358. };
  359. #define CAMERA_BUF_SIZE (4*1024*1024)
  360. static int __init mx31moboard_cam_alloc_dma(const size_t buf_size)
  361. {
  362. dma_addr_t dma_handle;
  363. void *buf;
  364. int dma;
  365. if (buf_size < 2 * 1024 * 1024)
  366. return -EINVAL;
  367. buf = dma_alloc_coherent(NULL, buf_size, &dma_handle, GFP_KERNEL);
  368. if (!buf) {
  369. pr_err("%s: cannot allocate camera buffer-memory\n", __func__);
  370. return -ENOMEM;
  371. }
  372. memset(buf, 0, buf_size);
  373. dma = dma_declare_coherent_memory(&mx3_camera.dev,
  374. dma_handle, dma_handle, buf_size,
  375. DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE);
  376. /* The way we call dma_declare_coherent_memory only a malloc can fail */
  377. return dma & DMA_MEMORY_MAP ? 0 : -ENOMEM;
  378. }
  379. static int mx31moboard_baseboard;
  380. core_param(mx31moboard_baseboard, mx31moboard_baseboard, int, 0444);
  381. /*
  382. * Board specific initialization.
  383. */
  384. static void __init mxc_board_init(void)
  385. {
  386. mxc_iomux_setup_multiple_pins(moboard_pins, ARRAY_SIZE(moboard_pins),
  387. "moboard");
  388. platform_add_devices(devices, ARRAY_SIZE(devices));
  389. mxc_register_device(&mxc_uart_device0, &uart0_pdata);
  390. mxc_register_device(&mxc_uart_device4, &uart4_pdata);
  391. mx31moboard_init_sel_gpios();
  392. mxc_register_device(&mxc_i2c_device0, &moboard_i2c0_pdata);
  393. mxc_register_device(&mxc_i2c_device1, &moboard_i2c1_pdata);
  394. mxc_register_device(&mxc_spi_device1, &moboard_spi1_master);
  395. mxc_register_device(&mxc_spi_device2, &moboard_spi2_master);
  396. gpio_request(IOMUX_TO_GPIO(MX31_PIN_GPIO1_3), "pmic-irq");
  397. gpio_direction_input(IOMUX_TO_GPIO(MX31_PIN_GPIO1_3));
  398. spi_register_board_info(moboard_spi_board_info,
  399. ARRAY_SIZE(moboard_spi_board_info));
  400. mxc_register_device(&mxcsdhc_device0, &sdhc1_pdata);
  401. mxc_register_device(&mx3_ipu, &mx3_ipu_data);
  402. if (!mx31moboard_cam_alloc_dma(CAMERA_BUF_SIZE))
  403. mxc_register_device(&mx3_camera, &camera_pdata);
  404. usb_xcvr_reset();
  405. moboard_usbotg_init();
  406. mxc_register_device(&mxc_otg_udc_device, &usb_pdata);
  407. switch (mx31moboard_baseboard) {
  408. case MX31NOBOARD:
  409. break;
  410. case MX31DEVBOARD:
  411. mx31moboard_devboard_init();
  412. break;
  413. case MX31MARXBOT:
  414. mx31moboard_marxbot_init();
  415. break;
  416. default:
  417. printk(KERN_ERR "Illegal mx31moboard_baseboard type %d\n",
  418. mx31moboard_baseboard);
  419. }
  420. }
  421. static void __init mx31moboard_timer_init(void)
  422. {
  423. mx31_clocks_init(26000000);
  424. }
  425. struct sys_timer mx31moboard_timer = {
  426. .init = mx31moboard_timer_init,
  427. };
  428. MACHINE_START(MX31MOBOARD, "EPFL Mobots mx31moboard")
  429. /* Maintainer: Valentin Longchamp, EPFL Mobots group */
  430. .phys_io = AIPS1_BASE_ADDR,
  431. .io_pg_offst = ((AIPS1_BASE_ADDR_VIRT) >> 18) & 0xfffc,
  432. .boot_params = PHYS_OFFSET + 0x100,
  433. .map_io = mx31_map_io,
  434. .init_irq = mx31_init_irq,
  435. .init_machine = mxc_board_init,
  436. .timer = &mx31moboard_timer,
  437. MACHINE_END