blob: 9b3073e698ebdc809ebbf9053859449ed90483b1 [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 */
Linus Walleij0f4630f2015-12-04 14:02:58 +010014#include <linux/gpio/driver.h>
Janusz Krzysztofik04867382018-05-18 23:09:49 +020015#include <linux/gpio/machine.h>
Russell King2f8163b2011-07-26 10:53:52 +010016#include <linux/gpio.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010017#include <linux/kernel.h>
18#include <linux/init.h>
Jonathan McDowell325d50b2006-12-06 17:13:52 -080019#include <linux/input.h>
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -070020#include <linux/interrupt.h>
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -070021#include <linux/leds.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>
Tomi Valkeinenddba6c72011-09-20 15:23:13 +030028#include <linux/omapfb.h>
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080029#include <linux/io.h>
Tony Lindgren4b254082012-08-30 15:37:24 -070030#include <linux/platform_data/gpio-omap.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010031
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -070032#include <media/soc_camera.h>
33
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -070034#include <asm/serial.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010035#include <asm/mach-types.h>
36#include <asm/mach/arch.h>
37#include <asm/mach/map.h>
38
Tony Lindgrene27e35e2012-09-19 10:33:43 -070039#include <mach/board-ams-delta.h>
Arnd Bergmann22037472012-08-24 15:21:06 +020040#include <linux/platform_data/keypad-omap.h>
Tony Lindgren70c494c2012-09-19 10:46:56 -070041#include <mach/mux.h>
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080042
43#include <mach/hardware.h>
44#include <mach/ams-delta-fiq.h>
Arnd Bergmann100f9632015-01-30 10:45:33 +010045#include "camera.h"
Tony Lindgrenb924b202012-06-04 00:56:15 -070046#include <mach/usb.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010047
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080048#include "iomap.h"
49#include "common.h"
Janusz Krzysztofike6f740f2010-04-28 01:07:42 +000050
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000051static const unsigned int ams_delta_keymap[] = {
Tony Lindgrena5246262006-12-07 13:58:17 -080052 KEY(0, 0, KEY_F1), /* Advert */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080053
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000054 KEY(0, 3, KEY_COFFEE), /* Games */
55 KEY(0, 2, KEY_QUESTION), /* Directory */
56 KEY(2, 3, KEY_CONNECT), /* Internet */
57 KEY(1, 2, KEY_SHOP), /* Services */
Tony Lindgrena5246262006-12-07 13:58:17 -080058 KEY(1, 1, KEY_PHONE), /* VoiceMail */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080059
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000060 KEY(0, 1, KEY_DELETE), /* Delete */
Tony Lindgrena5246262006-12-07 13:58:17 -080061 KEY(2, 2, KEY_PLAY), /* Play */
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000062 KEY(1, 0, KEY_PAGEUP), /* Up */
63 KEY(1, 3, KEY_PAGEDOWN), /* Down */
64 KEY(2, 0, KEY_EMAIL), /* ReadEmail */
65 KEY(2, 1, KEY_STOP), /* Stop */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080066
67 /* Numeric keypad portion */
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000068 KEY(0, 7, KEY_KP1),
69 KEY(0, 6, KEY_KP2),
70 KEY(0, 5, KEY_KP3),
71 KEY(1, 7, KEY_KP4),
72 KEY(1, 6, KEY_KP5),
73 KEY(1, 5, KEY_KP6),
74 KEY(2, 7, KEY_KP7),
75 KEY(2, 6, KEY_KP8),
76 KEY(2, 5, KEY_KP9),
77 KEY(3, 6, KEY_KP0),
78 KEY(3, 7, KEY_KPASTERISK),
79 KEY(3, 5, KEY_KPDOT), /* # key */
80 KEY(7, 2, KEY_NUMLOCK), /* Mute */
81 KEY(7, 1, KEY_KPMINUS), /* Recall */
82 KEY(6, 1, KEY_KPPLUS), /* Redial */
83 KEY(7, 6, KEY_KPSLASH), /* Handsfree */
84 KEY(6, 0, KEY_ENTER), /* Video */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080085
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000086 KEY(7, 4, KEY_CAMERA), /* Photo */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080087
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000088 KEY(0, 4, KEY_F2), /* Home */
89 KEY(1, 4, KEY_F3), /* Office */
90 KEY(2, 4, KEY_F4), /* Mobile */
Tony Lindgrena5246262006-12-07 13:58:17 -080091 KEY(7, 7, KEY_F5), /* SMS */
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000092 KEY(7, 5, KEY_F6), /* Email */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080093
94 /* QWERTY portion of keypad */
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000095 KEY(3, 4, KEY_Q),
Jonathan McDowell325d50b2006-12-06 17:13:52 -080096 KEY(3, 3, KEY_W),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000097 KEY(3, 2, KEY_E),
98 KEY(3, 1, KEY_R),
99 KEY(3, 0, KEY_T),
100 KEY(4, 7, KEY_Y),
101 KEY(4, 6, KEY_U),
102 KEY(4, 5, KEY_I),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800103 KEY(4, 4, KEY_O),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000104 KEY(4, 3, KEY_P),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800105
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000106 KEY(4, 2, KEY_A),
107 KEY(4, 1, KEY_S),
108 KEY(4, 0, KEY_D),
109 KEY(5, 7, KEY_F),
110 KEY(5, 6, KEY_G),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800111 KEY(5, 5, KEY_H),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000112 KEY(5, 4, KEY_J),
113 KEY(5, 3, KEY_K),
114 KEY(5, 2, KEY_L),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800115
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000116 KEY(5, 1, KEY_Z),
117 KEY(5, 0, KEY_X),
118 KEY(6, 7, KEY_C),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800119 KEY(6, 6, KEY_V),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000120 KEY(6, 5, KEY_B),
121 KEY(6, 4, KEY_N),
122 KEY(6, 3, KEY_M),
123 KEY(6, 2, KEY_SPACE),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800124
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000125 KEY(7, 0, KEY_LEFTSHIFT), /* Vol up */
126 KEY(7, 3, KEY_LEFTCTRL), /* Vol down */
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800127};
128
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100129#define LATCH1_PHYS 0x01000000
130#define LATCH1_VIRT 0xEA000000
131#define MODEM_PHYS 0x04000000
132#define MODEM_VIRT 0xEB000000
133#define LATCH2_PHYS 0x08000000
134#define LATCH2_VIRT 0xEC000000
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100135
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100136static struct map_desc ams_delta_io_desc[] __initdata = {
David Cohen6e2d4102007-12-13 22:27:15 -0400137 /* AMS_DELTA_LATCH1 */
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100138 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100139 .virtual = LATCH1_VIRT,
140 .pfn = __phys_to_pfn(LATCH1_PHYS),
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100141 .length = 0x01000000,
142 .type = MT_DEVICE
143 },
David Cohen6e2d4102007-12-13 22:27:15 -0400144 /* AMS_DELTA_LATCH2 */
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100145 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100146 .virtual = LATCH2_VIRT,
147 .pfn = __phys_to_pfn(LATCH2_PHYS),
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100148 .length = 0x01000000,
149 .type = MT_DEVICE
150 },
David Cohen6e2d4102007-12-13 22:27:15 -0400151 /* AMS_DELTA_MODEM */
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100152 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100153 .virtual = MODEM_VIRT,
154 .pfn = __phys_to_pfn(MODEM_PHYS),
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100155 .length = 0x01000000,
156 .type = MT_DEVICE
157 }
158};
159
Bhumika Goyald25c70c2017-08-22 11:55:50 +0530160static const struct omap_lcd_config ams_delta_lcd_config __initconst = {
Tony Lindgrena5246262006-12-07 13:58:17 -0800161 .ctrl_name = "internal",
162};
163
Aaro Koskinen07fd2962012-12-21 22:56:32 +0200164static struct omap_usb_config ams_delta_usb_config __initdata = {
Jonathan McDowell07116152006-06-26 16:16:01 -0700165 .register_host = 1,
166 .hmc_mode = 16,
167 .pins[0] = 2,
168};
169
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100170#define LATCH1_GPIO_BASE 232
171#define LATCH1_NGPIO 8
172
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100173static struct resource latch1_resources[] = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100174 [0] = {
175 .name = "dat",
176 .start = LATCH1_PHYS,
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100177 .end = LATCH1_PHYS + (LATCH1_NGPIO - 1) / 8,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100178 .flags = IORESOURCE_MEM,
179 },
180};
181
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200182#define LATCH1_LABEL "latch1"
183
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100184static struct bgpio_pdata latch1_pdata = {
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200185 .label = LATCH1_LABEL,
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100186 .base = LATCH1_GPIO_BASE,
187 .ngpio = LATCH1_NGPIO,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100188};
189
190static struct platform_device latch1_gpio_device = {
191 .name = "basic-mmio-gpio",
192 .id = 0,
193 .resource = latch1_resources,
194 .num_resources = ARRAY_SIZE(latch1_resources),
195 .dev = {
196 .platform_data = &latch1_pdata,
197 },
198};
199
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200200#define LATCH1_PIN_LED_CAMERA 0
201#define LATCH1_PIN_LED_ADVERT 1
202#define LATCH1_PIN_LED_MAIL 2
203#define LATCH1_PIN_LED_HANDSFREE 3
204#define LATCH1_PIN_LED_VOICEMAIL 4
205#define LATCH1_PIN_LED_VOICE 5
206#define LATCH1_PIN_DOCKIT1 6
207#define LATCH1_PIN_DOCKIT2 7
208
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100209static struct resource latch2_resources[] = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100210 [0] = {
211 .name = "dat",
212 .start = LATCH2_PHYS,
213 .end = LATCH2_PHYS + (AMS_DELTA_LATCH2_NGPIO - 1) / 8,
214 .flags = IORESOURCE_MEM,
215 },
216};
217
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200218#define LATCH2_LABEL "latch2"
219
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100220static struct bgpio_pdata latch2_pdata = {
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200221 .label = LATCH2_LABEL,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100222 .base = AMS_DELTA_LATCH2_GPIO_BASE,
223 .ngpio = AMS_DELTA_LATCH2_NGPIO,
224};
225
226static struct platform_device latch2_gpio_device = {
227 .name = "basic-mmio-gpio",
228 .id = 1,
229 .resource = latch2_resources,
230 .num_resources = ARRAY_SIZE(latch2_resources),
231 .dev = {
232 .platform_data = &latch2_pdata,
233 },
234};
235
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200236#define LATCH2_PIN_LCD_VBLEN 0
237#define LATCH2_PIN_LCD_NDISP 1
238#define LATCH2_PIN_NAND_NCE 2
239#define LATCH2_PIN_NAND_NRE 3
240#define LATCH2_PIN_NAND_NWP 4
241#define LATCH2_PIN_NAND_NWE 5
242#define LATCH2_PIN_NAND_ALE 6
243#define LATCH2_PIN_NAND_CLE 7
244#define LATCH2_PIN_KEYBRD_PWR 8
245#define LATCH2_PIN_KEYBRD_DATAOUT 9
246#define LATCH2_PIN_SCARD_RSTIN 10
247#define LATCH2_PIN_SCARD_CMDVCC 11
248#define LATCH2_PIN_MODEM_NRESET 12
249#define LATCH2_PIN_MODEM_CODEC 13
250#define LATCH2_PIN_HOOKFLASH1 14
251#define LATCH2_PIN_HOOKFLASH2 15
252
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100253static const struct gpio latch_gpios[] __initconst = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100254 {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100255 .gpio = LATCH1_GPIO_BASE + 6,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100256 .flags = GPIOF_OUT_INIT_LOW,
257 .label = "dockit1",
258 },
259 {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100260 .gpio = LATCH1_GPIO_BASE + 7,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100261 .flags = GPIOF_OUT_INIT_LOW,
262 .label = "dockit2",
263 },
264 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100265 .gpio = AMS_DELTA_GPIO_PIN_SCARD_RSTIN,
266 .flags = GPIOF_OUT_INIT_LOW,
267 .label = "scard_rstin",
268 },
269 {
270 .gpio = AMS_DELTA_GPIO_PIN_SCARD_CMDVCC,
271 .flags = GPIOF_OUT_INIT_LOW,
272 .label = "scard_cmdvcc",
273 },
274 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100275 .gpio = AMS_DELTA_LATCH2_GPIO_BASE + 14,
276 .flags = GPIOF_OUT_INIT_LOW,
277 .label = "hookflash1",
278 },
279 {
280 .gpio = AMS_DELTA_LATCH2_GPIO_BASE + 15,
281 .flags = GPIOF_OUT_INIT_LOW,
282 .label = "hookflash2",
283 },
284};
285
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100286static struct regulator_consumer_supply modem_nreset_consumers[] = {
287 REGULATOR_SUPPLY("RESET#", "serial8250.1"),
288 REGULATOR_SUPPLY("POR", "cx20442-codec"),
289};
290
291static struct regulator_init_data modem_nreset_data = {
292 .constraints = {
293 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
294 .boot_on = 1,
295 },
296 .num_consumer_supplies = ARRAY_SIZE(modem_nreset_consumers),
297 .consumer_supplies = modem_nreset_consumers,
298};
299
300static struct fixed_voltage_config modem_nreset_config = {
301 .supply_name = "modem_nreset",
302 .microvolts = 3300000,
303 .gpio = AMS_DELTA_GPIO_PIN_MODEM_NRESET,
304 .startup_delay = 25000,
305 .enable_high = 1,
306 .enabled_at_boot = 1,
307 .init_data = &modem_nreset_data,
308};
309
310static struct platform_device modem_nreset_device = {
311 .name = "reg-fixed-voltage",
312 .id = -1,
313 .dev = {
314 .platform_data = &modem_nreset_config,
315 },
316};
317
318struct modem_private_data {
319 struct regulator *regulator;
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100320};
321
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100322static struct modem_private_data modem_priv;
323
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100324void ams_delta_latch_write(int base, int ngpio, u16 mask, u16 value)
325{
326 int bit = 0;
327 u16 bitpos = 1 << bit;
328
329 for (; bit < ngpio; bit++, bitpos = bitpos << 1) {
330 if (!(mask & bitpos))
331 continue;
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100332 else
333 gpio_set_value(base + bit, (value & bitpos) != 0);
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100334 }
335}
336EXPORT_SYMBOL(ams_delta_latch_write);
337
Janusz Krzysztofikeaca4912010-12-15 15:43:44 +0100338static struct resource ams_delta_nand_resources[] = {
339 [0] = {
340 .start = OMAP1_MPUIO_BASE,
341 .end = OMAP1_MPUIO_BASE +
342 OMAP_MPUIO_IO_CNTL + sizeof(u32) - 1,
343 .flags = IORESOURCE_MEM,
344 },
345};
346
Janusz Krzysztofik7e95d1f12010-12-14 21:09:40 +0100347static struct platform_device ams_delta_nand_device = {
348 .name = "ams-delta-nand",
Janusz Krzysztofikeaca4912010-12-15 15:43:44 +0100349 .id = -1,
350 .num_resources = ARRAY_SIZE(ams_delta_nand_resources),
351 .resource = ams_delta_nand_resources,
Janusz Krzysztofik7e95d1f12010-12-14 21:09:40 +0100352};
353
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200354#define OMAP_GPIO_LABEL "gpio-0-15"
355
356static struct gpiod_lookup_table ams_delta_nand_gpio_table = {
357 .table = {
358 GPIO_LOOKUP(OMAP_GPIO_LABEL, AMS_DELTA_GPIO_PIN_NAND_RB, "rdy",
359 0),
360 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NCE, "nce", 0),
361 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NRE, "nre", 0),
362 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NWP, "nwp", 0),
363 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NWE, "nwe", 0),
364 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_ALE, "ale", 0),
365 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_CLE, "cle", 0),
366 { },
367 },
368};
369
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800370static struct resource ams_delta_kp_resources[] = {
371 [0] = {
372 .start = INT_KEYBOARD,
373 .end = INT_KEYBOARD,
374 .flags = IORESOURCE_IRQ,
375 },
376};
377
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000378static const struct matrix_keymap_data ams_delta_keymap_data = {
379 .keymap = ams_delta_keymap,
380 .keymap_size = ARRAY_SIZE(ams_delta_keymap),
381};
382
Janusz Krzysztofikdc0caef2012-03-01 15:19:15 -0800383static struct omap_kp_platform_data ams_delta_kp_data = {
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800384 .rows = 8,
385 .cols = 8,
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000386 .keymap_data = &ams_delta_keymap_data,
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800387 .delay = 9,
388};
389
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700390static struct platform_device ams_delta_kp_device = {
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800391 .name = "omap-keypad",
392 .id = -1,
393 .dev = {
394 .platform_data = &ams_delta_kp_data,
395 },
396 .num_resources = ARRAY_SIZE(ams_delta_kp_resources),
397 .resource = ams_delta_kp_resources,
398};
399
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700400static struct platform_device ams_delta_lcd_device = {
Tony Lindgrena5246262006-12-07 13:58:17 -0800401 .name = "lcd_ams_delta",
402 .id = -1,
403};
404
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200405static struct gpiod_lookup_table ams_delta_lcd_gpio_table = {
406 .table = {
407 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_LCD_VBLEN, "vblen", 0),
408 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_LCD_NDISP, "ndisp", 0),
409 { },
410 },
411};
412
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200413/*
414 * Dynamically allocated GPIO numbers must be obtained fromm GPIO device
415 * before they can be put in the gpio_led table. Before that happens,
416 * initialize the table with invalid GPIO numbers, not 0.
417 */
418static struct gpio_led gpio_leds[] __initdata = {
419 [LATCH1_PIN_LED_CAMERA] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100420 .name = "camera",
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200421 .gpio = -EINVAL,
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100422 .default_state = LEDS_GPIO_DEFSTATE_OFF,
423#ifdef CONFIG_LEDS_TRIGGERS
424 .default_trigger = "ams_delta_camera",
425#endif
426 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200427 [LATCH1_PIN_LED_ADVERT] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100428 .name = "advert",
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200429 .gpio = -EINVAL,
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100430 .default_state = LEDS_GPIO_DEFSTATE_OFF,
431 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200432 [LATCH1_PIN_LED_MAIL] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100433 .name = "email",
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200434 .gpio = -EINVAL,
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100435 .default_state = LEDS_GPIO_DEFSTATE_OFF,
436 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200437 [LATCH1_PIN_LED_HANDSFREE] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100438 .name = "handsfree",
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200439 .gpio = -EINVAL,
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100440 .default_state = LEDS_GPIO_DEFSTATE_OFF,
441 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200442 [LATCH1_PIN_LED_VOICEMAIL] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100443 .name = "voicemail",
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200444 .gpio = -EINVAL,
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100445 .default_state = LEDS_GPIO_DEFSTATE_OFF,
446 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200447 [LATCH1_PIN_LED_VOICE] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100448 .name = "voice",
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200449 .gpio = -EINVAL,
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100450 .default_state = LEDS_GPIO_DEFSTATE_OFF,
451 },
452};
453
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100454static const struct gpio_led_platform_data leds_pdata __initconst = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100455 .leds = gpio_leds,
456 .num_leds = ARRAY_SIZE(gpio_leds),
Jonathan McDowell9becde72006-06-23 02:05:33 -0700457};
458
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700459static struct i2c_board_info ams_delta_camera_board_info[] = {
460 {
461 I2C_BOARD_INFO("ov6650", 0x60),
462 },
463};
464
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -0700465#ifdef CONFIG_LEDS_TRIGGERS
466DEFINE_LED_TRIGGER(ams_delta_camera_led_trigger);
467
468static int ams_delta_camera_power(struct device *dev, int power)
469{
470 /*
471 * turn on camera LED
472 */
473 if (power)
474 led_trigger_event(ams_delta_camera_led_trigger, LED_FULL);
475 else
476 led_trigger_event(ams_delta_camera_led_trigger, LED_OFF);
477 return 0;
478}
479#else
480#define ams_delta_camera_power NULL
481#endif
482
Uwe Kleine-Königa7e2a892011-02-09 21:40:10 +0100483static struct soc_camera_link ams_delta_iclink = {
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700484 .bus_id = 0, /* OMAP1 SoC camera bus */
485 .i2c_adapter_id = 1,
486 .board_info = &ams_delta_camera_board_info[0],
487 .module_name = "ov6650",
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -0700488 .power = ams_delta_camera_power,
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700489};
490
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700491static struct platform_device ams_delta_camera_device = {
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700492 .name = "soc-camera-pdrv",
493 .id = 0,
494 .dev = {
495 .platform_data = &ams_delta_iclink,
496 },
497};
498
499static struct omap1_cam_platform_data ams_delta_camera_platform_data = {
500 .camexclk_khz = 12000, /* default 12MHz clock, no extra DPLL */
501 .lclk_khz_max = 1334, /* results in 5fps CIF, 10fps QCIF */
502};
503
Janusz Krzysztofikb764de22012-10-03 12:46:57 +0200504static struct platform_device ams_delta_audio_device = {
505 .name = "ams-delta-audio",
506 .id = -1,
507};
508
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200509static struct gpiod_lookup_table ams_delta_audio_gpio_table = {
510 .table = {
511 GPIO_LOOKUP(OMAP_GPIO_LABEL, AMS_DELTA_GPIO_PIN_HOOK_SWITCH,
512 "hook_switch", 0),
513 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_MODEM_CODEC,
514 "modem_codec", 0),
515 { },
516 },
517};
518
Janusz Krzysztofikb764de22012-10-03 12:46:57 +0200519static struct platform_device cx20442_codec_device = {
520 .name = "cx20442-codec",
521 .id = -1,
522};
523
Janusz Krzysztofikdf88c572018-06-22 00:41:20 +0200524static struct platform_device ams_delta_serio_device = {
525 .name = "ams-delta-serio",
526 .id = PLATFORM_DEVID_NONE,
527};
528
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200529static struct regulator_consumer_supply keybrd_pwr_consumers[] = {
530 /*
531 * Initialize supply .dev_name with NULL. It will be replaced
532 * with serio dev_name() as soon as the serio device is registered.
533 */
534 REGULATOR_SUPPLY("vcc", NULL),
535};
536
537static struct regulator_init_data keybrd_pwr_initdata = {
538 .constraints = {
539 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
540 },
541 .num_consumer_supplies = ARRAY_SIZE(keybrd_pwr_consumers),
542 .consumer_supplies = keybrd_pwr_consumers,
543};
544
545static struct fixed_voltage_config keybrd_pwr_config = {
546 .supply_name = "keybrd_pwr",
547 .microvolts = 5000000,
548 .gpio = AMS_DELTA_GPIO_PIN_KEYBRD_PWR,
549 .enable_high = 1,
550 .init_data = &keybrd_pwr_initdata,
551};
552
553static struct platform_device keybrd_pwr_device = {
554 .name = "reg-fixed-voltage",
555 .id = PLATFORM_DEVID_AUTO,
556 .dev = {
557 .platform_data = &keybrd_pwr_config,
558 },
559};
560
561static struct gpiod_lookup_table keybrd_pwr_gpio_table = {
562 .table = {
563 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_KEYBRD_PWR, NULL,
564 GPIO_ACTIVE_HIGH),
565 { },
566 },
567};
568
Jonathan McDowell9becde72006-06-23 02:05:33 -0700569static struct platform_device *ams_delta_devices[] __initdata = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100570 &latch1_gpio_device,
571 &latch2_gpio_device,
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800572 &ams_delta_kp_device,
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700573 &ams_delta_camera_device,
Janusz Krzysztofikb764de22012-10-03 12:46:57 +0200574 &ams_delta_audio_device,
Janusz Krzysztofikdf88c572018-06-22 00:41:20 +0200575 &ams_delta_serio_device,
Jonathan McDowell9becde72006-06-23 02:05:33 -0700576};
577
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100578static struct platform_device *late_devices[] __initdata = {
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100579 &ams_delta_nand_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100580 &ams_delta_lcd_device,
Janusz Krzysztofikb764de22012-10-03 12:46:57 +0200581 &cx20442_codec_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100582};
583
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200584static struct gpiod_lookup_table *ams_delta_gpio_tables[] __initdata = {
585 &ams_delta_audio_gpio_table,
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200586 &keybrd_pwr_gpio_table,
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200587};
588
589static struct gpiod_lookup_table *late_gpio_tables[] __initdata = {
590 &ams_delta_lcd_gpio_table,
591 &ams_delta_nand_gpio_table,
592};
593
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200594/*
595 * Some drivers may not use GPIO lookup tables but need to be provided
596 * with GPIO numbers. The same applies to GPIO based IRQ lines - some
597 * drivers may even not use GPIO layer but expect just IRQ numbers.
598 * We could either define GPIO lookup tables then use them on behalf
599 * of those devices, or we can use GPIO driver level methods for
600 * identification of GPIO and IRQ numbers. For the purpose of the latter,
601 * defina a helper function which identifies GPIO chips by their labels.
602 */
603static int gpiochip_match_by_label(struct gpio_chip *chip, void *data)
604{
605 char *label = data;
606
607 return !strcmp(label, chip->label);
608}
609
Janusz Krzysztofik41f8fee2018-06-22 00:41:23 +0200610static struct gpiod_hog ams_delta_gpio_hogs[] = {
611 GPIO_HOG(LATCH2_LABEL, LATCH2_PIN_KEYBRD_DATAOUT, "keybrd_dataout",
612 GPIO_ACTIVE_HIGH, GPIOD_OUT_LOW),
613 {},
614};
615
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100616static void __init ams_delta_init(void)
617{
Janusz Krzysztofikc33da3a2009-10-22 14:47:42 -0700618 /* mux pins for uarts */
619 omap_cfg_reg(UART1_TX);
620 omap_cfg_reg(UART1_RTS);
621
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700622 /* parallel camera interface */
623 omap_cfg_reg(H19_1610_CAM_EXCLK);
624 omap_cfg_reg(J15_1610_CAM_LCLK);
625 omap_cfg_reg(L18_1610_CAM_VS);
626 omap_cfg_reg(L15_1610_CAM_HS);
627 omap_cfg_reg(L19_1610_CAM_D0);
628 omap_cfg_reg(K14_1610_CAM_D1);
629 omap_cfg_reg(K15_1610_CAM_D2);
630 omap_cfg_reg(K19_1610_CAM_D3);
631 omap_cfg_reg(K18_1610_CAM_D4);
632 omap_cfg_reg(J14_1610_CAM_D5);
633 omap_cfg_reg(J19_1610_CAM_D6);
634 omap_cfg_reg(J18_1610_CAM_D7);
635
Janusz Krzysztofik41f8fee2018-06-22 00:41:23 +0200636 gpiod_add_hogs(ams_delta_gpio_hogs);
637
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100638 omap_serial_init();
Jarkko Nikula1ed16a82007-11-07 06:54:32 +0200639 omap_register_i2c_bus(1, 100, NULL, 0);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100640
Tony Lindgrendd0cdd82010-07-05 16:31:30 +0300641 omap1_usb_init(&ams_delta_usb_config);
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700642 omap1_set_camera_info(&ams_delta_camera_platform_data);
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -0700643#ifdef CONFIG_LEDS_TRIGGERS
644 led_trigger_register_simple("ams_delta_camera",
645 &ams_delta_camera_led_trigger);
646#endif
Jonathan McDowell9becde72006-06-23 02:05:33 -0700647 platform_add_devices(ams_delta_devices, ARRAY_SIZE(ams_delta_devices));
Janusz Krzysztofikb3dba0b2009-10-22 14:47:42 -0700648
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200649 /*
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200650 * As soon as regulator consumers have been registered, assign their
651 * dev_names to consumer supply entries of respective regulators.
652 */
653 keybrd_pwr_consumers[0].dev_name =
654 dev_name(&ams_delta_serio_device.dev);
655
656 /*
657 * Once consumer supply entries are populated with dev_names,
658 * register regulator devices. At this stage only the keyboard
659 * power regulator has its consumer supply table fully populated.
660 */
661 platform_device_register(&keybrd_pwr_device);
662
663 /*
664 * As soon as GPIO consumers have been registered, assign
665 * their dev_names to respective GPIO lookup tables.
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200666 */
667 ams_delta_audio_gpio_table.dev_id =
668 dev_name(&ams_delta_audio_device.dev);
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200669 keybrd_pwr_gpio_table.dev_id = dev_name(&keybrd_pwr_device.dev);
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200670
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200671 /*
672 * Once GPIO lookup tables are populated with dev_names, register them.
673 */
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200674 gpiod_add_lookup_tables(ams_delta_gpio_tables,
675 ARRAY_SIZE(ams_delta_gpio_tables));
676
Janusz Krzysztofike6f740f2010-04-28 01:07:42 +0000677 ams_delta_init_fiq();
Janusz Krzysztofike6f740f2010-04-28 01:07:42 +0000678
Janusz Krzysztofikb3dba0b2009-10-22 14:47:42 -0700679 omap_writew(omap_readw(ARM_RSTCT1) | 0x0004, ARM_RSTCT1);
Tomi Valkeinenddba6c72011-09-20 15:23:13 +0300680
681 omapfb_set_lcd_config(&ams_delta_lcd_config);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100682}
683
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100684static void modem_pm(struct uart_port *port, unsigned int state, unsigned old)
685{
686 struct modem_private_data *priv = port->private_data;
Arnd Bergmann595a9f92016-01-15 14:41:03 +0100687 int ret;
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100688
Janusz Krzysztofik0379c1f2012-03-05 17:05:12 +0100689 if (IS_ERR(priv->regulator))
690 return;
691
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100692 if (state == old)
693 return;
694
Janusz Krzysztofik0379c1f2012-03-05 17:05:12 +0100695 if (state == 0)
Arnd Bergmann595a9f92016-01-15 14:41:03 +0100696 ret = regulator_enable(priv->regulator);
Janusz Krzysztofik0379c1f2012-03-05 17:05:12 +0100697 else if (old == 0)
Arnd Bergmann595a9f92016-01-15 14:41:03 +0100698 ret = regulator_disable(priv->regulator);
699 else
700 ret = 0;
701
702 if (ret)
703 dev_warn(port->dev,
704 "ams_delta modem_pm: failed to %sable regulator: %d\n",
705 state ? "dis" : "en", ret);
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100706}
707
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700708static struct plat_serial8250_port ams_delta_modem_ports[] = {
709 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100710 .membase = IOMEM(MODEM_VIRT),
711 .mapbase = MODEM_PHYS,
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700712 .irq = -EINVAL, /* changed later */
713 .flags = UPF_BOOT_AUTOCONF,
714 .irqflags = IRQF_TRIGGER_RISING,
715 .iotype = UPIO_MEM,
716 .regshift = 1,
717 .uartclk = BASE_BAUD * 16,
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100718 .pm = modem_pm,
719 .private_data = &modem_priv,
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700720 },
721 { },
722};
723
724static struct platform_device ams_delta_modem_device = {
725 .name = "serial8250",
726 .id = PLAT8250_DEV_PLATFORM1,
727 .dev = {
728 .platform_data = ams_delta_modem_ports,
729 },
730};
731
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200732/*
733 * leds-gpio driver doesn't make use of GPIO lookup tables,
734 * it has to be provided with GPIO numbers over platform data
735 * if GPIO descriptor info can't be obtained from device tree.
736 * We could either define GPIO lookup tables and use them on behalf
737 * of the leds-gpio device, or we can use GPIO driver level methods
738 * for identification of GPIO numbers as long as we don't support
739 * device tree. Let's do the latter.
740 */
741static void __init ams_delta_led_init(struct gpio_chip *chip)
742{
743 struct gpio_desc *gpiod;
744 int i;
745
746 for (i = LATCH1_PIN_LED_CAMERA; i < LATCH1_PIN_DOCKIT1; i++) {
747 gpiod = gpiochip_request_own_desc(chip, i, NULL);
748 if (IS_ERR(gpiod)) {
749 pr_warn("%s: %s GPIO %d request failed (%ld)\n",
750 __func__, LATCH1_LABEL, i, PTR_ERR(gpiod));
751 continue;
752 }
753
754 /* Assign GPIO numbers to LED device. */
755 gpio_leds[i].gpio = desc_to_gpio(gpiod);
756
757 gpiochip_free_own_desc(gpiod);
758 }
759
760 gpio_led_register_device(PLATFORM_DEVID_NONE, &leds_pdata);
761}
762
763/*
764 * The purpose of this function is to take care of assignment of GPIO numbers
765 * to platform devices which depend on GPIO lines provided by Amstrad Delta
766 * latch1 and/or latch2 GPIO devices but don't use GPIO lookup tables.
767 * The function may be called as soon as latch1/latch2 GPIO devices are
768 * initilized. Since basic-mmio-gpio driver is not registered before
769 * device_initcall, this may happen at erliest during device_initcall_sync.
770 * Dependent devices shouldn't be registered before that, their
771 * registration may be performed from within this function or later.
772 */
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200773static int __init ams_delta_gpio_init(void)
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700774{
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200775 struct gpio_chip *chip;
Janusz Krzysztofik4cb2dc62010-04-28 01:05:47 +0000776 int err;
777
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200778 if (!machine_is_ams_delta())
779 return -ENODEV;
780
781 chip = gpiochip_find(LATCH1_LABEL, gpiochip_match_by_label);
782 if (!chip)
783 pr_err("%s: latch1 GPIO chip not found\n", __func__);
784 else
785 ams_delta_led_init(chip);
786
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100787 err = gpio_request_array(latch_gpios, ARRAY_SIZE(latch_gpios));
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200788 if (err)
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100789 pr_err("Couldn't take over latch1/latch2 GPIO pins\n");
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100790
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200791 return err;
792}
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200793device_initcall_sync(ams_delta_gpio_init);
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200794
795static void __init ams_delta_late_devices(void)
796{
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100797 platform_add_devices(late_devices, ARRAY_SIZE(late_devices));
798
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200799 /*
800 * As soon as devices have been registered, assign their dev_names
801 * to respective GPIO lookup tables before they are added.
802 */
803 ams_delta_lcd_gpio_table.dev_id = dev_name(&ams_delta_lcd_device.dev);
804 ams_delta_nand_gpio_table.dev_id = dev_name(&ams_delta_nand_device.dev);
805
806 gpiod_add_lookup_tables(late_gpio_tables, ARRAY_SIZE(late_gpio_tables));
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200807}
808
809static int __init modem_nreset_init(void)
810{
811 int err;
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200812
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100813 err = platform_device_register(&modem_nreset_device);
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200814 if (err)
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100815 pr_err("Couldn't register the modem regulator device\n");
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200816
817 return err;
818}
819
820
821static int __init ams_delta_modem_init(void)
822{
823 int err;
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100824
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700825 omap_cfg_reg(M14_1510_GPIO2);
Janusz Krzysztofik4cb2dc62010-04-28 01:05:47 +0000826 ams_delta_modem_ports[0].irq =
827 gpio_to_irq(AMS_DELTA_GPIO_PIN_MODEM_IRQ);
828
829 err = gpio_request(AMS_DELTA_GPIO_PIN_MODEM_IRQ, "modem");
830 if (err) {
831 pr_err("Couldn't request gpio pin for modem\n");
832 return err;
833 }
834 gpio_direction_input(AMS_DELTA_GPIO_PIN_MODEM_IRQ);
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700835
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100836 /* Initialize the modem_nreset regulator consumer before use */
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100837 modem_priv.regulator = ERR_PTR(-ENODEV);
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700838
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100839 ams_delta_latch2_write(AMS_DELTA_LATCH2_MODEM_CODEC,
840 AMS_DELTA_LATCH2_MODEM_CODEC);
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700841
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100842 err = platform_device_register(&ams_delta_modem_device);
843 if (err)
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200844 gpio_free(AMS_DELTA_GPIO_PIN_MODEM_IRQ);
845
846 return err;
847}
848
849static int __init late_init(void)
850{
851 int err;
852
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200853 ams_delta_late_devices();
854
855 err = modem_nreset_init();
856 if (err)
857 return err;
858
859 err = ams_delta_modem_init();
860 if (err)
861 return err;
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100862
863 /*
864 * Once the modem device is registered, the modem_nreset
865 * regulator can be requested on behalf of that device.
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100866 */
867 modem_priv.regulator = regulator_get(&ams_delta_modem_device.dev,
868 "RESET#");
869 if (IS_ERR(modem_priv.regulator)) {
870 err = PTR_ERR(modem_priv.regulator);
871 goto unregister;
872 }
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100873 return 0;
874
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100875unregister:
876 platform_device_unregister(&ams_delta_modem_device);
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100877 gpio_free(AMS_DELTA_GPIO_PIN_MODEM_IRQ);
878 return err;
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700879}
Shawn Guo82c3bd02012-04-26 13:49:29 +0800880
881static void __init ams_delta_init_late(void)
882{
883 omap1_init_late();
884 late_init();
885}
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700886
Tony Lindgren5bb01a92011-11-09 15:29:31 -0800887static void __init ams_delta_map_io(void)
888{
889 omap15xx_map_io();
890 iotable_init(ams_delta_io_desc, ARRAY_SIZE(ams_delta_io_desc));
891}
892
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100893MACHINE_START(AMS_DELTA, "Amstrad E3 (Delta)")
894 /* Maintainer: Jonathan McDowell <noodles@earth.li> */
Nicolas Pitre246e3892011-07-05 22:38:15 -0400895 .atag_offset = 0x100,
Tony Lindgren5bb01a92011-11-09 15:29:31 -0800896 .map_io = ams_delta_map_io,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700897 .init_early = omap1_init_early,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700898 .init_irq = omap1_init_irq,
Tony Lindgrenb6943312015-05-20 09:01:21 -0700899 .handle_irq = omap1_handle_irq,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100900 .init_machine = ams_delta_init,
Shawn Guo82c3bd02012-04-26 13:49:29 +0800901 .init_late = ams_delta_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700902 .init_time = omap1_timer_init,
Russell Kingbaa95882011-11-05 17:06:28 +0000903 .restart = omap1_restart,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100904MACHINE_END