2 * LILLY-1131 development board support
4 * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de>
6 * based on code for other MX31 boards,
8 * Copyright 2005-2007 Freescale Semiconductor
9 * Copyright (c) 2009 Alberto Panizzo <maramaopercheseimorto@gmail.com>
10 * Copyright (C) 2009 Valentin Longchamp, EPFL Mobots group
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
23 #include <linux/kernel.h>
24 #include <linux/types.h>
25 #include <linux/init.h>
26 #include <linux/gpio.h>
27 #include <linux/platform_device.h>
29 #include <asm/mach-types.h>
30 #include <asm/mach/arch.h>
31 #include <asm/mach/map.h>
33 #include <mach/hardware.h>
34 #include <mach/common.h>
35 #include <mach/iomux-mx3.h>
36 #include <mach/board-mx31lilly.h>
37 #include <mach/mx3fb.h>
40 #include "devices-imx31.h"
44 * This file contains board-specific initialization routines for the
45 * LILLY-1131 development board. If you design an own baseboard for the
46 * module, use this file as base for support code.
49 static unsigned int lilly_db_board_pins
[] __initdata
= {
58 MX31_PIN_CSPI3_MOSI__RXD3
,
59 MX31_PIN_CSPI3_MISO__TXD3
,
60 MX31_PIN_CSPI3_SCLK__RTS3
,
61 MX31_PIN_CSPI3_SPI_RDY__CTS3
,
62 MX31_PIN_SD1_DATA3__SD1_DATA3
,
63 MX31_PIN_SD1_DATA2__SD1_DATA2
,
64 MX31_PIN_SD1_DATA1__SD1_DATA1
,
65 MX31_PIN_SD1_DATA0__SD1_DATA0
,
66 MX31_PIN_SD1_CLK__SD1_CLK
,
67 MX31_PIN_SD1_CMD__SD1_CMD
,
86 MX31_PIN_VSYNC3__VSYNC3
,
87 MX31_PIN_HSYNC__HSYNC
,
88 MX31_PIN_FPSHIFT__FPSHIFT
,
89 MX31_PIN_DRDY0__DRDY0
,
90 MX31_PIN_CONTRAST__CONTRAST
,
94 static const struct imxuart_platform_data uart_pdata __initconst
= {
95 .flags
= IMXUART_HAVE_RTSCTS
,
100 static int mxc_mmc1_get_ro(struct device
*dev
)
102 return gpio_get_value(IOMUX_TO_GPIO(MX31_PIN_LCS0
));
105 static int gpio_det
, gpio_wp
;
107 #define MMC_PAD_CFG (PAD_CTL_DRV_MAX | PAD_CTL_SRE_FAST | PAD_CTL_HYS_CMOS | \
108 PAD_CTL_ODE_CMOS | PAD_CTL_100K_PU)
110 static int mxc_mmc1_init(struct device
*dev
,
111 irq_handler_t detect_irq
, void *data
)
115 gpio_det
= IOMUX_TO_GPIO(MX31_PIN_GPIO1_1
);
116 gpio_wp
= IOMUX_TO_GPIO(MX31_PIN_LCS0
);
118 mxc_iomux_set_pad(MX31_PIN_SD1_DATA0
, MMC_PAD_CFG
);
119 mxc_iomux_set_pad(MX31_PIN_SD1_DATA1
, MMC_PAD_CFG
);
120 mxc_iomux_set_pad(MX31_PIN_SD1_DATA2
, MMC_PAD_CFG
);
121 mxc_iomux_set_pad(MX31_PIN_SD1_DATA3
, MMC_PAD_CFG
);
122 mxc_iomux_set_pad(MX31_PIN_SD1_CLK
, MMC_PAD_CFG
);
123 mxc_iomux_set_pad(MX31_PIN_SD1_CMD
, MMC_PAD_CFG
);
125 ret
= gpio_request(gpio_det
, "MMC detect");
129 ret
= gpio_request(gpio_wp
, "MMC w/p");
133 gpio_direction_input(gpio_det
);
134 gpio_direction_input(gpio_wp
);
136 ret
= request_irq(IOMUX_TO_IRQ(MX31_PIN_GPIO1_1
), detect_irq
,
137 IRQF_DISABLED
| IRQF_TRIGGER_FALLING
,
153 static void mxc_mmc1_exit(struct device
*dev
, void *data
)
157 free_irq(IOMUX_TO_IRQ(MX31_PIN_GPIO1_1
), data
);
160 static const struct imxmmc_platform_data mmc_pdata __initconst
= {
161 .get_ro
= mxc_mmc1_get_ro
,
162 .init
= mxc_mmc1_init
,
163 .exit
= mxc_mmc1_exit
,
166 /* Framebuffer support */
167 static struct ipu_platform_data ipu_data __initdata
= {
168 .irq_base
= MXC_IPU_IRQ_START
,
171 static const struct fb_videomode fb_modedb
= {
172 /* 640x480 TFT panel (IPS-056T) */
184 .sync
= FB_SYNC_VERT_HIGH_ACT
| FB_SYNC_OE_ACT_HIGH
,
185 .vmode
= FB_VMODE_NONINTERLACED
,
189 static struct mx3fb_platform_data fb_pdata __initdata
= {
190 .dma_dev
= &mx3_ipu
.dev
,
196 #define LCD_VCC_EN_GPIO (7)
198 static void __init
mx31lilly_init_fb(void)
200 if (gpio_request(LCD_VCC_EN_GPIO
, "LCD enable") != 0) {
201 printk(KERN_WARNING
"unable to request LCD_VCC_EN pin.\n");
205 mxc_register_device(&mx3_ipu
, &ipu_data
);
206 mxc_register_device(&mx3_fb
, &fb_pdata
);
207 gpio_direction_output(LCD_VCC_EN_GPIO
, 1);
210 void __init
mx31lilly_db_init(void)
212 mxc_iomux_setup_multiple_pins(lilly_db_board_pins
,
213 ARRAY_SIZE(lilly_db_board_pins
),
214 "development board pins");
215 imx31_add_imx_uart0(&uart_pdata
);
216 imx31_add_imx_uart1(&uart_pdata
);
217 imx31_add_imx_uart2(&uart_pdata
);
218 imx31_add_mxc_mmc(0, &mmc_pdata
);