2 * CompuLab CM-T35/CM-T3730 modules support
4 * Copyright (C) 2009-2011 CompuLab, Ltd.
5 * Authors: Mike Rapoport <mike@compulab.co.il>
6 * Igor Grinberg <grinberg@compulab.co.il>
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.
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.
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>
27 #include <linux/i2c/at24.h>
28 #include <linux/i2c/twl.h>
29 #include <linux/regulator/machine.h>
30 #include <linux/mmc/host.h>
32 #include <linux/spi/spi.h>
33 #include <linux/spi/tdo24m.h>
35 #include <asm/mach-types.h>
36 #include <asm/mach/arch.h>
37 #include <asm/mach/map.h>
39 #include <plat/board.h>
40 #include <plat/common.h>
41 #include <plat/nand.h>
42 #include <plat/gpmc.h>
44 #include <video/omapdss.h>
45 #include <video/omap-panel-generic-dpi.h>
46 #include <video/omap-panel-dvi.h>
47 #include <plat/mcspi.h>
49 #include <mach/hardware.h>
52 #include "sdram-micron-mt46h32m32lf-6.h"
54 #include "common-board-devices.h"
56 #define CM_T35_GPIO_PENDOWN 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
63 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
64 #include <linux/smsc911x.h>
65 #include <plat/gpmc-smsc911x.h>
67 static struct omap_smsc911x_platform_data cm_t35_smsc911x_cfg
= {
69 .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
,
75 static struct omap_smsc911x_platform_data sb_t35_smsc911x_cfg
= {
77 .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
,
83 static void __init
cm_t35_init_ethernet(void)
85 gpmc_smsc911x_init(&cm_t35_smsc911x_cfg
);
86 gpmc_smsc911x_init(&sb_t35_smsc911x_cfg
);
89 static inline void __init
cm_t35_init_ethernet(void) { return; }
92 #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
93 #include <linux/leds.h>
95 static struct gpio_led cm_t35_leds
[] = {
98 .name
= "cm-t35:green",
99 .default_trigger
= "heartbeat",
104 static struct gpio_led_platform_data cm_t35_led_pdata
= {
105 .num_leds
= ARRAY_SIZE(cm_t35_leds
),
109 static struct platform_device cm_t35_led_device
= {
113 .platform_data
= &cm_t35_led_pdata
,
117 static void __init
cm_t35_init_led(void)
119 platform_device_register(&cm_t35_led_device
);
122 static inline void cm_t35_init_led(void) {}
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>
130 static struct mtd_partition cm_t35_nand_partitions
[] = {
133 .offset
= 0, /* Offset = 0x00000 */
134 .size
= 4 * NAND_BLOCK_SIZE
,
135 .mask_flags
= MTD_WRITEABLE
139 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x80000 */
140 .size
= 15 * NAND_BLOCK_SIZE
,
143 .name
= "uboot environment",
144 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x260000 */
145 .size
= 2 * NAND_BLOCK_SIZE
,
149 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x2A0000 */
150 .size
= 32 * NAND_BLOCK_SIZE
,
154 .offset
= MTDPART_OFS_APPEND
, /* Offset = 0x6A0000 */
155 .size
= MTDPART_SIZ_FULL
,
159 static struct omap_nand_platform_data cm_t35_nand_data
= {
160 .parts
= cm_t35_nand_partitions
,
161 .nr_parts
= ARRAY_SIZE(cm_t35_nand_partitions
),
165 static void __init
cm_t35_init_nand(void)
167 if (gpmc_nand_init(&cm_t35_nand_data
) < 0)
168 pr_err("CM-T35: Unable to register NAND device\n");
171 static inline void cm_t35_init_nand(void) {}
174 #define CM_T35_LCD_EN_GPIO 157
175 #define CM_T35_LCD_BL_GPIO 58
176 #define CM_T35_DVI_EN_GPIO 54
178 static int lcd_enabled
;
179 static int dvi_enabled
;
181 static int cm_t35_panel_enable_lcd(struct omap_dss_device
*dssdev
)
184 printk(KERN_ERR
"cannot enable LCD, DVI is enabled\n");
188 gpio_set_value(CM_T35_LCD_EN_GPIO
, 1);
189 gpio_set_value(CM_T35_LCD_BL_GPIO
, 1);
196 static void cm_t35_panel_disable_lcd(struct omap_dss_device
*dssdev
)
200 gpio_set_value(CM_T35_LCD_BL_GPIO
, 0);
201 gpio_set_value(CM_T35_LCD_EN_GPIO
, 0);
204 static int cm_t35_panel_enable_dvi(struct omap_dss_device
*dssdev
)
207 printk(KERN_ERR
"cannot enable DVI, LCD is enabled\n");
211 gpio_set_value(CM_T35_DVI_EN_GPIO
, 0);
217 static void cm_t35_panel_disable_dvi(struct omap_dss_device
*dssdev
)
219 gpio_set_value(CM_T35_DVI_EN_GPIO
, 1);
223 static int cm_t35_panel_enable_tv(struct omap_dss_device
*dssdev
)
228 static void cm_t35_panel_disable_tv(struct omap_dss_device
*dssdev
)
232 static struct panel_generic_dpi_data lcd_panel
= {
233 .name
= "toppoly_tdo35s",
234 .platform_enable
= cm_t35_panel_enable_lcd
,
235 .platform_disable
= cm_t35_panel_disable_lcd
,
238 static struct omap_dss_device cm_t35_lcd_device
= {
240 .type
= OMAP_DISPLAY_TYPE_DPI
,
241 .driver_name
= "generic_dpi_panel",
243 .phy
.dpi
.data_lines
= 18,
246 static struct panel_dvi_platform_data dvi_panel
= {
247 .platform_enable
= cm_t35_panel_enable_dvi
,
248 .platform_disable
= cm_t35_panel_disable_dvi
,
251 static struct omap_dss_device cm_t35_dvi_device
= {
253 .type
= OMAP_DISPLAY_TYPE_DPI
,
254 .driver_name
= "dvi",
256 .phy
.dpi
.data_lines
= 24,
259 static struct omap_dss_device cm_t35_tv_device
= {
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
,
268 static struct omap_dss_device
*cm_t35_dss_devices
[] = {
274 static 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
,
280 static struct omap2_mcspi_device_config tdo24m_mcspi_config
= {
282 .single_channel
= 1, /* 0: slave, 1: master */
285 static struct tdo24m_platform_data tdo24m_config
= {
289 static struct spi_board_info cm_t35_lcd_spi_board_info
[] __initdata
= {
291 .modalias
= "tdo24m",
294 .max_speed_hz
= 1000000,
295 .controller_data
= &tdo24m_mcspi_config
,
296 .platform_data
= &tdo24m_config
,
300 static 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" },
306 static void __init
cm_t35_init_display(void)
310 spi_register_board_info(cm_t35_lcd_spi_board_info
,
311 ARRAY_SIZE(cm_t35_lcd_spi_board_info
));
313 err
= gpio_request_array(cm_t35_dss_gpios
,
314 ARRAY_SIZE(cm_t35_dss_gpios
));
316 pr_err("CM-T35: failed to request DSS control GPIOs\n");
320 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);
325 gpio_set_value(CM_T35_LCD_EN_GPIO
, 1);
327 err
= omap_display_init(&cm_t35_dss_data
);
329 pr_err("CM-T35: failed to register DSS device\n");
330 gpio_free_array(cm_t35_dss_gpios
, ARRAY_SIZE(cm_t35_dss_gpios
));
334 static struct regulator_consumer_supply cm_t35_vmmc1_supply
[] = {
335 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
338 static struct regulator_consumer_supply cm_t35_vsim_supply
[] = {
339 REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.0"),
342 static struct regulator_consumer_supply cm_t35_vdvi_supply
[] = {
343 REGULATOR_SUPPLY("vdvi", "omapdss"),
346 /* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
347 static struct regulator_init_data cm_t35_vmmc1
= {
351 .valid_modes_mask
= REGULATOR_MODE_NORMAL
352 | REGULATOR_MODE_STANDBY
,
353 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
354 | REGULATOR_CHANGE_MODE
355 | REGULATOR_CHANGE_STATUS
,
357 .num_consumer_supplies
= ARRAY_SIZE(cm_t35_vmmc1_supply
),
358 .consumer_supplies
= cm_t35_vmmc1_supply
,
361 /* VSIM for MMC1 pins DAT4..DAT7 (2 mA, plus card == max 50 mA) */
362 static struct regulator_init_data cm_t35_vsim
= {
366 .valid_modes_mask
= REGULATOR_MODE_NORMAL
367 | REGULATOR_MODE_STANDBY
,
368 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
369 | REGULATOR_CHANGE_MODE
370 | REGULATOR_CHANGE_STATUS
,
372 .num_consumer_supplies
= ARRAY_SIZE(cm_t35_vsim_supply
),
373 .consumer_supplies
= cm_t35_vsim_supply
,
376 static uint32_t cm_t35_keymap
[] = {
377 KEY(0, 0, KEY_A
), KEY(0, 1, KEY_B
), KEY(0, 2, KEY_LEFT
),
378 KEY(1, 0, KEY_UP
), KEY(1, 1, KEY_ENTER
), KEY(1, 2, KEY_DOWN
),
379 KEY(2, 0, KEY_RIGHT
), KEY(2, 1, KEY_C
), KEY(2, 2, KEY_D
),
382 static struct matrix_keymap_data cm_t35_keymap_data
= {
383 .keymap
= cm_t35_keymap
,
384 .keymap_size
= ARRAY_SIZE(cm_t35_keymap
),
387 static struct twl4030_keypad_data cm_t35_kp_data
= {
388 .keymap_data
= &cm_t35_keymap_data
,
394 static struct omap2_hsmmc_info mmc
[] = {
397 .caps
= MMC_CAP_4_BIT_DATA
,
404 .caps
= MMC_CAP_4_BIT_DATA
,
408 .ocr_mask
= 0x00100000, /* 3.3V */
413 static struct usbhs_omap_board_data usbhs_bdata __initdata
= {
414 .port_mode
[0] = OMAP_EHCI_PORT_MODE_PHY
,
415 .port_mode
[1] = OMAP_EHCI_PORT_MODE_PHY
,
416 .port_mode
[2] = OMAP_USBHS_PORT_MODE_UNUSED
,
419 .reset_gpio_port
[0] = OMAP_MAX_GPIO_LINES
+ 6,
420 .reset_gpio_port
[1] = OMAP_MAX_GPIO_LINES
+ 7,
421 .reset_gpio_port
[2] = -EINVAL
424 static int cm_t35_twl_gpio_setup(struct device
*dev
, unsigned gpio
,
427 int wlan_rst
= gpio
+ 2;
429 if (gpio_request_one(wlan_rst
, GPIOF_OUT_INIT_HIGH
, "WLAN RST") == 0) {
430 gpio_export(wlan_rst
, 0);
432 gpio_set_value_cansleep(wlan_rst
, 0);
434 gpio_set_value_cansleep(wlan_rst
, 1);
436 pr_err("CM-T35: could not obtain gpio for WiFi reset\n");
439 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
440 mmc
[0].gpio_cd
= gpio
+ 0;
441 omap2_hsmmc_init(mmc
);
446 static struct twl4030_gpio_platform_data cm_t35_gpio_data
= {
447 .gpio_base
= OMAP_MAX_GPIO_LINES
,
448 .irq_base
= TWL4030_GPIO_IRQ_BASE
,
449 .irq_end
= TWL4030_GPIO_IRQ_END
,
450 .setup
= cm_t35_twl_gpio_setup
,
453 static struct twl4030_platform_data cm_t35_twldata
= {
454 /* platform_data for children goes here */
455 .keypad
= &cm_t35_kp_data
,
456 .gpio
= &cm_t35_gpio_data
,
457 .vmmc1
= &cm_t35_vmmc1
,
458 .vsim
= &cm_t35_vsim
,
461 static void __init
cm_t35_init_i2c(void)
463 omap3_pmic_get_config(&cm_t35_twldata
, TWL_COMMON_PDATA_USB
,
464 TWL_COMMON_REGULATOR_VDAC
| TWL_COMMON_REGULATOR_VPLL2
);
466 cm_t35_twldata
.vpll2
->constraints
.name
= "VDVI";
467 cm_t35_twldata
.vpll2
->num_consumer_supplies
=
468 ARRAY_SIZE(cm_t35_vdvi_supply
);
469 cm_t35_twldata
.vpll2
->consumer_supplies
= cm_t35_vdvi_supply
;
471 omap3_pmic_init("tps65930", &cm_t35_twldata
);
474 #ifdef CONFIG_OMAP_MUX
475 static struct omap_board_mux board_mux
[] __initdata
= {
476 /* nCS and IRQ for CM-T35 ethernet */
477 OMAP3_MUX(GPMC_NCS5
, OMAP_MUX_MODE0
),
478 OMAP3_MUX(UART3_CTS_RCTX
, OMAP_MUX_MODE4
| OMAP_PIN_INPUT_PULLUP
),
480 /* nCS and IRQ for SB-T35 ethernet */
481 OMAP3_MUX(GPMC_NCS4
, OMAP_MUX_MODE0
),
482 OMAP3_MUX(GPMC_WAIT3
, OMAP_MUX_MODE4
| OMAP_PIN_INPUT_PULLUP
),
485 OMAP3_MUX(GPMC_NCS6
, OMAP_MUX_MODE4
| OMAP_PIN_INPUT
),
488 OMAP3_MUX(HSUSB0_CLK
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
489 OMAP3_MUX(HSUSB0_STP
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
490 OMAP3_MUX(HSUSB0_DIR
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
491 OMAP3_MUX(HSUSB0_NXT
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
492 OMAP3_MUX(HSUSB0_DATA0
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
493 OMAP3_MUX(HSUSB0_DATA1
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
494 OMAP3_MUX(HSUSB0_DATA2
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
495 OMAP3_MUX(HSUSB0_DATA3
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
496 OMAP3_MUX(HSUSB0_DATA4
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
497 OMAP3_MUX(HSUSB0_DATA5
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
498 OMAP3_MUX(HSUSB0_DATA6
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
499 OMAP3_MUX(HSUSB0_DATA7
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
502 OMAP3_MUX(SDMMC2_DAT4
, OMAP_MUX_MODE1
| OMAP_PIN_OUTPUT
),
503 OMAP3_MUX(SDMMC2_DAT5
, OMAP_MUX_MODE1
| OMAP_PIN_OUTPUT
),
504 OMAP3_MUX(SDMMC2_DAT6
, OMAP_MUX_MODE1
| OMAP_PIN_OUTPUT
),
505 OMAP3_MUX(SDMMC2_DAT7
, OMAP_MUX_MODE1
| OMAP_PIN_INPUT
),
508 OMAP3_MUX(MCSPI1_CLK
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
509 OMAP3_MUX(MCSPI1_SIMO
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
510 OMAP3_MUX(MCSPI1_SOMI
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
511 OMAP3_MUX(MCSPI1_CS0
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT_PULLDOWN
),
514 OMAP3_MUX(MCBSP1_CLKR
, OMAP_MUX_MODE1
| OMAP_PIN_INPUT
),
515 OMAP3_MUX(MCBSP1_DX
, OMAP_MUX_MODE1
| OMAP_PIN_INPUT
),
516 OMAP3_MUX(MCBSP1_DR
, OMAP_MUX_MODE1
| OMAP_PIN_INPUT
),
517 OMAP3_MUX(MCBSP1_FSX
, OMAP_MUX_MODE1
| OMAP_PIN_INPUT_PULLUP
),
520 OMAP3_MUX(MCBSP2_FSX
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
521 OMAP3_MUX(MCBSP2_CLKX
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
522 OMAP3_MUX(MCBSP2_DR
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
523 OMAP3_MUX(MCBSP2_DX
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
526 OMAP3_MUX(MCBSP3_CLKX
, OMAP_MUX_MODE1
| OMAP_PIN_OUTPUT
),
527 OMAP3_MUX(MCBSP3_FSX
, OMAP_MUX_MODE1
| OMAP_PIN_INPUT
),
528 OMAP3_MUX(UART1_TX
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
529 OMAP3_MUX(UART1_RX
, OMAP_MUX_MODE0
| OMAP_PIN_INPUT
),
532 OMAP3_MUX(DSS_PCLK
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
533 OMAP3_MUX(DSS_HSYNC
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
534 OMAP3_MUX(DSS_VSYNC
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
535 OMAP3_MUX(DSS_ACBIAS
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
536 OMAP3_MUX(DSS_DATA6
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
537 OMAP3_MUX(DSS_DATA7
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
538 OMAP3_MUX(DSS_DATA8
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
539 OMAP3_MUX(DSS_DATA9
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
540 OMAP3_MUX(DSS_DATA10
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
541 OMAP3_MUX(DSS_DATA11
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
542 OMAP3_MUX(DSS_DATA12
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
543 OMAP3_MUX(DSS_DATA13
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
544 OMAP3_MUX(DSS_DATA14
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
545 OMAP3_MUX(DSS_DATA15
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
546 OMAP3_MUX(DSS_DATA16
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
547 OMAP3_MUX(DSS_DATA17
, OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
),
549 /* display controls */
550 OMAP3_MUX(MCBSP1_FSR
, OMAP_MUX_MODE4
| OMAP_PIN_OUTPUT
),
551 OMAP3_MUX(GPMC_NCS7
, OMAP_MUX_MODE4
| OMAP_PIN_OUTPUT
),
552 OMAP3_MUX(GPMC_NCS3
, OMAP_MUX_MODE4
| OMAP_PIN_OUTPUT
),
555 OMAP3_MUX(SYS_NIRQ
, OMAP_MUX_MODE0
| OMAP_WAKEUP_EN
| \
556 OMAP_PIN_INPUT_PULLUP
),
558 { .reg_offset
= OMAP_MUX_TERMINATOR
},
561 static void __init
cm_t3x_common_dss_mux_init(int mux_mode
)
563 omap_mux_init_signal("dss_data18", mux_mode
);
564 omap_mux_init_signal("dss_data19", mux_mode
);
565 omap_mux_init_signal("dss_data20", mux_mode
);
566 omap_mux_init_signal("dss_data21", mux_mode
);
567 omap_mux_init_signal("dss_data22", mux_mode
);
568 omap_mux_init_signal("dss_data23", mux_mode
);
571 static void __init
cm_t35_init_mux(void)
573 omap_mux_init_signal("gpio_70", OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
);
574 omap_mux_init_signal("gpio_71", OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
);
575 omap_mux_init_signal("gpio_72", OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
);
576 omap_mux_init_signal("gpio_73", OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
);
577 omap_mux_init_signal("gpio_74", OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
);
578 omap_mux_init_signal("gpio_75", OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
);
579 cm_t3x_common_dss_mux_init(OMAP_MUX_MODE0
| OMAP_PIN_OUTPUT
);
582 static void __init
cm_t3730_init_mux(void)
584 omap_mux_init_signal("sys_boot0", OMAP_MUX_MODE3
| OMAP_PIN_OUTPUT
);
585 omap_mux_init_signal("sys_boot1", OMAP_MUX_MODE3
| OMAP_PIN_OUTPUT
);
586 omap_mux_init_signal("sys_boot3", OMAP_MUX_MODE3
| OMAP_PIN_OUTPUT
);
587 omap_mux_init_signal("sys_boot4", OMAP_MUX_MODE3
| OMAP_PIN_OUTPUT
);
588 omap_mux_init_signal("sys_boot5", OMAP_MUX_MODE3
| OMAP_PIN_OUTPUT
);
589 omap_mux_init_signal("sys_boot6", OMAP_MUX_MODE3
| OMAP_PIN_OUTPUT
);
590 cm_t3x_common_dss_mux_init(OMAP_MUX_MODE3
| OMAP_PIN_OUTPUT
);
593 static inline void cm_t35_init_mux(void) {}
594 static inline void cm_t3730_init_mux(void) {}
597 static struct omap_board_config_kernel cm_t35_config
[] __initdata
= {
600 static void __init
cm_t3x_common_init(void)
602 omap_board_config
= cm_t35_config
;
603 omap_board_config_size
= ARRAY_SIZE(cm_t35_config
);
604 omap3_mux_init(board_mux
, OMAP_PACKAGE_CUS
);
606 omap_sdrc_init(mt46h32m32lf6_sdrc_params
,
607 mt46h32m32lf6_sdrc_params
);
609 omap_ads7846_init(1, CM_T35_GPIO_PENDOWN
, 0, NULL
);
610 cm_t35_init_ethernet();
612 cm_t35_init_display();
615 usbhs_init(&usbhs_bdata
);
618 static void __init
cm_t35_init(void)
620 cm_t3x_common_init();
625 static void __init
cm_t3730_init(void)
627 cm_t3x_common_init();
631 MACHINE_START(CM_T35
, "Compulab CM-T35")
632 .atag_offset
= 0x100,
633 .reserve
= omap_reserve
,
634 .map_io
= omap3_map_io
,
635 .init_early
= omap35xx_init_early
,
636 .init_irq
= omap3_init_irq
,
637 .init_machine
= cm_t35_init
,
638 .timer
= &omap3_timer
,
641 MACHINE_START(CM_T3730
, "Compulab CM-T3730")
642 .atag_offset
= 0x100,
643 .reserve
= omap_reserve
,
644 .map_io
= omap3_map_io
,
645 .init_early
= omap3630_init_early
,
646 .init_irq
= omap3_init_irq
,
647 .init_machine
= cm_t3730_init
,
648 .timer
= &omap3_timer
,