mach-pcm043.c 10 KB

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