2 * Copyright 2007 Robert Schwebel <r.schwebel@pengutronix.de>, Pengutronix
3 * Copyright (C) 2009 Sascha Hauer (kernel@pengutronix.de)
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.
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,
20 #include <linux/platform_device.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>
28 #include <linux/delay.h>
29 #include <linux/gpio.h>
30 #include <linux/usb/otg.h>
31 #include <linux/usb/ulpi.h>
33 #include <asm/mach/arch.h>
34 #include <asm/mach-types.h>
35 #include <mach/common.h>
36 #include <mach/hardware.h>
37 #include <mach/iomux-mx27.h>
38 #include <asm/mach/time.h>
39 #include <mach/ulpi.h>
41 #include "devices-imx27.h"
43 #define OTG_PHY_CS_GPIO (GPIO_PORTB + 23)
44 #define USBH2_PHY_CS_GPIO (GPIO_PORTB + 24)
45 #define SPI1_SS0 (GPIO_PORTD + 28)
46 #define SPI1_SS1 (GPIO_PORTD + 27)
47 #define SD2_CD (GPIO_PORTC + 29)
49 static const int pca100_pins
[] __initconst
= {
62 SD2_CD
| GPIO_GPIO
| GPIO_IN
,
99 OTG_PHY_CS_GPIO
| GPIO_GPIO
| GPIO_OUT
,
103 PC10_PF_USBOTG_DATA2
,
104 PC11_PF_USBOTG_DATA1
,
105 PC12_PF_USBOTG_DATA4
,
106 PC13_PF_USBOTG_DATA3
,
111 PE25_PF_USBOTG_DATA7
,
113 USBH2_PHY_CS_GPIO
| GPIO_GPIO
| GPIO_OUT
,
151 GPIO_PORTC
| 31 | GPIO_GPIO
| GPIO_IN
, /* GPIO0_IRQ */
152 GPIO_PORTC
| 25 | GPIO_GPIO
| GPIO_IN
, /* GPIO1_IRQ */
153 GPIO_PORTE
| 5 | GPIO_GPIO
| GPIO_IN
, /* GPIO2_IRQ */
156 static const struct imxuart_platform_data uart_pdata __initconst
= {
157 .flags
= IMXUART_HAVE_RTSCTS
,
160 static const struct mxc_nand_platform_data
161 pca100_nand_board_info __initconst
= {
166 static const struct imxi2c_platform_data pca100_i2c1_data __initconst
= {
170 static struct at24_platform_data board_eeprom
= {
173 .flags
= AT24_FLAG_ADDR16
,
176 static struct i2c_board_info pca100_i2c_devices
[] = {
178 I2C_BOARD_INFO("at24", 0x52), /* E0=0, E1=1, E2=0 */
179 .platform_data
= &board_eeprom
,
181 I2C_BOARD_INFO("pcf8563", 0x51),
183 I2C_BOARD_INFO("lm75", 0x4a),
187 static struct spi_eeprom at25320
= {
194 static struct spi_board_info pca100_spi_board_info
[] __initdata
= {
197 .max_speed_hz
= 30000,
200 .platform_data
= &at25320
,
204 static int pca100_spi_cs
[] = {SPI1_SS0
, SPI1_SS1
};
206 static const struct spi_imx_master pca100_spi0_data __initconst
= {
207 .chipselect
= pca100_spi_cs
,
208 .num_chipselect
= ARRAY_SIZE(pca100_spi_cs
),
211 static void pca100_ac97_warm_reset(struct snd_ac97
*ac97
)
213 mxc_gpio_mode(GPIO_PORTC
| 20 | GPIO_GPIO
| GPIO_OUT
);
214 gpio_set_value(GPIO_PORTC
+ 20, 1);
216 gpio_set_value(GPIO_PORTC
+ 20, 0);
217 mxc_gpio_mode(PC20_PF_SSI1_FS
);
221 static void pca100_ac97_cold_reset(struct snd_ac97
*ac97
)
223 mxc_gpio_mode(GPIO_PORTC
| 20 | GPIO_GPIO
| GPIO_OUT
); /* FS */
224 gpio_set_value(GPIO_PORTC
+ 20, 0);
225 mxc_gpio_mode(GPIO_PORTC
| 22 | GPIO_GPIO
| GPIO_OUT
); /* TX */
226 gpio_set_value(GPIO_PORTC
+ 22, 0);
227 mxc_gpio_mode(GPIO_PORTC
| 28 | GPIO_GPIO
| GPIO_OUT
); /* reset */
228 gpio_set_value(GPIO_PORTC
+ 28, 0);
230 gpio_set_value(GPIO_PORTC
+ 28, 1);
231 mxc_gpio_mode(PC20_PF_SSI1_FS
);
232 mxc_gpio_mode(PC22_PF_SSI1_TXD
);
236 static const struct imx_ssi_platform_data pca100_ssi_pdata __initconst
= {
237 .ac97_reset
= pca100_ac97_cold_reset
,
238 .ac97_warm_reset
= pca100_ac97_warm_reset
,
239 .flags
= IMX_SSI_USE_AC97
,
242 static int pca100_sdhc2_init(struct device
*dev
, irq_handler_t detect_irq
,
247 ret
= request_irq(gpio_to_irq(IMX_GPIO_NR(3, 29)), detect_irq
,
248 IRQF_DISABLED
| IRQF_TRIGGER_FALLING
,
249 "imx-mmc-detect", data
);
252 "pca100: Failed to reuest irq for sd/mmc detection\n");
257 static void pca100_sdhc2_exit(struct device
*dev
, void *data
)
259 free_irq(gpio_to_irq(IMX_GPIO_NR(3, 29)), data
);
262 static const struct imxmmc_platform_data sdhc_pdata __initconst
= {
263 .init
= pca100_sdhc2_init
,
264 .exit
= pca100_sdhc2_exit
,
267 static int otg_phy_init(struct platform_device
*pdev
)
269 gpio_set_value(OTG_PHY_CS_GPIO
, 0);
273 return mx27_initialize_usb_hw(pdev
->id
, MXC_EHCI_INTERFACE_DIFF_UNI
);
276 static struct mxc_usbh_platform_data otg_pdata __initdata
= {
277 .init
= otg_phy_init
,
278 .portsc
= MXC_EHCI_MODE_ULPI
,
281 static int usbh2_phy_init(struct platform_device
*pdev
)
283 gpio_set_value(USBH2_PHY_CS_GPIO
, 0);
287 return mx27_initialize_usb_hw(pdev
->id
, MXC_EHCI_INTERFACE_DIFF_UNI
);
290 static struct mxc_usbh_platform_data usbh2_pdata __initdata
= {
291 .init
= usbh2_phy_init
,
292 .portsc
= MXC_EHCI_MODE_ULPI
,
295 static const struct fsl_usb2_platform_data otg_device_pdata __initconst
= {
296 .operating_mode
= FSL_USB2_DR_DEVICE
,
297 .phy_mode
= FSL_USB2_PHY_ULPI
,
300 static bool otg_mode_host __initdata
;
302 static int __init
pca100_otg_mode(char *options
)
304 if (!strcmp(options
, "host"))
305 otg_mode_host
= true;
306 else if (!strcmp(options
, "device"))
307 otg_mode_host
= false;
309 pr_info("otg_mode neither \"host\" nor \"device\". "
310 "Defaulting to device\n");
313 __setup("otg_mode=", pca100_otg_mode
);
315 /* framebuffer info */
316 static struct imx_fb_videomode pca100_fb_modes
[] = {
319 .name
= "EMERGING-ETV570G0DHU",
323 .pixclock
= 39722, /* in ps (25.175 MHz) */
333 * Pixel pol active high
336 * use HSYNC for ACD count
337 * line clock disable while idle
338 * always enable line clock even if no data
345 static const struct imx_fb_platform_data pca100_fb_data __initconst
= {
346 .mode
= pca100_fb_modes
,
347 .num_modes
= ARRAY_SIZE(pca100_fb_modes
),
354 static void __init
pca100_init(void)
360 ret
= mxc_gpio_setup_multiple_pins(pca100_pins
,
361 ARRAY_SIZE(pca100_pins
), "PCA100");
363 printk(KERN_ERR
"pca100: Failed to setup pins (%d)\n", ret
);
365 imx27_add_imx_ssi(0, &pca100_ssi_pdata
);
367 imx27_add_imx_uart0(&uart_pdata
);
369 imx27_add_mxc_mmc(1, &sdhc_pdata
);
371 imx27_add_mxc_nand(&pca100_nand_board_info
);
373 /* only the i2c master 1 is used on this CPU card */
374 i2c_register_board_info(1, pca100_i2c_devices
,
375 ARRAY_SIZE(pca100_i2c_devices
));
377 imx27_add_imx_i2c(1, &pca100_i2c1_data
);
379 mxc_gpio_mode(GPIO_PORTD
| 28 | GPIO_GPIO
| GPIO_IN
);
380 mxc_gpio_mode(GPIO_PORTD
| 27 | GPIO_GPIO
| GPIO_IN
);
381 spi_register_board_info(pca100_spi_board_info
,
382 ARRAY_SIZE(pca100_spi_board_info
));
383 imx27_add_spi_imx0(&pca100_spi0_data
);
385 gpio_request(OTG_PHY_CS_GPIO
, "usb-otg-cs");
386 gpio_direction_output(OTG_PHY_CS_GPIO
, 1);
387 gpio_request(USBH2_PHY_CS_GPIO
, "usb-host2-cs");
388 gpio_direction_output(USBH2_PHY_CS_GPIO
, 1);
391 otg_pdata
.otg
= imx_otg_ulpi_create(ULPI_OTG_DRVVBUS
|
392 ULPI_OTG_DRVVBUS_EXT
);
395 imx27_add_mxc_ehci_otg(&otg_pdata
);
397 gpio_set_value(OTG_PHY_CS_GPIO
, 0);
398 imx27_add_fsl_usb2_udc(&otg_device_pdata
);
401 usbh2_pdata
.otg
= otg_ulpi_create(&mxc_ulpi_access_ops
,
402 ULPI_OTG_DRVVBUS
| ULPI_OTG_DRVVBUS_EXT
);
405 imx27_add_mxc_ehci_hs(2, &usbh2_pdata
);
407 imx27_add_imx_fb(&pca100_fb_data
);
410 imx27_add_imx2_wdt();
414 static void __init
pca100_timer_init(void)
416 mx27_clocks_init(26000000);
419 static struct sys_timer pca100_timer
= {
420 .init
= pca100_timer_init
,
423 MACHINE_START(PCA100
, "phyCARD-i.MX27")
424 .atag_offset
= 0x100,
425 .map_io
= mx27_map_io
,
426 .init_early
= imx27_init_early
,
427 .init_irq
= mx27_init_irq
,
428 .handle_irq
= imx27_handle_irq
,
429 .init_machine
= pca100_init
,
430 .timer
= &pca100_timer
,
431 .restart
= mxc_restart
,