2 * linux/arch/arm/mach-omap2/board-3430sdp.c
4 * Copyright (C) 2007 Texas Instruments
6 * Modified from mach-omap2/board-generic.c
8 * Initial code: Syed Mohammed Khasim
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/platform_device.h>
18 #include <linux/delay.h>
19 #include <linux/input.h>
20 #include <linux/workqueue.h>
21 #include <linux/err.h>
22 #include <linux/clk.h>
23 #include <linux/i2c/twl4030.h>
24 #include <linux/spi/spi.h>
25 #include <linux/spi/ads7846.h>
27 #include <asm/hardware.h>
28 #include <asm/mach-types.h>
29 #include <asm/mach/arch.h>
30 #include <asm/mach/map.h>
32 #include <asm/arch/mcspi.h>
33 #include <asm/arch/gpio.h>
34 #include <asm/arch/mux.h>
35 #include <asm/arch/board.h>
36 #include <asm/arch/usb-musb.h>
37 #include <asm/arch/usb-ehci.h>
38 #include <asm/arch/hsmmc.h>
39 #include <asm/arch/common.h>
40 #include <asm/arch/keypad.h>
41 #include <asm/arch/dma.h>
42 #include <asm/arch/gpmc.h>
45 #include <asm/delay.h>
47 #define SDP3430_SMC91X_CS 3
49 #define ENABLE_VAUX3_DEDICATED 0x03
50 #define ENABLE_VAUX3_DEV_GRP 0x20
53 static struct resource sdp3430_smc91x_resources
[] = {
55 .start
= OMAP34XX_ETHR_START
,
56 .end
= OMAP34XX_ETHR_START
+ SZ_4K
,
57 .flags
= IORESOURCE_MEM
,
62 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_LOWLEVEL
,
66 static struct platform_device sdp3430_smc91x_device
= {
69 .num_resources
= ARRAY_SIZE(sdp3430_smc91x_resources
),
70 .resource
= sdp3430_smc91x_resources
,
73 static int sdp3430_keymap
[] = {
107 static struct omap_kp_platform_data sdp3430_kp_data
= {
110 .keymap
= sdp3430_keymap
,
111 .keymapsize
= ARRAY_SIZE(sdp3430_keymap
),
115 static struct platform_device sdp3430_kp_device
= {
116 .name
= "omap_twl4030keypad",
119 .platform_data
= &sdp3430_kp_data
,
126 * @brief ads7846_dev_init : Requests & sets GPIO line for pen-irq
128 * @return - void. If request gpio fails then Flag KERN_ERR.
130 static void ads7846_dev_init(void)
132 if (omap_request_gpio(ts_gpio
) < 0) {
133 printk(KERN_ERR
"can't get ads746 pen down GPIO\n");
137 omap_set_gpio_direction(ts_gpio
, 1);
139 omap_set_gpio_debounce(ts_gpio
, 1);
140 omap_set_gpio_debounce_time(ts_gpio
, 0xa);
143 static int ads7846_get_pendown_state(void)
145 return !omap_get_gpio_datain(ts_gpio
);
149 * This enable(1)/disable(0) the voltage for TS: uses twl4030 calls
151 static int ads7846_vaux_control(int vaux_cntrl
)
155 #ifdef CONFIG_TWL4030_CORE
156 /* check for return value of ldo_use: if success it returns 0 */
157 if (vaux_cntrl
== VAUX_ENABLE
) {
158 if (ret
!= twl4030_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER
,
159 ENABLE_VAUX3_DEDICATED
, TWL4030_VAUX3_DEDICATED
))
161 if (ret
!= twl4030_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER
,
162 ENABLE_VAUX3_DEV_GRP
, TWL4030_VAUX3_DEV_GRP
))
164 } else if (vaux_cntrl
== VAUX_DISABLE
) {
165 if (ret
!= twl4030_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER
,
166 0x00, TWL4030_VAUX3_DEDICATED
))
168 if (ret
!= twl4030_i2c_write_u8(TWL4030_MODULE_PM_RECEIVER
,
169 0x00, TWL4030_VAUX3_DEV_GRP
))
178 static struct ads7846_platform_data tsc2046_config __initdata
= {
179 .get_pendown_state
= ads7846_get_pendown_state
,
181 .vaux_control
= ads7846_vaux_control
,
185 static struct omap2_mcspi_device_config tsc2046_mcspi_config
= {
187 .single_channel
= 1, /* 0: slave, 1: master */
190 static struct spi_board_info sdp3430_spi_board_info
[] __initdata
= {
193 * TSC2046 operates at a max freqency of 2MHz, so
194 * operate slightly below at 1.5MHz
196 .modalias
= "ads7846",
199 .max_speed_hz
= 1500000,
200 .controller_data
= &tsc2046_mcspi_config
,
202 .platform_data
= &tsc2046_config
,
206 static struct platform_device sdp3430_lcd_device
= {
207 .name
= "sdp2430_lcd",
211 static struct platform_device
*sdp3430_devices
[] __initdata
= {
212 &sdp3430_smc91x_device
,
217 static inline void __init
sdp3430_init_smc91x(void)
220 unsigned long cs_mem_base
;
223 eth_cs
= SDP3430_SMC91X_CS
;
225 if (gpmc_cs_request(eth_cs
, SZ_16M
, &cs_mem_base
) < 0) {
226 printk(KERN_ERR
"Failed to request GPMC mem for smc91x\n");
230 sdp3430_smc91x_resources
[0].start
= cs_mem_base
+ 0x0;
231 sdp3430_smc91x_resources
[0].end
= cs_mem_base
+ 0xf;
234 if (is_sil_rev_greater_than(OMAP3430_REV_ES1_0
))
235 eth_gpio
= OMAP34XX_ETHR_GPIO_IRQ_SDPV2
;
237 eth_gpio
= OMAP34XX_ETHR_GPIO_IRQ_SDPV1
;
239 sdp3430_smc91x_resources
[1].start
= OMAP_GPIO_IRQ(eth_gpio
);
241 if (omap_request_gpio(eth_gpio
) < 0) {
242 printk(KERN_ERR
"Failed to request GPIO%d for smc91x IRQ\n",
246 omap_set_gpio_direction(eth_gpio
, 1);
249 static void __init
omap_3430sdp_init_irq(void)
251 omap2_init_common_hw();
254 sdp3430_init_smc91x();
257 static struct omap_uart_config sdp3430_uart_config __initdata
= {
258 .enabled_uarts
= ((1 << 0) | (1 << 1) | (1 << 2)),
261 static struct omap_lcd_config sdp3430_lcd_config __initdata
= {
262 .ctrl_name
= "internal",
265 static struct omap_mmc_config sdp3430_mmc_config __initdata
= {
272 static struct omap_board_config_kernel sdp3430_config
[] __initdata
= {
273 { OMAP_TAG_UART
, &sdp3430_uart_config
},
274 {OMAP_TAG_LCD
, &sdp3430_lcd_config
},
275 {OMAP_TAG_MMC
, &sdp3430_mmc_config
},
278 static int __init
omap3430_i2c_init(void)
280 omap_register_i2c_bus(1, 2600, NULL
, 0);
281 omap_register_i2c_bus(2, 400, NULL
, 0);
282 omap_register_i2c_bus(3, 400, NULL
, 0);
286 extern void __init
sdp3430_flash_init(void);
288 static void __init
omap_3430sdp_init(void)
290 platform_add_devices(sdp3430_devices
, ARRAY_SIZE(sdp3430_devices
));
291 omap_board_config
= sdp3430_config
;
292 omap_board_config_size
= ARRAY_SIZE(sdp3430_config
);
293 if (is_sil_rev_greater_than(OMAP3430_REV_ES1_0
))
294 ts_gpio
= OMAP34XX_TS_GPIO_IRQ_SDPV2
;
296 ts_gpio
= OMAP34XX_TS_GPIO_IRQ_SDPV1
;
297 sdp3430_spi_board_info
[0].irq
= OMAP_GPIO_IRQ(ts_gpio
);
298 spi_register_board_info(sdp3430_spi_board_info
,
299 ARRAY_SIZE(sdp3430_spi_board_info
));
301 sdp3430_flash_init();
308 static void __init
omap_3430sdp_map_io(void)
310 omap2_set_globals_343x();
311 omap2_map_common_io();
313 arch_initcall(omap3430_i2c_init
);
315 MACHINE_START(OMAP_3430SDP
, "OMAP3430 3430SDP board")
316 /* Maintainer: Syed Khasim - Texas Instruments Inc */
317 .phys_io
= 0x48000000,
318 .io_pg_offst
= ((0xd8000000) >> 18) & 0xfffc,
319 .boot_params
= 0x80000100,
320 .map_io
= omap_3430sdp_map_io
,
321 .init_irq
= omap_3430sdp_init_irq
,
322 .init_machine
= omap_3430sdp_init
,
323 .timer
= &omap_timer
,