blob: 683374d9402473d1c975e82fe39ef5c59e4454cb [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>
32#include <linux/fsl_devices.h>
Luotao Fu33731692009-08-06 11:19:39 +020033
34#include <asm/mach/arch.h>
35#include <asm/mach-types.h>
36#include <mach/common.h>
37#include <mach/hardware.h>
Uwe Kleine-Könige835d882010-02-16 11:07:49 +010038#include <mach/iomux-mx27.h>
Luotao Fu33731692009-08-06 11:19:39 +020039#include <asm/mach/time.h>
Sascha Hauerc8a68852010-02-08 16:42:28 +010040#include <mach/audmux.h>
Luotao Fu33731692009-08-06 11:19:39 +020041#include <mach/mxc_nand.h>
42#include <mach/irqs.h>
Sascha Hauereee7c492010-02-03 17:13:29 +010043#include <mach/ulpi.h>
Luotao Fu33731692009-08-06 11:19:39 +020044
Uwe Kleine-König0e7a29a2010-06-16 07:35:31 +020045#include "devices-imx27.h"
Luotao Fu33731692009-08-06 11:19:39 +020046#include "devices.h"
47
Sascha Hauereee7c492010-02-03 17:13:29 +010048#define OTG_PHY_CS_GPIO (GPIO_PORTB + 23)
49#define USBH2_PHY_CS_GPIO (GPIO_PORTB + 24)
Luotao Fub725aba2010-06-18 09:23:19 +020050#define SPI1_SS0 (GPIO_PORTD + 28)
51#define SPI1_SS1 (GPIO_PORTD + 27)
52#define SD2_CD (GPIO_PORTC + 29)
Sascha Hauereee7c492010-02-03 17:13:29 +010053
Uwe Kleine-König6c80ee52010-09-28 21:53:31 +020054static const int pca100_pins[] __initconst = {
Luotao Fu33731692009-08-06 11:19:39 +020055 /* UART1 */
56 PE12_PF_UART1_TXD,
57 PE13_PF_UART1_RXD,
58 PE14_PF_UART1_CTS,
59 PE15_PF_UART1_RTS,
60 /* SDHC */
61 PB4_PF_SD2_D0,
62 PB5_PF_SD2_D1,
63 PB6_PF_SD2_D2,
64 PB7_PF_SD2_D3,
65 PB8_PF_SD2_CMD,
66 PB9_PF_SD2_CLK,
Luotao Fub725aba2010-06-18 09:23:19 +020067 SD2_CD | GPIO_GPIO | GPIO_IN,
Luotao Fu33731692009-08-06 11:19:39 +020068 /* FEC */
69 PD0_AIN_FEC_TXD0,
70 PD1_AIN_FEC_TXD1,
71 PD2_AIN_FEC_TXD2,
72 PD3_AIN_FEC_TXD3,
73 PD4_AOUT_FEC_RX_ER,
74 PD5_AOUT_FEC_RXD1,
75 PD6_AOUT_FEC_RXD2,
76 PD7_AOUT_FEC_RXD3,
77 PD8_AF_FEC_MDIO,
78 PD9_AIN_FEC_MDC,
79 PD10_AOUT_FEC_CRS,
80 PD11_AOUT_FEC_TX_CLK,
81 PD12_AOUT_FEC_RXD0,
82 PD13_AOUT_FEC_RX_DV,
83 PD14_AOUT_FEC_RX_CLK,
84 PD15_AOUT_FEC_COL,
85 PD16_AIN_FEC_TX_ER,
86 PF23_AIN_FEC_TX_EN,
87 /* SSI1 */
88 PC20_PF_SSI1_FS,
89 PC21_PF_SSI1_RXD,
90 PC22_PF_SSI1_TXD,
91 PC23_PF_SSI1_CLK,
92 /* onboard I2C */
93 PC5_PF_I2C2_SDA,
94 PC6_PF_I2C2_SCL,
95 /* external I2C */
96 PD17_PF_I2C_DATA,
97 PD18_PF_I2C_CLK,
98 /* SPI1 */
99 PD25_PF_CSPI1_RDY,
100 PD29_PF_CSPI1_SCLK,
101 PD30_PF_CSPI1_MISO,
102 PD31_PF_CSPI1_MOSI,
Sascha Hauereee7c492010-02-03 17:13:29 +0100103 /* OTG */
104 OTG_PHY_CS_GPIO | GPIO_GPIO | GPIO_OUT,
105 PC7_PF_USBOTG_DATA5,
106 PC8_PF_USBOTG_DATA6,
107 PC9_PF_USBOTG_DATA0,
108 PC10_PF_USBOTG_DATA2,
109 PC11_PF_USBOTG_DATA1,
110 PC12_PF_USBOTG_DATA4,
111 PC13_PF_USBOTG_DATA3,
112 PE0_PF_USBOTG_NXT,
113 PE1_PF_USBOTG_STP,
114 PE2_PF_USBOTG_DIR,
115 PE24_PF_USBOTG_CLK,
116 PE25_PF_USBOTG_DATA7,
117 /* USBH2 */
118 USBH2_PHY_CS_GPIO | GPIO_GPIO | GPIO_OUT,
119 PA0_PF_USBH2_CLK,
120 PA1_PF_USBH2_DIR,
121 PA2_PF_USBH2_DATA7,
122 PA3_PF_USBH2_NXT,
123 PA4_PF_USBH2_STP,
124 PD19_AF_USBH2_DATA4,
125 PD20_AF_USBH2_DATA3,
126 PD21_AF_USBH2_DATA6,
127 PD22_AF_USBH2_DATA0,
128 PD23_AF_USBH2_DATA2,
129 PD24_AF_USBH2_DATA1,
130 PD26_AF_USBH2_DATA5,
Luotao Fu42216fc2010-06-18 09:23:18 +0200131 /* display */
132 PA5_PF_LSCLK,
133 PA6_PF_LD0,
134 PA7_PF_LD1,
135 PA8_PF_LD2,
136 PA9_PF_LD3,
137 PA10_PF_LD4,
138 PA11_PF_LD5,
139 PA12_PF_LD6,
140 PA13_PF_LD7,
141 PA14_PF_LD8,
142 PA15_PF_LD9,
143 PA16_PF_LD10,
144 PA17_PF_LD11,
145 PA18_PF_LD12,
146 PA19_PF_LD13,
147 PA20_PF_LD14,
148 PA21_PF_LD15,
149 PA22_PF_LD16,
150 PA23_PF_LD17,
151 PA26_PF_PS,
152 PA28_PF_HSYNC,
153 PA29_PF_VSYNC,
154 PA31_PF_OE_ACD,
Luotao Fub725aba2010-06-18 09:23:19 +0200155 /* free GPIO */
156 GPIO_PORTC | 31 | GPIO_GPIO | GPIO_IN, /* GPIO0_IRQ */
157 GPIO_PORTC | 25 | GPIO_GPIO | GPIO_IN, /* GPIO1_IRQ */
158 GPIO_PORTE | 5 | GPIO_GPIO | GPIO_IN, /* GPIO2_IRQ */
Luotao Fu33731692009-08-06 11:19:39 +0200159};
160
Uwe Kleine-Königd5dac4a2010-06-23 09:36:01 +0200161static const struct imxuart_platform_data uart_pdata __initconst = {
Luotao Fu33731692009-08-06 11:19:39 +0200162 .flags = IMXUART_HAVE_RTSCTS,
163};
164
Uwe Kleine-König0e7a29a2010-06-16 07:35:31 +0200165static const struct mxc_nand_platform_data
166pca100_nand_board_info __initconst = {
Luotao Fu33731692009-08-06 11:19:39 +0200167 .width = 1,
168 .hw_ecc = 1,
169};
170
Uwe Kleine-Königc6987152010-06-16 17:25:40 +0200171static const struct imxi2c_platform_data pca100_i2c1_data __initconst = {
Luotao Fu33731692009-08-06 11:19:39 +0200172 .bitrate = 100000,
173};
174
175static struct at24_platform_data board_eeprom = {
176 .byte_len = 4096,
177 .page_size = 32,
178 .flags = AT24_FLAG_ADDR16,
179};
180
181static struct i2c_board_info pca100_i2c_devices[] = {
182 {
183 I2C_BOARD_INFO("at24", 0x52), /* E0=0, E1=1, E2=0 */
184 .platform_data = &board_eeprom,
185 }, {
Uwe Kleine-Königbd9e3102010-09-28 22:04:01 +0200186 I2C_BOARD_INFO("pcf8563", 0x51),
Luotao Fu33731692009-08-06 11:19:39 +0200187 }, {
188 I2C_BOARD_INFO("lm75", 0x4a),
Luotao Fu33731692009-08-06 11:19:39 +0200189 }
190};
191
192#if defined(CONFIG_SPI_IMX) || defined(CONFIG_SPI_IMX_MODULE)
193static struct spi_eeprom at25320 = {
194 .name = "at25320an",
195 .byte_len = 4096,
196 .page_size = 32,
197 .flags = EE_ADDR2,
198};
199
200static struct spi_board_info pca100_spi_board_info[] __initdata = {
201 {
202 .modalias = "at25",
203 .max_speed_hz = 30000,
204 .bus_num = 0,
205 .chip_select = 1,
206 .platform_data = &at25320,
207 },
208};
209
Luotao Fub725aba2010-06-18 09:23:19 +0200210static int pca100_spi_cs[] = {SPI1_SS0, SPI1_SS1};
Luotao Fu33731692009-08-06 11:19:39 +0200211
Uwe Kleine-König7536cf92010-06-22 09:00:22 +0200212static const struct spi_imx_master pca100_spi0_data __initconst = {
Luotao Fu33731692009-08-06 11:19:39 +0200213 .chipselect = pca100_spi_cs,
214 .num_chipselect = ARRAY_SIZE(pca100_spi_cs),
215};
216#endif
217
Sascha Hauerc8a68852010-02-08 16:42:28 +0100218static void pca100_ac97_warm_reset(struct snd_ac97 *ac97)
219{
220 mxc_gpio_mode(GPIO_PORTC | 20 | GPIO_GPIO | GPIO_OUT);
221 gpio_set_value(GPIO_PORTC + 20, 1);
222 udelay(2);
223 gpio_set_value(GPIO_PORTC + 20, 0);
224 mxc_gpio_mode(PC20_PF_SSI1_FS);
225 msleep(2);
226}
227
228static void pca100_ac97_cold_reset(struct snd_ac97 *ac97)
229{
230 mxc_gpio_mode(GPIO_PORTC | 20 | GPIO_GPIO | GPIO_OUT); /* FS */
231 gpio_set_value(GPIO_PORTC + 20, 0);
232 mxc_gpio_mode(GPIO_PORTC | 22 | GPIO_GPIO | GPIO_OUT); /* TX */
233 gpio_set_value(GPIO_PORTC + 22, 0);
234 mxc_gpio_mode(GPIO_PORTC | 28 | GPIO_GPIO | GPIO_OUT); /* reset */
235 gpio_set_value(GPIO_PORTC + 28, 0);
236 udelay(10);
237 gpio_set_value(GPIO_PORTC + 28, 1);
238 mxc_gpio_mode(PC20_PF_SSI1_FS);
239 mxc_gpio_mode(PC22_PF_SSI1_TXD);
240 msleep(2);
241}
242
Uwe Kleine-König4697bb922010-08-25 17:37:45 +0200243static const struct imx_ssi_platform_data pca100_ssi_pdata __initconst = {
Sascha Hauerc8a68852010-02-08 16:42:28 +0100244 .ac97_reset = pca100_ac97_cold_reset,
245 .ac97_warm_reset = pca100_ac97_warm_reset,
246 .flags = IMX_SSI_USE_AC97,
247};
248
Luotao Fu33731692009-08-06 11:19:39 +0200249static int pca100_sdhc2_init(struct device *dev, irq_handler_t detect_irq,
250 void *data)
251{
252 int ret;
253
254 ret = request_irq(IRQ_GPIOC(29), detect_irq,
255 IRQF_DISABLED | IRQF_TRIGGER_FALLING,
256 "imx-mmc-detect", data);
257 if (ret)
258 printk(KERN_ERR
259 "pca100: Failed to reuest irq for sd/mmc detection\n");
260
261 return ret;
262}
263
264static void pca100_sdhc2_exit(struct device *dev, void *data)
265{
266 free_irq(IRQ_GPIOC(29), data);
267}
268
Uwe Kleine-König9d3d9452010-11-05 17:26:09 +0100269static const struct imxmmc_platform_data sdhc_pdata __initconst = {
Luotao Fu33731692009-08-06 11:19:39 +0200270 .init = pca100_sdhc2_init,
271 .exit = pca100_sdhc2_exit,
272};
273
Wolfram Sangc18e8fa2010-05-21 06:52:06 +0200274#if defined(CONFIG_USB_ULPI)
Sascha Hauereee7c492010-02-03 17:13:29 +0100275static int otg_phy_init(struct platform_device *pdev)
276{
277 gpio_set_value(OTG_PHY_CS_GPIO, 0);
278 return 0;
279}
280
Uwe Kleine-König2eb42d52010-11-05 18:52:09 +0100281static struct mxc_usbh_platform_data otg_pdata __initdata = {
Sascha Hauereee7c492010-02-03 17:13:29 +0100282 .init = otg_phy_init,
283 .portsc = MXC_EHCI_MODE_ULPI,
284 .flags = MXC_EHCI_INTERFACE_DIFF_UNI,
285};
286
287static int usbh2_phy_init(struct platform_device *pdev)
288{
289 gpio_set_value(USBH2_PHY_CS_GPIO, 0);
290 return 0;
291}
292
Uwe Kleine-König2eb42d52010-11-05 18:52:09 +0100293static struct mxc_usbh_platform_data usbh2_pdata __initdata = {
Sascha Hauereee7c492010-02-03 17:13:29 +0100294 .init = usbh2_phy_init,
295 .portsc = MXC_EHCI_MODE_ULPI,
296 .flags = MXC_EHCI_INTERFACE_DIFF_UNI,
297};
Wolfram Sangc18e8fa2010-05-21 06:52:06 +0200298#endif
Sascha Hauereee7c492010-02-03 17:13:29 +0100299
300static struct fsl_usb2_platform_data otg_device_pdata = {
301 .operating_mode = FSL_USB2_DR_DEVICE,
302 .phy_mode = FSL_USB2_PHY_ULPI,
303};
304
305static int otg_mode_host;
306
307static int __init pca100_otg_mode(char *options)
308{
309 if (!strcmp(options, "host"))
310 otg_mode_host = 1;
311 else if (!strcmp(options, "device"))
312 otg_mode_host = 0;
313 else
314 pr_info("otg_mode neither \"host\" nor \"device\". "
315 "Defaulting to device\n");
316 return 0;
317}
318__setup("otg_mode=", pca100_otg_mode);
319
Luotao Fu42216fc2010-06-18 09:23:18 +0200320/* framebuffer info */
321static struct imx_fb_videomode pca100_fb_modes[] = {
322 {
323 .mode = {
324 .name = "EMERGING-ETV570G0DHU",
325 .refresh = 60,
326 .xres = 640,
327 .yres = 480,
328 .pixclock = 39722, /* in ps (25.175 MHz) */
329 .hsync_len = 30,
330 .left_margin = 114,
331 .right_margin = 16,
332 .vsync_len = 3,
333 .upper_margin = 32,
334 .lower_margin = 0,
335 },
336 /*
337 * TFT
338 * Pixel pol active high
339 * HSYNC active low
340 * VSYNC active low
341 * use HSYNC for ACD count
342 * line clock disable while idle
343 * always enable line clock even if no data
344 */
345 .pcr = 0xf0c08080,
346 .bpp = 16,
347 },
348};
349
Uwe Kleine-Königad851bf2010-11-04 17:07:48 +0100350static const struct imx_fb_platform_data pca100_fb_data __initconst = {
Luotao Fu42216fc2010-06-18 09:23:18 +0200351 .mode = pca100_fb_modes,
352 .num_modes = ARRAY_SIZE(pca100_fb_modes),
353
354 .pwmr = 0x00A903FF,
355 .lscr1 = 0x00120300,
356 .dmacr = 0x00020010,
357};
358
Luotao Fu33731692009-08-06 11:19:39 +0200359static void __init pca100_init(void)
360{
361 int ret;
362
Sascha Hauerc8a68852010-02-08 16:42:28 +0100363 /* SSI unit */
364 mxc_audmux_v1_configure_port(MX27_AUDMUX_HPCR1_SSI0,
365 MXC_AUDMUX_V1_PCR_SYN | /* 4wire mode */
366 MXC_AUDMUX_V1_PCR_TFCSEL(3) |
367 MXC_AUDMUX_V1_PCR_TCLKDIR | /* clock is output */
368 MXC_AUDMUX_V1_PCR_RXDSEL(3));
369 mxc_audmux_v1_configure_port(3,
370 MXC_AUDMUX_V1_PCR_SYN | /* 4wire mode */
371 MXC_AUDMUX_V1_PCR_TFCSEL(0) |
372 MXC_AUDMUX_V1_PCR_TFSDIR |
373 MXC_AUDMUX_V1_PCR_RXDSEL(0));
374
Luotao Fu33731692009-08-06 11:19:39 +0200375 ret = mxc_gpio_setup_multiple_pins(pca100_pins,
376 ARRAY_SIZE(pca100_pins), "PCA100");
377 if (ret)
378 printk(KERN_ERR "pca100: Failed to setup pins (%d)\n", ret);
379
Uwe Kleine-König4697bb922010-08-25 17:37:45 +0200380 imx27_add_imx_ssi(0, &pca100_ssi_pdata);
Sascha Hauerc8a68852010-02-08 16:42:28 +0100381
Uwe Kleine-Königd5dac4a2010-06-23 09:36:01 +0200382 imx27_add_imx_uart0(&uart_pdata);
Luotao Fu33731692009-08-06 11:19:39 +0200383
Uwe Kleine-König9d3d9452010-11-05 17:26:09 +0100384 imx27_add_mxc_mmc(1, &sdhc_pdata);
Luotao Fu33731692009-08-06 11:19:39 +0200385
Uwe Kleine-König0e7a29a2010-06-16 07:35:31 +0200386 imx27_add_mxc_nand(&pca100_nand_board_info);
Luotao Fu33731692009-08-06 11:19:39 +0200387
388 /* only the i2c master 1 is used on this CPU card */
389 i2c_register_board_info(1, pca100_i2c_devices,
390 ARRAY_SIZE(pca100_i2c_devices));
391
Uwe Kleine-König77a406d2010-08-25 12:19:50 +0200392 imx27_add_imx_i2c(1, &pca100_i2c1_data);
Luotao Fu33731692009-08-06 11:19:39 +0200393
Luotao Fu33731692009-08-06 11:19:39 +0200394#if defined(CONFIG_SPI_IMX) || defined(CONFIG_SPI_IMX_MODULE)
Luotao Fub725aba2010-06-18 09:23:19 +0200395 mxc_gpio_mode(GPIO_PORTD | 28 | GPIO_GPIO | GPIO_IN);
396 mxc_gpio_mode(GPIO_PORTD | 27 | GPIO_GPIO | GPIO_IN);
Luotao Fu33731692009-08-06 11:19:39 +0200397 spi_register_board_info(pca100_spi_board_info,
398 ARRAY_SIZE(pca100_spi_board_info));
Uwe Kleine-König4df772d2010-08-10 21:18:57 +0100399 imx27_add_spi_imx0(&pca100_spi0_data);
Luotao Fu33731692009-08-06 11:19:39 +0200400#endif
401
Sascha Hauereee7c492010-02-03 17:13:29 +0100402 gpio_request(OTG_PHY_CS_GPIO, "usb-otg-cs");
403 gpio_direction_output(OTG_PHY_CS_GPIO, 1);
404 gpio_request(USBH2_PHY_CS_GPIO, "usb-host2-cs");
405 gpio_direction_output(USBH2_PHY_CS_GPIO, 1);
406
407#if defined(CONFIG_USB_ULPI)
408 if (otg_mode_host) {
409 otg_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops,
Uwe Kleine-König70ddd472010-08-13 14:06:50 +0200410 ULPI_OTG_DRVVBUS | ULPI_OTG_DRVVBUS_EXT);
Sascha Hauereee7c492010-02-03 17:13:29 +0100411
Uwe Kleine-König2eb42d52010-11-05 18:52:09 +0100412 imx27_add_mxc_ehci_otg(&otg_pdata);
Sascha Hauereee7c492010-02-03 17:13:29 +0100413 }
414
415 usbh2_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops,
Uwe Kleine-König70ddd472010-08-13 14:06:50 +0200416 ULPI_OTG_DRVVBUS | ULPI_OTG_DRVVBUS_EXT);
Sascha Hauereee7c492010-02-03 17:13:29 +0100417
Uwe Kleine-König2eb42d52010-11-05 18:52:09 +0100418 imx27_add_mxc_ehci_hs(2, &usbh2_pdata);
Sascha Hauereee7c492010-02-03 17:13:29 +0100419#endif
420 if (!otg_mode_host) {
421 gpio_set_value(OTG_PHY_CS_GPIO, 0);
422 mxc_register_device(&mxc_otg_udc_device, &otg_device_pdata);
423 }
424
Uwe Kleine-Königad851bf2010-11-04 17:07:48 +0100425 imx27_add_imx_fb(&pca100_fb_data);
Luotao Fu42216fc2010-06-18 09:23:18 +0200426
Uwe Kleine-König6bd96f32010-10-06 12:00:18 +0200427 imx27_add_fec(NULL);
Uwe Kleine-Könige0a19612010-11-04 10:09:10 +0100428 imx27_add_imx2_wdt(NULL);
Uwe Kleine-Königae71a562010-10-29 10:56:07 +0200429 imx27_add_mxc_w1(NULL);
Luotao Fu33731692009-08-06 11:19:39 +0200430}
431
432static void __init pca100_timer_init(void)
433{
434 mx27_clocks_init(26000000);
435}
436
437static struct sys_timer pca100_timer = {
438 .init = pca100_timer_init,
439};
440
441MACHINE_START(PCA100, "phyCARD-i.MX27")
Uwe Kleine-König34101232010-01-29 17:36:05 +0100442 .boot_params = MX27_PHYS_OFFSET + 0x100,
Luotao Fu33731692009-08-06 11:19:39 +0200443 .map_io = mx27_map_io,
Sascha Hauerf6f1bc62009-11-12 11:30:08 +0100444 .init_irq = mx27_init_irq,
Luotao Fu33731692009-08-06 11:19:39 +0200445 .init_machine = pca100_init,
446 .timer = &pca100_timer,
447MACHINE_END
448