blob: c417b7d004d1f73cb4c8bc5bcf6a8b34676ddd9a [file] [log] [blame]
Mike Rapoport2886d122009-11-18 18:41:07 -08001/*
Igor Grinbergc3146972011-07-05 03:38:23 -07002 * CompuLab CM-T35/CM-T3730 modules support
Mike Rapoport2886d122009-11-18 18:41:07 -08003 *
Igor Grinbergd12c2e22011-07-04 04:09:18 -07004 * Copyright (C) 2009-2011 CompuLab, Ltd.
5 * Authors: Mike Rapoport <mike@compulab.co.il>
6 * Igor Grinberg <grinberg@compulab.co.il>
Mike Rapoport2886d122009-11-18 18:41:07 -08007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
Mike Rapoport2886d122009-11-18 18:41:07 -080017 */
18
19#include <linux/kernel.h>
20#include <linux/init.h>
21#include <linux/platform_device.h>
22#include <linux/input.h>
23#include <linux/input/matrix_keypad.h>
24#include <linux/delay.h>
25#include <linux/gpio.h>
26
27#include <linux/i2c/at24.h>
Balaji T Kebeb53e2009-12-15 20:09:02 +053028#include <linux/i2c/twl.h>
Mike Rapoport2886d122009-11-18 18:41:07 -080029#include <linux/regulator/machine.h>
Sukumar Ghorai3a638332010-09-15 14:49:23 +000030#include <linux/mmc/host.h>
Mike Rapoport2886d122009-11-18 18:41:07 -080031
Mike Rapoport7f049ad2009-12-14 09:01:08 +010032#include <linux/spi/spi.h>
33#include <linux/spi/tdo24m.h>
34
Mike Rapoport2886d122009-11-18 18:41:07 -080035#include <asm/mach-types.h>
36#include <asm/mach/arch.h>
37#include <asm/mach/map.h>
38
39#include <plat/board.h>
Tony Lindgren4e653312011-11-10 22:45:17 +010040#include "common.h"
Mike Rapoport2886d122009-11-18 18:41:07 -080041#include <plat/nand.h>
42#include <plat/gpmc.h>
43#include <plat/usb.h>
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030044#include <video/omapdss.h>
Tomi Valkeinenf8ae2f02011-05-10 19:48:10 +030045#include <video/omap-panel-generic-dpi.h>
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +030046#include <video/omap-panel-dvi.h>
Tony Lindgren609c9ba2010-04-30 12:57:14 -070047#include <plat/mcspi.h>
Mike Rapoport2886d122009-11-18 18:41:07 -080048
49#include <mach/hardware.h>
50
Tony Lindgrenca5742b2009-12-11 16:16:32 -080051#include "mux.h"
Mike Rapoport2886d122009-11-18 18:41:07 -080052#include "sdram-micron-mt46h32m32lf-6.h"
Adrian Hunterd02a9002010-02-15 10:03:34 -080053#include "hsmmc.h"
Mike Rapoport96974a22011-04-25 01:09:05 +030054#include "common-board-devices.h"
Mike Rapoport2886d122009-11-18 18:41:07 -080055
56#define CM_T35_GPIO_PENDOWN 57
57
58#define CM_T35_SMSC911X_CS 5
59#define CM_T35_SMSC911X_GPIO 163
60#define SB_T35_SMSC911X_CS 4
61#define SB_T35_SMSC911X_GPIO 65
62
Mike Rapoport2886d122009-11-18 18:41:07 -080063#if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
64#include <linux/smsc911x.h>
Mike Rapoport21b42732011-04-16 22:29:30 +000065#include <plat/gpmc-smsc911x.h>
Mike Rapoport2886d122009-11-18 18:41:07 -080066
Mike Rapoport21b42732011-04-16 22:29:30 +000067static struct omap_smsc911x_platform_data cm_t35_smsc911x_cfg = {
Mike Rapoport2886d122009-11-18 18:41:07 -080068 .id = 0,
Mike Rapoport21b42732011-04-16 22:29:30 +000069 .cs = CM_T35_SMSC911X_CS,
70 .gpio_irq = CM_T35_SMSC911X_GPIO,
71 .gpio_reset = -EINVAL,
72 .flags = SMSC911X_USE_32BIT | SMSC911X_SAVE_MAC_ADDRESS,
Mike Rapoport2886d122009-11-18 18:41:07 -080073};
74
Mike Rapoport21b42732011-04-16 22:29:30 +000075static struct omap_smsc911x_platform_data sb_t35_smsc911x_cfg = {
Mike Rapoport2886d122009-11-18 18:41:07 -080076 .id = 1,
Mike Rapoport21b42732011-04-16 22:29:30 +000077 .cs = SB_T35_SMSC911X_CS,
78 .gpio_irq = SB_T35_SMSC911X_GPIO,
79 .gpio_reset = -EINVAL,
80 .flags = SMSC911X_USE_32BIT | SMSC911X_SAVE_MAC_ADDRESS,
Mike Rapoport2886d122009-11-18 18:41:07 -080081};
82
Mike Rapoport2886d122009-11-18 18:41:07 -080083static void __init cm_t35_init_ethernet(void)
84{
Mike Rapoport21b42732011-04-16 22:29:30 +000085 gpmc_smsc911x_init(&cm_t35_smsc911x_cfg);
86 gpmc_smsc911x_init(&sb_t35_smsc911x_cfg);
Mike Rapoport2886d122009-11-18 18:41:07 -080087}
88#else
89static inline void __init cm_t35_init_ethernet(void) { return; }
90#endif
91
92#if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
93#include <linux/leds.h>
94
95static struct gpio_led cm_t35_leds[] = {
96 [0] = {
97 .gpio = 186,
98 .name = "cm-t35:green",
99 .default_trigger = "heartbeat",
100 .active_low = 0,
101 },
102};
103
104static struct gpio_led_platform_data cm_t35_led_pdata = {
105 .num_leds = ARRAY_SIZE(cm_t35_leds),
106 .leds = cm_t35_leds,
107};
108
109static struct platform_device cm_t35_led_device = {
110 .name = "leds-gpio",
111 .id = -1,
112 .dev = {
113 .platform_data = &cm_t35_led_pdata,
114 },
115};
116
117static void __init cm_t35_init_led(void)
118{
119 platform_device_register(&cm_t35_led_device);
120}
121#else
122static inline void cm_t35_init_led(void) {}
123#endif
124
125#if defined(CONFIG_MTD_NAND_OMAP2) || defined(CONFIG_MTD_NAND_OMAP2_MODULE)
126#include <linux/mtd/mtd.h>
127#include <linux/mtd/nand.h>
128#include <linux/mtd/partitions.h>
129
130static struct mtd_partition cm_t35_nand_partitions[] = {
131 {
132 .name = "xloader",
133 .offset = 0, /* Offset = 0x00000 */
134 .size = 4 * NAND_BLOCK_SIZE,
135 .mask_flags = MTD_WRITEABLE
136 },
137 {
138 .name = "uboot",
139 .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */
140 .size = 15 * NAND_BLOCK_SIZE,
141 },
142 {
143 .name = "uboot environment",
144 .offset = MTDPART_OFS_APPEND, /* Offset = 0x260000 */
145 .size = 2 * NAND_BLOCK_SIZE,
146 },
147 {
148 .name = "linux",
Igor Grinbergd12c2e22011-07-04 04:09:18 -0700149 .offset = MTDPART_OFS_APPEND, /* Offset = 0x2A0000 */
Mike Rapoport2886d122009-11-18 18:41:07 -0800150 .size = 32 * NAND_BLOCK_SIZE,
151 },
152 {
153 .name = "rootfs",
Igor Grinbergd12c2e22011-07-04 04:09:18 -0700154 .offset = MTDPART_OFS_APPEND, /* Offset = 0x6A0000 */
Mike Rapoport2886d122009-11-18 18:41:07 -0800155 .size = MTDPART_SIZ_FULL,
156 },
157};
158
159static struct omap_nand_platform_data cm_t35_nand_data = {
160 .parts = cm_t35_nand_partitions,
161 .nr_parts = ARRAY_SIZE(cm_t35_nand_partitions),
Mike Rapoport2886d122009-11-18 18:41:07 -0800162 .cs = 0,
Mike Rapoport2886d122009-11-18 18:41:07 -0800163};
164
Mike Rapoport2886d122009-11-18 18:41:07 -0800165static void __init cm_t35_init_nand(void)
166{
Sukumar Ghoraif450d862010-07-09 09:14:46 +0000167 if (gpmc_nand_init(&cm_t35_nand_data) < 0)
Mike Rapoport2886d122009-11-18 18:41:07 -0800168 pr_err("CM-T35: Unable to register NAND device\n");
169}
170#else
171static inline void cm_t35_init_nand(void) {}
172#endif
173
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100174#define CM_T35_LCD_EN_GPIO 157
175#define CM_T35_LCD_BL_GPIO 58
176#define CM_T35_DVI_EN_GPIO 54
177
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100178static int lcd_enabled;
179static int dvi_enabled;
180
181static int cm_t35_panel_enable_lcd(struct omap_dss_device *dssdev)
182{
183 if (dvi_enabled) {
184 printk(KERN_ERR "cannot enable LCD, DVI is enabled\n");
185 return -EINVAL;
186 }
187
Igor Grinbergbc593f52011-05-03 18:22:09 +0300188 gpio_set_value(CM_T35_LCD_EN_GPIO, 1);
189 gpio_set_value(CM_T35_LCD_BL_GPIO, 1);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100190
191 lcd_enabled = 1;
192
193 return 0;
194}
195
196static void cm_t35_panel_disable_lcd(struct omap_dss_device *dssdev)
197{
198 lcd_enabled = 0;
199
Igor Grinbergbc593f52011-05-03 18:22:09 +0300200 gpio_set_value(CM_T35_LCD_BL_GPIO, 0);
201 gpio_set_value(CM_T35_LCD_EN_GPIO, 0);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100202}
203
204static int cm_t35_panel_enable_dvi(struct omap_dss_device *dssdev)
205{
206 if (lcd_enabled) {
207 printk(KERN_ERR "cannot enable DVI, LCD is enabled\n");
208 return -EINVAL;
209 }
210
Igor Grinbergbc593f52011-05-03 18:22:09 +0300211 gpio_set_value(CM_T35_DVI_EN_GPIO, 0);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100212 dvi_enabled = 1;
213
214 return 0;
215}
216
217static void cm_t35_panel_disable_dvi(struct omap_dss_device *dssdev)
218{
Igor Grinbergbc593f52011-05-03 18:22:09 +0300219 gpio_set_value(CM_T35_DVI_EN_GPIO, 1);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100220 dvi_enabled = 0;
221}
222
223static int cm_t35_panel_enable_tv(struct omap_dss_device *dssdev)
224{
225 return 0;
226}
227
228static void cm_t35_panel_disable_tv(struct omap_dss_device *dssdev)
229{
230}
231
Bryan Wu89747c92010-11-17 13:34:34 +0000232static struct panel_generic_dpi_data lcd_panel = {
233 .name = "toppoly_tdo35s",
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100234 .platform_enable = cm_t35_panel_enable_lcd,
235 .platform_disable = cm_t35_panel_disable_lcd,
236};
237
Bryan Wu89747c92010-11-17 13:34:34 +0000238static struct omap_dss_device cm_t35_lcd_device = {
239 .name = "lcd",
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100240 .type = OMAP_DISPLAY_TYPE_DPI,
Bryan Wu89747c92010-11-17 13:34:34 +0000241 .driver_name = "generic_dpi_panel",
242 .data = &lcd_panel,
243 .phy.dpi.data_lines = 18,
244};
245
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +0300246static struct panel_dvi_platform_data dvi_panel = {
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100247 .platform_enable = cm_t35_panel_enable_dvi,
248 .platform_disable = cm_t35_panel_disable_dvi,
249};
250
Bryan Wu89747c92010-11-17 13:34:34 +0000251static struct omap_dss_device cm_t35_dvi_device = {
252 .name = "dvi",
253 .type = OMAP_DISPLAY_TYPE_DPI,
Tomi Valkeinen1d7a8652011-09-01 10:13:04 +0300254 .driver_name = "dvi",
Bryan Wu89747c92010-11-17 13:34:34 +0000255 .data = &dvi_panel,
256 .phy.dpi.data_lines = 24,
257};
258
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100259static struct omap_dss_device cm_t35_tv_device = {
260 .name = "tv",
261 .driver_name = "venc",
262 .type = OMAP_DISPLAY_TYPE_VENC,
263 .phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,
264 .platform_enable = cm_t35_panel_enable_tv,
265 .platform_disable = cm_t35_panel_disable_tv,
266};
267
268static struct omap_dss_device *cm_t35_dss_devices[] = {
269 &cm_t35_lcd_device,
270 &cm_t35_dvi_device,
271 &cm_t35_tv_device,
272};
273
274static struct omap_dss_board_info cm_t35_dss_data = {
275 .num_devices = ARRAY_SIZE(cm_t35_dss_devices),
276 .devices = cm_t35_dss_devices,
277 .default_device = &cm_t35_dvi_device,
278};
279
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100280static struct omap2_mcspi_device_config tdo24m_mcspi_config = {
281 .turbo_mode = 0,
282 .single_channel = 1, /* 0: slave, 1: master */
283};
284
285static struct tdo24m_platform_data tdo24m_config = {
286 .model = TDO35S,
287};
288
289static struct spi_board_info cm_t35_lcd_spi_board_info[] __initdata = {
290 {
291 .modalias = "tdo24m",
292 .bus_num = 4,
293 .chip_select = 0,
294 .max_speed_hz = 1000000,
295 .controller_data = &tdo24m_mcspi_config,
296 .platform_data = &tdo24m_config,
297 },
298};
299
Igor Grinbergbc593f52011-05-03 18:22:09 +0300300static struct gpio cm_t35_dss_gpios[] __initdata = {
301 { CM_T35_LCD_EN_GPIO, GPIOF_OUT_INIT_LOW, "lcd enable" },
302 { CM_T35_LCD_BL_GPIO, GPIOF_OUT_INIT_LOW, "lcd bl enable" },
303 { CM_T35_DVI_EN_GPIO, GPIOF_OUT_INIT_HIGH, "dvi enable" },
304};
305
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100306static void __init cm_t35_init_display(void)
307{
308 int err;
309
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100310 spi_register_board_info(cm_t35_lcd_spi_board_info,
311 ARRAY_SIZE(cm_t35_lcd_spi_board_info));
312
Igor Grinbergbc593f52011-05-03 18:22:09 +0300313 err = gpio_request_array(cm_t35_dss_gpios,
314 ARRAY_SIZE(cm_t35_dss_gpios));
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100315 if (err) {
Igor Grinbergbc593f52011-05-03 18:22:09 +0300316 pr_err("CM-T35: failed to request DSS control GPIOs\n");
317 return;
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100318 }
319
Igor Grinbergbc593f52011-05-03 18:22:09 +0300320 gpio_export(CM_T35_LCD_EN_GPIO, 0);
321 gpio_export(CM_T35_LCD_BL_GPIO, 0);
322 gpio_export(CM_T35_DVI_EN_GPIO, 0);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100323
324 msleep(50);
Igor Grinbergbc593f52011-05-03 18:22:09 +0300325 gpio_set_value(CM_T35_LCD_EN_GPIO, 1);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100326
Senthilvadivu Guruswamyd5e13222011-02-22 11:24:50 +0200327 err = omap_display_init(&cm_t35_dss_data);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100328 if (err) {
329 pr_err("CM-T35: failed to register DSS device\n");
Igor Grinbergbc593f52011-05-03 18:22:09 +0300330 gpio_free_array(cm_t35_dss_gpios, ARRAY_SIZE(cm_t35_dss_gpios));
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100331 }
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100332}
333
Oleg Drokin786b01a2011-06-06 18:57:07 +0000334static struct regulator_consumer_supply cm_t35_vmmc1_supply[] = {
335 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
Mike Rapoport2886d122009-11-18 18:41:07 -0800336};
337
Oleg Drokin786b01a2011-06-06 18:57:07 +0000338static struct regulator_consumer_supply cm_t35_vsim_supply[] = {
339 REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.0"),
Mike Rapoport2886d122009-11-18 18:41:07 -0800340};
341
Igor Grinbergb74f1492011-12-13 10:48:51 -0800342static struct regulator_consumer_supply cm_t35_vio_supplies[] = {
343 REGULATOR_SUPPLY("vcc", "spi1.0"),
Igor Grinbergcd1c6832011-12-13 10:48:52 -0800344 REGULATOR_SUPPLY("vdds_dsi", "omapdss"),
345 REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi1"),
Igor Grinbergb74f1492011-12-13 10:48:51 -0800346};
347
Mike Rapoport2886d122009-11-18 18:41:07 -0800348/* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
349static struct regulator_init_data cm_t35_vmmc1 = {
350 .constraints = {
351 .min_uV = 1850000,
352 .max_uV = 3150000,
353 .valid_modes_mask = REGULATOR_MODE_NORMAL
354 | REGULATOR_MODE_STANDBY,
355 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
356 | REGULATOR_CHANGE_MODE
357 | REGULATOR_CHANGE_STATUS,
358 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000359 .num_consumer_supplies = ARRAY_SIZE(cm_t35_vmmc1_supply),
360 .consumer_supplies = cm_t35_vmmc1_supply,
Mike Rapoport2886d122009-11-18 18:41:07 -0800361};
362
363/* VSIM for MMC1 pins DAT4..DAT7 (2 mA, plus card == max 50 mA) */
364static struct regulator_init_data cm_t35_vsim = {
365 .constraints = {
366 .min_uV = 1800000,
367 .max_uV = 3000000,
368 .valid_modes_mask = REGULATOR_MODE_NORMAL
369 | REGULATOR_MODE_STANDBY,
370 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
371 | REGULATOR_CHANGE_MODE
372 | REGULATOR_CHANGE_STATUS,
373 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000374 .num_consumer_supplies = ARRAY_SIZE(cm_t35_vsim_supply),
375 .consumer_supplies = cm_t35_vsim_supply,
Mike Rapoport2886d122009-11-18 18:41:07 -0800376};
377
Igor Grinbergb74f1492011-12-13 10:48:51 -0800378static struct regulator_init_data cm_t35_vio = {
379 .constraints = {
380 .min_uV = 1800000,
381 .max_uV = 1800000,
382 .apply_uV = true,
383 .valid_modes_mask = REGULATOR_MODE_NORMAL
384 | REGULATOR_MODE_STANDBY,
385 .valid_ops_mask = REGULATOR_CHANGE_MODE,
386 },
387 .num_consumer_supplies = ARRAY_SIZE(cm_t35_vio_supplies),
388 .consumer_supplies = cm_t35_vio_supplies,
389};
390
Manjunath Kondaiah Gbead4372010-10-08 10:01:13 -0700391static uint32_t cm_t35_keymap[] = {
Mike Rapoport2886d122009-11-18 18:41:07 -0800392 KEY(0, 0, KEY_A), KEY(0, 1, KEY_B), KEY(0, 2, KEY_LEFT),
393 KEY(1, 0, KEY_UP), KEY(1, 1, KEY_ENTER), KEY(1, 2, KEY_DOWN),
394 KEY(2, 0, KEY_RIGHT), KEY(2, 1, KEY_C), KEY(2, 2, KEY_D),
395};
396
397static struct matrix_keymap_data cm_t35_keymap_data = {
398 .keymap = cm_t35_keymap,
399 .keymap_size = ARRAY_SIZE(cm_t35_keymap),
400};
401
402static struct twl4030_keypad_data cm_t35_kp_data = {
403 .keymap_data = &cm_t35_keymap_data,
404 .rows = 3,
405 .cols = 3,
406 .rep = 1,
407};
408
Adrian Hunter68ff0422010-02-15 10:03:34 -0800409static struct omap2_hsmmc_info mmc[] = {
Mike Rapoport2886d122009-11-18 18:41:07 -0800410 {
411 .mmc = 1,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000412 .caps = MMC_CAP_4_BIT_DATA,
Mike Rapoport2886d122009-11-18 18:41:07 -0800413 .gpio_cd = -EINVAL,
414 .gpio_wp = -EINVAL,
415
416 },
417 {
418 .mmc = 2,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000419 .caps = MMC_CAP_4_BIT_DATA,
Mike Rapoport2886d122009-11-18 18:41:07 -0800420 .transceiver = 1,
421 .gpio_cd = -EINVAL,
422 .gpio_wp = -EINVAL,
423 .ocr_mask = 0x00100000, /* 3.3V */
424 },
425 {} /* Terminator */
426};
427
Keshava Munegowda181b2502011-03-01 20:08:16 +0530428static struct usbhs_omap_board_data usbhs_bdata __initdata = {
429 .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,
Mike Rapoport2886d122009-11-18 18:41:07 -0800432
433 .phy_reset = true,
Bryan Wu1a6b5922010-12-08 02:41:25 +0000434 .reset_gpio_port[0] = OMAP_MAX_GPIO_LINES + 6,
435 .reset_gpio_port[1] = OMAP_MAX_GPIO_LINES + 7,
Mike Rapoport2886d122009-11-18 18:41:07 -0800436 .reset_gpio_port[2] = -EINVAL
437};
438
439static int cm_t35_twl_gpio_setup(struct device *dev, unsigned gpio,
440 unsigned ngpio)
441{
442 int wlan_rst = gpio + 2;
443
Igor Grinbergbc593f52011-05-03 18:22:09 +0300444 if (gpio_request_one(wlan_rst, GPIOF_OUT_INIT_HIGH, "WLAN RST") == 0) {
Mike Rapoport2886d122009-11-18 18:41:07 -0800445 gpio_export(wlan_rst, 0);
Mike Rapoport2886d122009-11-18 18:41:07 -0800446 udelay(10);
Igor Grinbergbe741de2011-07-04 04:09:31 -0700447 gpio_set_value_cansleep(wlan_rst, 0);
Mike Rapoport2886d122009-11-18 18:41:07 -0800448 udelay(10);
Igor Grinbergbe741de2011-07-04 04:09:31 -0700449 gpio_set_value_cansleep(wlan_rst, 1);
Mike Rapoport2886d122009-11-18 18:41:07 -0800450 } else {
451 pr_err("CM-T35: could not obtain gpio for WiFi reset\n");
452 }
453
454 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
455 mmc[0].gpio_cd = gpio + 0;
Adrian Hunter68ff0422010-02-15 10:03:34 -0800456 omap2_hsmmc_init(mmc);
Mike Rapoport2886d122009-11-18 18:41:07 -0800457
Mike Rapoport2886d122009-11-18 18:41:07 -0800458 return 0;
459}
460
461static struct twl4030_gpio_platform_data cm_t35_gpio_data = {
462 .gpio_base = OMAP_MAX_GPIO_LINES,
463 .irq_base = TWL4030_GPIO_IRQ_BASE,
464 .irq_end = TWL4030_GPIO_IRQ_END,
465 .setup = cm_t35_twl_gpio_setup,
466};
467
468static struct twl4030_platform_data cm_t35_twldata = {
Mike Rapoport2886d122009-11-18 18:41:07 -0800469 /* platform_data for children goes here */
470 .keypad = &cm_t35_kp_data,
Mike Rapoport2886d122009-11-18 18:41:07 -0800471 .gpio = &cm_t35_gpio_data,
472 .vmmc1 = &cm_t35_vmmc1,
473 .vsim = &cm_t35_vsim,
Igor Grinbergb74f1492011-12-13 10:48:51 -0800474 .vio = &cm_t35_vio,
Mike Rapoport2886d122009-11-18 18:41:07 -0800475};
476
Mike Rapoport2886d122009-11-18 18:41:07 -0800477static void __init cm_t35_init_i2c(void)
478{
Peter Ujfalusib252b0e2011-06-07 11:38:24 +0300479 omap3_pmic_get_config(&cm_t35_twldata, TWL_COMMON_PDATA_USB,
Igor Grinberg19ce6432011-12-13 10:48:52 -0800480 TWL_COMMON_REGULATOR_VDAC |
481 TWL_COMMON_PDATA_AUDIO);
Peter Ujfalusib252b0e2011-06-07 11:38:24 +0300482
Mike Rapoportfbd80712011-04-25 01:09:06 +0300483 omap3_pmic_init("tps65930", &cm_t35_twldata);
Mike Rapoport2886d122009-11-18 18:41:07 -0800484}
485
Tony Lindgrenc7ecea22011-03-11 11:39:51 -0800486#ifdef CONFIG_OMAP_MUX
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800487static struct omap_board_mux board_mux[] __initdata = {
Mike Rapoportedc961a2009-12-11 16:16:35 -0800488 /* nCS and IRQ for CM-T35 ethernet */
489 OMAP3_MUX(GPMC_NCS5, OMAP_MUX_MODE0),
490 OMAP3_MUX(UART3_CTS_RCTX, OMAP_MUX_MODE4 | OMAP_PIN_INPUT_PULLUP),
491
492 /* nCS and IRQ for SB-T35 ethernet */
493 OMAP3_MUX(GPMC_NCS4, OMAP_MUX_MODE0),
494 OMAP3_MUX(GPMC_WAIT3, OMAP_MUX_MODE4 | OMAP_PIN_INPUT_PULLUP),
495
496 /* PENDOWN GPIO */
497 OMAP3_MUX(GPMC_NCS6, OMAP_MUX_MODE4 | OMAP_PIN_INPUT),
498
499 /* mUSB */
500 OMAP3_MUX(HSUSB0_CLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
501 OMAP3_MUX(HSUSB0_STP, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
502 OMAP3_MUX(HSUSB0_DIR, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
503 OMAP3_MUX(HSUSB0_NXT, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
504 OMAP3_MUX(HSUSB0_DATA0, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
505 OMAP3_MUX(HSUSB0_DATA1, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
506 OMAP3_MUX(HSUSB0_DATA2, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
507 OMAP3_MUX(HSUSB0_DATA3, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
508 OMAP3_MUX(HSUSB0_DATA4, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
509 OMAP3_MUX(HSUSB0_DATA5, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
510 OMAP3_MUX(HSUSB0_DATA6, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
511 OMAP3_MUX(HSUSB0_DATA7, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
512
513 /* MMC 2 */
514 OMAP3_MUX(SDMMC2_DAT4, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
515 OMAP3_MUX(SDMMC2_DAT5, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
516 OMAP3_MUX(SDMMC2_DAT6, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
517 OMAP3_MUX(SDMMC2_DAT7, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
518
519 /* McSPI 1 */
520 OMAP3_MUX(MCSPI1_CLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
521 OMAP3_MUX(MCSPI1_SIMO, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
522 OMAP3_MUX(MCSPI1_SOMI, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
523 OMAP3_MUX(MCSPI1_CS0, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN),
524
525 /* McSPI 4 */
526 OMAP3_MUX(MCBSP1_CLKR, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
527 OMAP3_MUX(MCBSP1_DX, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
528 OMAP3_MUX(MCBSP1_DR, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
529 OMAP3_MUX(MCBSP1_FSX, OMAP_MUX_MODE1 | OMAP_PIN_INPUT_PULLUP),
530
531 /* McBSP 2 */
532 OMAP3_MUX(MCBSP2_FSX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
533 OMAP3_MUX(MCBSP2_CLKX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
534 OMAP3_MUX(MCBSP2_DR, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
535 OMAP3_MUX(MCBSP2_DX, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
536
537 /* serial ports */
538 OMAP3_MUX(MCBSP3_CLKX, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
539 OMAP3_MUX(MCBSP3_FSX, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
540 OMAP3_MUX(UART1_TX, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
541 OMAP3_MUX(UART1_RX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
542
Igor Grinbergc3146972011-07-05 03:38:23 -0700543 /* common DSS */
Mike Rapoportedc961a2009-12-11 16:16:35 -0800544 OMAP3_MUX(DSS_PCLK, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
545 OMAP3_MUX(DSS_HSYNC, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
546 OMAP3_MUX(DSS_VSYNC, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
547 OMAP3_MUX(DSS_ACBIAS, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
Mike Rapoportedc961a2009-12-11 16:16:35 -0800548 OMAP3_MUX(DSS_DATA6, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
549 OMAP3_MUX(DSS_DATA7, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
550 OMAP3_MUX(DSS_DATA8, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
551 OMAP3_MUX(DSS_DATA9, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
552 OMAP3_MUX(DSS_DATA10, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
553 OMAP3_MUX(DSS_DATA11, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
554 OMAP3_MUX(DSS_DATA12, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
555 OMAP3_MUX(DSS_DATA13, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
556 OMAP3_MUX(DSS_DATA14, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
557 OMAP3_MUX(DSS_DATA15, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
558 OMAP3_MUX(DSS_DATA16, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
559 OMAP3_MUX(DSS_DATA17, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
Mike Rapoportedc961a2009-12-11 16:16:35 -0800560
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100561 /* display controls */
562 OMAP3_MUX(MCBSP1_FSR, OMAP_MUX_MODE4 | OMAP_PIN_OUTPUT),
563 OMAP3_MUX(GPMC_NCS7, OMAP_MUX_MODE4 | OMAP_PIN_OUTPUT),
564 OMAP3_MUX(GPMC_NCS3, OMAP_MUX_MODE4 | OMAP_PIN_OUTPUT),
565
Mike Rapoportedc961a2009-12-11 16:16:35 -0800566 /* TPS IRQ */
567 OMAP3_MUX(SYS_NIRQ, OMAP_MUX_MODE0 | OMAP_WAKEUP_EN | \
568 OMAP_PIN_INPUT_PULLUP),
569
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800570 { .reg_offset = OMAP_MUX_TERMINATOR },
571};
Igor Grinbergc3146972011-07-05 03:38:23 -0700572
573static void __init cm_t3x_common_dss_mux_init(int mux_mode)
574{
575 omap_mux_init_signal("dss_data18", mux_mode);
576 omap_mux_init_signal("dss_data19", mux_mode);
577 omap_mux_init_signal("dss_data20", mux_mode);
578 omap_mux_init_signal("dss_data21", mux_mode);
579 omap_mux_init_signal("dss_data22", mux_mode);
580 omap_mux_init_signal("dss_data23", mux_mode);
581}
582
583static void __init cm_t35_init_mux(void)
584{
585 omap_mux_init_signal("gpio_70", OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT);
586 omap_mux_init_signal("gpio_71", OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT);
587 omap_mux_init_signal("gpio_72", OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT);
588 omap_mux_init_signal("gpio_73", OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT);
589 omap_mux_init_signal("gpio_74", OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT);
590 omap_mux_init_signal("gpio_75", OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT);
591 cm_t3x_common_dss_mux_init(OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT);
592}
593
594static void __init cm_t3730_init_mux(void)
595{
596 omap_mux_init_signal("sys_boot0", OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT);
597 omap_mux_init_signal("sys_boot1", OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT);
598 omap_mux_init_signal("sys_boot3", OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT);
599 omap_mux_init_signal("sys_boot4", OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT);
600 omap_mux_init_signal("sys_boot5", OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT);
601 omap_mux_init_signal("sys_boot6", OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT);
602 cm_t3x_common_dss_mux_init(OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT);
603}
604#else
605static inline void cm_t35_init_mux(void) {}
606static inline void cm_t3730_init_mux(void) {}
Tony Lindgrenc7ecea22011-03-11 11:39:51 -0800607#endif
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800608
Tony Lindgrene41cccf2011-02-24 14:36:03 -0800609static struct omap_board_config_kernel cm_t35_config[] __initdata = {
610};
611
Igor Grinbergc3146972011-07-05 03:38:23 -0700612static void __init cm_t3x_common_init(void)
Mike Rapoport2886d122009-11-18 18:41:07 -0800613{
Tony Lindgrene41cccf2011-02-24 14:36:03 -0800614 omap_board_config = cm_t35_config;
615 omap_board_config_size = ARRAY_SIZE(cm_t35_config);
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800616 omap3_mux_init(board_mux, OMAP_PACKAGE_CUS);
Mike Rapoport2886d122009-11-18 18:41:07 -0800617 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700618 omap_sdrc_init(mt46h32m32lf6_sdrc_params,
619 mt46h32m32lf6_sdrc_params);
Mike Rapoport2886d122009-11-18 18:41:07 -0800620 cm_t35_init_i2c();
Mike Rapoport96974a22011-04-25 01:09:05 +0300621 omap_ads7846_init(1, CM_T35_GPIO_PENDOWN, 0, NULL);
Mike Rapoport2886d122009-11-18 18:41:07 -0800622 cm_t35_init_ethernet();
623 cm_t35_init_led();
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100624 cm_t35_init_display();
Mike Rapoport2886d122009-11-18 18:41:07 -0800625
Mike Rapoport9e186302011-04-27 11:56:12 +0300626 usb_musb_init(NULL);
Keshava Munegowda9e64bb12011-03-01 20:08:19 +0530627 usbhs_init(&usbhs_bdata);
Mike Rapoport2886d122009-11-18 18:41:07 -0800628}
629
Igor Grinbergc3146972011-07-05 03:38:23 -0700630static void __init cm_t35_init(void)
631{
632 cm_t3x_common_init();
633 cm_t35_init_mux();
634 cm_t35_init_nand();
635}
636
637static void __init cm_t3730_init(void)
638{
639 cm_t3x_common_init();
640 cm_t3730_init_mux();
641}
642
Mike Rapoport2886d122009-11-18 18:41:07 -0800643MACHINE_START(CM_T35, "Compulab CM-T35")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400644 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100645 .reserve = omap_reserve,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800646 .map_io = omap3_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700647 .init_early = omap35xx_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700648 .init_irq = omap3_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100649 .handle_irq = omap3_intc_handle_irq,
Mike Rapoport2886d122009-11-18 18:41:07 -0800650 .init_machine = cm_t35_init,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700651 .timer = &omap3_timer,
Mike Rapoport2886d122009-11-18 18:41:07 -0800652MACHINE_END
Igor Grinbergc3146972011-07-05 03:38:23 -0700653
654MACHINE_START(CM_T3730, "Compulab CM-T3730")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400655 .atag_offset = 0x100,
Igor Grinbergc3146972011-07-05 03:38:23 -0700656 .reserve = omap_reserve,
657 .map_io = omap3_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700658 .init_early = omap3630_init_early,
Igor Grinbergc3146972011-07-05 03:38:23 -0700659 .init_irq = omap3_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100660 .handle_irq = omap3_intc_handle_irq,
Igor Grinbergc3146972011-07-05 03:38:23 -0700661 .init_machine = cm_t3730_init,
662 .timer = &omap3_timer,
663MACHINE_END