blob: 1026a816dcc0208642dcfbe5b20ad019c1c795af [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Tony Lindgren9b6553c2006-04-02 17:46:30 +01002/*
3 * linux/arch/arm/mach-omap1/board-ams-delta.c
4 *
5 * Modified from board-generic.c
6 *
7 * Board specific inits for the Amstrad E3 (codename Delta) videophone
8 *
9 * Copyright (C) 2006 Jonathan McDowell <noodles@earth.li>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010010 */
Linus Walleij0f4630f2015-12-04 14:02:58 +010011#include <linux/gpio/driver.h>
Janusz Krzysztofik04867382018-05-18 23:09:49 +020012#include <linux/gpio/machine.h>
Linus Walleij5923ea62019-04-26 14:40:18 +020013#include <linux/gpio/consumer.h>
Russell King2f8163b2011-07-26 10:53:52 +010014#include <linux/gpio.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010015#include <linux/kernel.h>
16#include <linux/init.h>
Jonathan McDowell325d50b2006-12-06 17:13:52 -080017#include <linux/input.h>
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -070018#include <linux/interrupt.h>
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -070019#include <linux/leds.h>
Janusz Krzysztofik38c30b32020-02-12 01:39:18 +010020#include <linux/mtd/nand-gpio.h>
21#include <linux/mtd/partitions.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 Krzysztofikeff443d2009-08-28 10:51:37 -070032#include <asm/serial.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
Arnd Bergmann22037472012-08-24 15:21:06 +020037#include <linux/platform_data/keypad-omap.h>
Tony Lindgren70c494c2012-09-19 10:46:56 -070038#include <mach/mux.h>
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080039
40#include <mach/hardware.h>
Tony Lindgrenb924b202012-06-04 00:56:15 -070041#include <mach/usb.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010042
Janusz Krzysztofikdc8fbeb2018-06-22 00:41:26 +020043#include "ams-delta-fiq.h"
Janusz Krzysztofik0a48a412018-11-06 00:11:26 +010044#include "board-ams-delta.h"
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080045#include "iomap.h"
46#include "common.h"
Janusz Krzysztofike6f740f2010-04-28 01:07:42 +000047
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
Bhumika Goyald25c70c2017-08-22 11:55:50 +0530157static const struct omap_lcd_config ams_delta_lcd_config __initconst = {
Tony Lindgrena5246262006-12-07 13:58:17 -0800158 .ctrl_name = "internal",
159};
160
Aaro Koskinen07fd2962012-12-21 22:56:32 +0200161static struct omap_usb_config ams_delta_usb_config __initdata = {
Jonathan McDowell07116152006-06-26 16:16:01 -0700162 .register_host = 1,
163 .hmc_mode = 16,
164 .pins[0] = 2,
165};
166
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100167#define LATCH1_NGPIO 8
168
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100169static struct resource latch1_resources[] = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100170 [0] = {
171 .name = "dat",
172 .start = LATCH1_PHYS,
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100173 .end = LATCH1_PHYS + (LATCH1_NGPIO - 1) / 8,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100174 .flags = IORESOURCE_MEM,
175 },
176};
177
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200178#define LATCH1_LABEL "latch1"
179
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100180static struct bgpio_pdata latch1_pdata = {
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200181 .label = LATCH1_LABEL,
Janusz Krzysztofik3e2cf622019-03-19 21:19:52 +0100182 .base = -1,
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100183 .ngpio = LATCH1_NGPIO,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100184};
185
186static struct platform_device latch1_gpio_device = {
187 .name = "basic-mmio-gpio",
188 .id = 0,
189 .resource = latch1_resources,
190 .num_resources = ARRAY_SIZE(latch1_resources),
191 .dev = {
192 .platform_data = &latch1_pdata,
193 },
194};
195
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200196#define LATCH1_PIN_LED_CAMERA 0
197#define LATCH1_PIN_LED_ADVERT 1
198#define LATCH1_PIN_LED_MAIL 2
199#define LATCH1_PIN_LED_HANDSFREE 3
200#define LATCH1_PIN_LED_VOICEMAIL 4
201#define LATCH1_PIN_LED_VOICE 5
202#define LATCH1_PIN_DOCKIT1 6
203#define LATCH1_PIN_DOCKIT2 7
204
Janusz Krzysztofik3af89f22018-11-07 21:17:46 +0100205#define LATCH2_NGPIO 16
206
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100207static struct resource latch2_resources[] = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100208 [0] = {
209 .name = "dat",
210 .start = LATCH2_PHYS,
Janusz Krzysztofik3af89f22018-11-07 21:17:46 +0100211 .end = LATCH2_PHYS + (LATCH2_NGPIO - 1) / 8,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100212 .flags = IORESOURCE_MEM,
213 },
214};
215
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200216#define LATCH2_LABEL "latch2"
217
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100218static struct bgpio_pdata latch2_pdata = {
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200219 .label = LATCH2_LABEL,
Janusz Krzysztofik3e2cf622019-03-19 21:19:52 +0100220 .base = -1,
Janusz Krzysztofik3af89f22018-11-07 21:17:46 +0100221 .ngpio = LATCH2_NGPIO,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100222};
223
224static struct platform_device latch2_gpio_device = {
225 .name = "basic-mmio-gpio",
226 .id = 1,
227 .resource = latch2_resources,
228 .num_resources = ARRAY_SIZE(latch2_resources),
229 .dev = {
230 .platform_data = &latch2_pdata,
231 },
232};
233
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200234#define LATCH2_PIN_LCD_VBLEN 0
235#define LATCH2_PIN_LCD_NDISP 1
236#define LATCH2_PIN_NAND_NCE 2
237#define LATCH2_PIN_NAND_NRE 3
238#define LATCH2_PIN_NAND_NWP 4
239#define LATCH2_PIN_NAND_NWE 5
240#define LATCH2_PIN_NAND_ALE 6
241#define LATCH2_PIN_NAND_CLE 7
242#define LATCH2_PIN_KEYBRD_PWR 8
243#define LATCH2_PIN_KEYBRD_DATAOUT 9
244#define LATCH2_PIN_SCARD_RSTIN 10
245#define LATCH2_PIN_SCARD_CMDVCC 11
246#define LATCH2_PIN_MODEM_NRESET 12
247#define LATCH2_PIN_MODEM_CODEC 13
Janusz Krzysztofik73681f42019-09-07 13:16:50 +0200248#define LATCH2_PIN_HANDSFREE_MUTE 14
249#define LATCH2_PIN_HANDSET_MUTE 15
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200250
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100251static struct regulator_consumer_supply modem_nreset_consumers[] = {
252 REGULATOR_SUPPLY("RESET#", "serial8250.1"),
253 REGULATOR_SUPPLY("POR", "cx20442-codec"),
254};
255
256static struct regulator_init_data modem_nreset_data = {
257 .constraints = {
258 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
259 .boot_on = 1,
260 },
261 .num_consumer_supplies = ARRAY_SIZE(modem_nreset_consumers),
262 .consumer_supplies = modem_nreset_consumers,
263};
264
265static struct fixed_voltage_config modem_nreset_config = {
266 .supply_name = "modem_nreset",
267 .microvolts = 3300000,
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100268 .startup_delay = 25000,
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100269 .enabled_at_boot = 1,
270 .init_data = &modem_nreset_data,
271};
272
273static struct platform_device modem_nreset_device = {
274 .name = "reg-fixed-voltage",
275 .id = -1,
276 .dev = {
277 .platform_data = &modem_nreset_config,
278 },
279};
280
Linus Walleijefdfeb02018-09-06 14:24:36 +0200281static struct gpiod_lookup_table ams_delta_nreset_gpiod_table = {
282 .dev_id = "reg-fixed-voltage",
283 .table = {
284 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_MODEM_NRESET,
285 NULL, GPIO_ACTIVE_HIGH),
286 { },
287 },
288};
289
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100290struct modem_private_data {
291 struct regulator *regulator;
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100292};
293
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100294static struct modem_private_data modem_priv;
295
Janusz Krzysztofik38c30b32020-02-12 01:39:18 +0100296/*
297 * Define partitions for flash device
298 */
299
300static struct mtd_partition partition_info[] = {
301 { .name = "Kernel",
302 .offset = 0,
303 .size = 3 * SZ_1M + SZ_512K },
304 { .name = "u-boot",
305 .offset = 3 * SZ_1M + SZ_512K,
306 .size = SZ_256K },
307 { .name = "u-boot params",
308 .offset = 3 * SZ_1M + SZ_512K + SZ_256K,
309 .size = SZ_256K },
310 { .name = "Amstrad LDR",
311 .offset = 4 * SZ_1M,
312 .size = SZ_256K },
313 { .name = "File system",
314 .offset = 4 * SZ_1M + 1 * SZ_256K,
315 .size = 27 * SZ_1M },
316 { .name = "PBL reserved",
317 .offset = 32 * SZ_1M - 3 * SZ_256K,
318 .size = 3 * SZ_256K },
319};
320
321static struct gpio_nand_platdata nand_platdata = {
322 .parts = partition_info,
323 .num_parts = ARRAY_SIZE(partition_info),
324};
325
Janusz Krzysztofik7e95d1f12010-12-14 21:09:40 +0100326static struct platform_device ams_delta_nand_device = {
327 .name = "ams-delta-nand",
Janusz Krzysztofikeaca4912010-12-15 15:43:44 +0100328 .id = -1,
Janusz Krzysztofik38c30b32020-02-12 01:39:18 +0100329 .dev = {
330 .platform_data = &nand_platdata,
331 },
Janusz Krzysztofik7e95d1f12010-12-14 21:09:40 +0100332};
333
Janusz Krzysztofik02e1ca62018-11-21 12:08:03 +0100334#define OMAP_GPIO_LABEL "gpio-0-15"
335#define OMAP_MPUIO_LABEL "mpuio"
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200336
337static struct gpiod_lookup_table ams_delta_nand_gpio_table = {
338 .table = {
339 GPIO_LOOKUP(OMAP_GPIO_LABEL, AMS_DELTA_GPIO_PIN_NAND_RB, "rdy",
340 0),
Janusz Krzysztofik241008e2020-02-12 01:39:21 +0100341 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NCE, "nce",
342 GPIO_ACTIVE_LOW),
343 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NRE, "nre",
344 GPIO_ACTIVE_LOW),
345 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NWP, "nwp",
346 GPIO_ACTIVE_LOW),
347 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NWE, "nwe",
348 GPIO_ACTIVE_LOW),
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200349 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_ALE, "ale", 0),
350 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_CLE, "cle", 0),
Janusz Krzysztofik02e1ca62018-11-21 12:08:03 +0100351 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 0, "data", 0, 0),
352 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 1, "data", 1, 0),
353 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 2, "data", 2, 0),
354 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 3, "data", 3, 0),
355 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 4, "data", 4, 0),
356 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 5, "data", 5, 0),
357 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 6, "data", 6, 0),
358 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 7, "data", 7, 0),
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200359 { },
360 },
361};
362
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800363static struct resource ams_delta_kp_resources[] = {
364 [0] = {
365 .start = INT_KEYBOARD,
366 .end = INT_KEYBOARD,
367 .flags = IORESOURCE_IRQ,
368 },
369};
370
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000371static const struct matrix_keymap_data ams_delta_keymap_data = {
372 .keymap = ams_delta_keymap,
373 .keymap_size = ARRAY_SIZE(ams_delta_keymap),
374};
375
Janusz Krzysztofikdc0caef2012-03-01 15:19:15 -0800376static struct omap_kp_platform_data ams_delta_kp_data = {
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800377 .rows = 8,
378 .cols = 8,
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000379 .keymap_data = &ams_delta_keymap_data,
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800380 .delay = 9,
381};
382
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700383static struct platform_device ams_delta_kp_device = {
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800384 .name = "omap-keypad",
385 .id = -1,
386 .dev = {
387 .platform_data = &ams_delta_kp_data,
388 },
389 .num_resources = ARRAY_SIZE(ams_delta_kp_resources),
390 .resource = ams_delta_kp_resources,
391};
392
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700393static struct platform_device ams_delta_lcd_device = {
Tony Lindgrena5246262006-12-07 13:58:17 -0800394 .name = "lcd_ams_delta",
395 .id = -1,
396};
397
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200398static struct gpiod_lookup_table ams_delta_lcd_gpio_table = {
399 .table = {
400 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_LCD_VBLEN, "vblen", 0),
401 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_LCD_NDISP, "ndisp", 0),
402 { },
403 },
404};
405
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200406static struct gpio_led gpio_leds[] __initdata = {
407 [LATCH1_PIN_LED_CAMERA] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100408 .name = "camera",
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100409 .default_state = LEDS_GPIO_DEFSTATE_OFF,
410#ifdef CONFIG_LEDS_TRIGGERS
411 .default_trigger = "ams_delta_camera",
412#endif
413 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200414 [LATCH1_PIN_LED_ADVERT] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100415 .name = "advert",
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100416 .default_state = LEDS_GPIO_DEFSTATE_OFF,
417 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200418 [LATCH1_PIN_LED_MAIL] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100419 .name = "email",
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100420 .default_state = LEDS_GPIO_DEFSTATE_OFF,
421 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200422 [LATCH1_PIN_LED_HANDSFREE] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100423 .name = "handsfree",
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100424 .default_state = LEDS_GPIO_DEFSTATE_OFF,
425 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200426 [LATCH1_PIN_LED_VOICEMAIL] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100427 .name = "voicemail",
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100428 .default_state = LEDS_GPIO_DEFSTATE_OFF,
429 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200430 [LATCH1_PIN_LED_VOICE] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100431 .name = "voice",
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100432 .default_state = LEDS_GPIO_DEFSTATE_OFF,
433 },
434};
435
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100436static const struct gpio_led_platform_data leds_pdata __initconst = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100437 .leds = gpio_leds,
438 .num_leds = ARRAY_SIZE(gpio_leds),
Jonathan McDowell9becde72006-06-23 02:05:33 -0700439};
440
Janusz Krzysztofik19a2668a2018-11-06 00:23:49 +0100441static struct gpiod_lookup_table leds_gpio_table = {
442 .table = {
443 GPIO_LOOKUP_IDX(LATCH1_LABEL, LATCH1_PIN_LED_CAMERA, NULL,
444 LATCH1_PIN_LED_CAMERA, 0),
445 GPIO_LOOKUP_IDX(LATCH1_LABEL, LATCH1_PIN_LED_ADVERT, NULL,
446 LATCH1_PIN_LED_ADVERT, 0),
447 GPIO_LOOKUP_IDX(LATCH1_LABEL, LATCH1_PIN_LED_MAIL, NULL,
448 LATCH1_PIN_LED_MAIL, 0),
449 GPIO_LOOKUP_IDX(LATCH1_LABEL, LATCH1_PIN_LED_HANDSFREE, NULL,
450 LATCH1_PIN_LED_HANDSFREE, 0),
451 GPIO_LOOKUP_IDX(LATCH1_LABEL, LATCH1_PIN_LED_VOICEMAIL, NULL,
452 LATCH1_PIN_LED_VOICEMAIL, 0),
453 GPIO_LOOKUP_IDX(LATCH1_LABEL, LATCH1_PIN_LED_VOICE, NULL,
454 LATCH1_PIN_LED_VOICE, 0),
455 { },
456 },
457};
458
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -0700459#ifdef CONFIG_LEDS_TRIGGERS
460DEFINE_LED_TRIGGER(ams_delta_camera_led_trigger);
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -0700461#endif
462
Janusz Krzysztofikb764de22012-10-03 12:46:57 +0200463static struct platform_device ams_delta_audio_device = {
464 .name = "ams-delta-audio",
465 .id = -1,
466};
467
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200468static struct gpiod_lookup_table ams_delta_audio_gpio_table = {
469 .table = {
470 GPIO_LOOKUP(OMAP_GPIO_LABEL, AMS_DELTA_GPIO_PIN_HOOK_SWITCH,
471 "hook_switch", 0),
472 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_MODEM_CODEC,
473 "modem_codec", 0),
Janusz Krzysztofik73681f42019-09-07 13:16:50 +0200474 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_HANDSFREE_MUTE,
475 "handsfree_mute", 0),
476 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_HANDSET_MUTE,
477 "handset_mute", 0),
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200478 { },
479 },
480};
481
Janusz Krzysztofikb764de22012-10-03 12:46:57 +0200482static struct platform_device cx20442_codec_device = {
483 .name = "cx20442-codec",
484 .id = -1,
485};
486
Janusz Krzysztofika617b362018-06-22 00:41:27 +0200487static struct resource ams_delta_serio_resources[] = {
488 {
489 .flags = IORESOURCE_IRQ,
490 /*
491 * Initialize IRQ resource with invalid IRQ number.
492 * It will be replaced with dynamically allocated GPIO IRQ
493 * obtained from GPIO chip as soon as the chip is available.
494 */
495 .start = -EINVAL,
496 .end = -EINVAL,
497 },
498};
499
Janusz Krzysztofikdf88c572018-06-22 00:41:20 +0200500static struct platform_device ams_delta_serio_device = {
501 .name = "ams-delta-serio",
502 .id = PLATFORM_DEVID_NONE,
Janusz Krzysztofik5f738612018-06-22 00:41:28 +0200503 .dev = {
504 /*
505 * Initialize .platform_data explicitly with NULL to
506 * indicate it is going to be used. It will be replaced
507 * with FIQ buffer address as soon as FIQ is initialized.
508 */
509 .platform_data = NULL,
510 },
Janusz Krzysztofika617b362018-06-22 00:41:27 +0200511 .num_resources = ARRAY_SIZE(ams_delta_serio_resources),
512 .resource = ams_delta_serio_resources,
Janusz Krzysztofikdf88c572018-06-22 00:41:20 +0200513};
514
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200515static struct regulator_consumer_supply keybrd_pwr_consumers[] = {
516 /*
517 * Initialize supply .dev_name with NULL. It will be replaced
518 * with serio dev_name() as soon as the serio device is registered.
519 */
520 REGULATOR_SUPPLY("vcc", NULL),
521};
522
523static struct regulator_init_data keybrd_pwr_initdata = {
524 .constraints = {
525 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
526 },
527 .num_consumer_supplies = ARRAY_SIZE(keybrd_pwr_consumers),
528 .consumer_supplies = keybrd_pwr_consumers,
529};
530
531static struct fixed_voltage_config keybrd_pwr_config = {
532 .supply_name = "keybrd_pwr",
533 .microvolts = 5000000,
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200534 .init_data = &keybrd_pwr_initdata,
535};
536
537static struct platform_device keybrd_pwr_device = {
538 .name = "reg-fixed-voltage",
539 .id = PLATFORM_DEVID_AUTO,
540 .dev = {
541 .platform_data = &keybrd_pwr_config,
542 },
543};
544
545static struct gpiod_lookup_table keybrd_pwr_gpio_table = {
546 .table = {
547 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_KEYBRD_PWR, NULL,
548 GPIO_ACTIVE_HIGH),
549 { },
550 },
551};
552
Jonathan McDowell9becde72006-06-23 02:05:33 -0700553static struct platform_device *ams_delta_devices[] __initdata = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100554 &latch1_gpio_device,
555 &latch2_gpio_device,
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800556 &ams_delta_kp_device,
Janusz Krzysztofikb764de22012-10-03 12:46:57 +0200557 &ams_delta_audio_device,
Janusz Krzysztofikdf88c572018-06-22 00:41:20 +0200558 &ams_delta_serio_device,
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100559 &ams_delta_nand_device,
Tony Lindgrena5246262006-12-07 13:58:17 -0800560 &ams_delta_lcd_device,
Janusz Krzysztofikb764de22012-10-03 12:46:57 +0200561 &cx20442_codec_device,
Jonathan McDowell9becde72006-06-23 02:05:33 -0700562};
563
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200564static struct gpiod_lookup_table *ams_delta_gpio_tables[] __initdata = {
Linus Walleijefdfeb02018-09-06 14:24:36 +0200565 &ams_delta_nreset_gpiod_table,
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200566 &ams_delta_audio_gpio_table,
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200567 &keybrd_pwr_gpio_table,
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200568 &ams_delta_lcd_gpio_table,
569 &ams_delta_nand_gpio_table,
570};
571
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200572/*
573 * Some drivers may not use GPIO lookup tables but need to be provided
574 * with GPIO numbers. The same applies to GPIO based IRQ lines - some
575 * drivers may even not use GPIO layer but expect just IRQ numbers.
576 * We could either define GPIO lookup tables then use them on behalf
577 * of those devices, or we can use GPIO driver level methods for
578 * identification of GPIO and IRQ numbers. For the purpose of the latter,
579 * defina a helper function which identifies GPIO chips by their labels.
580 */
581static int gpiochip_match_by_label(struct gpio_chip *chip, void *data)
582{
583 char *label = data;
584
585 return !strcmp(label, chip->label);
586}
587
Janusz Krzysztofik41f8fee2018-06-22 00:41:23 +0200588static struct gpiod_hog ams_delta_gpio_hogs[] = {
589 GPIO_HOG(LATCH2_LABEL, LATCH2_PIN_KEYBRD_DATAOUT, "keybrd_dataout",
590 GPIO_ACTIVE_HIGH, GPIOD_OUT_LOW),
591 {},
592};
593
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200594static struct plat_serial8250_port ams_delta_modem_ports[];
595
596/*
597 * Obtain MODEM IRQ GPIO descriptor using its hardware pin
598 * number and assign related IRQ number to the MODEM port.
599 * Keep the GPIO descriptor open so nobody steps in.
600 */
601static void __init modem_assign_irq(struct gpio_chip *chip)
602{
603 struct gpio_desc *gpiod;
604
605 gpiod = gpiochip_request_own_desc(chip, AMS_DELTA_GPIO_PIN_MODEM_IRQ,
Linus Walleij5923ea62019-04-26 14:40:18 +0200606 "modem_irq", GPIO_ACTIVE_HIGH,
607 GPIOD_IN);
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200608 if (IS_ERR(gpiod)) {
609 pr_err("%s: modem IRQ GPIO request failed (%ld)\n", __func__,
610 PTR_ERR(gpiod));
611 } else {
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200612 ams_delta_modem_ports[0].irq = gpiod_to_irq(gpiod);
613 }
614}
615
Janusz Krzysztofik97abda92018-06-22 00:41:24 +0200616/*
617 * The purpose of this function is to take care of proper initialization of
618 * devices and data structures which depend on GPIO lines provided by OMAP GPIO
619 * banks but their drivers don't use GPIO lookup tables or GPIO layer at all.
620 * The function may be called as soon as OMAP GPIO devices are probed.
621 * Since that happens at postcore_initcall, it can be called successfully
622 * from init_machine or later.
623 * Dependent devices may be registered from within this function or later.
624 */
625static void __init omap_gpio_deps_init(void)
626{
627 struct gpio_chip *chip;
628
629 chip = gpiochip_find(OMAP_GPIO_LABEL, gpiochip_match_by_label);
630 if (!chip) {
631 pr_err("%s: OMAP GPIO chip not found\n", __func__);
632 return;
633 }
634
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200635 /*
636 * Start with FIQ initialization as it may have to request
637 * and release successfully each OMAP GPIO pin in turn.
638 */
Janusz Krzysztofika617b362018-06-22 00:41:27 +0200639 ams_delta_init_fiq(chip, &ams_delta_serio_device);
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200640
641 modem_assign_irq(chip);
Janusz Krzysztofik97abda92018-06-22 00:41:24 +0200642}
643
Janusz Krzysztofik1464d032018-09-10 01:44:18 +0200644/*
645 * Initialize latch2 pins with values which are safe for dependent on-board
646 * devices or useful for their successull initialization even before GPIO
647 * driver takes control over the latch pins:
648 * - LATCH2_PIN_LCD_VBLEN = 0
649 * - LATCH2_PIN_LCD_NDISP = 0 Keep LCD device powered off before its
650 * driver takes control over it.
651 * - LATCH2_PIN_NAND_NCE = 0
652 * - LATCH2_PIN_NAND_NWP = 0 Keep NAND device down and write-
653 * protected before its driver takes
654 * control over it.
655 * - LATCH2_PIN_KEYBRD_PWR = 0 Keep keyboard powered off before serio
656 * driver takes control over it.
657 * - LATCH2_PIN_KEYBRD_DATAOUT = 0 Keep low to avoid corruption of first
658 * byte of data received from attached
659 * keyboard when serio device is probed;
660 * the pin is also hogged low by the latch2
661 * GPIO driver as soon as it is ready.
662 * - LATCH2_PIN_MODEM_NRESET = 1 Enable voice MODEM device, allowing for
663 * its successful probe even before a
664 * regulator it depends on, which in turn
665 * takes control over the pin, is set up.
666 * - LATCH2_PIN_MODEM_CODEC = 1 Attach voice MODEM CODEC data port
667 * to the MODEM so the CODEC is under
668 * control even if audio driver doesn't
669 * take it over.
670 */
671static void __init ams_delta_latch2_init(void)
672{
673 u16 latch2 = 1 << LATCH2_PIN_MODEM_NRESET | 1 << LATCH2_PIN_MODEM_CODEC;
674
675 __raw_writew(latch2, LATCH2_VIRT);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100676}
677
678static void __init ams_delta_init(void)
679{
Janusz Krzysztofik19a2668a2018-11-06 00:23:49 +0100680 struct platform_device *leds_pdev;
681
Janusz Krzysztofikc33da3a2009-10-22 14:47:42 -0700682 /* mux pins for uarts */
683 omap_cfg_reg(UART1_TX);
684 omap_cfg_reg(UART1_RTS);
685
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700686 /* parallel camera interface */
687 omap_cfg_reg(H19_1610_CAM_EXCLK);
688 omap_cfg_reg(J15_1610_CAM_LCLK);
689 omap_cfg_reg(L18_1610_CAM_VS);
690 omap_cfg_reg(L15_1610_CAM_HS);
691 omap_cfg_reg(L19_1610_CAM_D0);
692 omap_cfg_reg(K14_1610_CAM_D1);
693 omap_cfg_reg(K15_1610_CAM_D2);
694 omap_cfg_reg(K19_1610_CAM_D3);
695 omap_cfg_reg(K18_1610_CAM_D4);
696 omap_cfg_reg(J14_1610_CAM_D5);
697 omap_cfg_reg(J19_1610_CAM_D6);
698 omap_cfg_reg(J18_1610_CAM_D7);
699
Janusz Krzysztofik97abda92018-06-22 00:41:24 +0200700 omap_gpio_deps_init();
Janusz Krzysztofik1464d032018-09-10 01:44:18 +0200701 ams_delta_latch2_init();
Janusz Krzysztofik41f8fee2018-06-22 00:41:23 +0200702 gpiod_add_hogs(ams_delta_gpio_hogs);
703
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100704 omap_serial_init();
Jarkko Nikula1ed16a82007-11-07 06:54:32 +0200705 omap_register_i2c_bus(1, 100, NULL, 0);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100706
Tony Lindgrendd0cdd82010-07-05 16:31:30 +0300707 omap1_usb_init(&ams_delta_usb_config);
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -0700708#ifdef CONFIG_LEDS_TRIGGERS
709 led_trigger_register_simple("ams_delta_camera",
710 &ams_delta_camera_led_trigger);
711#endif
Jonathan McDowell9becde72006-06-23 02:05:33 -0700712 platform_add_devices(ams_delta_devices, ARRAY_SIZE(ams_delta_devices));
Janusz Krzysztofikb3dba0b2009-10-22 14:47:42 -0700713
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200714 /*
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200715 * As soon as regulator consumers have been registered, assign their
716 * dev_names to consumer supply entries of respective regulators.
717 */
718 keybrd_pwr_consumers[0].dev_name =
719 dev_name(&ams_delta_serio_device.dev);
720
721 /*
722 * Once consumer supply entries are populated with dev_names,
723 * register regulator devices. At this stage only the keyboard
724 * power regulator has its consumer supply table fully populated.
725 */
726 platform_device_register(&keybrd_pwr_device);
727
728 /*
729 * As soon as GPIO consumers have been registered, assign
730 * their dev_names to respective GPIO lookup tables.
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200731 */
732 ams_delta_audio_gpio_table.dev_id =
733 dev_name(&ams_delta_audio_device.dev);
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200734 keybrd_pwr_gpio_table.dev_id = dev_name(&keybrd_pwr_device.dev);
Janusz Krzysztofikd08605a2018-07-03 00:28:28 +0200735 ams_delta_nand_gpio_table.dev_id = dev_name(&ams_delta_nand_device.dev);
736 ams_delta_lcd_gpio_table.dev_id = dev_name(&ams_delta_lcd_device.dev);
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200737
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200738 /*
739 * Once GPIO lookup tables are populated with dev_names, register them.
740 */
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200741 gpiod_add_lookup_tables(ams_delta_gpio_tables,
742 ARRAY_SIZE(ams_delta_gpio_tables));
743
Janusz Krzysztofik19a2668a2018-11-06 00:23:49 +0100744 leds_pdev = gpio_led_register_device(PLATFORM_DEVID_NONE, &leds_pdata);
Aaro Koskinen11e600a2019-04-16 02:37:32 +0300745 if (!IS_ERR_OR_NULL(leds_pdev)) {
Janusz Krzysztofik19a2668a2018-11-06 00:23:49 +0100746 leds_gpio_table.dev_id = dev_name(&leds_pdev->dev);
747 gpiod_add_lookup_table(&leds_gpio_table);
748 }
749
Janusz Krzysztofikb3dba0b2009-10-22 14:47:42 -0700750 omap_writew(omap_readw(ARM_RSTCT1) | 0x0004, ARM_RSTCT1);
Tomi Valkeinenddba6c72011-09-20 15:23:13 +0300751
752 omapfb_set_lcd_config(&ams_delta_lcd_config);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100753}
754
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100755static void modem_pm(struct uart_port *port, unsigned int state, unsigned old)
756{
757 struct modem_private_data *priv = port->private_data;
Arnd Bergmann595a9f92016-01-15 14:41:03 +0100758 int ret;
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100759
Janusz Krzysztofikcec83ff2018-11-07 22:30:31 +0100760 if (!priv)
761 return;
762
Janusz Krzysztofik0379c1f2012-03-05 17:05:12 +0100763 if (IS_ERR(priv->regulator))
764 return;
765
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100766 if (state == old)
767 return;
768
Janusz Krzysztofik0379c1f2012-03-05 17:05:12 +0100769 if (state == 0)
Arnd Bergmann595a9f92016-01-15 14:41:03 +0100770 ret = regulator_enable(priv->regulator);
Janusz Krzysztofik0379c1f2012-03-05 17:05:12 +0100771 else if (old == 0)
Arnd Bergmann595a9f92016-01-15 14:41:03 +0100772 ret = regulator_disable(priv->regulator);
773 else
774 ret = 0;
775
776 if (ret)
777 dev_warn(port->dev,
778 "ams_delta modem_pm: failed to %sable regulator: %d\n",
779 state ? "dis" : "en", ret);
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100780}
781
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700782static struct plat_serial8250_port ams_delta_modem_ports[] = {
783 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100784 .membase = IOMEM(MODEM_VIRT),
785 .mapbase = MODEM_PHYS,
Janusz Krzysztofikab6ead72018-10-02 11:45:29 +0200786 .irq = IRQ_NOTCONNECTED, /* changed later */
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700787 .flags = UPF_BOOT_AUTOCONF,
788 .irqflags = IRQF_TRIGGER_RISING,
789 .iotype = UPIO_MEM,
790 .regshift = 1,
791 .uartclk = BASE_BAUD * 16,
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100792 .pm = modem_pm,
793 .private_data = &modem_priv,
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700794 },
795 { },
796};
797
798static struct platform_device ams_delta_modem_device = {
799 .name = "serial8250",
800 .id = PLAT8250_DEV_PLATFORM1,
801 .dev = {
802 .platform_data = ams_delta_modem_ports,
803 },
804};
805
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200806static int __init modem_nreset_init(void)
807{
808 int err;
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200809
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100810 err = platform_device_register(&modem_nreset_device);
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200811 if (err)
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100812 pr_err("Couldn't register the modem regulator device\n");
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200813
814 return err;
815}
816
817
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200818/*
Janusz Krzysztofikab6ead72018-10-02 11:45:29 +0200819 * This function expects MODEM IRQ number already assigned to the port.
Janusz Krzysztofikd3e952a2018-09-10 01:44:19 +0200820 * The MODEM device requires its RESET# pin kept high during probe.
821 * That requirement can be fulfilled in several ways:
822 * - with a descriptor of already functional modem_nreset regulator
823 * assigned to the MODEM private data,
824 * - with the regulator not yet controlled by modem_pm function but
825 * already enabled by default on probe,
826 * - before the modem_nreset regulator is probed, with the pin already
827 * set high explicitly.
828 * The last one is already guaranteed by ams_delta_latch2_init() called
829 * from machine_init.
830 * In order to avoid taking over ttyS0 device slot, the MODEM device
831 * should be registered after OMAP serial ports. Since those ports
832 * are registered at arch_initcall, this function can be called safely
833 * at arch_initcall_sync earliest.
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200834 */
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200835static int __init ams_delta_modem_init(void)
836{
837 int err;
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100838
Janusz Krzysztofikd3e952a2018-09-10 01:44:19 +0200839 if (!machine_is_ams_delta())
840 return -ENODEV;
Janusz Krzysztofik4cb2dc62010-04-28 01:05:47 +0000841
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200842 omap_cfg_reg(M14_1510_GPIO2);
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700843
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100844 /* Initialize the modem_nreset regulator consumer before use */
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100845 modem_priv.regulator = ERR_PTR(-ENODEV);
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700846
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100847 err = platform_device_register(&ams_delta_modem_device);
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200848
849 return err;
850}
Janusz Krzysztofikd3e952a2018-09-10 01:44:19 +0200851arch_initcall_sync(ams_delta_modem_init);
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200852
853static int __init late_init(void)
854{
855 int err;
856
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200857 err = modem_nreset_init();
858 if (err)
859 return err;
860
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100861 /*
862 * Once the modem device is registered, the modem_nreset
863 * regulator can be requested on behalf of that device.
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100864 */
865 modem_priv.regulator = regulator_get(&ams_delta_modem_device.dev,
866 "RESET#");
867 if (IS_ERR(modem_priv.regulator)) {
868 err = PTR_ERR(modem_priv.regulator);
869 goto unregister;
870 }
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100871 return 0;
872
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100873unregister:
874 platform_device_unregister(&ams_delta_modem_device);
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100875 return err;
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700876}
Shawn Guo82c3bd02012-04-26 13:49:29 +0800877
878static void __init ams_delta_init_late(void)
879{
880 omap1_init_late();
881 late_init();
882}
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700883
Tony Lindgren5bb01a92011-11-09 15:29:31 -0800884static void __init ams_delta_map_io(void)
885{
886 omap15xx_map_io();
887 iotable_init(ams_delta_io_desc, ARRAY_SIZE(ams_delta_io_desc));
888}
889
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100890MACHINE_START(AMS_DELTA, "Amstrad E3 (Delta)")
891 /* Maintainer: Jonathan McDowell <noodles@earth.li> */
Nicolas Pitre246e3892011-07-05 22:38:15 -0400892 .atag_offset = 0x100,
Tony Lindgren5bb01a92011-11-09 15:29:31 -0800893 .map_io = ams_delta_map_io,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700894 .init_early = omap1_init_early,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700895 .init_irq = omap1_init_irq,
Tony Lindgrenb6943312015-05-20 09:01:21 -0700896 .handle_irq = omap1_handle_irq,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100897 .init_machine = ams_delta_init,
Shawn Guo82c3bd02012-04-26 13:49:29 +0800898 .init_late = ams_delta_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700899 .init_time = omap1_timer_init,
Russell Kingbaa95882011-11-05 17:06:28 +0000900 .restart = omap1_restart,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100901MACHINE_END