blob: 91738a14ecbe424ad31ee1140946f16f50c7c84b [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
Laurent Pincharte68084c2014-02-08 13:32:11 -030019#include <linux/clk-provider.h>
20#include <linux/clkdev.h>
Mike Rapoport2886d122009-11-18 18:41:07 -080021#include <linux/kernel.h>
22#include <linux/init.h>
23#include <linux/platform_device.h>
24#include <linux/input.h>
25#include <linux/input/matrix_keypad.h>
26#include <linux/delay.h>
27#include <linux/gpio.h>
Tony Lindgrene639cd52014-11-20 12:11:25 -080028#include <linux/omap-gpmc.h>
Tony Lindgren4b254082012-08-30 15:37:24 -070029#include <linux/platform_data/gpio-omap.h>
Mike Rapoport2886d122009-11-18 18:41:07 -080030
Vivien Didelot25f73ed2013-09-27 15:06:28 -040031#include <linux/platform_data/at24.h>
Balaji T Kebeb53e2009-12-15 20:09:02 +053032#include <linux/i2c/twl.h>
Russ Dill5b3689f2012-03-23 02:21:37 -070033#include <linux/regulator/fixed.h>
Mike Rapoport2886d122009-11-18 18:41:07 -080034#include <linux/regulator/machine.h>
Sukumar Ghorai3a638332010-09-15 14:49:23 +000035#include <linux/mmc/host.h>
Kishon Vijay Abraham I51482be2013-02-06 18:58:50 +053036#include <linux/usb/phy.h>
Mike Rapoport2886d122009-11-18 18:41:07 -080037
Mike Rapoport7f049ad2009-12-14 09:01:08 +010038#include <linux/spi/spi.h>
39#include <linux/spi/tdo24m.h>
40
Mike Rapoport2886d122009-11-18 18:41:07 -080041#include <asm/mach-types.h>
42#include <asm/mach/arch.h>
43#include <asm/mach/map.h>
44
Arnd Bergmann22037472012-08-24 15:21:06 +020045#include <linux/platform_data/mtd-nand-omap2.h>
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030046#include <video/omapdss.h>
Archit Tanejaa0d8dde2013-02-12 16:46:46 +053047#include <video/omap-panel-data.h>
Arnd Bergmann22037472012-08-24 15:21:06 +020048#include <linux/platform_data/spi-omap2-mcspi.h>
Mike Rapoport2886d122009-11-18 18:41:07 -080049
Tony Lindgren6d026432012-10-24 15:05:45 -070050#include "common.h"
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 Hunterd02a900b2010-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
Igor Grinberg039401f2011-12-13 10:48:53 -080056#define CM_T35_GPIO_PENDOWN 57
57#define SB_T35_USB_HUB_RESET_GPIO 167
Mike Rapoport2886d122009-11-18 18:41:07 -080058
59#define CM_T35_SMSC911X_CS 5
60#define CM_T35_SMSC911X_GPIO 163
61#define SB_T35_SMSC911X_CS 4
62#define SB_T35_SMSC911X_GPIO 65
63
Mike Rapoport2886d122009-11-18 18:41:07 -080064#if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
65#include <linux/smsc911x.h>
Tony Lindgrenac839b32012-09-20 11:41:46 -070066#include "gpmc-smsc911x.h"
Mike Rapoport2886d122009-11-18 18:41:07 -080067
Mike Rapoport21b42732011-04-16 22:29:30 +000068static struct omap_smsc911x_platform_data cm_t35_smsc911x_cfg = {
Mike Rapoport2886d122009-11-18 18:41:07 -080069 .id = 0,
Mike Rapoport21b42732011-04-16 22:29:30 +000070 .cs = CM_T35_SMSC911X_CS,
71 .gpio_irq = CM_T35_SMSC911X_GPIO,
72 .gpio_reset = -EINVAL,
73 .flags = SMSC911X_USE_32BIT | SMSC911X_SAVE_MAC_ADDRESS,
Mike Rapoport2886d122009-11-18 18:41:07 -080074};
75
Mike Rapoport21b42732011-04-16 22:29:30 +000076static struct omap_smsc911x_platform_data sb_t35_smsc911x_cfg = {
Mike Rapoport2886d122009-11-18 18:41:07 -080077 .id = 1,
Mike Rapoport21b42732011-04-16 22:29:30 +000078 .cs = SB_T35_SMSC911X_CS,
79 .gpio_irq = SB_T35_SMSC911X_GPIO,
80 .gpio_reset = -EINVAL,
81 .flags = SMSC911X_USE_32BIT | SMSC911X_SAVE_MAC_ADDRESS,
Mike Rapoport2886d122009-11-18 18:41:07 -080082};
83
Russ Dill5b3689f2012-03-23 02:21:37 -070084static struct regulator_consumer_supply cm_t35_smsc911x_supplies[] = {
85 REGULATOR_SUPPLY("vddvario", "smsc911x.0"),
86 REGULATOR_SUPPLY("vdd33a", "smsc911x.0"),
87};
88
89static struct regulator_consumer_supply sb_t35_smsc911x_supplies[] = {
90 REGULATOR_SUPPLY("vddvario", "smsc911x.1"),
91 REGULATOR_SUPPLY("vdd33a", "smsc911x.1"),
92};
93
Mike Rapoport2886d122009-11-18 18:41:07 -080094static void __init cm_t35_init_ethernet(void)
95{
Russ Dill5b3689f2012-03-23 02:21:37 -070096 regulator_register_fixed(0, cm_t35_smsc911x_supplies,
97 ARRAY_SIZE(cm_t35_smsc911x_supplies));
98 regulator_register_fixed(1, sb_t35_smsc911x_supplies,
99 ARRAY_SIZE(sb_t35_smsc911x_supplies));
100
Mike Rapoport21b42732011-04-16 22:29:30 +0000101 gpmc_smsc911x_init(&cm_t35_smsc911x_cfg);
102 gpmc_smsc911x_init(&sb_t35_smsc911x_cfg);
Mike Rapoport2886d122009-11-18 18:41:07 -0800103}
104#else
105static inline void __init cm_t35_init_ethernet(void) { return; }
106#endif
107
108#if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
109#include <linux/leds.h>
110
111static struct gpio_led cm_t35_leds[] = {
112 [0] = {
113 .gpio = 186,
114 .name = "cm-t35:green",
115 .default_trigger = "heartbeat",
116 .active_low = 0,
117 },
118};
119
120static struct gpio_led_platform_data cm_t35_led_pdata = {
121 .num_leds = ARRAY_SIZE(cm_t35_leds),
122 .leds = cm_t35_leds,
123};
124
125static struct platform_device cm_t35_led_device = {
126 .name = "leds-gpio",
127 .id = -1,
128 .dev = {
129 .platform_data = &cm_t35_led_pdata,
130 },
131};
132
133static void __init cm_t35_init_led(void)
134{
135 platform_device_register(&cm_t35_led_device);
136}
137#else
138static inline void cm_t35_init_led(void) {}
139#endif
140
141#if defined(CONFIG_MTD_NAND_OMAP2) || defined(CONFIG_MTD_NAND_OMAP2_MODULE)
142#include <linux/mtd/mtd.h>
143#include <linux/mtd/nand.h>
144#include <linux/mtd/partitions.h>
145
146static struct mtd_partition cm_t35_nand_partitions[] = {
147 {
148 .name = "xloader",
149 .offset = 0, /* Offset = 0x00000 */
150 .size = 4 * NAND_BLOCK_SIZE,
151 .mask_flags = MTD_WRITEABLE
152 },
153 {
154 .name = "uboot",
155 .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */
156 .size = 15 * NAND_BLOCK_SIZE,
157 },
158 {
159 .name = "uboot environment",
160 .offset = MTDPART_OFS_APPEND, /* Offset = 0x260000 */
161 .size = 2 * NAND_BLOCK_SIZE,
162 },
163 {
164 .name = "linux",
Igor Grinbergd12c2e22011-07-04 04:09:18 -0700165 .offset = MTDPART_OFS_APPEND, /* Offset = 0x2A0000 */
Mike Rapoport2886d122009-11-18 18:41:07 -0800166 .size = 32 * NAND_BLOCK_SIZE,
167 },
168 {
169 .name = "rootfs",
Igor Grinbergd12c2e22011-07-04 04:09:18 -0700170 .offset = MTDPART_OFS_APPEND, /* Offset = 0x6A0000 */
Mike Rapoport2886d122009-11-18 18:41:07 -0800171 .size = MTDPART_SIZ_FULL,
172 },
173};
174
175static struct omap_nand_platform_data cm_t35_nand_data = {
176 .parts = cm_t35_nand_partitions,
177 .nr_parts = ARRAY_SIZE(cm_t35_nand_partitions),
Mike Rapoport2886d122009-11-18 18:41:07 -0800178 .cs = 0,
Mike Rapoport2886d122009-11-18 18:41:07 -0800179};
180
Mike Rapoport2886d122009-11-18 18:41:07 -0800181static void __init cm_t35_init_nand(void)
182{
Afzal Mohammedbc3668e2012-09-29 12:26:13 +0530183 if (gpmc_nand_init(&cm_t35_nand_data, NULL) < 0)
Mike Rapoport2886d122009-11-18 18:41:07 -0800184 pr_err("CM-T35: Unable to register NAND device\n");
185}
186#else
187static inline void cm_t35_init_nand(void) {}
188#endif
189
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100190#define CM_T35_LCD_EN_GPIO 157
191#define CM_T35_LCD_BL_GPIO 58
192#define CM_T35_DVI_EN_GPIO 54
193
Tomi Valkeinenfe0cf7d2013-05-31 11:53:35 +0300194static const struct display_timing cm_t35_lcd_videomode = {
195 .pixelclock = { 0, 26000000, 0 },
196
197 .hactive = { 0, 480, 0 },
198 .hfront_porch = { 0, 104, 0 },
199 .hback_porch = { 0, 8, 0 },
200 .hsync_len = { 0, 8, 0 },
201
202 .vactive = { 0, 640, 0 },
203 .vfront_porch = { 0, 4, 0 },
204 .vback_porch = { 0, 2, 0 },
205 .vsync_len = { 0, 2, 0 },
206
207 .flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
208 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_NEGEDGE,
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100209};
210
Tomi Valkeinenfe0cf7d2013-05-31 11:53:35 +0300211static struct panel_dpi_platform_data cm_t35_lcd_pdata = {
212 .name = "lcd",
213 .source = "dpi.0",
214
215 .data_lines = 18,
216
217 .display_timing = &cm_t35_lcd_videomode,
218
219 .enable_gpio = -1,
220 .backlight_gpio = CM_T35_LCD_BL_GPIO,
Bryan Wu89747c92010-11-17 13:34:34 +0000221};
222
Tomi Valkeinenfe0cf7d2013-05-31 11:53:35 +0300223static struct platform_device cm_t35_lcd_device = {
224 .name = "panel-dpi",
225 .id = 0,
226 .dev.platform_data = &cm_t35_lcd_pdata,
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100227};
228
Tomi Valkeinenfe0cf7d2013-05-31 11:53:35 +0300229static struct connector_dvi_platform_data cm_t35_dvi_connector_pdata = {
230 .name = "dvi",
231 .source = "tfp410.0",
232 .i2c_bus_num = -1,
Bryan Wu89747c92010-11-17 13:34:34 +0000233};
234
Tomi Valkeinenfe0cf7d2013-05-31 11:53:35 +0300235static struct platform_device cm_t35_dvi_connector_device = {
236 .name = "connector-dvi",
237 .id = 0,
238 .dev.platform_data = &cm_t35_dvi_connector_pdata,
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100239};
240
Tomi Valkeinenfe0cf7d2013-05-31 11:53:35 +0300241static struct encoder_tfp410_platform_data cm_t35_tfp410_pdata = {
242 .name = "tfp410.0",
243 .source = "dpi.0",
244 .data_lines = 24,
245 .power_down_gpio = CM_T35_DVI_EN_GPIO,
246};
247
248static struct platform_device cm_t35_tfp410_device = {
249 .name = "tfp410",
250 .id = 0,
251 .dev.platform_data = &cm_t35_tfp410_pdata,
252};
253
254static struct connector_atv_platform_data cm_t35_tv_pdata = {
255 .name = "tv",
256 .source = "venc.0",
257 .connector_type = OMAP_DSS_VENC_TYPE_SVIDEO,
258 .invert_polarity = false,
259};
260
261static struct platform_device cm_t35_tv_connector_device = {
262 .name = "connector-analog-tv",
263 .id = 0,
264 .dev.platform_data = &cm_t35_tv_pdata,
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100265};
266
267static struct omap_dss_board_info cm_t35_dss_data = {
Tomi Valkeinenfe0cf7d2013-05-31 11:53:35 +0300268 .default_display_name = "dvi",
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100269};
270
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100271static struct omap2_mcspi_device_config tdo24m_mcspi_config = {
272 .turbo_mode = 0,
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100273};
274
275static struct tdo24m_platform_data tdo24m_config = {
276 .model = TDO35S,
277};
278
279static struct spi_board_info cm_t35_lcd_spi_board_info[] __initdata = {
280 {
281 .modalias = "tdo24m",
282 .bus_num = 4,
283 .chip_select = 0,
284 .max_speed_hz = 1000000,
285 .controller_data = &tdo24m_mcspi_config,
286 .platform_data = &tdo24m_config,
287 },
288};
289
290static void __init cm_t35_init_display(void)
291{
292 int err;
293
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100294 spi_register_board_info(cm_t35_lcd_spi_board_info,
295 ARRAY_SIZE(cm_t35_lcd_spi_board_info));
296
Tomi Valkeinene471e9a2012-12-03 16:05:06 +0530297
298 err = gpio_request_one(CM_T35_LCD_EN_GPIO, GPIOF_OUT_INIT_LOW,
299 "lcd bl enable");
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100300 if (err) {
Tomi Valkeinene471e9a2012-12-03 16:05:06 +0530301 pr_err("CM-T35: failed to request LCD EN GPIO\n");
Igor Grinbergbc593f52011-05-03 18:22:09 +0300302 return;
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100303 }
304
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100305 msleep(50);
Igor Grinbergbc593f52011-05-03 18:22:09 +0300306 gpio_set_value(CM_T35_LCD_EN_GPIO, 1);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100307
Senthilvadivu Guruswamyd5e13222011-02-22 11:24:50 +0200308 err = omap_display_init(&cm_t35_dss_data);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100309 if (err) {
310 pr_err("CM-T35: failed to register DSS device\n");
Tomi Valkeinene471e9a2012-12-03 16:05:06 +0530311 gpio_free(CM_T35_LCD_EN_GPIO);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100312 }
Tomi Valkeinenfe0cf7d2013-05-31 11:53:35 +0300313
314 platform_device_register(&cm_t35_tfp410_device);
315 platform_device_register(&cm_t35_dvi_connector_device);
316 platform_device_register(&cm_t35_lcd_device);
317 platform_device_register(&cm_t35_tv_connector_device);
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100318}
319
Oleg Drokin786b01a2011-06-06 18:57:07 +0000320static struct regulator_consumer_supply cm_t35_vmmc1_supply[] = {
321 REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
Mike Rapoport2886d122009-11-18 18:41:07 -0800322};
323
Oleg Drokin786b01a2011-06-06 18:57:07 +0000324static struct regulator_consumer_supply cm_t35_vsim_supply[] = {
325 REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.0"),
Mike Rapoport2886d122009-11-18 18:41:07 -0800326};
327
Igor Grinbergb74f1492011-12-13 10:48:51 -0800328static struct regulator_consumer_supply cm_t35_vio_supplies[] = {
329 REGULATOR_SUPPLY("vcc", "spi1.0"),
Igor Grinbergcd1c6832011-12-13 10:48:52 -0800330 REGULATOR_SUPPLY("vdds_dsi", "omapdss"),
Tomi Valkeinen1f92a1a2013-05-31 10:37:53 +0300331 REGULATOR_SUPPLY("vdds_dsi", "omapdss_dpi.0"),
Tomi Valkeinen1738ddb2013-05-31 10:37:52 +0300332 REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi.0"),
Igor Grinbergb74f1492011-12-13 10:48:51 -0800333};
334
Mike Rapoport2886d122009-11-18 18:41:07 -0800335/* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
336static struct regulator_init_data cm_t35_vmmc1 = {
337 .constraints = {
338 .min_uV = 1850000,
339 .max_uV = 3150000,
340 .valid_modes_mask = REGULATOR_MODE_NORMAL
341 | REGULATOR_MODE_STANDBY,
342 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE
343 | REGULATOR_CHANGE_MODE
344 | REGULATOR_CHANGE_STATUS,
345 },
Oleg Drokin786b01a2011-06-06 18:57:07 +0000346 .num_consumer_supplies = ARRAY_SIZE(cm_t35_vmmc1_supply),
347 .consumer_supplies = cm_t35_vmmc1_supply,
Mike Rapoport2886d122009-11-18 18:41:07 -0800348};
349
350/* VSIM for MMC1 pins DAT4..DAT7 (2 mA, plus card == max 50 mA) */
351static struct regulator_init_data cm_t35_vsim = {
352 .constraints = {
353 .min_uV = 1800000,
354 .max_uV = 3000000,
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_vsim_supply),
362 .consumer_supplies = cm_t35_vsim_supply,
Mike Rapoport2886d122009-11-18 18:41:07 -0800363};
364
Igor Grinbergb74f1492011-12-13 10:48:51 -0800365static struct regulator_init_data cm_t35_vio = {
366 .constraints = {
367 .min_uV = 1800000,
368 .max_uV = 1800000,
369 .apply_uV = true,
370 .valid_modes_mask = REGULATOR_MODE_NORMAL
371 | REGULATOR_MODE_STANDBY,
372 .valid_ops_mask = REGULATOR_CHANGE_MODE,
373 },
374 .num_consumer_supplies = ARRAY_SIZE(cm_t35_vio_supplies),
375 .consumer_supplies = cm_t35_vio_supplies,
376};
377
Manjunath Kondaiah Gbead4372010-10-08 10:01:13 -0700378static uint32_t cm_t35_keymap[] = {
Mike Rapoport2886d122009-11-18 18:41:07 -0800379 KEY(0, 0, KEY_A), KEY(0, 1, KEY_B), KEY(0, 2, KEY_LEFT),
380 KEY(1, 0, KEY_UP), KEY(1, 1, KEY_ENTER), KEY(1, 2, KEY_DOWN),
381 KEY(2, 0, KEY_RIGHT), KEY(2, 1, KEY_C), KEY(2, 2, KEY_D),
382};
383
384static struct matrix_keymap_data cm_t35_keymap_data = {
385 .keymap = cm_t35_keymap,
386 .keymap_size = ARRAY_SIZE(cm_t35_keymap),
387};
388
389static struct twl4030_keypad_data cm_t35_kp_data = {
390 .keymap_data = &cm_t35_keymap_data,
391 .rows = 3,
392 .cols = 3,
393 .rep = 1,
394};
395
Adrian Hunter68ff0422010-02-15 10:03:34 -0800396static struct omap2_hsmmc_info mmc[] = {
Mike Rapoport2886d122009-11-18 18:41:07 -0800397 {
398 .mmc = 1,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000399 .caps = MMC_CAP_4_BIT_DATA,
Mike Rapoport2886d122009-11-18 18:41:07 -0800400 .gpio_cd = -EINVAL,
401 .gpio_wp = -EINVAL,
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800402 .deferred = true,
Mike Rapoport2886d122009-11-18 18:41:07 -0800403 },
404 {
405 .mmc = 2,
Sukumar Ghorai3a638332010-09-15 14:49:23 +0000406 .caps = MMC_CAP_4_BIT_DATA,
Mike Rapoport2886d122009-11-18 18:41:07 -0800407 .transceiver = 1,
408 .gpio_cd = -EINVAL,
409 .gpio_wp = -EINVAL,
410 .ocr_mask = 0x00100000, /* 3.3V */
411 },
412 {} /* Terminator */
413};
414
Roger Quadros59b14992013-03-20 17:44:48 +0200415static struct usbhs_phy_data phy_data[] __initdata = {
416 {
417 .port = 1,
418 .reset_gpio = OMAP_MAX_GPIO_LINES + 6,
419 .vcc_gpio = -EINVAL,
420 },
421 {
422 .port = 2,
423 .reset_gpio = OMAP_MAX_GPIO_LINES + 7,
424 .vcc_gpio = -EINVAL,
425 },
426};
427
Roger Quadros42973152013-02-14 10:13:48 +0200428static struct usbhs_omap_platform_data usbhs_bdata __initdata = {
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,
Mike Rapoport2886d122009-11-18 18:41:07 -0800431};
432
Igor Grinberg36863962012-02-05 13:39:40 +0200433static void __init cm_t35_init_usbh(void)
Igor Grinberg039401f2011-12-13 10:48:53 -0800434{
435 int err;
436
437 err = gpio_request_one(SB_T35_USB_HUB_RESET_GPIO,
438 GPIOF_OUT_INIT_LOW, "usb hub rst");
439 if (err) {
440 pr_err("SB-T35: usb hub rst gpio request failed: %d\n", err);
441 } else {
442 udelay(10);
443 gpio_set_value(SB_T35_USB_HUB_RESET_GPIO, 1);
444 msleep(1);
445 }
446
Roger Quadros59b14992013-03-20 17:44:48 +0200447 usbhs_init_phys(phy_data, ARRAY_SIZE(phy_data));
Igor Grinberg039401f2011-12-13 10:48:53 -0800448 usbhs_init(&usbhs_bdata);
449}
450
Mike Rapoport2886d122009-11-18 18:41:07 -0800451static int cm_t35_twl_gpio_setup(struct device *dev, unsigned gpio,
452 unsigned ngpio)
453{
454 int wlan_rst = gpio + 2;
455
Igor Grinbergbc593f52011-05-03 18:22:09 +0300456 if (gpio_request_one(wlan_rst, GPIOF_OUT_INIT_HIGH, "WLAN RST") == 0) {
Mike Rapoport2886d122009-11-18 18:41:07 -0800457 gpio_export(wlan_rst, 0);
Mike Rapoport2886d122009-11-18 18:41:07 -0800458 udelay(10);
Igor Grinbergbe741de2011-07-04 04:09:31 -0700459 gpio_set_value_cansleep(wlan_rst, 0);
Mike Rapoport2886d122009-11-18 18:41:07 -0800460 udelay(10);
Igor Grinbergbe741de2011-07-04 04:09:31 -0700461 gpio_set_value_cansleep(wlan_rst, 1);
Mike Rapoport2886d122009-11-18 18:41:07 -0800462 } else {
463 pr_err("CM-T35: could not obtain gpio for WiFi reset\n");
464 }
465
466 /* gpio + 0 is "mmc0_cd" (input/IRQ) */
467 mmc[0].gpio_cd = gpio + 0;
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800468 omap_hsmmc_late_init(mmc);
Mike Rapoport2886d122009-11-18 18:41:07 -0800469
Mike Rapoport2886d122009-11-18 18:41:07 -0800470 return 0;
471}
472
473static struct twl4030_gpio_platform_data cm_t35_gpio_data = {
Mike Rapoport2886d122009-11-18 18:41:07 -0800474 .setup = cm_t35_twl_gpio_setup,
475};
476
Igor Grinbergd61676b2012-05-09 14:19:13 -0700477static struct twl4030_power_data cm_t35_power_data = {
478 .use_poweroff = true,
479};
480
Mike Rapoport2886d122009-11-18 18:41:07 -0800481static struct twl4030_platform_data cm_t35_twldata = {
Mike Rapoport2886d122009-11-18 18:41:07 -0800482 /* platform_data for children goes here */
483 .keypad = &cm_t35_kp_data,
Mike Rapoport2886d122009-11-18 18:41:07 -0800484 .gpio = &cm_t35_gpio_data,
485 .vmmc1 = &cm_t35_vmmc1,
486 .vsim = &cm_t35_vsim,
Igor Grinbergb74f1492011-12-13 10:48:51 -0800487 .vio = &cm_t35_vio,
Igor Grinbergd61676b2012-05-09 14:19:13 -0700488 .power = &cm_t35_power_data,
Mike Rapoport2886d122009-11-18 18:41:07 -0800489};
490
Dmitry Lifshitzd396be42012-06-13 15:55:09 +0300491#if defined(CONFIG_VIDEO_OMAP3) || defined(CONFIG_VIDEO_OMAP3_MODULE)
492#include <media/omap3isp.h>
493#include "devices.h"
494
495static struct i2c_board_info cm_t35_isp_i2c_boardinfo[] = {
496 {
497 I2C_BOARD_INFO("mt9t001", 0x5d),
498 },
Dmitry Lifshitz3d6bbca2012-06-13 15:55:10 +0300499 {
500 I2C_BOARD_INFO("tvp5150", 0x5c),
501 },
Dmitry Lifshitzd396be42012-06-13 15:55:09 +0300502};
503
504static struct isp_subdev_i2c_board_info cm_t35_isp_primary_subdevs[] = {
505 {
506 .board_info = &cm_t35_isp_i2c_boardinfo[0],
507 .i2c_adapter_id = 3,
508 },
509 { NULL, 0, },
510};
511
Dmitry Lifshitz3d6bbca2012-06-13 15:55:10 +0300512static struct isp_subdev_i2c_board_info cm_t35_isp_secondary_subdevs[] = {
513 {
514 .board_info = &cm_t35_isp_i2c_boardinfo[1],
515 .i2c_adapter_id = 3,
516 },
517 { NULL, 0, },
518};
519
Dmitry Lifshitzd396be42012-06-13 15:55:09 +0300520static struct isp_v4l2_subdevs_group cm_t35_isp_subdevs[] = {
521 {
522 .subdevs = cm_t35_isp_primary_subdevs,
523 .interface = ISP_INTERFACE_PARALLEL,
524 .bus = {
525 .parallel = {
526 .clk_pol = 1,
527 },
528 },
529 },
Dmitry Lifshitz3d6bbca2012-06-13 15:55:10 +0300530 {
531 .subdevs = cm_t35_isp_secondary_subdevs,
532 .interface = ISP_INTERFACE_PARALLEL,
533 .bus = {
534 .parallel = {
535 .clk_pol = 0,
536 },
537 },
538 },
Dmitry Lifshitzd396be42012-06-13 15:55:09 +0300539 { NULL, 0, },
540};
541
542static struct isp_platform_data cm_t35_isp_pdata = {
543 .subdevs = cm_t35_isp_subdevs,
544};
545
Laurent Pincharte68084c2014-02-08 13:32:11 -0300546static struct regulator_consumer_supply cm_t35_camera_supplies[] = {
547 REGULATOR_SUPPLY("vaa", "3-005d"),
548 REGULATOR_SUPPLY("vdd", "3-005d"),
549};
550
Dmitry Lifshitzd396be42012-06-13 15:55:09 +0300551static void __init cm_t35_init_camera(void)
552{
Laurent Pincharte68084c2014-02-08 13:32:11 -0300553 struct clk *clk;
554
555 clk = clk_register_fixed_rate(NULL, "mt9t001-clkin", NULL, CLK_IS_ROOT,
556 48000000);
557 clk_register_clkdev(clk, NULL, "3-005d");
558
559 regulator_register_fixed(2, cm_t35_camera_supplies,
560 ARRAY_SIZE(cm_t35_camera_supplies));
561
Dmitry Lifshitzd396be42012-06-13 15:55:09 +0300562 if (omap3_init_camera(&cm_t35_isp_pdata) < 0)
563 pr_warn("CM-T3x: Failed registering camera device!\n");
564}
565
566#else
567static inline void cm_t35_init_camera(void) {}
568#endif /* CONFIG_VIDEO_OMAP3 */
569
Mike Rapoport2886d122009-11-18 18:41:07 -0800570static void __init cm_t35_init_i2c(void)
571{
Peter Ujfalusib252b0e2011-06-07 11:38:24 +0300572 omap3_pmic_get_config(&cm_t35_twldata, TWL_COMMON_PDATA_USB,
Igor Grinberg19ce6432011-12-13 10:48:52 -0800573 TWL_COMMON_REGULATOR_VDAC |
574 TWL_COMMON_PDATA_AUDIO);
Peter Ujfalusib252b0e2011-06-07 11:38:24 +0300575
Mike Rapoportfbd80712011-04-25 01:09:06 +0300576 omap3_pmic_init("tps65930", &cm_t35_twldata);
Dmitry Lifshitzd396be42012-06-13 15:55:09 +0300577
578 omap_register_i2c_bus(3, 400, NULL, 0);
Mike Rapoport2886d122009-11-18 18:41:07 -0800579}
580
Tony Lindgrenc7ecea22011-03-11 11:39:51 -0800581#ifdef CONFIG_OMAP_MUX
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800582static struct omap_board_mux board_mux[] __initdata = {
Mike Rapoportedc961a2009-12-11 16:16:35 -0800583 /* nCS and IRQ for CM-T35 ethernet */
584 OMAP3_MUX(GPMC_NCS5, OMAP_MUX_MODE0),
585 OMAP3_MUX(UART3_CTS_RCTX, OMAP_MUX_MODE4 | OMAP_PIN_INPUT_PULLUP),
586
587 /* nCS and IRQ for SB-T35 ethernet */
588 OMAP3_MUX(GPMC_NCS4, OMAP_MUX_MODE0),
589 OMAP3_MUX(GPMC_WAIT3, OMAP_MUX_MODE4 | OMAP_PIN_INPUT_PULLUP),
590
591 /* PENDOWN GPIO */
592 OMAP3_MUX(GPMC_NCS6, OMAP_MUX_MODE4 | OMAP_PIN_INPUT),
593
594 /* mUSB */
595 OMAP3_MUX(HSUSB0_CLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
596 OMAP3_MUX(HSUSB0_STP, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
597 OMAP3_MUX(HSUSB0_DIR, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
598 OMAP3_MUX(HSUSB0_NXT, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
599 OMAP3_MUX(HSUSB0_DATA0, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
600 OMAP3_MUX(HSUSB0_DATA1, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
601 OMAP3_MUX(HSUSB0_DATA2, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
602 OMAP3_MUX(HSUSB0_DATA3, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
603 OMAP3_MUX(HSUSB0_DATA4, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
604 OMAP3_MUX(HSUSB0_DATA5, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
605 OMAP3_MUX(HSUSB0_DATA6, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
606 OMAP3_MUX(HSUSB0_DATA7, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
607
608 /* MMC 2 */
609 OMAP3_MUX(SDMMC2_DAT4, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
610 OMAP3_MUX(SDMMC2_DAT5, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
611 OMAP3_MUX(SDMMC2_DAT6, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
612 OMAP3_MUX(SDMMC2_DAT7, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
613
614 /* McSPI 1 */
615 OMAP3_MUX(MCSPI1_CLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
616 OMAP3_MUX(MCSPI1_SIMO, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
617 OMAP3_MUX(MCSPI1_SOMI, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
618 OMAP3_MUX(MCSPI1_CS0, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN),
619
620 /* McSPI 4 */
621 OMAP3_MUX(MCBSP1_CLKR, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
622 OMAP3_MUX(MCBSP1_DX, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
623 OMAP3_MUX(MCBSP1_DR, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
624 OMAP3_MUX(MCBSP1_FSX, OMAP_MUX_MODE1 | OMAP_PIN_INPUT_PULLUP),
625
626 /* McBSP 2 */
627 OMAP3_MUX(MCBSP2_FSX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
628 OMAP3_MUX(MCBSP2_CLKX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
629 OMAP3_MUX(MCBSP2_DR, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
630 OMAP3_MUX(MCBSP2_DX, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
631
632 /* serial ports */
633 OMAP3_MUX(MCBSP3_CLKX, OMAP_MUX_MODE1 | OMAP_PIN_OUTPUT),
634 OMAP3_MUX(MCBSP3_FSX, OMAP_MUX_MODE1 | OMAP_PIN_INPUT),
635 OMAP3_MUX(UART1_TX, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
636 OMAP3_MUX(UART1_RX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
637
Igor Grinbergc3146972011-07-05 03:38:23 -0700638 /* common DSS */
Mike Rapoportedc961a2009-12-11 16:16:35 -0800639 OMAP3_MUX(DSS_PCLK, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
640 OMAP3_MUX(DSS_HSYNC, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
641 OMAP3_MUX(DSS_VSYNC, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
642 OMAP3_MUX(DSS_ACBIAS, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
Mike Rapoportedc961a2009-12-11 16:16:35 -0800643 OMAP3_MUX(DSS_DATA6, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
644 OMAP3_MUX(DSS_DATA7, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
645 OMAP3_MUX(DSS_DATA8, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
646 OMAP3_MUX(DSS_DATA9, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
647 OMAP3_MUX(DSS_DATA10, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
648 OMAP3_MUX(DSS_DATA11, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
649 OMAP3_MUX(DSS_DATA12, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
650 OMAP3_MUX(DSS_DATA13, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
651 OMAP3_MUX(DSS_DATA14, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
652 OMAP3_MUX(DSS_DATA15, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
653 OMAP3_MUX(DSS_DATA16, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
654 OMAP3_MUX(DSS_DATA17, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT),
Mike Rapoportedc961a2009-12-11 16:16:35 -0800655
Dmitry Lifshitzd396be42012-06-13 15:55:09 +0300656 /* Camera */
657 OMAP3_MUX(CAM_HS, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
658 OMAP3_MUX(CAM_VS, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
659 OMAP3_MUX(CAM_XCLKA, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
660 OMAP3_MUX(CAM_PCLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
661 OMAP3_MUX(CAM_FLD, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
662 OMAP3_MUX(CAM_D0, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
663 OMAP3_MUX(CAM_D1, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
664 OMAP3_MUX(CAM_D2, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
665 OMAP3_MUX(CAM_D3, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
666 OMAP3_MUX(CAM_D4, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
667 OMAP3_MUX(CAM_D5, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
668 OMAP3_MUX(CAM_D6, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
669 OMAP3_MUX(CAM_D7, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
670 OMAP3_MUX(CAM_D8, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN),
671 OMAP3_MUX(CAM_D9, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN),
672 OMAP3_MUX(CAM_STROBE, OMAP_MUX_MODE0 | OMAP_PIN_INPUT),
673
674 OMAP3_MUX(CAM_D10, OMAP_MUX_MODE4 | OMAP_PIN_INPUT_PULLDOWN),
675 OMAP3_MUX(CAM_D11, OMAP_MUX_MODE4 | OMAP_PIN_INPUT_PULLDOWN),
676
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100677 /* display controls */
678 OMAP3_MUX(MCBSP1_FSR, OMAP_MUX_MODE4 | OMAP_PIN_OUTPUT),
679 OMAP3_MUX(GPMC_NCS7, OMAP_MUX_MODE4 | OMAP_PIN_OUTPUT),
680 OMAP3_MUX(GPMC_NCS3, OMAP_MUX_MODE4 | OMAP_PIN_OUTPUT),
681
Mike Rapoportedc961a2009-12-11 16:16:35 -0800682 /* TPS IRQ */
683 OMAP3_MUX(SYS_NIRQ, OMAP_MUX_MODE0 | OMAP_WAKEUP_EN | \
684 OMAP_PIN_INPUT_PULLUP),
685
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800686 { .reg_offset = OMAP_MUX_TERMINATOR },
687};
Igor Grinbergc3146972011-07-05 03:38:23 -0700688
689static void __init cm_t3x_common_dss_mux_init(int mux_mode)
690{
691 omap_mux_init_signal("dss_data18", mux_mode);
692 omap_mux_init_signal("dss_data19", mux_mode);
693 omap_mux_init_signal("dss_data20", mux_mode);
694 omap_mux_init_signal("dss_data21", mux_mode);
695 omap_mux_init_signal("dss_data22", mux_mode);
696 omap_mux_init_signal("dss_data23", mux_mode);
697}
698
699static void __init cm_t35_init_mux(void)
700{
Igor Grinbergb2404f42011-12-13 10:48:53 -0800701 int mux_mode = OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT;
702
703 omap_mux_init_signal("dss_data0.dss_data0", mux_mode);
704 omap_mux_init_signal("dss_data1.dss_data1", mux_mode);
705 omap_mux_init_signal("dss_data2.dss_data2", mux_mode);
706 omap_mux_init_signal("dss_data3.dss_data3", mux_mode);
707 omap_mux_init_signal("dss_data4.dss_data4", mux_mode);
708 omap_mux_init_signal("dss_data5.dss_data5", mux_mode);
709 cm_t3x_common_dss_mux_init(mux_mode);
Igor Grinbergc3146972011-07-05 03:38:23 -0700710}
711
712static void __init cm_t3730_init_mux(void)
713{
Igor Grinbergb2404f42011-12-13 10:48:53 -0800714 int mux_mode = OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT;
715
716 omap_mux_init_signal("sys_boot0", mux_mode);
717 omap_mux_init_signal("sys_boot1", mux_mode);
718 omap_mux_init_signal("sys_boot3", mux_mode);
719 omap_mux_init_signal("sys_boot4", mux_mode);
720 omap_mux_init_signal("sys_boot5", mux_mode);
721 omap_mux_init_signal("sys_boot6", mux_mode);
722 cm_t3x_common_dss_mux_init(mux_mode);
Igor Grinbergc3146972011-07-05 03:38:23 -0700723}
724#else
725static inline void cm_t35_init_mux(void) {}
726static inline void cm_t3730_init_mux(void) {}
Tony Lindgrenc7ecea22011-03-11 11:39:51 -0800727#endif
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800728
Igor Grinbergc3146972011-07-05 03:38:23 -0700729static void __init cm_t3x_common_init(void)
Mike Rapoport2886d122009-11-18 18:41:07 -0800730{
Tony Lindgrenca5742b2009-12-11 16:16:32 -0800731 omap3_mux_init(board_mux, OMAP_PACKAGE_CUS);
Mike Rapoport2886d122009-11-18 18:41:07 -0800732 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700733 omap_sdrc_init(mt46h32m32lf6_sdrc_params,
734 mt46h32m32lf6_sdrc_params);
Tony Lindgren3b972bf2012-02-20 09:43:29 -0800735 omap_hsmmc_init(mmc);
Mike Rapoport2886d122009-11-18 18:41:07 -0800736 cm_t35_init_i2c();
Mike Rapoport96974a22011-04-25 01:09:05 +0300737 omap_ads7846_init(1, CM_T35_GPIO_PENDOWN, 0, NULL);
Mike Rapoport2886d122009-11-18 18:41:07 -0800738 cm_t35_init_ethernet();
739 cm_t35_init_led();
Mike Rapoport7f049ad2009-12-14 09:01:08 +0100740 cm_t35_init_display();
Peter Ujfalusi40234bf2012-12-05 14:45:23 +0100741 omap_twl4030_audio_init("cm-t3x", NULL);
Mike Rapoport2886d122009-11-18 18:41:07 -0800742
Kishon Vijay Abraham I51482be2013-02-06 18:58:50 +0530743 usb_bind_phy("musb-hdrc.0.auto", 0, "twl4030_usb");
Mike Rapoport9e186302011-04-27 11:56:12 +0300744 usb_musb_init(NULL);
Igor Grinberg039401f2011-12-13 10:48:53 -0800745 cm_t35_init_usbh();
Dmitry Lifshitzd396be42012-06-13 15:55:09 +0300746 cm_t35_init_camera();
Mike Rapoport2886d122009-11-18 18:41:07 -0800747}
748
Igor Grinbergc3146972011-07-05 03:38:23 -0700749static void __init cm_t35_init(void)
750{
751 cm_t3x_common_init();
752 cm_t35_init_mux();
753 cm_t35_init_nand();
754}
755
756static void __init cm_t3730_init(void)
757{
758 cm_t3x_common_init();
759 cm_t3730_init_mux();
760}
761
Mike Rapoport2886d122009-11-18 18:41:07 -0800762MACHINE_START(CM_T35, "Compulab CM-T35")
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400763 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100764 .reserve = omap_reserve,
Russell King - ARM Linux3dc3bad2011-02-14 15:40:20 -0800765 .map_io = omap3_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700766 .init_early = omap35xx_init_early,
Tony Lindgren741e3a82011-05-17 03:51:26 -0700767 .init_irq = omap3_init_irq,
Mike Rapoport2886d122009-11-18 18:41:07 -0800768 .init_machine = cm_t35_init,
Shawn Guobbd707a2012-04-26 16:06:50 +0800769 .init_late = omap35xx_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700770 .init_time = omap3_sync32k_timer_init,
Paul Walmsley187e3e02012-10-29 20:56:12 -0600771 .restart = omap3xxx_restart,
Mike Rapoport2886d122009-11-18 18:41:07 -0800772MACHINE_END
Igor Grinbergc3146972011-07-05 03:38:23 -0700773
774MACHINE_START(CM_T3730, "Compulab CM-T3730")
Paul Walmsley187e3e02012-10-29 20:56:12 -0600775 .atag_offset = 0x100,
776 .reserve = omap_reserve,
777 .map_io = omap3_map_io,
778 .init_early = omap3630_init_early,
779 .init_irq = omap3_init_irq,
Paul Walmsley187e3e02012-10-29 20:56:12 -0600780 .init_machine = cm_t3730_init,
Shawn Guobbd707a2012-04-26 16:06:50 +0800781 .init_late = omap3630_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700782 .init_time = omap3_sync32k_timer_init,
Paul Walmsley187e3e02012-10-29 20:56:12 -0600783 .restart = omap3xxx_restart,
Igor Grinbergc3146972011-07-05 03:38:23 -0700784MACHINE_END