blob: 35891d49c631991ac5e69ac995507b1e08b25624 [file] [log] [blame]
Mike Rapoport2886d122009-11-18 18:41:07 -08001/*
2 * board-cm-t35.c (CompuLab CM-T35 module)
3 *
4 * Copyright (C) 2009 CompuLab, Ltd.
5 * Author: Mike Rapoport <mike@compulab.co.il>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
19 * 02110-1301 USA
20 *
21 */
22
23#include <linux/kernel.h>
24#include <linux/init.h>
25#include <linux/platform_device.h>
26#include <linux/input.h>
27#include <linux/input/matrix_keypad.h>
28#include <linux/delay.h>
29#include <linux/gpio.h>
30
31#include <linux/i2c/at24.h>
Balaji T Kebeb53e2009-12-15 20:09:02 +053032#include <linux/i2c/twl.h>
Mike Rapoport2886d122009-11-18 18:41:07 -080033#include <linux/regulator/machine.h>
Sukumar Ghorai3a638332010-09-15 14:49:23 +000034#include <linux/mmc/host.h>
Mike Rapoport2886d122009-11-18 18:41:07 -080035
Mike Rapoport7f049ad2009-12-14 09:01:08 +010036#include <linux/spi/spi.h>
37#include <linux/spi/tdo24m.h>
38
Mike Rapoport2886d122009-11-18 18:41:07 -080039#include <asm/mach-types.h>
40#include <asm/mach/arch.h>
41#include <asm/mach/map.h>
42
43#include <plat/board.h>
44#include <plat/common.h>
Mike Rapoport2886d122009-11-18 18:41:07 -080045#include <plat/nand.h>
46#include <plat/gpmc.h>
47#include <plat/usb.h>
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030048#include <video/omapdss.h>
Tomi Valkeinenf8ae2f02011-05-10 19:48:10 +030049#include <video/omap-panel-generic-dpi.h>
Tony Lindgren609c9ba2010-04-30 12:57:14 -070050#include <plat/mcspi.h>
Mike Rapoport2886d122009-11-18 18:41:07 -080051
52#include <mach/hardware.h>
53
Tony Lindgrenca5742b2009-12-11 16:16:32 -080054#include "mux.h"
Mike Rapoport2886d122009-11-18 18:41:07 -080055#include "sdram-micron-mt46h32m32lf-6.h"
Adrian Hunterd02a9002010-02-15 10:03:34 -080056#include "hsmmc.h"
Mike Rapoport96974a22011-04-25 01:09:05 +030057#include "common-board-devices.h"
Mike Rapoport2886d122009-11-18 18:41:07 -080058
59#define CM_T35_GPIO_PENDOWN 57
60
61#define CM_T35_SMSC911X_CS 5
62#define CM_T35_SMSC911X_GPIO 163
63#define SB_T35_SMSC911X_CS 4
64#define SB_T35_SMSC911X_GPIO 65
65
Mike Rapoport2886d122009-11-18 18:41:07 -080066#if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
67#include <linux/smsc911x.h>
Mike Rapoport21b42732011-04-16 22:29:30 +000068#include <plat/gpmc-smsc911x.h>
Mike Rapoport2886d122009-11-18 18:41:07 -080069
Mike Rapoport21b42732011-04-16 22:29:30 +000070static struct omap_smsc911x_platform_data cm_t35_smsc911x_cfg = {
Mike Rapoport2886d122009-11-18 18:41:07 -080071 .id = 0,
Mike Rapoport21b42732011-04-16 22:29:30 +000072 .cs = CM_T35_SMSC911X_CS,
73 .gpio_irq = CM_T35_SMSC911X_GPIO,
74 .gpio_reset = -EINVAL,
75 .flags = SMSC911X_USE_32BIT | SMSC911X_SAVE_MAC_ADDRESS,
Mike Rapoport2886d122009-11-18 18:41:07 -080076};
77
Mike Rapoport21b42732011-04-16 22:29:30 +000078static struct omap_smsc911x_platform_data sb_t35_smsc911x_cfg = {
Mike Rapoport2886d122009-11-18 18:41:07 -080079 .id = 1,
Mike Rapoport21b42732011-04-16 22:29:30 +000080 .cs = SB_T35_SMSC911X_CS,
81 .gpio_irq = SB_T35_SMSC911X_GPIO,
82 .gpio_reset = -EINVAL,
83 .flags = SMSC911X_USE_32BIT | SMSC911X_SAVE_MAC_ADDRESS,
Mike Rapoport2886d122009-11-18 18:41:07 -080084};
85
Mike Rapoport2886d122009-11-18 18:41:07 -080086static void __init cm_t35_init_ethernet(void)
87{
Mike Rapoport21b42732011-04-16 22:29:30 +000088 gpmc_smsc911x_init(&cm_t35_smsc911x_cfg);
89 gpmc_smsc911x_init(&sb_t35_smsc911x_cfg);
Mike Rapoport2886d122009-11-18 18:41:07 -080090}
91#else
92static inline void __init cm_t35_init_ethernet(void) { return; }
93#endif
94
95#if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
96#include <linux/leds.h>
97
98static struct gpio_led cm_t35_leds[] = {
99 [0] = {
100 .gpio = 186,
101 .name = "cm-t35:green",
102 .default_trigger = "heartbeat",
103 .active_low = 0,
104 },
105};
106
107static struct gpio_led_platform_data cm_t35_led_pdata = {
108 .num_leds = ARRAY_SIZE(cm_t35_leds),
109 .leds = cm_t35_leds,
110};
111
112static struct platform_device cm_t35_led_device = {
113 .name = "leds-gpio",
114 .id = -1,
115 .dev = {
116 .platform_data = &cm_t35_led_pdata,
117 },
118};
119
120static void __init cm_t35_init_led(void)
121{
122 platform_device_register(&cm_t35_led_device);
123}
124#else
125static inline void cm_t35_init_led(void) {}
126#endif
127
128#if defined(CONFIG_MTD_NAND_OMAP2) || defined(CONFIG_MTD_NAND_OMAP2_MODULE)
129#include <linux/mtd/mtd.h>
130#include <linux/mtd/nand.h>
131#include <linux/mtd/partitions.h>
132
133static struct mtd_partition cm_t35_nand_partitions[] = {
134 {
135 .name = "xloader",
136 .offset = 0, /* Offset = 0x00000 */
137 .size = 4 * NAND_BLOCK_SIZE,
138 .mask_flags = MTD_WRITEABLE
139 },
140 {
141 .name = "uboot",
142 .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */
143 .size = 15 * NAND_BLOCK_SIZE,
144 },
145 {
146 .name = "uboot environment",
147 .offset = MTDPART_OFS_APPEND, /* Offset = 0x260000 */
148 .size = 2 * NAND_BLOCK_SIZE,
149 },
150 {
151 .name = "linux",
152 .offset = MTDPART_OFS_APPEND, /* Offset = 0x280000 */
153 .size = 32 * NAND_BLOCK_SIZE,
154 },
155 {
156 .name = "rootfs",
157 .offset = MTDPART_OFS_APPEND, /* Offset = 0x680000 */
158 .size = MTDPART_SIZ_FULL,
159 },
160};
161
162static struct omap_nand_platform_data cm_t35_nand_data = {
163 .parts = cm_t35_nand_partitions,
164 .nr_parts = ARRAY_SIZE(cm_t35_nand_partitions),
Mike Rapoport2886d122009-11-18 18:41:07 -0800165 .cs = 0,
Mike Rapoport2886d122009-11-18 18:41:07 -0800166};
167
Mike Rapoport2886d122009-11-18 18:41:07 -0800168static void __init cm_t35_init_nand(void)
169{
Sukumar Ghoraif450d862010-07-09 09:14:46 +0000170 if (gpmc_nand_init(&cm_t35_nand_data) < 0)
Mike Rapoport2886d122009-11-18 18:41:07 -0800171 pr_err("CM-T35: Unable to register NAND device\n");
172}
173#else
174static inline void cm_t35_init_nand(void) {}
175#endif
176
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100177#define CM_T35_LCD_EN_GPIO 157
178#define CM_T35_LCD_BL_GPIO 58
179#define CM_T35_DVI_EN_GPIO 54
180
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100181static int lcd_enabled;
182static int dvi_enabled;
183
184static int cm_t35_panel_enable_lcd(struct omap_dss_device *dssdev)
185{
186 if (dvi_enabled) {
187 printk(KERN_ERR "cannot enable LCD, DVI is enabled\n");
188 return -EINVAL;
189 }
190
Igor Grinbergbc593f52011-05-03 18:22:09 +0300191 gpio_set_value(CM_T35_LCD_EN_GPIO, 1);
192 gpio_set_value(CM_T35_LCD_BL_GPIO, 1);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100193
194 lcd_enabled = 1;
195
196 return 0;
197}
198
199static void cm_t35_panel_disable_lcd(struct omap_dss_device *dssdev)
200{
201 lcd_enabled = 0;
202
Igor Grinbergbc593f52011-05-03 18:22:09 +0300203 gpio_set_value(CM_T35_LCD_BL_GPIO, 0);
204 gpio_set_value(CM_T35_LCD_EN_GPIO, 0);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100205}
206
207static int cm_t35_panel_enable_dvi(struct omap_dss_device *dssdev)
208{
209 if (lcd_enabled) {
210 printk(KERN_ERR "cannot enable DVI, LCD is enabled\n");
211 return -EINVAL;
212 }
213
Igor Grinbergbc593f52011-05-03 18:22:09 +0300214 gpio_set_value(CM_T35_DVI_EN_GPIO, 0);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100215 dvi_enabled = 1;
216
217 return 0;
218}
219
220static void cm_t35_panel_disable_dvi(struct omap_dss_device *dssdev)
221{
Igor Grinbergbc593f52011-05-03 18:22:09 +0300222 gpio_set_value(CM_T35_DVI_EN_GPIO, 1);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100223 dvi_enabled = 0;
224}
225
226static int cm_t35_panel_enable_tv(struct omap_dss_device *dssdev)
227{
228 return 0;
229}
230
231static void cm_t35_panel_disable_tv(struct omap_dss_device *dssdev)
232{
233}
234
Bryan Wu89747c92010-11-17 13:34:34 +0000235static struct panel_generic_dpi_data lcd_panel = {
236 .name = "toppoly_tdo35s",
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100237 .platform_enable = cm_t35_panel_enable_lcd,
238 .platform_disable = cm_t35_panel_disable_lcd,
239};
240
Bryan Wu89747c92010-11-17 13:34:34 +0000241static struct omap_dss_device cm_t35_lcd_device = {
242 .name = "lcd",
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100243 .type = OMAP_DISPLAY_TYPE_DPI,
Bryan Wu89747c92010-11-17 13:34:34 +0000244 .driver_name = "generic_dpi_panel",
245 .data = &lcd_panel,
246 .phy.dpi.data_lines = 18,
247};
248
249static struct panel_generic_dpi_data dvi_panel = {
250 .name = "generic",
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100251 .platform_enable = cm_t35_panel_enable_dvi,
252 .platform_disable = cm_t35_panel_disable_dvi,
253};
254
Bryan Wu89747c92010-11-17 13:34:34 +0000255static struct omap_dss_device cm_t35_dvi_device = {
256 .name = "dvi",
257 .type = OMAP_DISPLAY_TYPE_DPI,
258 .driver_name = "generic_dpi_panel",
259 .data = &dvi_panel,
260 .phy.dpi.data_lines = 24,
261};
262
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100263static struct omap_dss_device cm_t35_tv_device = {
264 .name = "tv",
265 .driver_name = "venc",
266 .type = OMAP_DISPLAY_TYPE_VENC,
267 .phy.venc.type = OMAP_DSS_VENC_TYPE_SVIDEO,
268 .platform_enable = cm_t35_panel_enable_tv,
269 .platform_disable = cm_t35_panel_disable_tv,
270};
271
272static struct omap_dss_device *cm_t35_dss_devices[] = {
273 &cm_t35_lcd_device,
274 &cm_t35_dvi_device,
275 &cm_t35_tv_device,
276};
277
278static struct omap_dss_board_info cm_t35_dss_data = {
279 .num_devices = ARRAY_SIZE(cm_t35_dss_devices),
280 .devices = cm_t35_dss_devices,
281 .default_device = &cm_t35_dvi_device,
282};
283
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100284static struct omap2_mcspi_device_config tdo24m_mcspi_config = {
285 .turbo_mode = 0,
286 .single_channel = 1, /* 0: slave, 1: master */
287};
288
289static struct tdo24m_platform_data tdo24m_config = {
290 .model = TDO35S,
291};
292
293static struct spi_board_info cm_t35_lcd_spi_board_info[] __initdata = {
294 {
295 .modalias = "tdo24m",
296 .bus_num = 4,
297 .chip_select = 0,
298 .max_speed_hz = 1000000,
299 .controller_data = &tdo24m_mcspi_config,
300 .platform_data = &tdo24m_config,
301 },
302};
303
Igor Grinbergbc593f52011-05-03 18:22:09 +0300304static struct gpio cm_t35_dss_gpios[] __initdata = {
305 { CM_T35_LCD_EN_GPIO, GPIOF_OUT_INIT_LOW, "lcd enable" },
306 { CM_T35_LCD_BL_GPIO, GPIOF_OUT_INIT_LOW, "lcd bl enable" },
307 { CM_T35_DVI_EN_GPIO, GPIOF_OUT_INIT_HIGH, "dvi enable" },
308};
309
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100310static void __init cm_t35_init_display(void)
311{
312 int err;
313
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100314 spi_register_board_info(cm_t35_lcd_spi_board_info,
315 ARRAY_SIZE(cm_t35_lcd_spi_board_info));
316
Igor Grinbergbc593f52011-05-03 18:22:09 +0300317 err = gpio_request_array(cm_t35_dss_gpios,
318 ARRAY_SIZE(cm_t35_dss_gpios));
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100319 if (err) {
Igor Grinbergbc593f52011-05-03 18:22:09 +0300320 pr_err("CM-T35: failed to request DSS control GPIOs\n");
321 return;
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100322 }
323
Igor Grinbergbc593f52011-05-03 18:22:09 +0300324 gpio_export(CM_T35_LCD_EN_GPIO, 0);
325 gpio_export(CM_T35_LCD_BL_GPIO, 0);
326 gpio_export(CM_T35_DVI_EN_GPIO, 0);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100327
328 msleep(50);
Igor Grinbergbc593f52011-05-03 18:22:09 +0300329 gpio_set_value(CM_T35_LCD_EN_GPIO, 1);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100330
Senthilvadivu Guruswamyd5e13222011-02-22 11:24:50 +0200331 err = omap_display_init(&cm_t35_dss_data);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100332 if (err) {
333 pr_err("CM-T35: failed to register DSS device\n");
Igor Grinbergbc593f52011-05-03 18:22:09 +0300334 gpio_free_array(cm_t35_dss_gpios, ARRAY_SIZE(cm_t35_dss_gpios));
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100335 }
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100336}
337
Oleg Drokin786b01a2011-06-06 18:57:07 +0000338static struct regulator_consumer_supply cm_t35_vmmc1_supply[] = {
339 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
Mike Rapoport2886d122009-11-18 18:41:07 -0800340};
341
Oleg Drokin786b01a2011-06-06 18:57:07 +0000342static struct regulator_consumer_supply cm_t35_vsim_supply[] = {
343 REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.0"),
Mike Rapoport2886d122009-11-18 18:41:07 -0800344};
345
Oleg Drokin786b01a2011-06-06 18:57:07 +0000346static struct regulator_consumer_supply cm_t35_vdvi_supply[] = {
347 REGULATOR_SUPPLY("vdvi", "omapdss"),
348};
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100349
Mike Rapoport2886d122009-11-18 18:41:07 -0800350/* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
351static struct regulator_init_data cm_t35_vmmc1 = {
352 .constraints = {
353 .min_uV = 1850000,
354 .max_uV = 3150000,
355 .valid_modes_mask = REGULATOR_MODE_NORMAL
356 | REGULATOR_MODE_STANDBY,
357 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
358 | REGULATOR_CHANGE_MODE
359 | REGULATOR_CHANGE_STATUS,
360 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000361 .num_consumer_supplies = ARRAY_SIZE(cm_t35_vmmc1_supply),
362 .consumer_supplies = cm_t35_vmmc1_supply,
Mike Rapoport2886d122009-11-18 18:41:07 -0800363};
364
365/* VSIM for MMC1 pins DAT4..DAT7 (2 mA, plus card == max 50 mA) */
366static struct regulator_init_data cm_t35_vsim = {
367 .constraints = {
368 .min_uV = 1800000,
369 .max_uV = 3000000,
370 .valid_modes_mask = REGULATOR_MODE_NORMAL
371 | REGULATOR_MODE_STANDBY,
372 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
373 | REGULATOR_CHANGE_MODE
374 | REGULATOR_CHANGE_STATUS,
375 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000376 .num_consumer_supplies = ARRAY_SIZE(cm_t35_vsim_supply),
377 .consumer_supplies = cm_t35_vsim_supply,
Mike Rapoport2886d122009-11-18 18:41:07 -0800378};
379
Manjunath Kondaiah Gbead4372010-10-08 10:01:13 -0700380static uint32_t cm_t35_keymap[] = {
Mike Rapoport2886d122009-11-18 18:41:07 -0800381 KEY(0, 0, KEY_A), KEY(0, 1, KEY_B), KEY(0, 2, KEY_LEFT),
382 KEY(1, 0, KEY_UP), KEY(1, 1, KEY_ENTER), KEY(1, 2, KEY_DOWN),
383 KEY(2, 0, KEY_RIGHT), KEY(2, 1, KEY_C), KEY(2, 2, KEY_D),
384};
385
386static struct matrix_keymap_data cm_t35_keymap_data = {
387 .keymap = cm_t35_keymap,
388 .keymap_size = ARRAY_SIZE(cm_t35_keymap),
389};
390
391static struct twl4030_keypad_data cm_t35_kp_data = {
392 .keymap_data = &cm_t35_keymap_data,
393 .rows = 3,
394 .cols = 3,
395 .rep = 1,
396};
397
Adrian Hunter68ff0422010-02-15 10:03:34 -0800398static struct omap2_hsmmc_info mmc[] = {
Mike Rapoport2886d122009-11-18 18:41:07 -0800399 {
400 .mmc = 1,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000401 .caps = MMC_CAP_4_BIT_DATA,
Mike Rapoport2886d122009-11-18 18:41:07 -0800402 .gpio_cd = -EINVAL,
403 .gpio_wp = -EINVAL,
404
405 },
406 {
407 .mmc = 2,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000408 .caps = MMC_CAP_4_BIT_DATA,
Mike Rapoport2886d122009-11-18 18:41:07 -0800409 .transceiver = 1,
410 .gpio_cd = -EINVAL,
411 .gpio_wp = -EINVAL,
412 .ocr_mask = 0x00100000, /* 3.3V */
413 },
414 {} /* Terminator */
415};
416
Keshava Munegowda181b2502011-03-01 20:08:16 +0530417static struct usbhs_omap_board_data usbhs_bdata __initdata = {
418 .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY,
419 .port_mode[1] = OMAP_EHCI_PORT_MODE_PHY,
420 .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
Mike Rapoport2886d122009-11-18 18:41:07 -0800421
422 .phy_reset = true,
Bryan Wu1a6b5922010-12-08 02:41:25 +0000423 .reset_gpio_port[0] = OMAP_MAX_GPIO_LINES + 6,
424 .reset_gpio_port[1] = OMAP_MAX_GPIO_LINES + 7,
Mike Rapoport2886d122009-11-18 18:41:07 -0800425 .reset_gpio_port[2] = -EINVAL
426};
427
428static int cm_t35_twl_gpio_setup(struct device *dev, unsigned gpio,
429 unsigned ngpio)
430{
431 int wlan_rst = gpio + 2;
432
Igor Grinbergbc593f52011-05-03 18:22:09 +0300433 if (gpio_request_one(wlan_rst, GPIOF_OUT_INIT_HIGH, "WLAN RST") == 0) {
Mike Rapoport2886d122009-11-18 18:41:07 -0800434 gpio_export(wlan_rst, 0);
Mike Rapoport2886d122009-11-18 18:41:07 -0800435 udelay(10);
436 gpio_set_value(wlan_rst, 0);
437 udelay(10);
438 gpio_set_value(wlan_rst, 1);
439 } else {
440 pr_err("CM-T35: could not obtain gpio for WiFi reset\n");
441 }
442
443 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
444 mmc[0].gpio_cd = gpio + 0;
Adrian Hunter68ff0422010-02-15 10:03:34 -0800445 omap2_hsmmc_init(mmc);
Mike Rapoport2886d122009-11-18 18:41:07 -0800446
Mike Rapoport2886d122009-11-18 18:41:07 -0800447 return 0;
448}
449
450static struct twl4030_gpio_platform_data cm_t35_gpio_data = {
451 .gpio_base = OMAP_MAX_GPIO_LINES,
452 .irq_base = TWL4030_GPIO_IRQ_BASE,
453 .irq_end = TWL4030_GPIO_IRQ_END,
454 .setup = cm_t35_twl_gpio_setup,
455};
456
457static struct twl4030_platform_data cm_t35_twldata = {
Mike Rapoport2886d122009-11-18 18:41:07 -0800458 /* platform_data for children goes here */
459 .keypad = &cm_t35_kp_data,
Mike Rapoport2886d122009-11-18 18:41:07 -0800460 .gpio = &cm_t35_gpio_data,
461 .vmmc1 = &cm_t35_vmmc1,
462 .vsim = &cm_t35_vsim,
463};
464
Mike Rapoport2886d122009-11-18 18:41:07 -0800465static void __init cm_t35_init_i2c(void)
466{
Peter Ujfalusib252b0e2011-06-07 11:38:24 +0300467 omap3_pmic_get_config(&cm_t35_twldata, TWL_COMMON_PDATA_USB,
468 TWL_COMMON_REGULATOR_VDAC | TWL_COMMON_REGULATOR_VPLL2);
469
470 cm_t35_twldata.vpll2->constraints.name = "VDVI";
471 cm_t35_twldata.vpll2->num_consumer_supplies =
472 ARRAY_SIZE(cm_t35_vdvi_supply);
473 cm_t35_twldata.vpll2->consumer_supplies = cm_t35_vdvi_supply;
474
Mike Rapoportfbd80712011-04-25 01:09:06 +0300475 omap3_pmic_init("tps65930", &cm_t35_twldata);
Mike Rapoport2886d122009-11-18 18:41:07 -0800476}
477
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800478static void __init cm_t35_init_early(void)
Mike Rapoport2886d122009-11-18 18:41:07 -0800479{
Paul Walmsley48057342010-12-21 15:25:10 -0700480 omap2_init_common_infrastructure();
481 omap2_init_common_devices(mt46h32m32lf6_sdrc_params,
Mike Rapoport2886d122009-11-18 18:41:07 -0800482 mt46h32m32lf6_sdrc_params);
Mike Rapoport2886d122009-11-18 18:41:07 -0800483}
484
Tony Lindgrenc7ecea22011-03-11 11:39:51 -0800485#ifdef CONFIG_OMAP_MUX
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800486static struct omap_board_mux board_mux[] __initdata = {
Mike Rapoportedc961a2009-12-11 16:16:35 -0800487 /* nCS and IRQ for CM-T35 ethernet */
488 OMAP3_MUX(GPMC_NCS5, OMAP_MUX_MODE0),
489 OMAP3_MUX(UART3_CTS_RCTX, OMAP_MUX_MODE4 | OMAP_PIN_INPUT_PULLUP),
490
491 /* nCS and IRQ for SB-T35 ethernet */
492 OMAP3_MUX(GPMC_NCS4, OMAP_MUX_MODE0),
493 OMAP3_MUX(GPMC_WAIT3, OMAP_MUX_MODE4 | OMAP_PIN_INPUT_PULLUP),
494
495 /* PENDOWN GPIO */
496 OMAP3_MUX(GPMC_NCS6, OMAP_MUX_MODE4 | OMAP_PIN_INPUT),
497
498 /* mUSB */
499 OMAP3_MUX(HSUSB0_CLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
500 OMAP3_MUX(HSUSB0_STP, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
501 OMAP3_MUX(HSUSB0_DIR, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
502 OMAP3_MUX(HSUSB0_NXT, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
503 OMAP3_MUX(HSUSB0_DATA0, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
504 OMAP3_MUX(HSUSB0_DATA1, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
505 OMAP3_MUX(HSUSB0_DATA2, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
506 OMAP3_MUX(HSUSB0_DATA3, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
507 OMAP3_MUX(HSUSB0_DATA4, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
508 OMAP3_MUX(HSUSB0_DATA5, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
509 OMAP3_MUX(HSUSB0_DATA6, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
510 OMAP3_MUX(HSUSB0_DATA7, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
511
512 /* MMC 2 */
513 OMAP3_MUX(SDMMC2_DAT4, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
514 OMAP3_MUX(SDMMC2_DAT5, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
515 OMAP3_MUX(SDMMC2_DAT6, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
516 OMAP3_MUX(SDMMC2_DAT7, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
517
518 /* McSPI 1 */
519 OMAP3_MUX(MCSPI1_CLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
520 OMAP3_MUX(MCSPI1_SIMO, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
521 OMAP3_MUX(MCSPI1_SOMI, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
522 OMAP3_MUX(MCSPI1_CS0, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN),
523
524 /* McSPI 4 */
525 OMAP3_MUX(MCBSP1_CLKR, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
526 OMAP3_MUX(MCBSP1_DX, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
527 OMAP3_MUX(MCBSP1_DR, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
528 OMAP3_MUX(MCBSP1_FSX, OMAP_MUX_MODE1 | OMAP_PIN_INPUT_PULLUP),
529
530 /* McBSP 2 */
531 OMAP3_MUX(MCBSP2_FSX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
532 OMAP3_MUX(MCBSP2_CLKX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
533 OMAP3_MUX(MCBSP2_DR, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
534 OMAP3_MUX(MCBSP2_DX, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
535
536 /* serial ports */
537 OMAP3_MUX(MCBSP3_CLKX, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
538 OMAP3_MUX(MCBSP3_FSX, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
539 OMAP3_MUX(UART1_TX, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
540 OMAP3_MUX(UART1_RX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
541
542 /* DSS */
543 OMAP3_MUX(DSS_PCLK, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
544 OMAP3_MUX(DSS_HSYNC, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
545 OMAP3_MUX(DSS_VSYNC, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
546 OMAP3_MUX(DSS_ACBIAS, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
547 OMAP3_MUX(DSS_DATA0, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
548 OMAP3_MUX(DSS_DATA1, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
549 OMAP3_MUX(DSS_DATA2, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
550 OMAP3_MUX(DSS_DATA3, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
551 OMAP3_MUX(DSS_DATA4, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
552 OMAP3_MUX(DSS_DATA5, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
553 OMAP3_MUX(DSS_DATA6, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
554 OMAP3_MUX(DSS_DATA7, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
555 OMAP3_MUX(DSS_DATA8, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
556 OMAP3_MUX(DSS_DATA9, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
557 OMAP3_MUX(DSS_DATA10, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
558 OMAP3_MUX(DSS_DATA11, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
559 OMAP3_MUX(DSS_DATA12, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
560 OMAP3_MUX(DSS_DATA13, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
561 OMAP3_MUX(DSS_DATA14, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
562 OMAP3_MUX(DSS_DATA15, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
563 OMAP3_MUX(DSS_DATA16, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
564 OMAP3_MUX(DSS_DATA17, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
565 OMAP3_MUX(DSS_DATA18, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
566 OMAP3_MUX(DSS_DATA19, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
567 OMAP3_MUX(DSS_DATA20, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
568 OMAP3_MUX(DSS_DATA21, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
569 OMAP3_MUX(DSS_DATA22, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
570 OMAP3_MUX(DSS_DATA23, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
571
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100572 /* display controls */
573 OMAP3_MUX(MCBSP1_FSR, OMAP_MUX_MODE4 | OMAP_PIN_OUTPUT),
574 OMAP3_MUX(GPMC_NCS7, OMAP_MUX_MODE4 | OMAP_PIN_OUTPUT),
575 OMAP3_MUX(GPMC_NCS3, OMAP_MUX_MODE4 | OMAP_PIN_OUTPUT),
576
Mike Rapoportedc961a2009-12-11 16:16:35 -0800577 /* TPS IRQ */
578 OMAP3_MUX(SYS_NIRQ, OMAP_MUX_MODE0 | OMAP_WAKEUP_EN | \
579 OMAP_PIN_INPUT_PULLUP),
580
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800581 { .reg_offset = OMAP_MUX_TERMINATOR },
582};
Tony Lindgrenc7ecea22011-03-11 11:39:51 -0800583#endif
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800584
Tony Lindgrene41cccf2011-02-24 14:36:03 -0800585static struct omap_board_config_kernel cm_t35_config[] __initdata = {
586};
587
Mike Rapoport2886d122009-11-18 18:41:07 -0800588static void __init cm_t35_init(void)
589{
Tony Lindgrene41cccf2011-02-24 14:36:03 -0800590 omap_board_config = cm_t35_config;
591 omap_board_config_size = ARRAY_SIZE(cm_t35_config);
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800592 omap3_mux_init(board_mux, OMAP_PACKAGE_CUS);
Mike Rapoport2886d122009-11-18 18:41:07 -0800593 omap_serial_init();
594 cm_t35_init_i2c();
595 cm_t35_init_nand();
Mike Rapoport96974a22011-04-25 01:09:05 +0300596 omap_ads7846_init(1, CM_T35_GPIO_PENDOWN, 0, NULL);
Mike Rapoport2886d122009-11-18 18:41:07 -0800597 cm_t35_init_ethernet();
598 cm_t35_init_led();
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100599 cm_t35_init_display();
Mike Rapoport2886d122009-11-18 18:41:07 -0800600
Mike Rapoport9e186302011-04-27 11:56:12 +0300601 usb_musb_init(NULL);
Keshava Munegowda9e64bb12011-03-01 20:08:19 +0530602 usbhs_init(&usbhs_bdata);
Mike Rapoport2886d122009-11-18 18:41:07 -0800603}
604
605MACHINE_START(CM_T35, "Compulab CM-T35")
Mike Rapoport2886d122009-11-18 18:41:07 -0800606 .boot_params = 0x80000100,
Russell King71ee7da2010-05-23 10:18:16 +0100607 .reserve = omap_reserve,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800608 .map_io = omap3_map_io,
609 .init_early = cm_t35_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700610 .init_irq = omap3_init_irq,
Mike Rapoport2886d122009-11-18 18:41:07 -0800611 .init_machine = cm_t35_init,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700612 .timer = &omap3_timer,
Mike Rapoport2886d122009-11-18 18:41:07 -0800613MACHINE_END