mach-mx31moboard.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  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. #include <linux/delay.h>
  15. #include <linux/dma-mapping.h>
  16. #include <linux/gfp.h>
  17. #include <linux/gpio.h>
  18. #include <linux/init.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/leds.h>
  21. #include <linux/memory.h>
  22. #include <linux/mtd/physmap.h>
  23. #include <linux/mtd/partitions.h>
  24. #include <linux/platform_device.h>
  25. #include <linux/regulator/machine.h>
  26. #include <linux/mfd/mc13783.h>
  27. #include <linux/spi/spi.h>
  28. #include <linux/types.h>
  29. #include <linux/usb/otg.h>
  30. #include <linux/usb/ulpi.h>
  31. #include <asm/mach-types.h>
  32. #include <asm/mach/arch.h>
  33. #include <asm/mach/time.h>
  34. #include <asm/mach/map.h>
  35. #include <mach/board-mx31moboard.h>
  36. #include <mach/common.h>
  37. #include <mach/hardware.h>
  38. #include <mach/iomux-mx3.h>
  39. #include <mach/ipu.h>
  40. #include <mach/mx3_camera.h>
  41. #include <mach/spi.h>
  42. #include <mach/ulpi.h>
  43. #include "devices-imx31.h"
  44. #include "devices.h"
  45. static unsigned int moboard_pins[] = {
  46. /* UART0 */
  47. MX31_PIN_TXD1__TXD1, MX31_PIN_RXD1__RXD1,
  48. MX31_PIN_CTS1__GPIO2_7,
  49. /* UART4 */
  50. MX31_PIN_PC_RST__CTS5, MX31_PIN_PC_VS2__RTS5,
  51. MX31_PIN_PC_BVD2__TXD5, MX31_PIN_PC_BVD1__RXD5,
  52. /* I2C0 */
  53. MX31_PIN_I2C_DAT__I2C1_SDA, MX31_PIN_I2C_CLK__I2C1_SCL,
  54. /* I2C1 */
  55. MX31_PIN_DCD_DTE1__I2C2_SDA, MX31_PIN_RI_DTE1__I2C2_SCL,
  56. /* SDHC1 */
  57. MX31_PIN_SD1_DATA3__SD1_DATA3, MX31_PIN_SD1_DATA2__SD1_DATA2,
  58. MX31_PIN_SD1_DATA1__SD1_DATA1, MX31_PIN_SD1_DATA0__SD1_DATA0,
  59. MX31_PIN_SD1_CLK__SD1_CLK, MX31_PIN_SD1_CMD__SD1_CMD,
  60. MX31_PIN_ATA_CS0__GPIO3_26, MX31_PIN_ATA_CS1__GPIO3_27,
  61. /* USB reset */
  62. MX31_PIN_GPIO1_0__GPIO1_0,
  63. /* USB OTG */
  64. MX31_PIN_USBOTG_DATA0__USBOTG_DATA0,
  65. MX31_PIN_USBOTG_DATA1__USBOTG_DATA1,
  66. MX31_PIN_USBOTG_DATA2__USBOTG_DATA2,
  67. MX31_PIN_USBOTG_DATA3__USBOTG_DATA3,
  68. MX31_PIN_USBOTG_DATA4__USBOTG_DATA4,
  69. MX31_PIN_USBOTG_DATA5__USBOTG_DATA5,
  70. MX31_PIN_USBOTG_DATA6__USBOTG_DATA6,
  71. MX31_PIN_USBOTG_DATA7__USBOTG_DATA7,
  72. MX31_PIN_USBOTG_CLK__USBOTG_CLK, MX31_PIN_USBOTG_DIR__USBOTG_DIR,
  73. MX31_PIN_USBOTG_NXT__USBOTG_NXT, MX31_PIN_USBOTG_STP__USBOTG_STP,
  74. MX31_PIN_USB_OC__GPIO1_30,
  75. /* USB H2 */
  76. MX31_PIN_USBH2_DATA0__USBH2_DATA0,
  77. MX31_PIN_USBH2_DATA1__USBH2_DATA1,
  78. MX31_PIN_STXD3__USBH2_DATA2, MX31_PIN_SRXD3__USBH2_DATA3,
  79. MX31_PIN_SCK3__USBH2_DATA4, MX31_PIN_SFS3__USBH2_DATA5,
  80. MX31_PIN_STXD6__USBH2_DATA6, MX31_PIN_SRXD6__USBH2_DATA7,
  81. MX31_PIN_USBH2_CLK__USBH2_CLK, MX31_PIN_USBH2_DIR__USBH2_DIR,
  82. MX31_PIN_USBH2_NXT__USBH2_NXT, MX31_PIN_USBH2_STP__USBH2_STP,
  83. MX31_PIN_SCK6__GPIO1_25,
  84. /* LEDs */
  85. MX31_PIN_SVEN0__GPIO2_0, MX31_PIN_STX0__GPIO2_1,
  86. MX31_PIN_SRX0__GPIO2_2, MX31_PIN_SIMPD0__GPIO2_3,
  87. /* SPI1 */
  88. MX31_PIN_CSPI2_MOSI__MOSI, MX31_PIN_CSPI2_MISO__MISO,
  89. MX31_PIN_CSPI2_SCLK__SCLK, MX31_PIN_CSPI2_SPI_RDY__SPI_RDY,
  90. MX31_PIN_CSPI2_SS0__SS0, MX31_PIN_CSPI2_SS2__SS2,
  91. /* Atlas IRQ */
  92. MX31_PIN_GPIO1_3__GPIO1_3,
  93. /* SPI2 */
  94. MX31_PIN_CSPI3_MOSI__MOSI, MX31_PIN_CSPI3_MISO__MISO,
  95. MX31_PIN_CSPI3_SCLK__SCLK, MX31_PIN_CSPI3_SPI_RDY__SPI_RDY,
  96. MX31_PIN_CSPI2_SS1__CSPI3_SS1,
  97. };
  98. static struct physmap_flash_data mx31moboard_flash_data = {
  99. .width = 2,
  100. };
  101. static struct resource mx31moboard_flash_resource = {
  102. .start = 0xa0000000,
  103. .end = 0xa1ffffff,
  104. .flags = IORESOURCE_MEM,
  105. };
  106. static struct platform_device mx31moboard_flash = {
  107. .name = "physmap-flash",
  108. .id = 0,
  109. .dev = {
  110. .platform_data = &mx31moboard_flash_data,
  111. },
  112. .resource = &mx31moboard_flash_resource,
  113. .num_resources = 1,
  114. };
  115. static int moboard_uart0_init(struct platform_device *pdev)
  116. {
  117. int ret = gpio_request(IOMUX_TO_GPIO(MX31_PIN_CTS1), "uart0-cts-hack");
  118. if (ret)
  119. return ret;
  120. ret = gpio_direction_output(IOMUX_TO_GPIO(MX31_PIN_CTS1), 0);
  121. if (ret)
  122. gpio_free(IOMUX_TO_GPIO(MX31_PIN_CTS1));
  123. return ret;
  124. }
  125. static void moboard_uart0_exit(struct platform_device *pdev)
  126. {
  127. gpio_free(IOMUX_TO_GPIO(MX31_PIN_CTS1));
  128. }
  129. static const struct imxuart_platform_data uart0_pdata __initconst = {
  130. .init = moboard_uart0_init,
  131. .exit = moboard_uart0_exit,
  132. };
  133. static const struct imxuart_platform_data uart4_pdata __initconst = {
  134. .flags = IMXUART_HAVE_RTSCTS,
  135. };
  136. static const struct imxi2c_platform_data moboard_i2c0_data __initconst = {
  137. .bitrate = 400000,
  138. };
  139. static const struct imxi2c_platform_data moboard_i2c1_data __initconst = {
  140. .bitrate = 100000,
  141. };
  142. static int moboard_spi1_cs[] = {
  143. MXC_SPI_CS(0),
  144. MXC_SPI_CS(2),
  145. };
  146. static const struct spi_imx_master moboard_spi1_pdata __initconst = {
  147. .chipselect = moboard_spi1_cs,
  148. .num_chipselect = ARRAY_SIZE(moboard_spi1_cs),
  149. };
  150. static struct regulator_consumer_supply sdhc_consumers[] = {
  151. {
  152. .dev_name = "mxc-mmc.0",
  153. .supply = "sdhc0_vcc",
  154. },
  155. {
  156. .dev_name = "mxc-mmc.1",
  157. .supply = "sdhc1_vcc",
  158. },
  159. };
  160. static struct regulator_init_data sdhc_vreg_data = {
  161. .constraints = {
  162. .min_uV = 2700000,
  163. .max_uV = 3000000,
  164. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE |
  165. REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS,
  166. .valid_modes_mask = REGULATOR_MODE_NORMAL |
  167. REGULATOR_MODE_FAST,
  168. .always_on = 0,
  169. .boot_on = 1,
  170. },
  171. .num_consumer_supplies = ARRAY_SIZE(sdhc_consumers),
  172. .consumer_supplies = sdhc_consumers,
  173. };
  174. static struct regulator_consumer_supply cam_consumers[] = {
  175. {
  176. .dev = &mx3_camera.dev,
  177. .supply = "cam_vcc",
  178. },
  179. };
  180. static struct regulator_init_data cam_vreg_data = {
  181. .constraints = {
  182. .min_uV = 2700000,
  183. .max_uV = 3000000,
  184. .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE |
  185. REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS,
  186. .valid_modes_mask = REGULATOR_MODE_NORMAL |
  187. REGULATOR_MODE_FAST,
  188. .always_on = 0,
  189. .boot_on = 1,
  190. },
  191. .num_consumer_supplies = ARRAY_SIZE(cam_consumers),
  192. .consumer_supplies = cam_consumers,
  193. };
  194. static struct mc13783_regulator_init_data moboard_regulators[] = {
  195. {
  196. .id = MC13783_REG_VMMC1,
  197. .init_data = &sdhc_vreg_data,
  198. },
  199. {
  200. .id = MC13783_REG_VCAM,
  201. .init_data = &cam_vreg_data,
  202. },
  203. };
  204. static struct mc13783_led_platform_data moboard_led[] = {
  205. {
  206. .id = MC13783_LED_R1,
  207. .name = "coreboard-led-4:red",
  208. .max_current = 2,
  209. },
  210. {
  211. .id = MC13783_LED_G1,
  212. .name = "coreboard-led-4:green",
  213. .max_current = 2,
  214. },
  215. {
  216. .id = MC13783_LED_B1,
  217. .name = "coreboard-led-4:blue",
  218. .max_current = 2,
  219. },
  220. {
  221. .id = MC13783_LED_R2,
  222. .name = "coreboard-led-5:red",
  223. .max_current = 3,
  224. },
  225. {
  226. .id = MC13783_LED_G2,
  227. .name = "coreboard-led-5:green",
  228. .max_current = 3,
  229. },
  230. {
  231. .id = MC13783_LED_B2,
  232. .name = "coreboard-led-5:blue",
  233. .max_current = 3,
  234. },
  235. };
  236. static struct mc13783_leds_platform_data moboard_leds = {
  237. .num_leds = ARRAY_SIZE(moboard_led),
  238. .led = moboard_led,
  239. .flags = MC13783_LED_SLEWLIMTC,
  240. .abmode = MC13783_LED_AB_DISABLED,
  241. .tc1_period = MC13783_LED_PERIOD_10MS,
  242. .tc2_period = MC13783_LED_PERIOD_10MS,
  243. };
  244. static struct mc13783_platform_data moboard_pmic = {
  245. .regulators = moboard_regulators,
  246. .num_regulators = ARRAY_SIZE(moboard_regulators),
  247. .leds = &moboard_leds,
  248. .flags = MC13783_USE_REGULATOR | MC13783_USE_RTC |
  249. MC13783_USE_ADC | MC13783_USE_LED,
  250. };
  251. static struct spi_board_info moboard_spi_board_info[] __initdata = {
  252. {
  253. .modalias = "mc13783",
  254. .irq = IOMUX_TO_IRQ(MX31_PIN_GPIO1_3),
  255. .max_speed_hz = 300000,
  256. .bus_num = 1,
  257. .chip_select = 0,
  258. .platform_data = &moboard_pmic,
  259. .mode = SPI_CS_HIGH,
  260. },
  261. };
  262. static int moboard_spi2_cs[] = {
  263. MXC_SPI_CS(1),
  264. };
  265. static const struct spi_imx_master moboard_spi2_pdata __initconst = {
  266. .chipselect = moboard_spi2_cs,
  267. .num_chipselect = ARRAY_SIZE(moboard_spi2_cs),
  268. };
  269. #define SDHC1_CD IOMUX_TO_GPIO(MX31_PIN_ATA_CS0)
  270. #define SDHC1_WP IOMUX_TO_GPIO(MX31_PIN_ATA_CS1)
  271. static int moboard_sdhc1_get_ro(struct device *dev)
  272. {
  273. return !gpio_get_value(SDHC1_WP);
  274. }
  275. static int moboard_sdhc1_init(struct device *dev, irq_handler_t detect_irq,
  276. void *data)
  277. {
  278. int ret;
  279. ret = gpio_request(SDHC1_CD, "sdhc-detect");
  280. if (ret)
  281. return ret;
  282. gpio_direction_input(SDHC1_CD);
  283. ret = gpio_request(SDHC1_WP, "sdhc-wp");
  284. if (ret)
  285. goto err_gpio_free;
  286. gpio_direction_input(SDHC1_WP);
  287. ret = request_irq(gpio_to_irq(SDHC1_CD), detect_irq,
  288. IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
  289. "sdhc1-card-detect", data);
  290. if (ret)
  291. goto err_gpio_free_2;
  292. return 0;
  293. err_gpio_free_2:
  294. gpio_free(SDHC1_WP);
  295. err_gpio_free:
  296. gpio_free(SDHC1_CD);
  297. return ret;
  298. }
  299. static void moboard_sdhc1_exit(struct device *dev, void *data)
  300. {
  301. free_irq(gpio_to_irq(SDHC1_CD), data);
  302. gpio_free(SDHC1_WP);
  303. gpio_free(SDHC1_CD);
  304. }
  305. static const struct imxmmc_platform_data sdhc1_pdata __initconst = {
  306. .get_ro = moboard_sdhc1_get_ro,
  307. .init = moboard_sdhc1_init,
  308. .exit = moboard_sdhc1_exit,
  309. };
  310. /*
  311. * this pin is dedicated for all mx31moboard systems, so we do it here
  312. */
  313. #define USB_RESET_B IOMUX_TO_GPIO(MX31_PIN_GPIO1_0)
  314. #define USB_PAD_CFG (PAD_CTL_DRV_MAX | PAD_CTL_SRE_FAST | PAD_CTL_HYS_CMOS | \
  315. PAD_CTL_ODE_CMOS)
  316. #define OTG_EN_B IOMUX_TO_GPIO(MX31_PIN_USB_OC)
  317. #define USBH2_EN_B IOMUX_TO_GPIO(MX31_PIN_SCK6)
  318. static void usb_xcvr_reset(void)
  319. {
  320. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA0, USB_PAD_CFG | PAD_CTL_100K_PD);
  321. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA1, USB_PAD_CFG | PAD_CTL_100K_PD);
  322. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA2, USB_PAD_CFG | PAD_CTL_100K_PD);
  323. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA3, USB_PAD_CFG | PAD_CTL_100K_PD);
  324. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA4, USB_PAD_CFG | PAD_CTL_100K_PD);
  325. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA5, USB_PAD_CFG | PAD_CTL_100K_PD);
  326. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA6, USB_PAD_CFG | PAD_CTL_100K_PD);
  327. mxc_iomux_set_pad(MX31_PIN_USBOTG_DATA7, USB_PAD_CFG | PAD_CTL_100K_PD);
  328. mxc_iomux_set_pad(MX31_PIN_USBOTG_CLK, USB_PAD_CFG | PAD_CTL_100K_PU);
  329. mxc_iomux_set_pad(MX31_PIN_USBOTG_DIR, USB_PAD_CFG | PAD_CTL_100K_PU);
  330. mxc_iomux_set_pad(MX31_PIN_USBOTG_NXT, USB_PAD_CFG | PAD_CTL_100K_PU);
  331. mxc_iomux_set_pad(MX31_PIN_USBOTG_STP, USB_PAD_CFG | PAD_CTL_100K_PU);
  332. mxc_iomux_set_gpr(MUX_PGP_UH2, true);
  333. mxc_iomux_set_pad(MX31_PIN_USBH2_CLK, USB_PAD_CFG | PAD_CTL_100K_PU);
  334. mxc_iomux_set_pad(MX31_PIN_USBH2_DIR, USB_PAD_CFG | PAD_CTL_100K_PU);
  335. mxc_iomux_set_pad(MX31_PIN_USBH2_NXT, USB_PAD_CFG | PAD_CTL_100K_PU);
  336. mxc_iomux_set_pad(MX31_PIN_USBH2_STP, USB_PAD_CFG | PAD_CTL_100K_PU);
  337. mxc_iomux_set_pad(MX31_PIN_USBH2_DATA0, USB_PAD_CFG | PAD_CTL_100K_PD);
  338. mxc_iomux_set_pad(MX31_PIN_USBH2_DATA1, USB_PAD_CFG | PAD_CTL_100K_PD);
  339. mxc_iomux_set_pad(MX31_PIN_SRXD6, USB_PAD_CFG | PAD_CTL_100K_PD);
  340. mxc_iomux_set_pad(MX31_PIN_STXD6, USB_PAD_CFG | PAD_CTL_100K_PD);
  341. mxc_iomux_set_pad(MX31_PIN_SFS3, USB_PAD_CFG | PAD_CTL_100K_PD);
  342. mxc_iomux_set_pad(MX31_PIN_SCK3, USB_PAD_CFG | PAD_CTL_100K_PD);
  343. mxc_iomux_set_pad(MX31_PIN_SRXD3, USB_PAD_CFG | PAD_CTL_100K_PD);
  344. mxc_iomux_set_pad(MX31_PIN_STXD3, USB_PAD_CFG | PAD_CTL_100K_PD);
  345. gpio_request(OTG_EN_B, "usb-udc-en");
  346. gpio_direction_output(OTG_EN_B, 0);
  347. gpio_request(USBH2_EN_B, "usbh2-en");
  348. gpio_direction_output(USBH2_EN_B, 0);
  349. gpio_request(USB_RESET_B, "usb-reset");
  350. gpio_direction_output(USB_RESET_B, 0);
  351. mdelay(1);
  352. gpio_set_value(USB_RESET_B, 1);
  353. mdelay(1);
  354. }
  355. #if defined(CONFIG_USB_ULPI)
  356. static struct mxc_usbh_platform_data usbh2_pdata __initdata = {
  357. .portsc = MXC_EHCI_MODE_ULPI | MXC_EHCI_UTMI_8BIT,
  358. .flags = MXC_EHCI_POWER_PINS_ENABLED,
  359. };
  360. static int __init moboard_usbh2_init(void)
  361. {
  362. struct platform_device *pdev;
  363. usbh2_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops,
  364. ULPI_OTG_DRVVBUS | ULPI_OTG_DRVVBUS_EXT);
  365. pdev = imx31_add_mxc_ehci_hs(2, &usbh2_pdata);
  366. if (IS_ERR(pdev))
  367. return PTR_ERR(pdev);
  368. return 0;
  369. }
  370. #else
  371. static inline int moboard_usbh2_init(void) { return 0; }
  372. #endif
  373. static struct gpio_led mx31moboard_leds[] = {
  374. {
  375. .name = "coreboard-led-0:red:running",
  376. .default_trigger = "heartbeat",
  377. .gpio = IOMUX_TO_GPIO(MX31_PIN_SVEN0),
  378. }, {
  379. .name = "coreboard-led-1:red",
  380. .gpio = IOMUX_TO_GPIO(MX31_PIN_STX0),
  381. }, {
  382. .name = "coreboard-led-2:red",
  383. .gpio = IOMUX_TO_GPIO(MX31_PIN_SRX0),
  384. }, {
  385. .name = "coreboard-led-3:red",
  386. .gpio = IOMUX_TO_GPIO(MX31_PIN_SIMPD0),
  387. },
  388. };
  389. static struct gpio_led_platform_data mx31moboard_led_pdata = {
  390. .num_leds = ARRAY_SIZE(mx31moboard_leds),
  391. .leds = mx31moboard_leds,
  392. };
  393. static struct platform_device mx31moboard_leds_device = {
  394. .name = "leds-gpio",
  395. .id = -1,
  396. .dev = {
  397. .platform_data = &mx31moboard_led_pdata,
  398. },
  399. };
  400. static struct ipu_platform_data mx3_ipu_data = {
  401. .irq_base = MXC_IPU_IRQ_START,
  402. };
  403. static struct platform_device *devices[] __initdata = {
  404. &mx31moboard_flash,
  405. &mx31moboard_leds_device,
  406. };
  407. static struct mx3_camera_pdata camera_pdata = {
  408. .dma_dev = &mx3_ipu.dev,
  409. .flags = MX3_CAMERA_DATAWIDTH_8 | MX3_CAMERA_DATAWIDTH_10,
  410. .mclk_10khz = 4800,
  411. };
  412. #define CAMERA_BUF_SIZE (4*1024*1024)
  413. static int __init mx31moboard_cam_alloc_dma(const size_t buf_size)
  414. {
  415. dma_addr_t dma_handle;
  416. void *buf;
  417. int dma;
  418. if (buf_size < 2 * 1024 * 1024)
  419. return -EINVAL;
  420. buf = dma_alloc_coherent(NULL, buf_size, &dma_handle, GFP_KERNEL);
  421. if (!buf) {
  422. pr_err("%s: cannot allocate camera buffer-memory\n", __func__);
  423. return -ENOMEM;
  424. }
  425. memset(buf, 0, buf_size);
  426. dma = dma_declare_coherent_memory(&mx3_camera.dev,
  427. dma_handle, dma_handle, buf_size,
  428. DMA_MEMORY_MAP | DMA_MEMORY_EXCLUSIVE);
  429. /* The way we call dma_declare_coherent_memory only a malloc can fail */
  430. return dma & DMA_MEMORY_MAP ? 0 : -ENOMEM;
  431. }
  432. static int mx31moboard_baseboard;
  433. core_param(mx31moboard_baseboard, mx31moboard_baseboard, int, 0444);
  434. /*
  435. * Board specific initialization.
  436. */
  437. static void __init mxc_board_init(void)
  438. {
  439. mxc_iomux_setup_multiple_pins(moboard_pins, ARRAY_SIZE(moboard_pins),
  440. "moboard");
  441. platform_add_devices(devices, ARRAY_SIZE(devices));
  442. imx31_add_imx_uart0(&uart0_pdata);
  443. imx31_add_imx_uart4(&uart4_pdata);
  444. imx31_add_imx_i2c0(&moboard_i2c0_data);
  445. imx31_add_imx_i2c1(&moboard_i2c1_data);
  446. imx31_add_spi_imx1(&moboard_spi1_pdata);
  447. imx31_add_spi_imx2(&moboard_spi2_pdata);
  448. gpio_request(IOMUX_TO_GPIO(MX31_PIN_GPIO1_3), "pmic-irq");
  449. gpio_direction_input(IOMUX_TO_GPIO(MX31_PIN_GPIO1_3));
  450. spi_register_board_info(moboard_spi_board_info,
  451. ARRAY_SIZE(moboard_spi_board_info));
  452. imx31_add_mxc_mmc(0, &sdhc1_pdata);
  453. mxc_register_device(&mx3_ipu, &mx3_ipu_data);
  454. if (!mx31moboard_cam_alloc_dma(CAMERA_BUF_SIZE))
  455. mxc_register_device(&mx3_camera, &camera_pdata);
  456. usb_xcvr_reset();
  457. moboard_usbh2_init();
  458. switch (mx31moboard_baseboard) {
  459. case MX31NOBOARD:
  460. break;
  461. case MX31DEVBOARD:
  462. mx31moboard_devboard_init();
  463. break;
  464. case MX31MARXBOT:
  465. mx31moboard_marxbot_init();
  466. break;
  467. case MX31SMARTBOT:
  468. case MX31EYEBOT:
  469. mx31moboard_smartbot_init(mx31moboard_baseboard);
  470. break;
  471. default:
  472. printk(KERN_ERR "Illegal mx31moboard_baseboard type %d\n",
  473. mx31moboard_baseboard);
  474. }
  475. }
  476. static void __init mx31moboard_timer_init(void)
  477. {
  478. mx31_clocks_init(26000000);
  479. }
  480. struct sys_timer mx31moboard_timer = {
  481. .init = mx31moboard_timer_init,
  482. };
  483. MACHINE_START(MX31MOBOARD, "EPFL Mobots mx31moboard")
  484. /* Maintainer: Valentin Longchamp, EPFL Mobots group */
  485. .boot_params = MX3x_PHYS_OFFSET + 0x100,
  486. .map_io = mx31_map_io,
  487. .init_irq = mx31_init_irq,
  488. .init_machine = mxc_board_init,
  489. .timer = &mx31moboard_timer,
  490. MACHINE_END