blob: a94343663997a2c988b8ce6dd32317c4b29c1642 [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 <mach/i2c.h>
40#include <asm/mach/time.h>
41#if defined(CONFIG_SPI_IMX) || defined(CONFIG_SPI_IMX_MODULE)
42#include <mach/spi.h>
43#endif
44#include <mach/imx-uart.h>
Sascha Hauerc8a68852010-02-08 16:42:28 +010045#include <mach/audmux.h>
46#include <mach/ssi.h>
Luotao Fu33731692009-08-06 11:19:39 +020047#include <mach/mxc_nand.h>
48#include <mach/irqs.h>
49#include <mach/mmc.h>
Sascha Hauereee7c492010-02-03 17:13:29 +010050#include <mach/mxc_ehci.h>
51#include <mach/ulpi.h>
Luotao Fu42216fc2010-06-18 09:23:18 +020052#include <mach/imxfb.h>
Luotao Fu33731692009-08-06 11:19:39 +020053
54#include "devices.h"
55
Sascha Hauereee7c492010-02-03 17:13:29 +010056#define OTG_PHY_CS_GPIO (GPIO_PORTB + 23)
57#define USBH2_PHY_CS_GPIO (GPIO_PORTB + 24)
58
Luotao Fu33731692009-08-06 11:19:39 +020059static int pca100_pins[] = {
60 /* UART1 */
61 PE12_PF_UART1_TXD,
62 PE13_PF_UART1_RXD,
63 PE14_PF_UART1_CTS,
64 PE15_PF_UART1_RTS,
65 /* SDHC */
66 PB4_PF_SD2_D0,
67 PB5_PF_SD2_D1,
68 PB6_PF_SD2_D2,
69 PB7_PF_SD2_D3,
70 PB8_PF_SD2_CMD,
71 PB9_PF_SD2_CLK,
72 /* FEC */
73 PD0_AIN_FEC_TXD0,
74 PD1_AIN_FEC_TXD1,
75 PD2_AIN_FEC_TXD2,
76 PD3_AIN_FEC_TXD3,
77 PD4_AOUT_FEC_RX_ER,
78 PD5_AOUT_FEC_RXD1,
79 PD6_AOUT_FEC_RXD2,
80 PD7_AOUT_FEC_RXD3,
81 PD8_AF_FEC_MDIO,
82 PD9_AIN_FEC_MDC,
83 PD10_AOUT_FEC_CRS,
84 PD11_AOUT_FEC_TX_CLK,
85 PD12_AOUT_FEC_RXD0,
86 PD13_AOUT_FEC_RX_DV,
87 PD14_AOUT_FEC_RX_CLK,
88 PD15_AOUT_FEC_COL,
89 PD16_AIN_FEC_TX_ER,
90 PF23_AIN_FEC_TX_EN,
91 /* SSI1 */
92 PC20_PF_SSI1_FS,
93 PC21_PF_SSI1_RXD,
94 PC22_PF_SSI1_TXD,
95 PC23_PF_SSI1_CLK,
96 /* onboard I2C */
97 PC5_PF_I2C2_SDA,
98 PC6_PF_I2C2_SCL,
99 /* external I2C */
100 PD17_PF_I2C_DATA,
101 PD18_PF_I2C_CLK,
102 /* SPI1 */
103 PD25_PF_CSPI1_RDY,
104 PD29_PF_CSPI1_SCLK,
105 PD30_PF_CSPI1_MISO,
106 PD31_PF_CSPI1_MOSI,
Sascha Hauereee7c492010-02-03 17:13:29 +0100107 /* OTG */
108 OTG_PHY_CS_GPIO | GPIO_GPIO | GPIO_OUT,
109 PC7_PF_USBOTG_DATA5,
110 PC8_PF_USBOTG_DATA6,
111 PC9_PF_USBOTG_DATA0,
112 PC10_PF_USBOTG_DATA2,
113 PC11_PF_USBOTG_DATA1,
114 PC12_PF_USBOTG_DATA4,
115 PC13_PF_USBOTG_DATA3,
116 PE0_PF_USBOTG_NXT,
117 PE1_PF_USBOTG_STP,
118 PE2_PF_USBOTG_DIR,
119 PE24_PF_USBOTG_CLK,
120 PE25_PF_USBOTG_DATA7,
121 /* USBH2 */
122 USBH2_PHY_CS_GPIO | GPIO_GPIO | GPIO_OUT,
123 PA0_PF_USBH2_CLK,
124 PA1_PF_USBH2_DIR,
125 PA2_PF_USBH2_DATA7,
126 PA3_PF_USBH2_NXT,
127 PA4_PF_USBH2_STP,
128 PD19_AF_USBH2_DATA4,
129 PD20_AF_USBH2_DATA3,
130 PD21_AF_USBH2_DATA6,
131 PD22_AF_USBH2_DATA0,
132 PD23_AF_USBH2_DATA2,
133 PD24_AF_USBH2_DATA1,
134 PD26_AF_USBH2_DATA5,
Luotao Fu42216fc2010-06-18 09:23:18 +0200135 /* display */
136 PA5_PF_LSCLK,
137 PA6_PF_LD0,
138 PA7_PF_LD1,
139 PA8_PF_LD2,
140 PA9_PF_LD3,
141 PA10_PF_LD4,
142 PA11_PF_LD5,
143 PA12_PF_LD6,
144 PA13_PF_LD7,
145 PA14_PF_LD8,
146 PA15_PF_LD9,
147 PA16_PF_LD10,
148 PA17_PF_LD11,
149 PA18_PF_LD12,
150 PA19_PF_LD13,
151 PA20_PF_LD14,
152 PA21_PF_LD15,
153 PA22_PF_LD16,
154 PA23_PF_LD17,
155 PA26_PF_PS,
156 PA28_PF_HSYNC,
157 PA29_PF_VSYNC,
158 PA31_PF_OE_ACD,
Luotao Fu33731692009-08-06 11:19:39 +0200159};
160
161static struct imxuart_platform_data uart_pdata = {
162 .flags = IMXUART_HAVE_RTSCTS,
163};
164
165static struct mxc_nand_platform_data pca100_nand_board_info = {
166 .width = 1,
167 .hw_ecc = 1,
168};
169
170static struct platform_device *platform_devices[] __initdata = {
171 &mxc_w1_master_device,
172 &mxc_fec_device,
Wolfram Sangf13899d2010-04-29 10:03:20 +0200173 &mxc_wdt,
Luotao Fu33731692009-08-06 11:19:39 +0200174};
175
176static struct imxi2c_platform_data pca100_i2c_1_data = {
177 .bitrate = 100000,
178};
179
180static struct at24_platform_data board_eeprom = {
181 .byte_len = 4096,
182 .page_size = 32,
183 .flags = AT24_FLAG_ADDR16,
184};
185
186static struct i2c_board_info pca100_i2c_devices[] = {
187 {
188 I2C_BOARD_INFO("at24", 0x52), /* E0=0, E1=1, E2=0 */
189 .platform_data = &board_eeprom,
190 }, {
191 I2C_BOARD_INFO("rtc-pcf8563", 0x51),
192 .type = "pcf8563"
193 }, {
194 I2C_BOARD_INFO("lm75", 0x4a),
195 .type = "lm75"
196 }
197};
198
199#if defined(CONFIG_SPI_IMX) || defined(CONFIG_SPI_IMX_MODULE)
200static struct spi_eeprom at25320 = {
201 .name = "at25320an",
202 .byte_len = 4096,
203 .page_size = 32,
204 .flags = EE_ADDR2,
205};
206
207static struct spi_board_info pca100_spi_board_info[] __initdata = {
208 {
209 .modalias = "at25",
210 .max_speed_hz = 30000,
211 .bus_num = 0,
212 .chip_select = 1,
213 .platform_data = &at25320,
214 },
215};
216
217static int pca100_spi_cs[] = {GPIO_PORTD + 28, GPIO_PORTD + 27};
218
219static struct spi_imx_master pca100_spi_0_data = {
220 .chipselect = pca100_spi_cs,
221 .num_chipselect = ARRAY_SIZE(pca100_spi_cs),
222};
223#endif
224
Sascha Hauerc8a68852010-02-08 16:42:28 +0100225static void pca100_ac97_warm_reset(struct snd_ac97 *ac97)
226{
227 mxc_gpio_mode(GPIO_PORTC | 20 | GPIO_GPIO | GPIO_OUT);
228 gpio_set_value(GPIO_PORTC + 20, 1);
229 udelay(2);
230 gpio_set_value(GPIO_PORTC + 20, 0);
231 mxc_gpio_mode(PC20_PF_SSI1_FS);
232 msleep(2);
233}
234
235static void pca100_ac97_cold_reset(struct snd_ac97 *ac97)
236{
237 mxc_gpio_mode(GPIO_PORTC | 20 | GPIO_GPIO | GPIO_OUT); /* FS */
238 gpio_set_value(GPIO_PORTC + 20, 0);
239 mxc_gpio_mode(GPIO_PORTC | 22 | GPIO_GPIO | GPIO_OUT); /* TX */
240 gpio_set_value(GPIO_PORTC + 22, 0);
241 mxc_gpio_mode(GPIO_PORTC | 28 | GPIO_GPIO | GPIO_OUT); /* reset */
242 gpio_set_value(GPIO_PORTC + 28, 0);
243 udelay(10);
244 gpio_set_value(GPIO_PORTC + 28, 1);
245 mxc_gpio_mode(PC20_PF_SSI1_FS);
246 mxc_gpio_mode(PC22_PF_SSI1_TXD);
247 msleep(2);
248}
249
250static struct imx_ssi_platform_data pca100_ssi_pdata = {
251 .ac97_reset = pca100_ac97_cold_reset,
252 .ac97_warm_reset = pca100_ac97_warm_reset,
253 .flags = IMX_SSI_USE_AC97,
254};
255
Luotao Fu33731692009-08-06 11:19:39 +0200256static int pca100_sdhc2_init(struct device *dev, irq_handler_t detect_irq,
257 void *data)
258{
259 int ret;
260
261 ret = request_irq(IRQ_GPIOC(29), detect_irq,
262 IRQF_DISABLED | IRQF_TRIGGER_FALLING,
263 "imx-mmc-detect", data);
264 if (ret)
265 printk(KERN_ERR
266 "pca100: Failed to reuest irq for sd/mmc detection\n");
267
268 return ret;
269}
270
271static void pca100_sdhc2_exit(struct device *dev, void *data)
272{
273 free_irq(IRQ_GPIOC(29), data);
274}
275
276static struct imxmmc_platform_data sdhc_pdata = {
277 .init = pca100_sdhc2_init,
278 .exit = pca100_sdhc2_exit,
279};
280
Wolfram Sangc18e8fa2010-05-21 06:52:06 +0200281#if defined(CONFIG_USB_ULPI)
Sascha Hauereee7c492010-02-03 17:13:29 +0100282static int otg_phy_init(struct platform_device *pdev)
283{
284 gpio_set_value(OTG_PHY_CS_GPIO, 0);
285 return 0;
286}
287
288static struct mxc_usbh_platform_data otg_pdata = {
289 .init = otg_phy_init,
290 .portsc = MXC_EHCI_MODE_ULPI,
291 .flags = MXC_EHCI_INTERFACE_DIFF_UNI,
292};
293
294static int usbh2_phy_init(struct platform_device *pdev)
295{
296 gpio_set_value(USBH2_PHY_CS_GPIO, 0);
297 return 0;
298}
299
300static struct mxc_usbh_platform_data usbh2_pdata = {
301 .init = usbh2_phy_init,
302 .portsc = MXC_EHCI_MODE_ULPI,
303 .flags = MXC_EHCI_INTERFACE_DIFF_UNI,
304};
Wolfram Sangc18e8fa2010-05-21 06:52:06 +0200305#endif
Sascha Hauereee7c492010-02-03 17:13:29 +0100306
307static struct fsl_usb2_platform_data otg_device_pdata = {
308 .operating_mode = FSL_USB2_DR_DEVICE,
309 .phy_mode = FSL_USB2_PHY_ULPI,
310};
311
312static int otg_mode_host;
313
314static int __init pca100_otg_mode(char *options)
315{
316 if (!strcmp(options, "host"))
317 otg_mode_host = 1;
318 else if (!strcmp(options, "device"))
319 otg_mode_host = 0;
320 else
321 pr_info("otg_mode neither \"host\" nor \"device\". "
322 "Defaulting to device\n");
323 return 0;
324}
325__setup("otg_mode=", pca100_otg_mode);
326
Luotao Fu42216fc2010-06-18 09:23:18 +0200327/* framebuffer info */
328static struct imx_fb_videomode pca100_fb_modes[] = {
329 {
330 .mode = {
331 .name = "EMERGING-ETV570G0DHU",
332 .refresh = 60,
333 .xres = 640,
334 .yres = 480,
335 .pixclock = 39722, /* in ps (25.175 MHz) */
336 .hsync_len = 30,
337 .left_margin = 114,
338 .right_margin = 16,
339 .vsync_len = 3,
340 .upper_margin = 32,
341 .lower_margin = 0,
342 },
343 /*
344 * TFT
345 * Pixel pol active high
346 * HSYNC active low
347 * VSYNC active low
348 * use HSYNC for ACD count
349 * line clock disable while idle
350 * always enable line clock even if no data
351 */
352 .pcr = 0xf0c08080,
353 .bpp = 16,
354 },
355};
356
357static struct imx_fb_platform_data pca100_fb_data = {
358 .mode = pca100_fb_modes,
359 .num_modes = ARRAY_SIZE(pca100_fb_modes),
360
361 .pwmr = 0x00A903FF,
362 .lscr1 = 0x00120300,
363 .dmacr = 0x00020010,
364};
365
Luotao Fu33731692009-08-06 11:19:39 +0200366static void __init pca100_init(void)
367{
368 int ret;
369
Sascha Hauerc8a68852010-02-08 16:42:28 +0100370 /* SSI unit */
371 mxc_audmux_v1_configure_port(MX27_AUDMUX_HPCR1_SSI0,
372 MXC_AUDMUX_V1_PCR_SYN | /* 4wire mode */
373 MXC_AUDMUX_V1_PCR_TFCSEL(3) |
374 MXC_AUDMUX_V1_PCR_TCLKDIR | /* clock is output */
375 MXC_AUDMUX_V1_PCR_RXDSEL(3));
376 mxc_audmux_v1_configure_port(3,
377 MXC_AUDMUX_V1_PCR_SYN | /* 4wire mode */
378 MXC_AUDMUX_V1_PCR_TFCSEL(0) |
379 MXC_AUDMUX_V1_PCR_TFSDIR |
380 MXC_AUDMUX_V1_PCR_RXDSEL(0));
381
Luotao Fu33731692009-08-06 11:19:39 +0200382 ret = mxc_gpio_setup_multiple_pins(pca100_pins,
383 ARRAY_SIZE(pca100_pins), "PCA100");
384 if (ret)
385 printk(KERN_ERR "pca100: Failed to setup pins (%d)\n", ret);
386
Sascha Hauerc8a68852010-02-08 16:42:28 +0100387 mxc_register_device(&imx_ssi_device0, &pca100_ssi_pdata);
388
Luotao Fu33731692009-08-06 11:19:39 +0200389 mxc_register_device(&mxc_uart_device0, &uart_pdata);
390
391 mxc_gpio_mode(GPIO_PORTC | 29 | GPIO_GPIO | GPIO_IN);
392 mxc_register_device(&mxc_sdhc_device1, &sdhc_pdata);
393
Uwe Kleine-König3636a142010-02-11 16:31:49 +0100394 mxc_register_device(&imx27_nand_device, &pca100_nand_board_info);
Luotao Fu33731692009-08-06 11:19:39 +0200395
396 /* only the i2c master 1 is used on this CPU card */
397 i2c_register_board_info(1, pca100_i2c_devices,
398 ARRAY_SIZE(pca100_i2c_devices));
399
400 mxc_register_device(&mxc_i2c_device1, &pca100_i2c_1_data);
401
402 mxc_gpio_mode(GPIO_PORTD | 28 | GPIO_GPIO | GPIO_OUT);
403 mxc_gpio_mode(GPIO_PORTD | 27 | GPIO_GPIO | GPIO_OUT);
404
405 /* GPIO0_IRQ */
406 mxc_gpio_mode(GPIO_PORTC | 31 | GPIO_GPIO | GPIO_IN);
407 /* GPIO1_IRQ */
408 mxc_gpio_mode(GPIO_PORTC | 25 | GPIO_GPIO | GPIO_IN);
409 /* GPIO2_IRQ */
410 mxc_gpio_mode(GPIO_PORTE | 5 | GPIO_GPIO | GPIO_IN);
411
412#if defined(CONFIG_SPI_IMX) || defined(CONFIG_SPI_IMX_MODULE)
413 spi_register_board_info(pca100_spi_board_info,
414 ARRAY_SIZE(pca100_spi_board_info));
415 mxc_register_device(&mxc_spi_device0, &pca100_spi_0_data);
416#endif
417
Sascha Hauereee7c492010-02-03 17:13:29 +0100418 gpio_request(OTG_PHY_CS_GPIO, "usb-otg-cs");
419 gpio_direction_output(OTG_PHY_CS_GPIO, 1);
420 gpio_request(USBH2_PHY_CS_GPIO, "usb-host2-cs");
421 gpio_direction_output(USBH2_PHY_CS_GPIO, 1);
422
423#if defined(CONFIG_USB_ULPI)
424 if (otg_mode_host) {
425 otg_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops,
426 USB_OTG_DRV_VBUS | USB_OTG_DRV_VBUS_EXT);
427
428 mxc_register_device(&mxc_otg_host, &otg_pdata);
429 }
430
431 usbh2_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops,
432 USB_OTG_DRV_VBUS | USB_OTG_DRV_VBUS_EXT);
433
434 mxc_register_device(&mxc_usbh2, &usbh2_pdata);
435#endif
436 if (!otg_mode_host) {
437 gpio_set_value(OTG_PHY_CS_GPIO, 0);
438 mxc_register_device(&mxc_otg_udc_device, &otg_device_pdata);
439 }
440
Luotao Fu42216fc2010-06-18 09:23:18 +0200441 mxc_register_device(&mxc_fb_device, &pca100_fb_data);
442
Luotao Fu33731692009-08-06 11:19:39 +0200443 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
444}
445
446static void __init pca100_timer_init(void)
447{
448 mx27_clocks_init(26000000);
449}
450
451static struct sys_timer pca100_timer = {
452 .init = pca100_timer_init,
453};
454
455MACHINE_START(PCA100, "phyCARD-i.MX27")
Uwe Kleine-König3f35d1f2009-12-09 11:32:11 +0100456 .phys_io = MX27_AIPI_BASE_ADDR,
457 .io_pg_offst = ((MX27_AIPI_BASE_ADDR_VIRT) >> 18) & 0xfffc,
Uwe Kleine-König34101232010-01-29 17:36:05 +0100458 .boot_params = MX27_PHYS_OFFSET + 0x100,
Luotao Fu33731692009-08-06 11:19:39 +0200459 .map_io = mx27_map_io,
Sascha Hauerf6f1bc62009-11-12 11:30:08 +0100460 .init_irq = mx27_init_irq,
Luotao Fu33731692009-08-06 11:19:39 +0200461 .init_machine = pca100_init,
462 .timer = &pca100_timer,
463MACHINE_END
464