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/input.h>
31 #include <linux/gpio.h>
32 #include <linux/delay.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-mx27.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
= {
87 OTG_PHY_CS_GPIO
| GPIO_GPIO
| GPIO_OUT
,
104 /* GPIOs used as events for applications */
105 static struct gpio_keys_button visstrim_gpio_keys
[] = {
109 .gpio
= (GPIO_PORTC
+ 15),
110 .desc
= "Default config",
117 .gpio
= (GPIO_PORTF
+ 14),
125 .gpio
= (GPIO_PORTF
+ 13),
132 static const struct gpio_keys_platform_data
133 visstrim_gpio_keys_platform_data __initconst
= {
134 .buttons
= visstrim_gpio_keys
,
135 .nbuttons
= ARRAY_SIZE(visstrim_gpio_keys
),
138 /* Visstrim_SM10 has a microSD slot connected to sdhc1 */
139 static int visstrim_m10_sdhc1_init(struct device
*dev
,
140 irq_handler_t detect_irq
, void *data
)
144 ret
= request_irq(SDHC1_IRQ
, detect_irq
, IRQF_TRIGGER_FALLING
,
149 static void visstrim_m10_sdhc1_exit(struct device
*dev
, void *data
)
151 free_irq(SDHC1_IRQ
, data
);
154 static const struct imxmmc_platform_data visstrim_m10_sdhc_pdata __initconst
= {
155 .init
= visstrim_m10_sdhc1_init
,
156 .exit
= visstrim_m10_sdhc1_exit
,
159 /* Visstrim_SM10 NOR flash */
160 static struct physmap_flash_data visstrim_m10_flash_data
= {
164 static struct resource visstrim_m10_flash_resource
= {
166 .end
= 0xc0000000 + SZ_64M
- 1,
167 .flags
= IORESOURCE_MEM
,
170 static struct platform_device visstrim_m10_nor_mtd_device
= {
171 .name
= "physmap-flash",
174 .platform_data
= &visstrim_m10_flash_data
,
177 .resource
= &visstrim_m10_flash_resource
,
180 static struct platform_device
*platform_devices
[] __initdata
= {
181 &visstrim_m10_nor_mtd_device
,
184 /* Visstrim_M10 uses UART0 as console */
185 static const struct imxuart_platform_data uart_pdata __initconst
= {
186 .flags
= IMXUART_HAVE_RTSCTS
,
190 static const struct imxi2c_platform_data visstrim_m10_i2c_data __initconst
= {
194 static struct pca953x_platform_data visstrim_m10_pca9555_pdata
= {
195 .gpio_base
= 240, /* After MX27 internal GPIOs */
199 static struct i2c_board_info visstrim_m10_i2c_devices
[] = {
201 I2C_BOARD_INFO("pca9555", 0x20),
202 .platform_data
= &visstrim_m10_pca9555_pdata
,
205 I2C_BOARD_INFO("tlv320aic32x4", 0x18),
210 static int otg_phy_init(struct platform_device
*pdev
)
212 gpio_set_value(OTG_PHY_CS_GPIO
, 0);
216 return mx27_initialize_usb_hw(pdev
->id
, MXC_EHCI_POWER_PINS_ENABLED
);
219 static const struct mxc_usbh_platform_data
220 visstrim_m10_usbotg_pdata __initconst
= {
221 .init
= otg_phy_init
,
222 .portsc
= MXC_EHCI_MODE_ULPI
| MXC_EHCI_UTMI_8BIT
,
226 static const struct imx_ssi_platform_data visstrim_m10_ssi_pdata __initconst
= {
227 .flags
= IMX_SSI_DMA
| IMX_SSI_SYN
,
230 static void __init
visstrim_m10_board_init(void)
236 ret
= mxc_gpio_setup_multiple_pins(visstrim_m10_pins
,
237 ARRAY_SIZE(visstrim_m10_pins
), "VISSTRIM_M10");
239 pr_err("Failed to setup pins (%d)\n", ret
);
241 imx27_add_imx_ssi(0, &visstrim_m10_ssi_pdata
);
242 imx27_add_imx_uart0(&uart_pdata
);
244 i2c_register_board_info(0, visstrim_m10_i2c_devices
,
245 ARRAY_SIZE(visstrim_m10_i2c_devices
));
246 imx27_add_imx_i2c(0, &visstrim_m10_i2c_data
);
247 imx27_add_imx_i2c(1, &visstrim_m10_i2c_data
);
248 imx27_add_mxc_mmc(0, &visstrim_m10_sdhc_pdata
);
249 imx27_add_mxc_ehci_otg(&visstrim_m10_usbotg_pdata
);
251 imx_add_gpio_keys(&visstrim_gpio_keys_platform_data
);
252 platform_add_devices(platform_devices
, ARRAY_SIZE(platform_devices
));
255 static void __init
visstrim_m10_timer_init(void)
257 mx27_clocks_init((unsigned long)25000000);
260 static struct sys_timer visstrim_m10_timer
= {
261 .init
= visstrim_m10_timer_init
,
264 MACHINE_START(IMX27_VISSTRIM_M10
, "Vista Silicon Visstrim_M10")
265 .boot_params
= MX27_PHYS_OFFSET
+ 0x100,
266 .map_io
= mx27_map_io
,
267 .init_early
= imx27_init_early
,
268 .init_irq
= mx27_init_irq
,
269 .timer
= &visstrim_m10_timer
,
270 .init_machine
= visstrim_m10_board_init
,