blob: c843d01aedda0bc42e508db4edf76cf3fe54f19b [file] [log] [blame]
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -07001/*
2 * linux/arch/arm/mach-omap2/board-3430sdp.c
3 *
4 * Copyright (C) 2007 Texas Instruments
5 *
6 * Modified from mach-omap2/board-generic.c
7 *
8 * Initial code: Syed Mohammed Khasim
9 *
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.
13 */
14
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>
Janusz Krzysztofik61354342009-10-22 14:43:17 -070020#include <linux/input/matrix_keypad.h>
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -070021#include <linux/spi/spi.h>
Santosh Shilimkarb07682b2009-12-13 20:05:51 +010022#include <linux/i2c/twl.h>
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -070023#include <linux/regulator/machine.h>
24#include <linux/io.h>
25#include <linux/gpio.h>
Sukumar Ghorai3a638332010-09-15 14:49:23 +000026#include <linux/mmc/host.h>
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -070027
28#include <mach/hardware.h>
29#include <asm/mach-types.h>
30#include <asm/mach/arch.h>
31#include <asm/mach/map.h>
32
Tony Lindgrence491cf2009-10-20 09:40:47 -070033#include <plat/mcspi.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070034#include <plat/usb.h>
Tony Lindgren4e653312011-11-10 22:45:17 +010035#include "common.h"
Tony Lindgrence491cf2009-10-20 09:40:47 -070036#include <plat/dma.h>
37#include <plat/gpmc.h>
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030038#include <video/omapdss.h>
Tomi Valkeinendac8eb52011-12-22 11:12:13 +020039#include <video/omap-panel-tfp410.h>
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -070040
Tony Lindgrence491cf2009-10-20 09:40:47 -070041#include <plat/gpmc-smc91x.h>
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -070042
Manjunath Kondaiah G04aeae72010-10-08 09:58:35 -070043#include "board-flash.h"
Tony Lindgrenca5742b2009-12-11 16:16:32 -080044#include "mux.h"
Paul Walmsley17a722c2009-05-28 14:03:59 -070045#include "sdram-qimonda-hyb18m512160af-6.h"
Adrian Hunterd02a900b2010-02-15 10:03:34 -080046#include "hsmmc.h"
Kevin Hilmanbb4de3d2009-12-15 16:37:18 -080047#include "pm.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060048#include "control.h"
Mike Rapoport96974a22011-04-25 01:09:05 +030049#include "common-board-devices.h"
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -070050
51#define CONFIG_DISABLE_HFCLK 1
52
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -070053#define SDP3430_TS_GPIO_IRQ_SDPV1 3
54#define SDP3430_TS_GPIO_IRQ_SDPV2 2
55
56#define ENABLE_VAUX3_DEDICATED 0x03
57#define ENABLE_VAUX3_DEV_GRP 0x20
58
59#define TWL4030_MSECURE_GPIO 22
60
Manjunath Kondaiah Gbead4372010-10-08 10:01:13 -070061static uint32_t board_keymap[] = {
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -070062 KEY(0, 0, KEY_LEFT),
63 KEY(0, 1, KEY_RIGHT),
64 KEY(0, 2, KEY_A),
65 KEY(0, 3, KEY_B),
66 KEY(0, 4, KEY_C),
67 KEY(1, 0, KEY_DOWN),
68 KEY(1, 1, KEY_UP),
69 KEY(1, 2, KEY_E),
70 KEY(1, 3, KEY_F),
71 KEY(1, 4, KEY_G),
72 KEY(2, 0, KEY_ENTER),
73 KEY(2, 1, KEY_I),
74 KEY(2, 2, KEY_J),
75 KEY(2, 3, KEY_K),
76 KEY(2, 4, KEY_3),
77 KEY(3, 0, KEY_M),
78 KEY(3, 1, KEY_N),
79 KEY(3, 2, KEY_O),
80 KEY(3, 3, KEY_P),
81 KEY(3, 4, KEY_Q),
82 KEY(4, 0, KEY_R),
83 KEY(4, 1, KEY_4),
84 KEY(4, 2, KEY_T),
85 KEY(4, 3, KEY_U),
86 KEY(4, 4, KEY_D),
87 KEY(5, 0, KEY_V),
88 KEY(5, 1, KEY_W),
89 KEY(5, 2, KEY_L),
90 KEY(5, 3, KEY_S),
91 KEY(5, 4, KEY_H),
92 0
93};
94
Tony Lindgren4f543332009-09-24 16:23:16 -070095static struct matrix_keymap_data board_map_data = {
96 .keymap = board_keymap,
97 .keymap_size = ARRAY_SIZE(board_keymap),
98};
99
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700100static struct twl4030_keypad_data sdp3430_kp_data = {
Tony Lindgren4f543332009-09-24 16:23:16 -0700101 .keymap_data = &board_map_data,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700102 .rows = 5,
103 .cols = 6,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700104 .rep = 1,
105};
106
Tomi Valkeinend9056ce2009-12-09 18:25:18 +0200107#define SDP3430_LCD_PANEL_BACKLIGHT_GPIO 8
108#define SDP3430_LCD_PANEL_ENABLE_GPIO 5
109
Igor Grinbergbc593f52011-05-03 18:22:09 +0300110static struct gpio sdp3430_dss_gpios[] __initdata = {
111 {SDP3430_LCD_PANEL_ENABLE_GPIO, GPIOF_OUT_INIT_LOW, "LCD reset" },
112 {SDP3430_LCD_PANEL_BACKLIGHT_GPIO, GPIOF_OUT_INIT_LOW, "LCD Backlight"},
113};
114
Tomi Valkeinend9056ce2009-12-09 18:25:18 +0200115static void __init sdp3430_display_init(void)
116{
117 int r;
118
Igor Grinbergbc593f52011-05-03 18:22:09 +0300119 r = gpio_request_array(sdp3430_dss_gpios,
120 ARRAY_SIZE(sdp3430_dss_gpios));
121 if (r)
122 printk(KERN_ERR "failed to get LCD control GPIOs\n");
Tomi Valkeinend9056ce2009-12-09 18:25:18 +0200123
Tomi Valkeinend9056ce2009-12-09 18:25:18 +0200124}
125
126static int sdp3430_panel_enable_lcd(struct omap_dss_device *dssdev)
127{
Igor Grinbergbc593f52011-05-03 18:22:09 +0300128 gpio_direction_output(SDP3430_LCD_PANEL_ENABLE_GPIO, 1);
129 gpio_direction_output(SDP3430_LCD_PANEL_BACKLIGHT_GPIO, 1);
Tomi Valkeinend9056ce2009-12-09 18:25:18 +0200130
Tomi Valkeinend9056ce2009-12-09 18:25:18 +0200131 return 0;
132}
133
134static void sdp3430_panel_disable_lcd(struct omap_dss_device *dssdev)
135{
Igor Grinbergbc593f52011-05-03 18:22:09 +0300136 gpio_direction_output(SDP3430_LCD_PANEL_ENABLE_GPIO, 0);
137 gpio_direction_output(SDP3430_LCD_PANEL_BACKLIGHT_GPIO, 0);
Tomi Valkeinend9056ce2009-12-09 18:25:18 +0200138}
139
Tomi Valkeinend9056ce2009-12-09 18:25:18 +0200140static int sdp3430_panel_enable_tv(struct omap_dss_device *dssdev)
141{
142 return 0;
143}
144
145static void sdp3430_panel_disable_tv(struct omap_dss_device *dssdev)
146{
147}
148
149
150static struct omap_dss_device sdp3430_lcd_device = {
151 .name = "lcd",
152 .driver_name = "sharp_ls_panel",
153 .type = OMAP_DISPLAY_TYPE_DPI,
154 .phy.dpi.data_lines = 16,
155 .platform_enable = sdp3430_panel_enable_lcd,
156 .platform_disable = sdp3430_panel_disable_lcd,
157};
158
Tomi Valkeinen2e6f2ee2012-03-05 14:29:28 +0200159static struct tfp410_platform_data dvi_panel = {
Tomi Valkeinene813a552012-02-17 13:30:27 +0200160 .power_down_gpio = -1,
Tomi Valkeinend9056ce2009-12-09 18:25:18 +0200161};
162
Bryan Wu89747c92010-11-17 13:34:34 +0000163static struct omap_dss_device sdp3430_dvi_device = {
164 .name = "dvi",
165 .type = OMAP_DISPLAY_TYPE_DPI,
Tomi Valkeinen2e6f2ee2012-03-05 14:29:28 +0200166 .driver_name = "tfp410",
Bryan Wu89747c92010-11-17 13:34:34 +0000167 .data = &dvi_panel,
168 .phy.dpi.data_lines = 24,
169};
170
Tomi Valkeinend9056ce2009-12-09 18:25:18 +0200171static struct omap_dss_device sdp3430_tv_device = {
172 .name = "tv",
173 .driver_name = "venc",
174 .type = OMAP_DISPLAY_TYPE_VENC,
175 .phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,
176 .platform_enable = sdp3430_panel_enable_tv,
177 .platform_disable = sdp3430_panel_disable_tv,
178};
179
180
181static struct omap_dss_device *sdp3430_dss_devices[] = {
182 &sdp3430_lcd_device,
183 &sdp3430_dvi_device,
184 &sdp3430_tv_device,
185};
186
187static struct omap_dss_board_info sdp3430_dss_data = {
188 .num_devices = ARRAY_SIZE(sdp3430_dss_devices),
189 .devices = sdp3430_dss_devices,
190 .default_device = &sdp3430_lcd_device,
191};
192
Adrian Hunter68ff0422010-02-15 10:03:34 -0800193static struct omap2_hsmmc_info mmc[] = {
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700194 {
195 .mmc = 1,
196 /* 8 bits (default) requires S6.3 == ON,
197 * so the SIM card isn't used; else 4 bits.
198 */
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000199 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700200 .gpio_wp = 4,
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800201 .deferred = true,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700202 },
203 {
204 .mmc = 2,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000205 .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700206 .gpio_wp = 7,
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800207 .deferred = true,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700208 },
209 {} /* Terminator */
210};
211
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700212static int sdp3430_twl_gpio_setup(struct device *dev,
213 unsigned gpio, unsigned ngpio)
214{
215 /* gpio + 0 is "mmc0_cd" (input/IRQ),
216 * gpio + 1 is "mmc1_cd" (input/IRQ)
217 */
218 mmc[0].gpio_cd = gpio + 0;
219 mmc[1].gpio_cd = gpio + 1;
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800220 omap_hsmmc_late_init(mmc);
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700221
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700222 /* gpio + 7 is "sub_lcd_en_bkl" (output/PWM1) */
Igor Grinbergbc593f52011-05-03 18:22:09 +0300223 gpio_request_one(gpio + 7, GPIOF_OUT_INIT_LOW, "sub_lcd_en_bkl");
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700224
225 /* gpio + 15 is "sub_lcd_nRST" (output) */
Igor Grinbergbc593f52011-05-03 18:22:09 +0300226 gpio_request_one(gpio + 15, GPIOF_OUT_INIT_LOW, "sub_lcd_nRST");
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700227
228 return 0;
229}
230
231static struct twl4030_gpio_platform_data sdp3430_gpio_data = {
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700232 .pulldowns = BIT(2) | BIT(6) | BIT(8) | BIT(13)
233 | BIT(16) | BIT(17),
234 .setup = sdp3430_twl_gpio_setup,
235};
236
Rajendra Nayak73a92aa2011-02-03 12:45:22 +0000237/* regulator consumer mappings */
238
Rajendra Nayak4b087ff2011-02-03 12:45:21 +0000239/* ads7846 on SPI */
240static struct regulator_consumer_supply sdp3430_vaux3_supplies[] = {
241 REGULATOR_SUPPLY("vcc", "spi1.0"),
242};
243
Rajendra Nayak73a92aa2011-02-03 12:45:22 +0000244static struct regulator_consumer_supply sdp3430_vmmc1_supplies[] = {
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530245 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
Rajendra Nayak73a92aa2011-02-03 12:45:22 +0000246};
247
248static struct regulator_consumer_supply sdp3430_vsim_supplies[] = {
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530249 REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.0"),
Rajendra Nayak73a92aa2011-02-03 12:45:22 +0000250};
251
252static struct regulator_consumer_supply sdp3430_vmmc2_supplies[] = {
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530253 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1"),
Rajendra Nayak73a92aa2011-02-03 12:45:22 +0000254};
255
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700256/*
257 * Apply all the fixed voltages since most versions of U-Boot
258 * don't bother with that initialization.
259 */
260
261/* VAUX1 for mainboard (irda and sub-lcd) */
262static struct regulator_init_data sdp3430_vaux1 = {
263 .constraints = {
264 .min_uV = 2800000,
265 .max_uV = 2800000,
266 .apply_uV = true,
267 .valid_modes_mask = REGULATOR_MODE_NORMAL
268 | REGULATOR_MODE_STANDBY,
269 .valid_ops_mask = REGULATOR_CHANGE_MODE
270 | REGULATOR_CHANGE_STATUS,
271 },
272};
273
274/* VAUX2 for camera module */
275static struct regulator_init_data sdp3430_vaux2 = {
276 .constraints = {
277 .min_uV = 2800000,
278 .max_uV = 2800000,
279 .apply_uV = true,
280 .valid_modes_mask = REGULATOR_MODE_NORMAL
281 | REGULATOR_MODE_STANDBY,
282 .valid_ops_mask = REGULATOR_CHANGE_MODE
283 | REGULATOR_CHANGE_STATUS,
284 },
285};
286
287/* VAUX3 for LCD board */
288static struct regulator_init_data sdp3430_vaux3 = {
289 .constraints = {
290 .min_uV = 2800000,
291 .max_uV = 2800000,
292 .apply_uV = true,
293 .valid_modes_mask = REGULATOR_MODE_NORMAL
294 | REGULATOR_MODE_STANDBY,
295 .valid_ops_mask = REGULATOR_CHANGE_MODE
296 | REGULATOR_CHANGE_STATUS,
297 },
Rajendra Nayak4b087ff2011-02-03 12:45:21 +0000298 .num_consumer_supplies = ARRAY_SIZE(sdp3430_vaux3_supplies),
299 .consumer_supplies = sdp3430_vaux3_supplies,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700300};
301
302/* VAUX4 for OMAP VDD_CSI2 (camera) */
303static struct regulator_init_data sdp3430_vaux4 = {
304 .constraints = {
305 .min_uV = 1800000,
306 .max_uV = 1800000,
307 .apply_uV = true,
308 .valid_modes_mask = REGULATOR_MODE_NORMAL
309 | REGULATOR_MODE_STANDBY,
310 .valid_ops_mask = REGULATOR_CHANGE_MODE
311 | REGULATOR_CHANGE_STATUS,
312 },
313};
314
315/* VMMC1 for OMAP VDD_MMC1 (i/o) and MMC1 card */
316static struct regulator_init_data sdp3430_vmmc1 = {
317 .constraints = {
318 .min_uV = 1850000,
319 .max_uV = 3150000,
320 .valid_modes_mask = REGULATOR_MODE_NORMAL
321 | REGULATOR_MODE_STANDBY,
322 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
323 | REGULATOR_CHANGE_MODE
324 | REGULATOR_CHANGE_STATUS,
325 },
Rajendra Nayak73a92aa2011-02-03 12:45:22 +0000326 .num_consumer_supplies = ARRAY_SIZE(sdp3430_vmmc1_supplies),
327 .consumer_supplies = sdp3430_vmmc1_supplies,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700328};
329
330/* VMMC2 for MMC2 card */
331static struct regulator_init_data sdp3430_vmmc2 = {
332 .constraints = {
333 .min_uV = 1850000,
334 .max_uV = 1850000,
335 .apply_uV = true,
336 .valid_modes_mask = REGULATOR_MODE_NORMAL
337 | REGULATOR_MODE_STANDBY,
338 .valid_ops_mask = REGULATOR_CHANGE_MODE
339 | REGULATOR_CHANGE_STATUS,
340 },
Rajendra Nayak73a92aa2011-02-03 12:45:22 +0000341 .num_consumer_supplies = ARRAY_SIZE(sdp3430_vmmc2_supplies),
342 .consumer_supplies = sdp3430_vmmc2_supplies,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700343};
344
345/* VSIM for OMAP VDD_MMC1A (i/o for DAT4..DAT7) */
346static struct regulator_init_data sdp3430_vsim = {
347 .constraints = {
348 .min_uV = 1800000,
349 .max_uV = 3000000,
350 .valid_modes_mask = REGULATOR_MODE_NORMAL
351 | REGULATOR_MODE_STANDBY,
352 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
353 | REGULATOR_CHANGE_MODE
354 | REGULATOR_CHANGE_STATUS,
355 },
Rajendra Nayak73a92aa2011-02-03 12:45:22 +0000356 .num_consumer_supplies = ARRAY_SIZE(sdp3430_vsim_supplies),
357 .consumer_supplies = sdp3430_vsim_supplies,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700358};
359
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700360static struct twl4030_platform_data sdp3430_twldata = {
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700361 /* platform_data for children goes here */
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700362 .gpio = &sdp3430_gpio_data,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700363 .keypad = &sdp3430_kp_data,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700364
365 .vaux1 = &sdp3430_vaux1,
366 .vaux2 = &sdp3430_vaux2,
367 .vaux3 = &sdp3430_vaux3,
368 .vaux4 = &sdp3430_vaux4,
369 .vmmc1 = &sdp3430_vmmc1,
370 .vmmc2 = &sdp3430_vmmc2,
371 .vsim = &sdp3430_vsim,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700372};
373
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700374static int __init omap3430_i2c_init(void)
375{
376 /* i2c1 for PMIC only */
Peter Ujfalusi827ed9a2011-06-07 10:28:54 +0300377 omap3_pmic_get_config(&sdp3430_twldata,
Peter Ujfalusib252b0e2011-06-07 11:38:24 +0300378 TWL_COMMON_PDATA_USB | TWL_COMMON_PDATA_BCI |
379 TWL_COMMON_PDATA_MADC | TWL_COMMON_PDATA_AUDIO,
380 TWL_COMMON_REGULATOR_VDAC | TWL_COMMON_REGULATOR_VPLL2);
381 sdp3430_twldata.vdac->constraints.apply_uV = true;
382 sdp3430_twldata.vpll2->constraints.apply_uV = true;
383 sdp3430_twldata.vpll2->constraints.name = "VDVI";
384
Mike Rapoportfbd80712011-04-25 01:09:06 +0300385 omap3_pmic_init("twl4030", &sdp3430_twldata);
Peter Ujfalusi827ed9a2011-06-07 10:28:54 +0300386
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700387 /* i2c2 on camera connector (for sensor control) and optional isp1301 */
388 omap_register_i2c_bus(2, 400, NULL, 0);
389 /* i2c3 on display connector (for DVI, tfp410) */
390 omap_register_i2c_bus(3, 400, NULL, 0);
391 return 0;
392}
393
Tony Lindgren1a48e152009-05-28 13:23:52 -0700394#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
395
396static struct omap_smc91x_platform_data board_smc91x_data = {
397 .cs = 3,
398 .flags = GPMC_MUX_ADD_DATA | GPMC_TIMINGS_SMC91C96 |
399 IORESOURCE_IRQ_LOWLEVEL,
400};
401
402static void __init board_smc91x_init(void)
403{
404 if (omap_rev() > OMAP3430_REV_ES1_0)
405 board_smc91x_data.gpio_irq = 6;
406 else
407 board_smc91x_data.gpio_irq = 29;
408
409 gpmc_smc91x_init(&board_smc91x_data);
410}
411
412#else
413
414static inline void board_smc91x_init(void)
415{
416}
417
418#endif
419
Reddy, Teerth5110b292009-08-24 11:58:59 +0530420static void enable_board_wakeup_source(void)
421{
Tony Lindgren4896e392009-12-11 16:16:32 -0800422 /* T2 interrupt line (keypad) */
423 omap_mux_init_signal("sys_nirq",
424 OMAP_WAKEUP_EN | OMAP_PIN_INPUT_PULLUP);
Reddy, Teerth5110b292009-08-24 11:58:59 +0530425}
426
Keshava Munegowda181b2502011-03-01 20:08:16 +0530427static const struct usbhs_omap_board_data usbhs_bdata __initconst = {
Felipe Balbi58a54912009-11-22 10:11:01 -0800428
Keshava Munegowda181b2502011-03-01 20:08:16 +0530429 .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY,
430 .port_mode[1] = OMAP_EHCI_PORT_MODE_PHY,
431 .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
Felipe Balbi58a54912009-11-22 10:11:01 -0800432
433 .phy_reset = true,
434 .reset_gpio_port[0] = 57,
435 .reset_gpio_port[1] = 61,
436 .reset_gpio_port[2] = -EINVAL
437};
438
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800439#ifdef CONFIG_OMAP_MUX
440static struct omap_board_mux board_mux[] __initdata = {
441 { .reg_offset = OMAP_MUX_TERMINATOR },
442};
R Sricharan626dda82011-03-11 06:04:45 +0000443#else
444#define board_mux NULL
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800445#endif
446
Sukumar Ghorai13d6b73c2010-07-09 14:27:47 +0000447/*
448 * SDP3430 V2 Board CS organization
449 * Different from SDP3430 V1. Now 4 switches used to specify CS
450 *
451 * See also the Switch S8 settings in the comments.
452 */
453static char chip_sel_3430[][GPMC_CS_NUM] = {
454 {PDC_NOR, PDC_NAND, PDC_ONENAND, DBG_MPDB, 0, 0, 0, 0}, /* S8:1111 */
455 {PDC_ONENAND, PDC_NAND, PDC_NOR, DBG_MPDB, 0, 0, 0, 0}, /* S8:1110 */
456 {PDC_NAND, PDC_ONENAND, PDC_NOR, DBG_MPDB, 0, 0, 0, 0}, /* S8:1101 */
457};
458
Vimal Singh88c84602010-02-15 10:03:34 -0800459static struct mtd_partition sdp_nor_partitions[] = {
460 /* bootloader (U-Boot, etc) in first sector */
461 {
462 .name = "Bootloader-NOR",
463 .offset = 0,
464 .size = SZ_256K,
465 .mask_flags = MTD_WRITEABLE, /* force read-only */
466 },
467 /* bootloader params in the next sector */
468 {
469 .name = "Params-NOR",
470 .offset = MTDPART_OFS_APPEND,
471 .size = SZ_256K,
472 .mask_flags = 0,
473 },
474 /* kernel */
475 {
476 .name = "Kernel-NOR",
477 .offset = MTDPART_OFS_APPEND,
478 .size = SZ_2M,
479 .mask_flags = 0
480 },
481 /* file system */
482 {
483 .name = "Filesystem-NOR",
484 .offset = MTDPART_OFS_APPEND,
485 .size = MTDPART_SIZ_FULL,
486 .mask_flags = 0
487 }
488};
489
490static struct mtd_partition sdp_onenand_partitions[] = {
491 {
492 .name = "X-Loader-OneNAND",
493 .offset = 0,
494 .size = 4 * (64 * 2048),
495 .mask_flags = MTD_WRITEABLE /* force read-only */
496 },
497 {
498 .name = "U-Boot-OneNAND",
499 .offset = MTDPART_OFS_APPEND,
500 .size = 2 * (64 * 2048),
501 .mask_flags = MTD_WRITEABLE /* force read-only */
502 },
503 {
504 .name = "U-Boot Environment-OneNAND",
505 .offset = MTDPART_OFS_APPEND,
506 .size = 1 * (64 * 2048),
507 },
508 {
509 .name = "Kernel-OneNAND",
510 .offset = MTDPART_OFS_APPEND,
511 .size = 16 * (64 * 2048),
512 },
513 {
514 .name = "File System-OneNAND",
515 .offset = MTDPART_OFS_APPEND,
516 .size = MTDPART_SIZ_FULL,
517 },
518};
519
520static struct mtd_partition sdp_nand_partitions[] = {
521 /* All the partition sizes are listed in terms of NAND block size */
522 {
523 .name = "X-Loader-NAND",
524 .offset = 0,
525 .size = 4 * (64 * 2048),
526 .mask_flags = MTD_WRITEABLE, /* force read-only */
527 },
528 {
529 .name = "U-Boot-NAND",
530 .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */
531 .size = 10 * (64 * 2048),
532 .mask_flags = MTD_WRITEABLE, /* force read-only */
533 },
534 {
535 .name = "Boot Env-NAND",
536
537 .offset = MTDPART_OFS_APPEND, /* Offset = 0x1c0000 */
538 .size = 6 * (64 * 2048),
539 },
540 {
541 .name = "Kernel-NAND",
542 .offset = MTDPART_OFS_APPEND, /* Offset = 0x280000 */
543 .size = 40 * (64 * 2048),
544 },
545 {
546 .name = "File System - NAND",
547 .size = MTDPART_SIZ_FULL,
548 .offset = MTDPART_OFS_APPEND, /* Offset = 0x780000 */
549 },
550};
551
552static struct flash_partitions sdp_flash_partitions[] = {
553 {
554 .parts = sdp_nor_partitions,
555 .nr_parts = ARRAY_SIZE(sdp_nor_partitions),
556 },
557 {
558 .parts = sdp_onenand_partitions,
559 .nr_parts = ARRAY_SIZE(sdp_onenand_partitions),
560 },
561 {
562 .parts = sdp_nand_partitions,
563 .nr_parts = ARRAY_SIZE(sdp_nand_partitions),
564 },
565};
566
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700567static void __init omap_3430sdp_init(void)
568{
Mike Rapoport96974a22011-04-25 01:09:05 +0300569 int gpio_pendown;
570
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800571 omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800572 omap_hsmmc_init(mmc);
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700573 omap3430_i2c_init();
Senthilvadivu Guruswamyd5e13222011-02-22 11:24:50 +0200574 omap_display_init(&sdp3430_dss_data);
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700575 if (omap_rev() > OMAP3430_REV_ES1_0)
Mike Rapoport96974a22011-04-25 01:09:05 +0300576 gpio_pendown = SDP3430_TS_GPIO_IRQ_SDPV2;
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700577 else
Mike Rapoport96974a22011-04-25 01:09:05 +0300578 gpio_pendown = SDP3430_TS_GPIO_IRQ_SDPV1;
579 omap_ads7846_init(1, gpio_pendown, 310, NULL);
Govindraj.R7496ba32011-11-07 18:55:05 +0530580 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700581 omap_sdrc_init(hyb18m512160af6_sdrc_params, NULL);
Mike Rapoport9e186302011-04-27 11:56:12 +0300582 usb_musb_init(NULL);
Tony Lindgren1a48e152009-05-28 13:23:52 -0700583 board_smc91x_init();
Sukumar Ghoraid5ce2b62011-01-28 15:42:03 +0530584 board_flash_init(sdp_flash_partitions, chip_sel_3430, 0);
Tomi Valkeinend9056ce2009-12-09 18:25:18 +0200585 sdp3430_display_init();
Reddy, Teerth5110b292009-08-24 11:58:59 +0530586 enable_board_wakeup_source();
Keshava Munegowda9e64bb12011-03-01 20:08:19 +0530587 usbhs_init(&usbhs_bdata);
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700588}
589
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700590MACHINE_START(OMAP_3430SDP, "OMAP3430 3430SDP board")
591 /* Maintainer: Syed Khasim - Texas Instruments Inc */
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400592 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100593 .reserve = omap_reserve,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800594 .map_io = omap3_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700595 .init_early = omap3430_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700596 .init_irq = omap3_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100597 .handle_irq = omap3_intc_handle_irq,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700598 .init_machine = omap_3430sdp_init,
Shawn Guobbd707a2012-04-26 16:06:50 +0800599 .init_late = omap3430_init_late,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700600 .timer = &omap3_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000601 .restart = omap_prcm_restart,
Syed Mohammed Khasim6fdc29e2009-03-23 18:38:16 -0700602MACHINE_END