blob: 949997c3570726dfd1c4fe730649a14ece0db006 [file] [log] [blame]
Tony Lindgren9b6553c2006-04-02 17:46:30 +01001/*
2 * linux/arch/arm/mach-omap1/board-ams-delta.c
3 *
4 * Modified from board-generic.c
5 *
6 * Board specific inits for the Amstrad E3 (codename Delta) videophone
7 *
8 * Copyright (C) 2006 Jonathan McDowell <noodles@earth.li>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +010014#include <linux/basic_mmio_gpio.h>
Russell King2f8163b2011-07-26 10:53:52 +010015#include <linux/gpio.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010016#include <linux/kernel.h>
17#include <linux/init.h>
Jonathan McDowell325d50b2006-12-06 17:13:52 -080018#include <linux/input.h>
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -070019#include <linux/interrupt.h>
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -070020#include <linux/leds.h>
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +010021#include <linux/mutex.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010022#include <linux/platform_device.h>
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +010023#include <linux/regulator/consumer.h>
24#include <linux/regulator/fixed.h>
25#include <linux/regulator/machine.h>
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -070026#include <linux/serial_8250.h>
Paul Gortmakerdc280942011-07-31 16:17:29 -040027#include <linux/export.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010028
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -070029#include <media/soc_camera.h>
30
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -070031#include <asm/serial.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/hardware.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010033#include <asm/mach-types.h>
34#include <asm/mach/arch.h>
35#include <asm/mach/map.h>
36
Aaro Koskinen7489ffc2010-11-18 19:59:50 +020037#include <plat/io.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070038#include <plat/board-ams-delta.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070039#include <plat/keypad.h>
40#include <plat/mux.h>
41#include <plat/usb.h>
42#include <plat/board.h>
Tony Lindgren4e653312011-11-10 22:45:17 +010043#include "common.h"
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -070044#include <mach/camera.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010045
Janusz Krzysztofike6f740f2010-04-28 01:07:42 +000046#include <mach/ams-delta-fiq.h>
47
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000048static const unsigned int ams_delta_keymap[] = {
Tony Lindgrena5246262006-12-07 13:58:17 -080049 KEY(0, 0, KEY_F1), /* Advert */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080050
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000051 KEY(0, 3, KEY_COFFEE), /* Games */
52 KEY(0, 2, KEY_QUESTION), /* Directory */
53 KEY(2, 3, KEY_CONNECT), /* Internet */
54 KEY(1, 2, KEY_SHOP), /* Services */
Tony Lindgrena5246262006-12-07 13:58:17 -080055 KEY(1, 1, KEY_PHONE), /* VoiceMail */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080056
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000057 KEY(0, 1, KEY_DELETE), /* Delete */
Tony Lindgrena5246262006-12-07 13:58:17 -080058 KEY(2, 2, KEY_PLAY), /* Play */
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000059 KEY(1, 0, KEY_PAGEUP), /* Up */
60 KEY(1, 3, KEY_PAGEDOWN), /* Down */
61 KEY(2, 0, KEY_EMAIL), /* ReadEmail */
62 KEY(2, 1, KEY_STOP), /* Stop */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080063
64 /* Numeric keypad portion */
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000065 KEY(0, 7, KEY_KP1),
66 KEY(0, 6, KEY_KP2),
67 KEY(0, 5, KEY_KP3),
68 KEY(1, 7, KEY_KP4),
69 KEY(1, 6, KEY_KP5),
70 KEY(1, 5, KEY_KP6),
71 KEY(2, 7, KEY_KP7),
72 KEY(2, 6, KEY_KP8),
73 KEY(2, 5, KEY_KP9),
74 KEY(3, 6, KEY_KP0),
75 KEY(3, 7, KEY_KPASTERISK),
76 KEY(3, 5, KEY_KPDOT), /* # key */
77 KEY(7, 2, KEY_NUMLOCK), /* Mute */
78 KEY(7, 1, KEY_KPMINUS), /* Recall */
79 KEY(6, 1, KEY_KPPLUS), /* Redial */
80 KEY(7, 6, KEY_KPSLASH), /* Handsfree */
81 KEY(6, 0, KEY_ENTER), /* Video */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080082
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000083 KEY(7, 4, KEY_CAMERA), /* Photo */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080084
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000085 KEY(0, 4, KEY_F2), /* Home */
86 KEY(1, 4, KEY_F3), /* Office */
87 KEY(2, 4, KEY_F4), /* Mobile */
Tony Lindgrena5246262006-12-07 13:58:17 -080088 KEY(7, 7, KEY_F5), /* SMS */
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000089 KEY(7, 5, KEY_F6), /* Email */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080090
91 /* QWERTY portion of keypad */
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000092 KEY(3, 4, KEY_Q),
Jonathan McDowell325d50b2006-12-06 17:13:52 -080093 KEY(3, 3, KEY_W),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000094 KEY(3, 2, KEY_E),
95 KEY(3, 1, KEY_R),
96 KEY(3, 0, KEY_T),
97 KEY(4, 7, KEY_Y),
98 KEY(4, 6, KEY_U),
99 KEY(4, 5, KEY_I),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800100 KEY(4, 4, KEY_O),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000101 KEY(4, 3, KEY_P),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800102
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000103 KEY(4, 2, KEY_A),
104 KEY(4, 1, KEY_S),
105 KEY(4, 0, KEY_D),
106 KEY(5, 7, KEY_F),
107 KEY(5, 6, KEY_G),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800108 KEY(5, 5, KEY_H),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000109 KEY(5, 4, KEY_J),
110 KEY(5, 3, KEY_K),
111 KEY(5, 2, KEY_L),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800112
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000113 KEY(5, 1, KEY_Z),
114 KEY(5, 0, KEY_X),
115 KEY(6, 7, KEY_C),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800116 KEY(6, 6, KEY_V),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000117 KEY(6, 5, KEY_B),
118 KEY(6, 4, KEY_N),
119 KEY(6, 3, KEY_M),
120 KEY(6, 2, KEY_SPACE),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800121
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000122 KEY(7, 0, KEY_LEFTSHIFT), /* Vol up */
123 KEY(7, 3, KEY_LEFTCTRL), /* Vol down */
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800124};
125
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100126#define LATCH1_PHYS 0x01000000
127#define LATCH1_VIRT 0xEA000000
128#define MODEM_PHYS 0x04000000
129#define MODEM_VIRT 0xEB000000
130#define LATCH2_PHYS 0x08000000
131#define LATCH2_VIRT 0xEC000000
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100132
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100133static struct map_desc ams_delta_io_desc[] __initdata = {
David Cohen6e2d4102007-12-13 22:27:15 -0400134 /* AMS_DELTA_LATCH1 */
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100135 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100136 .virtual = LATCH1_VIRT,
137 .pfn = __phys_to_pfn(LATCH1_PHYS),
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100138 .length = 0x01000000,
139 .type = MT_DEVICE
140 },
David Cohen6e2d4102007-12-13 22:27:15 -0400141 /* AMS_DELTA_LATCH2 */
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100142 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100143 .virtual = LATCH2_VIRT,
144 .pfn = __phys_to_pfn(LATCH2_PHYS),
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100145 .length = 0x01000000,
146 .type = MT_DEVICE
147 },
David Cohen6e2d4102007-12-13 22:27:15 -0400148 /* AMS_DELTA_MODEM */
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100149 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100150 .virtual = MODEM_VIRT,
151 .pfn = __phys_to_pfn(MODEM_PHYS),
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100152 .length = 0x01000000,
153 .type = MT_DEVICE
154 }
155};
156
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100157static struct omap_lcd_config ams_delta_lcd_config __initdata = {
Tony Lindgrena5246262006-12-07 13:58:17 -0800158 .ctrl_name = "internal",
159};
160
Janusz Krzysztofikdc0caef2012-03-01 15:19:15 -0800161static struct omap_usb_config ams_delta_usb_config = {
Jonathan McDowell07116152006-06-26 16:16:01 -0700162 .register_host = 1,
163 .hmc_mode = 16,
164 .pins[0] = 2,
165};
166
Uwe Kleine-Königa7e2a892011-02-09 21:40:10 +0100167static struct omap_board_config_kernel ams_delta_config[] __initdata = {
Tony Lindgrena5246262006-12-07 13:58:17 -0800168 { OMAP_TAG_LCD, &ams_delta_lcd_config },
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100169};
170
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100171#define LATCH1_GPIO_BASE 232
172#define LATCH1_NGPIO 8
173
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100174static struct resource latch1_resources[] = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100175 [0] = {
176 .name = "dat",
177 .start = LATCH1_PHYS,
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100178 .end = LATCH1_PHYS + (LATCH1_NGPIO - 1) / 8,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100179 .flags = IORESOURCE_MEM,
180 },
181};
182
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100183static struct bgpio_pdata latch1_pdata = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100184 .base = LATCH1_GPIO_BASE,
185 .ngpio = LATCH1_NGPIO,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100186};
187
188static struct platform_device latch1_gpio_device = {
189 .name = "basic-mmio-gpio",
190 .id = 0,
191 .resource = latch1_resources,
192 .num_resources = ARRAY_SIZE(latch1_resources),
193 .dev = {
194 .platform_data = &latch1_pdata,
195 },
196};
197
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100198static struct resource latch2_resources[] = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100199 [0] = {
200 .name = "dat",
201 .start = LATCH2_PHYS,
202 .end = LATCH2_PHYS + (AMS_DELTA_LATCH2_NGPIO - 1) / 8,
203 .flags = IORESOURCE_MEM,
204 },
205};
206
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100207static struct bgpio_pdata latch2_pdata = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100208 .base = AMS_DELTA_LATCH2_GPIO_BASE,
209 .ngpio = AMS_DELTA_LATCH2_NGPIO,
210};
211
212static struct platform_device latch2_gpio_device = {
213 .name = "basic-mmio-gpio",
214 .id = 1,
215 .resource = latch2_resources,
216 .num_resources = ARRAY_SIZE(latch2_resources),
217 .dev = {
218 .platform_data = &latch2_pdata,
219 },
220};
221
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100222static const struct gpio latch_gpios[] __initconst = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100223 {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100224 .gpio = LATCH1_GPIO_BASE + 6,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100225 .flags = GPIOF_OUT_INIT_LOW,
226 .label = "dockit1",
227 },
228 {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100229 .gpio = LATCH1_GPIO_BASE + 7,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100230 .flags = GPIOF_OUT_INIT_LOW,
231 .label = "dockit2",
232 },
233 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100234 .gpio = AMS_DELTA_GPIO_PIN_SCARD_RSTIN,
235 .flags = GPIOF_OUT_INIT_LOW,
236 .label = "scard_rstin",
237 },
238 {
239 .gpio = AMS_DELTA_GPIO_PIN_SCARD_CMDVCC,
240 .flags = GPIOF_OUT_INIT_LOW,
241 .label = "scard_cmdvcc",
242 },
243 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100244 .gpio = AMS_DELTA_GPIO_PIN_MODEM_CODEC,
245 .flags = GPIOF_OUT_INIT_LOW,
246 .label = "modem_codec",
247 },
248 {
249 .gpio = AMS_DELTA_LATCH2_GPIO_BASE + 14,
250 .flags = GPIOF_OUT_INIT_LOW,
251 .label = "hookflash1",
252 },
253 {
254 .gpio = AMS_DELTA_LATCH2_GPIO_BASE + 15,
255 .flags = GPIOF_OUT_INIT_LOW,
256 .label = "hookflash2",
257 },
258};
259
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100260static struct regulator_consumer_supply modem_nreset_consumers[] = {
261 REGULATOR_SUPPLY("RESET#", "serial8250.1"),
262 REGULATOR_SUPPLY("POR", "cx20442-codec"),
263};
264
265static struct regulator_init_data modem_nreset_data = {
266 .constraints = {
267 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
268 .boot_on = 1,
269 },
270 .num_consumer_supplies = ARRAY_SIZE(modem_nreset_consumers),
271 .consumer_supplies = modem_nreset_consumers,
272};
273
274static struct fixed_voltage_config modem_nreset_config = {
275 .supply_name = "modem_nreset",
276 .microvolts = 3300000,
277 .gpio = AMS_DELTA_GPIO_PIN_MODEM_NRESET,
278 .startup_delay = 25000,
279 .enable_high = 1,
280 .enabled_at_boot = 1,
281 .init_data = &modem_nreset_data,
282};
283
284static struct platform_device modem_nreset_device = {
285 .name = "reg-fixed-voltage",
286 .id = -1,
287 .dev = {
288 .platform_data = &modem_nreset_config,
289 },
290};
291
292struct modem_private_data {
293 struct regulator *regulator;
294 struct {
295 struct mutex lock;
296 bool enabled;
297 } consumer;
298};
299
300static int regulator_toggle(struct modem_private_data *priv, bool enable)
301{
302 int err = 0;
303
304 mutex_lock(&priv->consumer.lock);
305 if (IS_ERR(priv->regulator)) {
306 err = PTR_ERR(priv->regulator);
307 } else if (enable) {
308 if (!priv->consumer.enabled) {
309 err = regulator_enable(priv->regulator);
310 priv->consumer.enabled = true;
311 }
312 } else {
313 if (priv->consumer.enabled) {
314 err = regulator_disable(priv->regulator);
315 priv->consumer.enabled = false;
316 }
317 }
318 mutex_unlock(&priv->consumer.lock);
319
320 return err;
321}
322
323static struct modem_private_data modem_priv;
324
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100325void ams_delta_latch_write(int base, int ngpio, u16 mask, u16 value)
326{
327 int bit = 0;
328 u16 bitpos = 1 << bit;
329
330 for (; bit < ngpio; bit++, bitpos = bitpos << 1) {
331 if (!(mask & bitpos))
332 continue;
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100333 else if (base + bit == AMS_DELTA_GPIO_PIN_MODEM_NRESET)
334 regulator_toggle(&modem_priv, (value & bitpos) != 0);
335 else
336 gpio_set_value(base + bit, (value & bitpos) != 0);
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100337 }
338}
339EXPORT_SYMBOL(ams_delta_latch_write);
340
Janusz Krzysztofikeaca4912010-12-15 15:43:44 +0100341static struct resource ams_delta_nand_resources[] = {
342 [0] = {
343 .start = OMAP1_MPUIO_BASE,
344 .end = OMAP1_MPUIO_BASE +
345 OMAP_MPUIO_IO_CNTL + sizeof(u32) - 1,
346 .flags = IORESOURCE_MEM,
347 },
348};
349
Janusz Krzysztofik7e95d1f2010-12-14 21:09:40 +0100350static struct platform_device ams_delta_nand_device = {
351 .name = "ams-delta-nand",
Janusz Krzysztofikeaca4912010-12-15 15:43:44 +0100352 .id = -1,
353 .num_resources = ARRAY_SIZE(ams_delta_nand_resources),
354 .resource = ams_delta_nand_resources,
Janusz Krzysztofik7e95d1f2010-12-14 21:09:40 +0100355};
356
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800357static struct resource ams_delta_kp_resources[] = {
358 [0] = {
359 .start = INT_KEYBOARD,
360 .end = INT_KEYBOARD,
361 .flags = IORESOURCE_IRQ,
362 },
363};
364
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000365static const struct matrix_keymap_data ams_delta_keymap_data = {
366 .keymap = ams_delta_keymap,
367 .keymap_size = ARRAY_SIZE(ams_delta_keymap),
368};
369
Janusz Krzysztofikdc0caef2012-03-01 15:19:15 -0800370static struct omap_kp_platform_data ams_delta_kp_data = {
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800371 .rows = 8,
372 .cols = 8,
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000373 .keymap_data = &ams_delta_keymap_data,
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800374 .delay = 9,
375};
376
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700377static struct platform_device ams_delta_kp_device = {
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800378 .name = "omap-keypad",
379 .id = -1,
380 .dev = {
381 .platform_data = &ams_delta_kp_data,
382 },
383 .num_resources = ARRAY_SIZE(ams_delta_kp_resources),
384 .resource = ams_delta_kp_resources,
385};
386
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700387static struct platform_device ams_delta_lcd_device = {
Tony Lindgrena5246262006-12-07 13:58:17 -0800388 .name = "lcd_ams_delta",
389 .id = -1,
390};
391
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100392static const struct gpio_led gpio_leds[] __initconst = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100393 {
394 .name = "camera",
395 .gpio = LATCH1_GPIO_BASE + 0,
396 .default_state = LEDS_GPIO_DEFSTATE_OFF,
397#ifdef CONFIG_LEDS_TRIGGERS
398 .default_trigger = "ams_delta_camera",
399#endif
400 },
401 {
402 .name = "advert",
403 .gpio = LATCH1_GPIO_BASE + 1,
404 .default_state = LEDS_GPIO_DEFSTATE_OFF,
405 },
406 {
407 .name = "email",
408 .gpio = LATCH1_GPIO_BASE + 2,
409 .default_state = LEDS_GPIO_DEFSTATE_OFF,
410 },
411 {
412 .name = "handsfree",
413 .gpio = LATCH1_GPIO_BASE + 3,
414 .default_state = LEDS_GPIO_DEFSTATE_OFF,
415 },
416 {
417 .name = "voicemail",
418 .gpio = LATCH1_GPIO_BASE + 4,
419 .default_state = LEDS_GPIO_DEFSTATE_OFF,
420 },
421 {
422 .name = "voice",
423 .gpio = LATCH1_GPIO_BASE + 5,
424 .default_state = LEDS_GPIO_DEFSTATE_OFF,
425 },
426};
427
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100428static const struct gpio_led_platform_data leds_pdata __initconst = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100429 .leds = gpio_leds,
430 .num_leds = ARRAY_SIZE(gpio_leds),
Jonathan McDowell9becde72006-06-23 02:05:33 -0700431};
432
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700433static struct i2c_board_info ams_delta_camera_board_info[] = {
434 {
435 I2C_BOARD_INFO("ov6650", 0x60),
436 },
437};
438
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -0700439#ifdef CONFIG_LEDS_TRIGGERS
440DEFINE_LED_TRIGGER(ams_delta_camera_led_trigger);
441
442static int ams_delta_camera_power(struct device *dev, int power)
443{
444 /*
445 * turn on camera LED
446 */
447 if (power)
448 led_trigger_event(ams_delta_camera_led_trigger, LED_FULL);
449 else
450 led_trigger_event(ams_delta_camera_led_trigger, LED_OFF);
451 return 0;
452}
453#else
454#define ams_delta_camera_power NULL
455#endif
456
Uwe Kleine-Königa7e2a892011-02-09 21:40:10 +0100457static struct soc_camera_link ams_delta_iclink = {
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700458 .bus_id = 0, /* OMAP1 SoC camera bus */
459 .i2c_adapter_id = 1,
460 .board_info = &ams_delta_camera_board_info[0],
461 .module_name = "ov6650",
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -0700462 .power = ams_delta_camera_power,
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700463};
464
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700465static struct platform_device ams_delta_camera_device = {
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700466 .name = "soc-camera-pdrv",
467 .id = 0,
468 .dev = {
469 .platform_data = &ams_delta_iclink,
470 },
471};
472
473static struct omap1_cam_platform_data ams_delta_camera_platform_data = {
474 .camexclk_khz = 12000, /* default 12MHz clock, no extra DPLL */
475 .lclk_khz_max = 1334, /* results in 5fps CIF, 10fps QCIF */
476};
477
Jonathan McDowell9becde72006-06-23 02:05:33 -0700478static struct platform_device *ams_delta_devices[] __initdata = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100479 &latch1_gpio_device,
480 &latch2_gpio_device,
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800481 &ams_delta_kp_device,
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700482 &ams_delta_camera_device,
Jonathan McDowell9becde72006-06-23 02:05:33 -0700483};
484
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100485static struct platform_device *late_devices[] __initdata = {
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100486 &ams_delta_nand_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100487 &ams_delta_lcd_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100488};
489
490static void __init ams_delta_init(void)
491{
Janusz Krzysztofikc33da3a2009-10-22 14:47:42 -0700492 /* mux pins for uarts */
493 omap_cfg_reg(UART1_TX);
494 omap_cfg_reg(UART1_RTS);
495
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700496 /* parallel camera interface */
497 omap_cfg_reg(H19_1610_CAM_EXCLK);
498 omap_cfg_reg(J15_1610_CAM_LCLK);
499 omap_cfg_reg(L18_1610_CAM_VS);
500 omap_cfg_reg(L15_1610_CAM_HS);
501 omap_cfg_reg(L19_1610_CAM_D0);
502 omap_cfg_reg(K14_1610_CAM_D1);
503 omap_cfg_reg(K15_1610_CAM_D2);
504 omap_cfg_reg(K19_1610_CAM_D3);
505 omap_cfg_reg(K18_1610_CAM_D4);
506 omap_cfg_reg(J14_1610_CAM_D5);
507 omap_cfg_reg(J19_1610_CAM_D6);
508 omap_cfg_reg(J18_1610_CAM_D7);
509
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100510 omap_board_config = ams_delta_config;
511 omap_board_config_size = ARRAY_SIZE(ams_delta_config);
512 omap_serial_init();
Jarkko Nikula1ed16a82007-11-07 06:54:32 +0200513 omap_register_i2c_bus(1, 100, NULL, 0);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100514
Tony Lindgrendd0cdd82010-07-05 16:31:30 +0300515 omap1_usb_init(&ams_delta_usb_config);
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700516 omap1_set_camera_info(&ams_delta_camera_platform_data);
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -0700517#ifdef CONFIG_LEDS_TRIGGERS
518 led_trigger_register_simple("ams_delta_camera",
519 &ams_delta_camera_led_trigger);
520#endif
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100521 gpio_led_register_device(-1, &leds_pdata);
Jonathan McDowell9becde72006-06-23 02:05:33 -0700522 platform_add_devices(ams_delta_devices, ARRAY_SIZE(ams_delta_devices));
Janusz Krzysztofikb3dba0b2009-10-22 14:47:42 -0700523
Janusz Krzysztofike6f740f2010-04-28 01:07:42 +0000524 ams_delta_init_fiq();
Janusz Krzysztofike6f740f2010-04-28 01:07:42 +0000525
Janusz Krzysztofikb3dba0b2009-10-22 14:47:42 -0700526 omap_writew(omap_readw(ARM_RSTCT1) | 0x0004, ARM_RSTCT1);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100527}
528
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700529static struct plat_serial8250_port ams_delta_modem_ports[] = {
530 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100531 .membase = IOMEM(MODEM_VIRT),
532 .mapbase = MODEM_PHYS,
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700533 .irq = -EINVAL, /* changed later */
534 .flags = UPF_BOOT_AUTOCONF,
535 .irqflags = IRQF_TRIGGER_RISING,
536 .iotype = UPIO_MEM,
537 .regshift = 1,
538 .uartclk = BASE_BAUD * 16,
539 },
540 { },
541};
542
543static struct platform_device ams_delta_modem_device = {
544 .name = "serial8250",
545 .id = PLAT8250_DEV_PLATFORM1,
546 .dev = {
547 .platform_data = ams_delta_modem_ports,
548 },
549};
550
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100551static int __init late_init(void)
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700552{
Janusz Krzysztofik4cb2dc62010-04-28 01:05:47 +0000553 int err;
554
Tony Lindgren7f9187c2010-12-10 09:46:24 -0800555 if (!machine_is_ams_delta())
556 return -ENODEV;
557
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100558 err = gpio_request_array(latch_gpios, ARRAY_SIZE(latch_gpios));
559 if (err) {
560 pr_err("Couldn't take over latch1/latch2 GPIO pins\n");
561 return err;
562 }
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100563
564 platform_add_devices(late_devices, ARRAY_SIZE(late_devices));
565
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100566 err = platform_device_register(&modem_nreset_device);
567 if (err) {
568 pr_err("Couldn't register the modem regulator device\n");
569 return err;
570 }
571
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700572 omap_cfg_reg(M14_1510_GPIO2);
Janusz Krzysztofik4cb2dc62010-04-28 01:05:47 +0000573 ams_delta_modem_ports[0].irq =
574 gpio_to_irq(AMS_DELTA_GPIO_PIN_MODEM_IRQ);
575
576 err = gpio_request(AMS_DELTA_GPIO_PIN_MODEM_IRQ, "modem");
577 if (err) {
578 pr_err("Couldn't request gpio pin for modem\n");
579 return err;
580 }
581 gpio_direction_input(AMS_DELTA_GPIO_PIN_MODEM_IRQ);
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700582
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100583 /* Initialize the modem_nreset regulator consumer before use */
584 mutex_init(&modem_priv.consumer.lock);
585 modem_priv.regulator = ERR_PTR(-ENODEV);
586
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700587 ams_delta_latch2_write(
588 AMS_DELTA_LATCH2_MODEM_NRESET | AMS_DELTA_LATCH2_MODEM_CODEC,
589 AMS_DELTA_LATCH2_MODEM_NRESET | AMS_DELTA_LATCH2_MODEM_CODEC);
590
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100591 err = platform_device_register(&ams_delta_modem_device);
592 if (err)
593 goto gpio_free;
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100594
595 /*
596 * Once the modem device is registered, the modem_nreset
597 * regulator can be requested on behalf of that device.
598 * The regulator is used via ams_delta_latch_write()
599 * by the modem and ASoC drivers until updated.
600 */
601 modem_priv.regulator = regulator_get(&ams_delta_modem_device.dev,
602 "RESET#");
603 if (IS_ERR(modem_priv.regulator)) {
604 err = PTR_ERR(modem_priv.regulator);
605 goto unregister;
606 }
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100607 return 0;
608
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100609unregister:
610 platform_device_unregister(&ams_delta_modem_device);
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100611gpio_free:
612 gpio_free(AMS_DELTA_GPIO_PIN_MODEM_IRQ);
613 return err;
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700614}
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100615late_initcall(late_init);
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700616
Tony Lindgren5bb01a92011-11-09 15:29:31 -0800617static void __init ams_delta_map_io(void)
618{
619 omap15xx_map_io();
620 iotable_init(ams_delta_io_desc, ARRAY_SIZE(ams_delta_io_desc));
621}
622
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100623MACHINE_START(AMS_DELTA, "Amstrad E3 (Delta)")
624 /* Maintainer: Jonathan McDowell <noodles@earth.li> */
Nicolas Pitre246e3892011-07-05 22:38:15 -0400625 .atag_offset = 0x100,
Tony Lindgren5bb01a92011-11-09 15:29:31 -0800626 .map_io = ams_delta_map_io,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700627 .init_early = omap1_init_early,
Russell King71ee7da2010-05-23 10:18:16 +0100628 .reserve = omap_reserve,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700629 .init_irq = omap1_init_irq,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100630 .init_machine = ams_delta_init,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700631 .timer = &omap1_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000632 .restart = omap1_restart,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100633MACHINE_END