mach-pcm043.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  1. /*
  2. * Copyright (C) 2009 Sascha Hauer, Pengutronix
  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/types.h>
  15. #include <linux/init.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/mtd/physmap.h>
  18. #include <linux/mtd/plat-ram.h>
  19. #include <linux/memory.h>
  20. #include <linux/gpio.h>
  21. #include <linux/smc911x.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/delay.h>
  24. #include <linux/i2c.h>
  25. #include <linux/i2c/at24.h>
  26. #include <linux/usb/otg.h>
  27. #include <linux/usb/ulpi.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/hardware.h>
  33. #include <mach/common.h>
  34. #include <mach/iomux-mx35.h>
  35. #include <mach/ulpi.h>
  36. #include "devices-imx35.h"
  37. static const struct fb_videomode fb_modedb[] = {
  38. {
  39. /* 240x320 @ 60 Hz */
  40. .name = "Sharp-LQ035Q7",
  41. .refresh = 60,
  42. .xres = 240,
  43. .yres = 320,
  44. .pixclock = 185925,
  45. .left_margin = 9,
  46. .right_margin = 16,
  47. .upper_margin = 7,
  48. .lower_margin = 9,
  49. .hsync_len = 1,
  50. .vsync_len = 1,
  51. .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_SHARP_MODE | FB_SYNC_CLK_INVERT | FB_SYNC_CLK_IDLE_EN,
  52. .vmode = FB_VMODE_NONINTERLACED,
  53. .flag = 0,
  54. }, {
  55. /* 240x320 @ 60 Hz */
  56. .name = "TX090",
  57. .refresh = 60,
  58. .xres = 240,
  59. .yres = 320,
  60. .pixclock = 38255,
  61. .left_margin = 144,
  62. .right_margin = 0,
  63. .upper_margin = 7,
  64. .lower_margin = 40,
  65. .hsync_len = 96,
  66. .vsync_len = 1,
  67. .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_OE_ACT_HIGH,
  68. .vmode = FB_VMODE_NONINTERLACED,
  69. .flag = 0,
  70. },
  71. };
  72. static struct mx3fb_platform_data mx3fb_pdata __initdata = {
  73. .name = "Sharp-LQ035Q7",
  74. .mode = fb_modedb,
  75. .num_modes = ARRAY_SIZE(fb_modedb),
  76. };
  77. static struct physmap_flash_data pcm043_flash_data = {
  78. .width = 2,
  79. };
  80. static struct resource pcm043_flash_resource = {
  81. .start = 0xa0000000,
  82. .end = 0xa1ffffff,
  83. .flags = IORESOURCE_MEM,
  84. };
  85. static struct platform_device pcm043_flash = {
  86. .name = "physmap-flash",
  87. .id = 0,
  88. .dev = {
  89. .platform_data = &pcm043_flash_data,
  90. },
  91. .resource = &pcm043_flash_resource,
  92. .num_resources = 1,
  93. };
  94. static const struct imxuart_platform_data uart_pdata __initconst = {
  95. .flags = IMXUART_HAVE_RTSCTS,
  96. };
  97. static const struct imxi2c_platform_data pcm043_i2c0_data __initconst = {
  98. .bitrate = 50000,
  99. };
  100. static struct at24_platform_data board_eeprom = {
  101. .byte_len = 4096,
  102. .page_size = 32,
  103. .flags = AT24_FLAG_ADDR16,
  104. };
  105. static struct i2c_board_info pcm043_i2c_devices[] = {
  106. {
  107. I2C_BOARD_INFO("at24", 0x52), /* E0=0, E1=1, E2=0 */
  108. .platform_data = &board_eeprom,
  109. }, {
  110. I2C_BOARD_INFO("pcf8563", 0x51),
  111. },
  112. };
  113. static struct platform_device *devices[] __initdata = {
  114. &pcm043_flash,
  115. };
  116. static iomux_v3_cfg_t pcm043_pads[] = {
  117. /* UART1 */
  118. MX35_PAD_CTS1__UART1_CTS,
  119. MX35_PAD_RTS1__UART1_RTS,
  120. MX35_PAD_TXD1__UART1_TXD_MUX,
  121. MX35_PAD_RXD1__UART1_RXD_MUX,
  122. /* UART2 */
  123. MX35_PAD_CTS2__UART2_CTS,
  124. MX35_PAD_RTS2__UART2_RTS,
  125. MX35_PAD_TXD2__UART2_TXD_MUX,
  126. MX35_PAD_RXD2__UART2_RXD_MUX,
  127. /* FEC */
  128. MX35_PAD_FEC_TX_CLK__FEC_TX_CLK,
  129. MX35_PAD_FEC_RX_CLK__FEC_RX_CLK,
  130. MX35_PAD_FEC_RX_DV__FEC_RX_DV,
  131. MX35_PAD_FEC_COL__FEC_COL,
  132. MX35_PAD_FEC_RDATA0__FEC_RDATA_0,
  133. MX35_PAD_FEC_TDATA0__FEC_TDATA_0,
  134. MX35_PAD_FEC_TX_EN__FEC_TX_EN,
  135. MX35_PAD_FEC_MDC__FEC_MDC,
  136. MX35_PAD_FEC_MDIO__FEC_MDIO,
  137. MX35_PAD_FEC_TX_ERR__FEC_TX_ERR,
  138. MX35_PAD_FEC_RX_ERR__FEC_RX_ERR,
  139. MX35_PAD_FEC_CRS__FEC_CRS,
  140. MX35_PAD_FEC_RDATA1__FEC_RDATA_1,
  141. MX35_PAD_FEC_TDATA1__FEC_TDATA_1,
  142. MX35_PAD_FEC_RDATA2__FEC_RDATA_2,
  143. MX35_PAD_FEC_TDATA2__FEC_TDATA_2,
  144. MX35_PAD_FEC_RDATA3__FEC_RDATA_3,
  145. MX35_PAD_FEC_TDATA3__FEC_TDATA_3,
  146. /* I2C1 */
  147. MX35_PAD_I2C1_CLK__I2C1_SCL,
  148. MX35_PAD_I2C1_DAT__I2C1_SDA,
  149. /* Display */
  150. MX35_PAD_LD0__IPU_DISPB_DAT_0,
  151. MX35_PAD_LD1__IPU_DISPB_DAT_1,
  152. MX35_PAD_LD2__IPU_DISPB_DAT_2,
  153. MX35_PAD_LD3__IPU_DISPB_DAT_3,
  154. MX35_PAD_LD4__IPU_DISPB_DAT_4,
  155. MX35_PAD_LD5__IPU_DISPB_DAT_5,
  156. MX35_PAD_LD6__IPU_DISPB_DAT_6,
  157. MX35_PAD_LD7__IPU_DISPB_DAT_7,
  158. MX35_PAD_LD8__IPU_DISPB_DAT_8,
  159. MX35_PAD_LD9__IPU_DISPB_DAT_9,
  160. MX35_PAD_LD10__IPU_DISPB_DAT_10,
  161. MX35_PAD_LD11__IPU_DISPB_DAT_11,
  162. MX35_PAD_LD12__IPU_DISPB_DAT_12,
  163. MX35_PAD_LD13__IPU_DISPB_DAT_13,
  164. MX35_PAD_LD14__IPU_DISPB_DAT_14,
  165. MX35_PAD_LD15__IPU_DISPB_DAT_15,
  166. MX35_PAD_LD16__IPU_DISPB_DAT_16,
  167. MX35_PAD_LD17__IPU_DISPB_DAT_17,
  168. MX35_PAD_D3_HSYNC__IPU_DISPB_D3_HSYNC,
  169. MX35_PAD_D3_FPSHIFT__IPU_DISPB_D3_CLK,
  170. MX35_PAD_D3_DRDY__IPU_DISPB_D3_DRDY,
  171. MX35_PAD_CONTRAST__IPU_DISPB_CONTR,
  172. MX35_PAD_D3_VSYNC__IPU_DISPB_D3_VSYNC,
  173. MX35_PAD_D3_REV__IPU_DISPB_D3_REV,
  174. MX35_PAD_D3_CLS__IPU_DISPB_D3_CLS,
  175. /* gpio */
  176. MX35_PAD_ATA_CS0__GPIO2_6,
  177. /* USB host */
  178. MX35_PAD_I2C2_CLK__USB_TOP_USBH2_PWR,
  179. MX35_PAD_I2C2_DAT__USB_TOP_USBH2_OC,
  180. /* SSI */
  181. MX35_PAD_STXFS4__AUDMUX_AUD4_TXFS,
  182. MX35_PAD_STXD4__AUDMUX_AUD4_TXD,
  183. MX35_PAD_SRXD4__AUDMUX_AUD4_RXD,
  184. MX35_PAD_SCK4__AUDMUX_AUD4_TXC,
  185. /* CAN2 */
  186. MX35_PAD_TX5_RX0__CAN2_TXCAN,
  187. MX35_PAD_TX4_RX1__CAN2_RXCAN,
  188. /* esdhc */
  189. MX35_PAD_SD1_CMD__ESDHC1_CMD,
  190. MX35_PAD_SD1_CLK__ESDHC1_CLK,
  191. MX35_PAD_SD1_DATA0__ESDHC1_DAT0,
  192. MX35_PAD_SD1_DATA1__ESDHC1_DAT1,
  193. MX35_PAD_SD1_DATA2__ESDHC1_DAT2,
  194. MX35_PAD_SD1_DATA3__ESDHC1_DAT3,
  195. MX35_PAD_ATA_DATA10__GPIO2_23, /* WriteProtect */
  196. MX35_PAD_ATA_DATA11__GPIO2_24, /* CardDetect */
  197. };
  198. #define AC97_GPIO_TXFS IMX_GPIO_NR(2, 31)
  199. #define AC97_GPIO_TXD IMX_GPIO_NR(2, 28)
  200. #define AC97_GPIO_RESET IMX_GPIO_NR(2, 0)
  201. #define SD1_GPIO_WP IMX_GPIO_NR(2, 23)
  202. #define SD1_GPIO_CD IMX_GPIO_NR(2, 24)
  203. static void pcm043_ac97_warm_reset(struct snd_ac97 *ac97)
  204. {
  205. iomux_v3_cfg_t txfs_gpio = MX35_PAD_STXFS4__GPIO2_31;
  206. iomux_v3_cfg_t txfs = MX35_PAD_STXFS4__AUDMUX_AUD4_TXFS;
  207. int ret;
  208. ret = gpio_request(AC97_GPIO_TXFS, "SSI");
  209. if (ret) {
  210. printk("failed to get GPIO_TXFS: %d\n", ret);
  211. return;
  212. }
  213. mxc_iomux_v3_setup_pad(txfs_gpio);
  214. /* warm reset */
  215. gpio_direction_output(AC97_GPIO_TXFS, 1);
  216. udelay(2);
  217. gpio_set_value(AC97_GPIO_TXFS, 0);
  218. gpio_free(AC97_GPIO_TXFS);
  219. mxc_iomux_v3_setup_pad(txfs);
  220. }
  221. static void pcm043_ac97_cold_reset(struct snd_ac97 *ac97)
  222. {
  223. iomux_v3_cfg_t txfs_gpio = MX35_PAD_STXFS4__GPIO2_31;
  224. iomux_v3_cfg_t txfs = MX35_PAD_STXFS4__AUDMUX_AUD4_TXFS;
  225. iomux_v3_cfg_t txd_gpio = MX35_PAD_STXD4__GPIO2_28;
  226. iomux_v3_cfg_t txd = MX35_PAD_STXD4__AUDMUX_AUD4_TXD;
  227. iomux_v3_cfg_t reset_gpio = MX35_PAD_SD2_CMD__GPIO2_0;
  228. int ret;
  229. ret = gpio_request(AC97_GPIO_TXFS, "SSI");
  230. if (ret)
  231. goto err1;
  232. ret = gpio_request(AC97_GPIO_TXD, "SSI");
  233. if (ret)
  234. goto err2;
  235. ret = gpio_request(AC97_GPIO_RESET, "SSI");
  236. if (ret)
  237. goto err3;
  238. mxc_iomux_v3_setup_pad(txfs_gpio);
  239. mxc_iomux_v3_setup_pad(txd_gpio);
  240. mxc_iomux_v3_setup_pad(reset_gpio);
  241. gpio_direction_output(AC97_GPIO_TXFS, 0);
  242. gpio_direction_output(AC97_GPIO_TXD, 0);
  243. /* cold reset */
  244. gpio_direction_output(AC97_GPIO_RESET, 0);
  245. udelay(10);
  246. gpio_direction_output(AC97_GPIO_RESET, 1);
  247. mxc_iomux_v3_setup_pad(txd);
  248. mxc_iomux_v3_setup_pad(txfs);
  249. gpio_free(AC97_GPIO_RESET);
  250. err3:
  251. gpio_free(AC97_GPIO_TXD);
  252. err2:
  253. gpio_free(AC97_GPIO_TXFS);
  254. err1:
  255. if (ret)
  256. printk("%s failed with %d\n", __func__, ret);
  257. mdelay(1);
  258. }
  259. static const struct imx_ssi_platform_data pcm043_ssi_pdata __initconst = {
  260. .ac97_reset = pcm043_ac97_cold_reset,
  261. .ac97_warm_reset = pcm043_ac97_warm_reset,
  262. .flags = IMX_SSI_USE_AC97,
  263. };
  264. static const struct mxc_nand_platform_data
  265. pcm037_nand_board_info __initconst = {
  266. .width = 1,
  267. .hw_ecc = 1,
  268. };
  269. static int pcm043_otg_init(struct platform_device *pdev)
  270. {
  271. return mx35_initialize_usb_hw(pdev->id, MXC_EHCI_INTERFACE_DIFF_UNI);
  272. }
  273. static struct mxc_usbh_platform_data otg_pdata __initdata = {
  274. .init = pcm043_otg_init,
  275. .portsc = MXC_EHCI_MODE_UTMI,
  276. };
  277. static int pcm043_usbh1_init(struct platform_device *pdev)
  278. {
  279. return mx35_initialize_usb_hw(pdev->id, MXC_EHCI_INTERFACE_SINGLE_UNI |
  280. MXC_EHCI_INTERNAL_PHY | MXC_EHCI_IPPUE_DOWN);
  281. }
  282. static const struct mxc_usbh_platform_data usbh1_pdata __initconst = {
  283. .init = pcm043_usbh1_init,
  284. .portsc = MXC_EHCI_MODE_SERIAL,
  285. };
  286. static const struct fsl_usb2_platform_data otg_device_pdata __initconst = {
  287. .operating_mode = FSL_USB2_DR_DEVICE,
  288. .phy_mode = FSL_USB2_PHY_UTMI,
  289. };
  290. static bool otg_mode_host __initdata;
  291. static int __init pcm043_otg_mode(char *options)
  292. {
  293. if (!strcmp(options, "host"))
  294. otg_mode_host = true;
  295. else if (!strcmp(options, "device"))
  296. otg_mode_host = false;
  297. else
  298. pr_info("otg_mode neither \"host\" nor \"device\". "
  299. "Defaulting to device\n");
  300. return 1;
  301. }
  302. __setup("otg_mode=", pcm043_otg_mode);
  303. static struct esdhc_platform_data sd1_pdata = {
  304. .wp_gpio = SD1_GPIO_WP,
  305. .cd_gpio = SD1_GPIO_CD,
  306. .wp_type = ESDHC_WP_GPIO,
  307. .cd_type = ESDHC_CD_GPIO,
  308. };
  309. /*
  310. * Board specific initialization.
  311. */
  312. static void __init pcm043_init(void)
  313. {
  314. imx35_soc_init();
  315. mxc_iomux_v3_setup_multiple_pads(pcm043_pads, ARRAY_SIZE(pcm043_pads));
  316. imx35_add_fec(NULL);
  317. platform_add_devices(devices, ARRAY_SIZE(devices));
  318. imx35_add_imx2_wdt();
  319. imx35_add_imx_uart0(&uart_pdata);
  320. imx35_add_mxc_nand(&pcm037_nand_board_info);
  321. imx35_add_imx_ssi(0, &pcm043_ssi_pdata);
  322. imx35_add_imx_uart1(&uart_pdata);
  323. i2c_register_board_info(0, pcm043_i2c_devices,
  324. ARRAY_SIZE(pcm043_i2c_devices));
  325. imx35_add_imx_i2c0(&pcm043_i2c0_data);
  326. imx35_add_ipu_core();
  327. imx35_add_mx3_sdc_fb(&mx3fb_pdata);
  328. if (otg_mode_host) {
  329. otg_pdata.otg = imx_otg_ulpi_create(ULPI_OTG_DRVVBUS |
  330. ULPI_OTG_DRVVBUS_EXT);
  331. if (otg_pdata.otg)
  332. imx35_add_mxc_ehci_otg(&otg_pdata);
  333. }
  334. imx35_add_mxc_ehci_hs(&usbh1_pdata);
  335. if (!otg_mode_host)
  336. imx35_add_fsl_usb2_udc(&otg_device_pdata);
  337. imx35_add_flexcan1(NULL);
  338. imx35_add_sdhci_esdhc_imx(0, &sd1_pdata);
  339. }
  340. static void __init pcm043_timer_init(void)
  341. {
  342. mx35_clocks_init();
  343. }
  344. static struct sys_timer pcm043_timer = {
  345. .init = pcm043_timer_init,
  346. };
  347. MACHINE_START(PCM043, "Phytec Phycore pcm043")
  348. /* Maintainer: Pengutronix */
  349. .atag_offset = 0x100,
  350. .map_io = mx35_map_io,
  351. .init_early = imx35_init_early,
  352. .init_irq = mx35_init_irq,
  353. .handle_irq = imx35_handle_irq,
  354. .timer = &pcm043_timer,
  355. .init_machine = pcm043_init,
  356. .restart = mxc_restart,
  357. MACHINE_END