2 * mach-imx27_visstrim_m10.c
4 * Copyright 2010 Javier Martin <javier.martin@vista-silicon.com>
6 * Based on mach-pcm038.c, mach-pca100.c, mach-mx27ads.c and others.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
24 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
26 #include <linux/platform_device.h>
27 #include <linux/mtd/physmap.h>
28 #include <linux/i2c.h>
29 #include <linux/i2c/pca953x.h>
30 #include <linux/gpio_keys.h>
31 #include <linux/input.h>
32 #include <linux/gpio.h>
33 #include <asm/mach-types.h>
34 #include <asm/mach/arch.h>
35 #include <asm/mach/time.h>
36 #include <mach/common.h>
37 #include <mach/iomux.h>
39 #include "devices-imx27.h"
41 #define OTG_PHY_CS_GPIO (GPIO_PORTF + 17)
42 #define SDHC1_IRQ IRQ_GPIOB(25)
44 static const int visstrim_m10_pins
[] __initconst
= {
82 OTG_PHY_CS_GPIO
| GPIO_GPIO
| GPIO_OUT
,
99 /* GPIOs used as events for applications */
100 static struct gpio_keys_button visstrim_gpio_keys
[] = {
104 .gpio
= (GPIO_PORTC
+ 15),
105 .desc
= "Default config",
112 .gpio
= (GPIO_PORTF
+ 14),
120 .gpio
= (GPIO_PORTF
+ 13),
127 static struct gpio_keys_platform_data visstrim_gpio_keys_platform_data
= {
128 .buttons
= visstrim_gpio_keys
,
129 .nbuttons
= ARRAY_SIZE(visstrim_gpio_keys
),
132 static struct platform_device visstrim_gpio_keys_device
= {
136 .platform_data
= &visstrim_gpio_keys_platform_data
,
140 /* Visstrim_SM10 has a microSD slot connected to sdhc1 */
141 static int visstrim_m10_sdhc1_init(struct device
*dev
,
142 irq_handler_t detect_irq
, void *data
)
146 ret
= request_irq(SDHC1_IRQ
, detect_irq
, IRQF_TRIGGER_FALLING
,
151 static void visstrim_m10_sdhc1_exit(struct device
*dev
, void *data
)
153 free_irq(SDHC1_IRQ
, data
);
156 static const struct imxmmc_platform_data visstrim_m10_sdhc_pdata __initconst
= {
157 .init
= visstrim_m10_sdhc1_init
,
158 .exit
= visstrim_m10_sdhc1_exit
,
161 /* Visstrim_SM10 NOR flash */
162 static struct physmap_flash_data visstrim_m10_flash_data
= {
166 static struct resource visstrim_m10_flash_resource
= {
168 .end
= 0xc0000000 + SZ_64M
- 1,
169 .flags
= IORESOURCE_MEM
,
172 static struct platform_device visstrim_m10_nor_mtd_device
= {
173 .name
= "physmap-flash",
176 .platform_data
= &visstrim_m10_flash_data
,
179 .resource
= &visstrim_m10_flash_resource
,
182 static struct platform_device
*platform_devices
[] __initdata
= {
183 &visstrim_gpio_keys_device
,
184 &visstrim_m10_nor_mtd_device
,
187 /* Visstrim_M10 uses UART0 as console */
188 static const struct imxuart_platform_data uart_pdata __initconst
= {
189 .flags
= IMXUART_HAVE_RTSCTS
,
193 static const struct imxi2c_platform_data visstrim_m10_i2c_data __initconst
= {
197 static struct pca953x_platform_data visstrim_m10_pca9555_pdata
= {
198 .gpio_base
= 240, /* After MX27 internal GPIOs */
202 static struct i2c_board_info visstrim_m10_i2c_devices
[] = {
204 I2C_BOARD_INFO("pca9555", 0x20),
205 .platform_data
= &visstrim_m10_pca9555_pdata
,
210 static int otg_phy_init(struct platform_device
*pdev
)
212 gpio_set_value(OTG_PHY_CS_GPIO
, 0);
216 static const struct mxc_usbh_platform_data
217 visstrim_m10_usbotg_pdata __initconst
= {
218 .init
= otg_phy_init
,
219 .portsc
= MXC_EHCI_MODE_ULPI
| MXC_EHCI_UTMI_8BIT
,
220 .flags
= MXC_EHCI_POWER_PINS_ENABLED
,
223 static void __init
visstrim_m10_board_init(void)
227 ret
= mxc_gpio_setup_multiple_pins(visstrim_m10_pins
,
228 ARRAY_SIZE(visstrim_m10_pins
), "VISSTRIM_M10");
230 pr_err("Failed to setup pins (%d)\n", ret
);
232 imx27_add_imx_uart0(&uart_pdata
);
234 i2c_register_board_info(0, visstrim_m10_i2c_devices
,
235 ARRAY_SIZE(visstrim_m10_i2c_devices
));
236 imx27_add_imx_i2c(0, &visstrim_m10_i2c_data
);
237 imx27_add_imx_i2c(1, &visstrim_m10_i2c_data
);
238 imx27_add_mxc_mmc(0, &visstrim_m10_sdhc_pdata
);
239 imx27_add_mxc_ehci_otg(&visstrim_m10_usbotg_pdata
);
241 platform_add_devices(platform_devices
, ARRAY_SIZE(platform_devices
));
244 static void __init
visstrim_m10_timer_init(void)
246 mx27_clocks_init((unsigned long)25000000);
249 static struct sys_timer visstrim_m10_timer
= {
250 .init
= visstrim_m10_timer_init
,
253 MACHINE_START(IMX27_VISSTRIM_M10
, "Vista Silicon Visstrim_M10")
254 .boot_params
= MX27_PHYS_OFFSET
+ 0x100,
255 .map_io
= mx27_map_io
,
256 .init_irq
= mx27_init_irq
,
257 .init_machine
= visstrim_m10_board_init
,
258 .timer
= &visstrim_m10_timer
,