blob: bbddc5a11c43b52dec562f719b0fe3fce044edc6 [file] [log] [blame]
Luotao Fu33731692009-08-06 11:19:39 +02001/*
2 * Copyright 2007 Robert Schwebel <r.schwebel@pengutronix.de>, Pengutronix
3 * Copyright (C) 2009 Sascha Hauer (kernel@pengutronix.de)
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
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., 51 Franklin Street, Fifth Floor, Boston,
17 * MA 02110-1301, USA.
18 */
19
20#include <linux/platform_device.h>
21#include <linux/io.h>
22#include <linux/i2c.h>
23#include <linux/i2c/at24.h>
24#include <linux/dma-mapping.h>
25#include <linux/spi/spi.h>
26#include <linux/spi/eeprom.h>
27#include <linux/irq.h>
Sascha Hauerc8a68852010-02-08 16:42:28 +010028#include <linux/delay.h>
Luotao Fu33731692009-08-06 11:19:39 +020029#include <linux/gpio.h>
Sascha Hauereee7c492010-02-03 17:13:29 +010030#include <linux/usb/otg.h>
31#include <linux/usb/ulpi.h>
Luotao Fu33731692009-08-06 11:19:39 +020032
33#include <asm/mach/arch.h>
34#include <asm/mach-types.h>
35#include <mach/common.h>
36#include <mach/hardware.h>
Uwe Kleine-Könige835d882010-02-16 11:07:49 +010037#include <mach/iomux-mx27.h>
Luotao Fu33731692009-08-06 11:19:39 +020038#include <asm/mach/time.h>
Sascha Hauerc8a68852010-02-08 16:42:28 +010039#include <mach/audmux.h>
Luotao Fu33731692009-08-06 11:19:39 +020040#include <mach/irqs.h>
Sascha Hauereee7c492010-02-03 17:13:29 +010041#include <mach/ulpi.h>
Luotao Fu33731692009-08-06 11:19:39 +020042
Uwe Kleine-König0e7a29a2010-06-16 07:35:31 +020043#include "devices-imx27.h"
Luotao Fu33731692009-08-06 11:19:39 +020044
Sascha Hauereee7c492010-02-03 17:13:29 +010045#define OTG_PHY_CS_GPIO (GPIO_PORTB + 23)
46#define USBH2_PHY_CS_GPIO (GPIO_PORTB + 24)
Luotao Fub725aba2010-06-18 09:23:19 +020047#define SPI1_SS0 (GPIO_PORTD + 28)
48#define SPI1_SS1 (GPIO_PORTD + 27)
49#define SD2_CD (GPIO_PORTC + 29)
Sascha Hauereee7c492010-02-03 17:13:29 +010050
Uwe Kleine-König6c80ee52010-09-28 21:53:31 +020051static const int pca100_pins[] __initconst = {
Luotao Fu33731692009-08-06 11:19:39 +020052 /* UART1 */
53 PE12_PF_UART1_TXD,
54 PE13_PF_UART1_RXD,
55 PE14_PF_UART1_CTS,
56 PE15_PF_UART1_RTS,
57 /* SDHC */
58 PB4_PF_SD2_D0,
59 PB5_PF_SD2_D1,
60 PB6_PF_SD2_D2,
61 PB7_PF_SD2_D3,
62 PB8_PF_SD2_CMD,
63 PB9_PF_SD2_CLK,
Luotao Fub725aba2010-06-18 09:23:19 +020064 SD2_CD | GPIO_GPIO | GPIO_IN,
Luotao Fu33731692009-08-06 11:19:39 +020065 /* FEC */
66 PD0_AIN_FEC_TXD0,
67 PD1_AIN_FEC_TXD1,
68 PD2_AIN_FEC_TXD2,
69 PD3_AIN_FEC_TXD3,
70 PD4_AOUT_FEC_RX_ER,
71 PD5_AOUT_FEC_RXD1,
72 PD6_AOUT_FEC_RXD2,
73 PD7_AOUT_FEC_RXD3,
74 PD8_AF_FEC_MDIO,
75 PD9_AIN_FEC_MDC,
76 PD10_AOUT_FEC_CRS,
77 PD11_AOUT_FEC_TX_CLK,
78 PD12_AOUT_FEC_RXD0,
79 PD13_AOUT_FEC_RX_DV,
80 PD14_AOUT_FEC_RX_CLK,
81 PD15_AOUT_FEC_COL,
82 PD16_AIN_FEC_TX_ER,
83 PF23_AIN_FEC_TX_EN,
84 /* SSI1 */
85 PC20_PF_SSI1_FS,
86 PC21_PF_SSI1_RXD,
87 PC22_PF_SSI1_TXD,
88 PC23_PF_SSI1_CLK,
89 /* onboard I2C */
90 PC5_PF_I2C2_SDA,
91 PC6_PF_I2C2_SCL,
92 /* external I2C */
93 PD17_PF_I2C_DATA,
94 PD18_PF_I2C_CLK,
95 /* SPI1 */
96 PD25_PF_CSPI1_RDY,
97 PD29_PF_CSPI1_SCLK,
98 PD30_PF_CSPI1_MISO,
99 PD31_PF_CSPI1_MOSI,
Sascha Hauereee7c492010-02-03 17:13:29 +0100100 /* OTG */
101 OTG_PHY_CS_GPIO | GPIO_GPIO | GPIO_OUT,
102 PC7_PF_USBOTG_DATA5,
103 PC8_PF_USBOTG_DATA6,
104 PC9_PF_USBOTG_DATA0,
105 PC10_PF_USBOTG_DATA2,
106 PC11_PF_USBOTG_DATA1,
107 PC12_PF_USBOTG_DATA4,
108 PC13_PF_USBOTG_DATA3,
109 PE0_PF_USBOTG_NXT,
110 PE1_PF_USBOTG_STP,
111 PE2_PF_USBOTG_DIR,
112 PE24_PF_USBOTG_CLK,
113 PE25_PF_USBOTG_DATA7,
114 /* USBH2 */
115 USBH2_PHY_CS_GPIO | GPIO_GPIO | GPIO_OUT,
116 PA0_PF_USBH2_CLK,
117 PA1_PF_USBH2_DIR,
118 PA2_PF_USBH2_DATA7,
119 PA3_PF_USBH2_NXT,
120 PA4_PF_USBH2_STP,
121 PD19_AF_USBH2_DATA4,
122 PD20_AF_USBH2_DATA3,
123 PD21_AF_USBH2_DATA6,
124 PD22_AF_USBH2_DATA0,
125 PD23_AF_USBH2_DATA2,
126 PD24_AF_USBH2_DATA1,
127 PD26_AF_USBH2_DATA5,
Luotao Fu42216fc2010-06-18 09:23:18 +0200128 /* display */
129 PA5_PF_LSCLK,
130 PA6_PF_LD0,
131 PA7_PF_LD1,
132 PA8_PF_LD2,
133 PA9_PF_LD3,
134 PA10_PF_LD4,
135 PA11_PF_LD5,
136 PA12_PF_LD6,
137 PA13_PF_LD7,
138 PA14_PF_LD8,
139 PA15_PF_LD9,
140 PA16_PF_LD10,
141 PA17_PF_LD11,
142 PA18_PF_LD12,
143 PA19_PF_LD13,
144 PA20_PF_LD14,
145 PA21_PF_LD15,
146 PA22_PF_LD16,
147 PA23_PF_LD17,
148 PA26_PF_PS,
149 PA28_PF_HSYNC,
150 PA29_PF_VSYNC,
151 PA31_PF_OE_ACD,
Luotao Fub725aba2010-06-18 09:23:19 +0200152 /* free GPIO */
153 GPIO_PORTC | 31 | GPIO_GPIO | GPIO_IN, /* GPIO0_IRQ */
154 GPIO_PORTC | 25 | GPIO_GPIO | GPIO_IN, /* GPIO1_IRQ */
155 GPIO_PORTE | 5 | GPIO_GPIO | GPIO_IN, /* GPIO2_IRQ */
Luotao Fu33731692009-08-06 11:19:39 +0200156};
157
Uwe Kleine-Königd5dac4a2010-06-23 09:36:01 +0200158static const struct imxuart_platform_data uart_pdata __initconst = {
Luotao Fu33731692009-08-06 11:19:39 +0200159 .flags = IMXUART_HAVE_RTSCTS,
160};
161
Uwe Kleine-König0e7a29a2010-06-16 07:35:31 +0200162static const struct mxc_nand_platform_data
163pca100_nand_board_info __initconst = {
Luotao Fu33731692009-08-06 11:19:39 +0200164 .width = 1,
165 .hw_ecc = 1,
166};
167
Uwe Kleine-Königc6987152010-06-16 17:25:40 +0200168static const struct imxi2c_platform_data pca100_i2c1_data __initconst = {
Luotao Fu33731692009-08-06 11:19:39 +0200169 .bitrate = 100000,
170};
171
172static struct at24_platform_data board_eeprom = {
173 .byte_len = 4096,
174 .page_size = 32,
175 .flags = AT24_FLAG_ADDR16,
176};
177
178static struct i2c_board_info pca100_i2c_devices[] = {
179 {
180 I2C_BOARD_INFO("at24", 0x52), /* E0=0, E1=1, E2=0 */
181 .platform_data = &board_eeprom,
182 }, {
Uwe Kleine-Königbd9e3102010-09-28 22:04:01 +0200183 I2C_BOARD_INFO("pcf8563", 0x51),
Luotao Fu33731692009-08-06 11:19:39 +0200184 }, {
185 I2C_BOARD_INFO("lm75", 0x4a),
Luotao Fu33731692009-08-06 11:19:39 +0200186 }
187};
188
Luotao Fu33731692009-08-06 11:19:39 +0200189static struct spi_eeprom at25320 = {
190 .name = "at25320an",
191 .byte_len = 4096,
192 .page_size = 32,
193 .flags = EE_ADDR2,
194};
195
196static struct spi_board_info pca100_spi_board_info[] __initdata = {
197 {
198 .modalias = "at25",
199 .max_speed_hz = 30000,
200 .bus_num = 0,
201 .chip_select = 1,
202 .platform_data = &at25320,
203 },
204};
205
Luotao Fub725aba2010-06-18 09:23:19 +0200206static int pca100_spi_cs[] = {SPI1_SS0, SPI1_SS1};
Luotao Fu33731692009-08-06 11:19:39 +0200207
Uwe Kleine-König7536cf92010-06-22 09:00:22 +0200208static const struct spi_imx_master pca100_spi0_data __initconst = {
Luotao Fu33731692009-08-06 11:19:39 +0200209 .chipselect = pca100_spi_cs,
210 .num_chipselect = ARRAY_SIZE(pca100_spi_cs),
211};
Luotao Fu33731692009-08-06 11:19:39 +0200212
Sascha Hauerc8a68852010-02-08 16:42:28 +0100213static void pca100_ac97_warm_reset(struct snd_ac97 *ac97)
214{
215 mxc_gpio_mode(GPIO_PORTC | 20 | GPIO_GPIO | GPIO_OUT);
216 gpio_set_value(GPIO_PORTC + 20, 1);
217 udelay(2);
218 gpio_set_value(GPIO_PORTC + 20, 0);
219 mxc_gpio_mode(PC20_PF_SSI1_FS);
220 msleep(2);
221}
222
223static void pca100_ac97_cold_reset(struct snd_ac97 *ac97)
224{
225 mxc_gpio_mode(GPIO_PORTC | 20 | GPIO_GPIO | GPIO_OUT); /* FS */
226 gpio_set_value(GPIO_PORTC + 20, 0);
227 mxc_gpio_mode(GPIO_PORTC | 22 | GPIO_GPIO | GPIO_OUT); /* TX */
228 gpio_set_value(GPIO_PORTC + 22, 0);
229 mxc_gpio_mode(GPIO_PORTC | 28 | GPIO_GPIO | GPIO_OUT); /* reset */
230 gpio_set_value(GPIO_PORTC + 28, 0);
231 udelay(10);
232 gpio_set_value(GPIO_PORTC + 28, 1);
233 mxc_gpio_mode(PC20_PF_SSI1_FS);
234 mxc_gpio_mode(PC22_PF_SSI1_TXD);
235 msleep(2);
236}
237
Uwe Kleine-König4697bb92010-08-25 17:37:45 +0200238static const struct imx_ssi_platform_data pca100_ssi_pdata __initconst = {
Sascha Hauerc8a68852010-02-08 16:42:28 +0100239 .ac97_reset = pca100_ac97_cold_reset,
240 .ac97_warm_reset = pca100_ac97_warm_reset,
241 .flags = IMX_SSI_USE_AC97,
242};
243
Luotao Fu33731692009-08-06 11:19:39 +0200244static int pca100_sdhc2_init(struct device *dev, irq_handler_t detect_irq,
245 void *data)
246{
247 int ret;
248
249 ret = request_irq(IRQ_GPIOC(29), detect_irq,
250 IRQF_DISABLED | IRQF_TRIGGER_FALLING,
251 "imx-mmc-detect", data);
252 if (ret)
253 printk(KERN_ERR
254 "pca100: Failed to reuest irq for sd/mmc detection\n");
255
256 return ret;
257}
258
259static void pca100_sdhc2_exit(struct device *dev, void *data)
260{
261 free_irq(IRQ_GPIOC(29), data);
262}
263
Uwe Kleine-König9d3d9452010-11-05 17:26:09 +0100264static const struct imxmmc_platform_data sdhc_pdata __initconst = {
Luotao Fu33731692009-08-06 11:19:39 +0200265 .init = pca100_sdhc2_init,
266 .exit = pca100_sdhc2_exit,
267};
268
Sascha Hauereee7c492010-02-03 17:13:29 +0100269static int otg_phy_init(struct platform_device *pdev)
270{
271 gpio_set_value(OTG_PHY_CS_GPIO, 0);
Sascha Hauer4bd597b2011-01-03 11:30:28 +0100272
273 mdelay(10);
274
275 return mx27_initialize_usb_hw(pdev->id, MXC_EHCI_INTERFACE_DIFF_UNI);
Sascha Hauereee7c492010-02-03 17:13:29 +0100276}
277
Uwe Kleine-König2eb42d52010-11-05 18:52:09 +0100278static struct mxc_usbh_platform_data otg_pdata __initdata = {
Sascha Hauereee7c492010-02-03 17:13:29 +0100279 .init = otg_phy_init,
280 .portsc = MXC_EHCI_MODE_ULPI,
Sascha Hauereee7c492010-02-03 17:13:29 +0100281};
282
283static int usbh2_phy_init(struct platform_device *pdev)
284{
285 gpio_set_value(USBH2_PHY_CS_GPIO, 0);
Sascha Hauer4bd597b2011-01-03 11:30:28 +0100286
287 mdelay(10);
288
289 return mx27_initialize_usb_hw(pdev->id, MXC_EHCI_INTERFACE_DIFF_UNI);
Sascha Hauereee7c492010-02-03 17:13:29 +0100290}
291
Uwe Kleine-König2eb42d52010-11-05 18:52:09 +0100292static struct mxc_usbh_platform_data usbh2_pdata __initdata = {
Sascha Hauereee7c492010-02-03 17:13:29 +0100293 .init = usbh2_phy_init,
294 .portsc = MXC_EHCI_MODE_ULPI,
Sascha Hauereee7c492010-02-03 17:13:29 +0100295};
296
Uwe Kleine-Königbd455ed2010-11-09 17:52:14 +0100297static const struct fsl_usb2_platform_data otg_device_pdata __initconst = {
Sascha Hauereee7c492010-02-03 17:13:29 +0100298 .operating_mode = FSL_USB2_DR_DEVICE,
299 .phy_mode = FSL_USB2_PHY_ULPI,
300};
301
302static int otg_mode_host;
303
304static int __init pca100_otg_mode(char *options)
305{
306 if (!strcmp(options, "host"))
307 otg_mode_host = 1;
308 else if (!strcmp(options, "device"))
309 otg_mode_host = 0;
310 else
311 pr_info("otg_mode neither \"host\" nor \"device\". "
312 "Defaulting to device\n");
313 return 0;
314}
315__setup("otg_mode=", pca100_otg_mode);
316
Luotao Fu42216fc2010-06-18 09:23:18 +0200317/* framebuffer info */
318static struct imx_fb_videomode pca100_fb_modes[] = {
319 {
320 .mode = {
321 .name = "EMERGING-ETV570G0DHU",
322 .refresh = 60,
323 .xres = 640,
324 .yres = 480,
325 .pixclock = 39722, /* in ps (25.175 MHz) */
326 .hsync_len = 30,
327 .left_margin = 114,
328 .right_margin = 16,
329 .vsync_len = 3,
330 .upper_margin = 32,
331 .lower_margin = 0,
332 },
333 /*
334 * TFT
335 * Pixel pol active high
336 * HSYNC active low
337 * VSYNC active low
338 * use HSYNC for ACD count
339 * line clock disable while idle
340 * always enable line clock even if no data
341 */
342 .pcr = 0xf0c08080,
343 .bpp = 16,
344 },
345};
346
Uwe Kleine-Königad851bf2010-11-04 17:07:48 +0100347static const struct imx_fb_platform_data pca100_fb_data __initconst = {
Luotao Fu42216fc2010-06-18 09:23:18 +0200348 .mode = pca100_fb_modes,
349 .num_modes = ARRAY_SIZE(pca100_fb_modes),
350
351 .pwmr = 0x00A903FF,
352 .lscr1 = 0x00120300,
353 .dmacr = 0x00020010,
354};
355
Luotao Fu33731692009-08-06 11:19:39 +0200356static void __init pca100_init(void)
357{
358 int ret;
359
Sascha Hauerc8a68852010-02-08 16:42:28 +0100360 /* SSI unit */
361 mxc_audmux_v1_configure_port(MX27_AUDMUX_HPCR1_SSI0,
362 MXC_AUDMUX_V1_PCR_SYN | /* 4wire mode */
363 MXC_AUDMUX_V1_PCR_TFCSEL(3) |
364 MXC_AUDMUX_V1_PCR_TCLKDIR | /* clock is output */
365 MXC_AUDMUX_V1_PCR_RXDSEL(3));
366 mxc_audmux_v1_configure_port(3,
367 MXC_AUDMUX_V1_PCR_SYN | /* 4wire mode */
368 MXC_AUDMUX_V1_PCR_TFCSEL(0) |
369 MXC_AUDMUX_V1_PCR_TFSDIR |
370 MXC_AUDMUX_V1_PCR_RXDSEL(0));
371
Luotao Fu33731692009-08-06 11:19:39 +0200372 ret = mxc_gpio_setup_multiple_pins(pca100_pins,
373 ARRAY_SIZE(pca100_pins), "PCA100");
374 if (ret)
375 printk(KERN_ERR "pca100: Failed to setup pins (%d)\n", ret);
376
Uwe Kleine-König4697bb92010-08-25 17:37:45 +0200377 imx27_add_imx_ssi(0, &pca100_ssi_pdata);
Sascha Hauerc8a68852010-02-08 16:42:28 +0100378
Uwe Kleine-Königd5dac4a2010-06-23 09:36:01 +0200379 imx27_add_imx_uart0(&uart_pdata);
Luotao Fu33731692009-08-06 11:19:39 +0200380
Uwe Kleine-König9d3d9452010-11-05 17:26:09 +0100381 imx27_add_mxc_mmc(1, &sdhc_pdata);
Luotao Fu33731692009-08-06 11:19:39 +0200382
Uwe Kleine-König0e7a29a2010-06-16 07:35:31 +0200383 imx27_add_mxc_nand(&pca100_nand_board_info);
Luotao Fu33731692009-08-06 11:19:39 +0200384
385 /* only the i2c master 1 is used on this CPU card */
386 i2c_register_board_info(1, pca100_i2c_devices,
387 ARRAY_SIZE(pca100_i2c_devices));
388
Uwe Kleine-König77a406d2010-08-25 12:19:50 +0200389 imx27_add_imx_i2c(1, &pca100_i2c1_data);
Luotao Fu33731692009-08-06 11:19:39 +0200390
Luotao Fub725aba2010-06-18 09:23:19 +0200391 mxc_gpio_mode(GPIO_PORTD | 28 | GPIO_GPIO | GPIO_IN);
392 mxc_gpio_mode(GPIO_PORTD | 27 | GPIO_GPIO | GPIO_IN);
Luotao Fu33731692009-08-06 11:19:39 +0200393 spi_register_board_info(pca100_spi_board_info,
394 ARRAY_SIZE(pca100_spi_board_info));
Uwe Kleine-König4df772d2010-08-10 21:18:57 +0100395 imx27_add_spi_imx0(&pca100_spi0_data);
Luotao Fu33731692009-08-06 11:19:39 +0200396
Sascha Hauereee7c492010-02-03 17:13:29 +0100397 gpio_request(OTG_PHY_CS_GPIO, "usb-otg-cs");
398 gpio_direction_output(OTG_PHY_CS_GPIO, 1);
399 gpio_request(USBH2_PHY_CS_GPIO, "usb-host2-cs");
400 gpio_direction_output(USBH2_PHY_CS_GPIO, 1);
401
Sascha Hauereee7c492010-02-03 17:13:29 +0100402 if (otg_mode_host) {
Sascha Hauer48f6b092011-03-02 09:27:42 +0100403 otg_pdata.otg = imx_otg_ulpi_create(ULPI_OTG_DRVVBUS |
404 ULPI_OTG_DRVVBUS_EXT);
Sascha Hauereee7c492010-02-03 17:13:29 +0100405
Sascha Hauer48f6b092011-03-02 09:27:42 +0100406 if (otg_pdata.otg)
407 imx27_add_mxc_ehci_otg(&otg_pdata);
408 } else {
409 gpio_set_value(OTG_PHY_CS_GPIO, 0);
410 imx27_add_fsl_usb2_udc(&otg_device_pdata);
Sascha Hauereee7c492010-02-03 17:13:29 +0100411 }
412
413 usbh2_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops,
Uwe Kleine-König70ddd472010-08-13 14:06:50 +0200414 ULPI_OTG_DRVVBUS | ULPI_OTG_DRVVBUS_EXT);
Sascha Hauereee7c492010-02-03 17:13:29 +0100415
Sascha Hauer48f6b092011-03-02 09:27:42 +0100416 if (usbh2_pdata.otg)
417 imx27_add_mxc_ehci_hs(2, &usbh2_pdata);
Sascha Hauereee7c492010-02-03 17:13:29 +0100418
Uwe Kleine-Königad851bf2010-11-04 17:07:48 +0100419 imx27_add_imx_fb(&pca100_fb_data);
Luotao Fu42216fc2010-06-18 09:23:18 +0200420
Uwe Kleine-König6bd96f32010-10-06 12:00:18 +0200421 imx27_add_fec(NULL);
Uwe Kleine-Könige0a19612010-11-04 10:09:10 +0100422 imx27_add_imx2_wdt(NULL);
Uwe Kleine-Königae71a562010-10-29 10:56:07 +0200423 imx27_add_mxc_w1(NULL);
Luotao Fu33731692009-08-06 11:19:39 +0200424}
425
426static void __init pca100_timer_init(void)
427{
428 mx27_clocks_init(26000000);
429}
430
431static struct sys_timer pca100_timer = {
432 .init = pca100_timer_init,
433};
434
435MACHINE_START(PCA100, "phyCARD-i.MX27")
Uwe Kleine-König3dac2192011-02-07 16:35:19 +0100436 .boot_params = MX27_PHYS_OFFSET + 0x100,
437 .map_io = mx27_map_io,
438 .init_early = imx27_init_early,
439 .init_irq = mx27_init_irq,
440 .init_machine = pca100_init,
441 .timer = &pca100_timer,
Luotao Fu33731692009-08-06 11:19:39 +0200442MACHINE_END