blob: a2aa7a12b3742fd8d15ba9bc4af53a56ca1f1ab2 [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>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010020#include <linux/platform_device.h>
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +010021#include <linux/regulator/consumer.h>
22#include <linux/regulator/fixed.h>
23#include <linux/regulator/machine.h>
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -070024#include <linux/serial_8250.h>
Paul Gortmakerdc280942011-07-31 16:17:29 -040025#include <linux/export.h>
Tomi Valkeinenddba6c72011-09-20 15:23:13 +030026#include <linux/omapfb.h>
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080027#include <linux/io.h>
Tony Lindgren4b254082012-08-30 15:37:24 -070028#include <linux/platform_data/gpio-omap.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010029
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -070030#include <media/soc_camera.h>
31
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>
Arnd Bergmann100f9632015-01-30 10:45:33 +010041#include "camera.h"
Tony Lindgrenb924b202012-06-04 00:56:15 -070042#include <mach/usb.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010043
Janusz Krzysztofikdc8fbeb2018-06-22 00:41:26 +020044#include "ams-delta-fiq.h"
Janusz Krzysztofik0a48a412018-11-06 00:11:26 +010045#include "board-ams-delta.h"
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080046#include "iomap.h"
47#include "common.h"
Janusz Krzysztofike6f740f2010-04-28 01:07:42 +000048
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000049static const unsigned int ams_delta_keymap[] = {
Tony Lindgrena5246262006-12-07 13:58:17 -080050 KEY(0, 0, KEY_F1), /* Advert */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080051
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000052 KEY(0, 3, KEY_COFFEE), /* Games */
53 KEY(0, 2, KEY_QUESTION), /* Directory */
54 KEY(2, 3, KEY_CONNECT), /* Internet */
55 KEY(1, 2, KEY_SHOP), /* Services */
Tony Lindgrena5246262006-12-07 13:58:17 -080056 KEY(1, 1, KEY_PHONE), /* VoiceMail */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080057
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000058 KEY(0, 1, KEY_DELETE), /* Delete */
Tony Lindgrena5246262006-12-07 13:58:17 -080059 KEY(2, 2, KEY_PLAY), /* Play */
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000060 KEY(1, 0, KEY_PAGEUP), /* Up */
61 KEY(1, 3, KEY_PAGEDOWN), /* Down */
62 KEY(2, 0, KEY_EMAIL), /* ReadEmail */
63 KEY(2, 1, KEY_STOP), /* Stop */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080064
65 /* Numeric keypad portion */
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000066 KEY(0, 7, KEY_KP1),
67 KEY(0, 6, KEY_KP2),
68 KEY(0, 5, KEY_KP3),
69 KEY(1, 7, KEY_KP4),
70 KEY(1, 6, KEY_KP5),
71 KEY(1, 5, KEY_KP6),
72 KEY(2, 7, KEY_KP7),
73 KEY(2, 6, KEY_KP8),
74 KEY(2, 5, KEY_KP9),
75 KEY(3, 6, KEY_KP0),
76 KEY(3, 7, KEY_KPASTERISK),
77 KEY(3, 5, KEY_KPDOT), /* # key */
78 KEY(7, 2, KEY_NUMLOCK), /* Mute */
79 KEY(7, 1, KEY_KPMINUS), /* Recall */
80 KEY(6, 1, KEY_KPPLUS), /* Redial */
81 KEY(7, 6, KEY_KPSLASH), /* Handsfree */
82 KEY(6, 0, KEY_ENTER), /* Video */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080083
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000084 KEY(7, 4, KEY_CAMERA), /* Photo */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080085
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000086 KEY(0, 4, KEY_F2), /* Home */
87 KEY(1, 4, KEY_F3), /* Office */
88 KEY(2, 4, KEY_F4), /* Mobile */
Tony Lindgrena5246262006-12-07 13:58:17 -080089 KEY(7, 7, KEY_F5), /* SMS */
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000090 KEY(7, 5, KEY_F6), /* Email */
Jonathan McDowell325d50b2006-12-06 17:13:52 -080091
92 /* QWERTY portion of keypad */
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000093 KEY(3, 4, KEY_Q),
Jonathan McDowell325d50b2006-12-06 17:13:52 -080094 KEY(3, 3, KEY_W),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000095 KEY(3, 2, KEY_E),
96 KEY(3, 1, KEY_R),
97 KEY(3, 0, KEY_T),
98 KEY(4, 7, KEY_Y),
99 KEY(4, 6, KEY_U),
100 KEY(4, 5, KEY_I),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800101 KEY(4, 4, KEY_O),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000102 KEY(4, 3, KEY_P),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800103
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000104 KEY(4, 2, KEY_A),
105 KEY(4, 1, KEY_S),
106 KEY(4, 0, KEY_D),
107 KEY(5, 7, KEY_F),
108 KEY(5, 6, KEY_G),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800109 KEY(5, 5, KEY_H),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000110 KEY(5, 4, KEY_J),
111 KEY(5, 3, KEY_K),
112 KEY(5, 2, KEY_L),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800113
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000114 KEY(5, 1, KEY_Z),
115 KEY(5, 0, KEY_X),
116 KEY(6, 7, KEY_C),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800117 KEY(6, 6, KEY_V),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000118 KEY(6, 5, KEY_B),
119 KEY(6, 4, KEY_N),
120 KEY(6, 3, KEY_M),
121 KEY(6, 2, KEY_SPACE),
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800122
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000123 KEY(7, 0, KEY_LEFTSHIFT), /* Vol up */
124 KEY(7, 3, KEY_LEFTCTRL), /* Vol down */
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800125};
126
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100127#define LATCH1_PHYS 0x01000000
128#define LATCH1_VIRT 0xEA000000
129#define MODEM_PHYS 0x04000000
130#define MODEM_VIRT 0xEB000000
131#define LATCH2_PHYS 0x08000000
132#define LATCH2_VIRT 0xEC000000
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100133
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100134static struct map_desc ams_delta_io_desc[] __initdata = {
David Cohen6e2d4102007-12-13 22:27:15 -0400135 /* AMS_DELTA_LATCH1 */
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100136 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100137 .virtual = LATCH1_VIRT,
138 .pfn = __phys_to_pfn(LATCH1_PHYS),
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100139 .length = 0x01000000,
140 .type = MT_DEVICE
141 },
David Cohen6e2d4102007-12-13 22:27:15 -0400142 /* AMS_DELTA_LATCH2 */
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100143 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100144 .virtual = LATCH2_VIRT,
145 .pfn = __phys_to_pfn(LATCH2_PHYS),
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100146 .length = 0x01000000,
147 .type = MT_DEVICE
148 },
David Cohen6e2d4102007-12-13 22:27:15 -0400149 /* AMS_DELTA_MODEM */
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100150 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100151 .virtual = MODEM_VIRT,
152 .pfn = __phys_to_pfn(MODEM_PHYS),
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100153 .length = 0x01000000,
154 .type = MT_DEVICE
155 }
156};
157
Bhumika Goyald25c70c2017-08-22 11:55:50 +0530158static const struct omap_lcd_config ams_delta_lcd_config __initconst = {
Tony Lindgrena5246262006-12-07 13:58:17 -0800159 .ctrl_name = "internal",
160};
161
Aaro Koskinen07fd2962012-12-21 22:56:32 +0200162static struct omap_usb_config ams_delta_usb_config __initdata = {
Jonathan McDowell07116152006-06-26 16:16:01 -0700163 .register_host = 1,
164 .hmc_mode = 16,
165 .pins[0] = 2,
166};
167
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100168#define LATCH1_NGPIO 8
169
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100170static struct resource latch1_resources[] = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100171 [0] = {
172 .name = "dat",
173 .start = LATCH1_PHYS,
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100174 .end = LATCH1_PHYS + (LATCH1_NGPIO - 1) / 8,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100175 .flags = IORESOURCE_MEM,
176 },
177};
178
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200179#define LATCH1_LABEL "latch1"
180
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100181static struct bgpio_pdata latch1_pdata = {
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200182 .label = LATCH1_LABEL,
Janusz Krzysztofik3e2cf622019-03-19 21:19:52 +0100183 .base = -1,
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100184 .ngpio = LATCH1_NGPIO,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100185};
186
187static struct platform_device latch1_gpio_device = {
188 .name = "basic-mmio-gpio",
189 .id = 0,
190 .resource = latch1_resources,
191 .num_resources = ARRAY_SIZE(latch1_resources),
192 .dev = {
193 .platform_data = &latch1_pdata,
194 },
195};
196
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200197#define LATCH1_PIN_LED_CAMERA 0
198#define LATCH1_PIN_LED_ADVERT 1
199#define LATCH1_PIN_LED_MAIL 2
200#define LATCH1_PIN_LED_HANDSFREE 3
201#define LATCH1_PIN_LED_VOICEMAIL 4
202#define LATCH1_PIN_LED_VOICE 5
203#define LATCH1_PIN_DOCKIT1 6
204#define LATCH1_PIN_DOCKIT2 7
205
Janusz Krzysztofik3af89f22018-11-07 21:17:46 +0100206#define LATCH2_NGPIO 16
207
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100208static struct resource latch2_resources[] = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100209 [0] = {
210 .name = "dat",
211 .start = LATCH2_PHYS,
Janusz Krzysztofik3af89f22018-11-07 21:17:46 +0100212 .end = LATCH2_PHYS + (LATCH2_NGPIO - 1) / 8,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100213 .flags = IORESOURCE_MEM,
214 },
215};
216
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200217#define LATCH2_LABEL "latch2"
218
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100219static struct bgpio_pdata latch2_pdata = {
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200220 .label = LATCH2_LABEL,
Janusz Krzysztofik3e2cf622019-03-19 21:19:52 +0100221 .base = -1,
Janusz Krzysztofik3af89f22018-11-07 21:17:46 +0100222 .ngpio = LATCH2_NGPIO,
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100223};
224
225static struct platform_device latch2_gpio_device = {
226 .name = "basic-mmio-gpio",
227 .id = 1,
228 .resource = latch2_resources,
229 .num_resources = ARRAY_SIZE(latch2_resources),
230 .dev = {
231 .platform_data = &latch2_pdata,
232 },
233};
234
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200235#define LATCH2_PIN_LCD_VBLEN 0
236#define LATCH2_PIN_LCD_NDISP 1
237#define LATCH2_PIN_NAND_NCE 2
238#define LATCH2_PIN_NAND_NRE 3
239#define LATCH2_PIN_NAND_NWP 4
240#define LATCH2_PIN_NAND_NWE 5
241#define LATCH2_PIN_NAND_ALE 6
242#define LATCH2_PIN_NAND_CLE 7
243#define LATCH2_PIN_KEYBRD_PWR 8
244#define LATCH2_PIN_KEYBRD_DATAOUT 9
245#define LATCH2_PIN_SCARD_RSTIN 10
246#define LATCH2_PIN_SCARD_CMDVCC 11
247#define LATCH2_PIN_MODEM_NRESET 12
248#define LATCH2_PIN_MODEM_CODEC 13
Janusz Krzysztofik73681f42019-09-07 13:16:50 +0200249#define LATCH2_PIN_HANDSFREE_MUTE 14
250#define LATCH2_PIN_HANDSET_MUTE 15
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200251
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100252static struct regulator_consumer_supply modem_nreset_consumers[] = {
253 REGULATOR_SUPPLY("RESET#", "serial8250.1"),
254 REGULATOR_SUPPLY("POR", "cx20442-codec"),
255};
256
257static struct regulator_init_data modem_nreset_data = {
258 .constraints = {
259 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
260 .boot_on = 1,
261 },
262 .num_consumer_supplies = ARRAY_SIZE(modem_nreset_consumers),
263 .consumer_supplies = modem_nreset_consumers,
264};
265
266static struct fixed_voltage_config modem_nreset_config = {
267 .supply_name = "modem_nreset",
268 .microvolts = 3300000,
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100269 .startup_delay = 25000,
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100270 .enabled_at_boot = 1,
271 .init_data = &modem_nreset_data,
272};
273
274static struct platform_device modem_nreset_device = {
275 .name = "reg-fixed-voltage",
276 .id = -1,
277 .dev = {
278 .platform_data = &modem_nreset_config,
279 },
280};
281
Linus Walleijefdfeb02018-09-06 14:24:36 +0200282static struct gpiod_lookup_table ams_delta_nreset_gpiod_table = {
283 .dev_id = "reg-fixed-voltage",
284 .table = {
285 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_MODEM_NRESET,
286 NULL, GPIO_ACTIVE_HIGH),
287 { },
288 },
289};
290
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100291struct modem_private_data {
292 struct regulator *regulator;
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100293};
294
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100295static struct modem_private_data modem_priv;
296
Janusz Krzysztofik7e95d1f12010-12-14 21:09:40 +0100297static struct platform_device ams_delta_nand_device = {
298 .name = "ams-delta-nand",
Janusz Krzysztofikeaca4912010-12-15 15:43:44 +0100299 .id = -1,
Janusz Krzysztofik7e95d1f12010-12-14 21:09:40 +0100300};
301
Janusz Krzysztofik02e1ca62018-11-21 12:08:03 +0100302#define OMAP_GPIO_LABEL "gpio-0-15"
303#define OMAP_MPUIO_LABEL "mpuio"
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200304
305static struct gpiod_lookup_table ams_delta_nand_gpio_table = {
306 .table = {
307 GPIO_LOOKUP(OMAP_GPIO_LABEL, AMS_DELTA_GPIO_PIN_NAND_RB, "rdy",
308 0),
309 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NCE, "nce", 0),
310 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NRE, "nre", 0),
311 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NWP, "nwp", 0),
312 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NWE, "nwe", 0),
313 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_ALE, "ale", 0),
314 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_CLE, "cle", 0),
Janusz Krzysztofik02e1ca62018-11-21 12:08:03 +0100315 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 0, "data", 0, 0),
316 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 1, "data", 1, 0),
317 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 2, "data", 2, 0),
318 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 3, "data", 3, 0),
319 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 4, "data", 4, 0),
320 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 5, "data", 5, 0),
321 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 6, "data", 6, 0),
322 GPIO_LOOKUP_IDX(OMAP_MPUIO_LABEL, 7, "data", 7, 0),
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200323 { },
324 },
325};
326
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800327static struct resource ams_delta_kp_resources[] = {
328 [0] = {
329 .start = INT_KEYBOARD,
330 .end = INT_KEYBOARD,
331 .flags = IORESOURCE_IRQ,
332 },
333};
334
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000335static const struct matrix_keymap_data ams_delta_keymap_data = {
336 .keymap = ams_delta_keymap,
337 .keymap_size = ARRAY_SIZE(ams_delta_keymap),
338};
339
Janusz Krzysztofikdc0caef2012-03-01 15:19:15 -0800340static struct omap_kp_platform_data ams_delta_kp_data = {
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800341 .rows = 8,
342 .cols = 8,
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000343 .keymap_data = &ams_delta_keymap_data,
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800344 .delay = 9,
345};
346
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700347static struct platform_device ams_delta_kp_device = {
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800348 .name = "omap-keypad",
349 .id = -1,
350 .dev = {
351 .platform_data = &ams_delta_kp_data,
352 },
353 .num_resources = ARRAY_SIZE(ams_delta_kp_resources),
354 .resource = ams_delta_kp_resources,
355};
356
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700357static struct platform_device ams_delta_lcd_device = {
Tony Lindgrena5246262006-12-07 13:58:17 -0800358 .name = "lcd_ams_delta",
359 .id = -1,
360};
361
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200362static struct gpiod_lookup_table ams_delta_lcd_gpio_table = {
363 .table = {
364 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_LCD_VBLEN, "vblen", 0),
365 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_LCD_NDISP, "ndisp", 0),
366 { },
367 },
368};
369
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200370static struct gpio_led gpio_leds[] __initdata = {
371 [LATCH1_PIN_LED_CAMERA] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100372 .name = "camera",
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100373 .default_state = LEDS_GPIO_DEFSTATE_OFF,
374#ifdef CONFIG_LEDS_TRIGGERS
375 .default_trigger = "ams_delta_camera",
376#endif
377 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200378 [LATCH1_PIN_LED_ADVERT] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100379 .name = "advert",
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100380 .default_state = LEDS_GPIO_DEFSTATE_OFF,
381 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200382 [LATCH1_PIN_LED_MAIL] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100383 .name = "email",
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100384 .default_state = LEDS_GPIO_DEFSTATE_OFF,
385 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200386 [LATCH1_PIN_LED_HANDSFREE] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100387 .name = "handsfree",
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100388 .default_state = LEDS_GPIO_DEFSTATE_OFF,
389 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200390 [LATCH1_PIN_LED_VOICEMAIL] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100391 .name = "voicemail",
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100392 .default_state = LEDS_GPIO_DEFSTATE_OFF,
393 },
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200394 [LATCH1_PIN_LED_VOICE] = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100395 .name = "voice",
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100396 .default_state = LEDS_GPIO_DEFSTATE_OFF,
397 },
398};
399
Janusz Krzysztofikda564a02012-02-10 17:48:43 +0100400static const struct gpio_led_platform_data leds_pdata __initconst = {
Janusz Krzysztofik5ca61802011-12-20 00:08:53 +0100401 .leds = gpio_leds,
402 .num_leds = ARRAY_SIZE(gpio_leds),
Jonathan McDowell9becde72006-06-23 02:05:33 -0700403};
404
Janusz Krzysztofik19a2668a2018-11-06 00:23:49 +0100405static struct gpiod_lookup_table leds_gpio_table = {
406 .table = {
407 GPIO_LOOKUP_IDX(LATCH1_LABEL, LATCH1_PIN_LED_CAMERA, NULL,
408 LATCH1_PIN_LED_CAMERA, 0),
409 GPIO_LOOKUP_IDX(LATCH1_LABEL, LATCH1_PIN_LED_ADVERT, NULL,
410 LATCH1_PIN_LED_ADVERT, 0),
411 GPIO_LOOKUP_IDX(LATCH1_LABEL, LATCH1_PIN_LED_MAIL, NULL,
412 LATCH1_PIN_LED_MAIL, 0),
413 GPIO_LOOKUP_IDX(LATCH1_LABEL, LATCH1_PIN_LED_HANDSFREE, NULL,
414 LATCH1_PIN_LED_HANDSFREE, 0),
415 GPIO_LOOKUP_IDX(LATCH1_LABEL, LATCH1_PIN_LED_VOICEMAIL, NULL,
416 LATCH1_PIN_LED_VOICEMAIL, 0),
417 GPIO_LOOKUP_IDX(LATCH1_LABEL, LATCH1_PIN_LED_VOICE, NULL,
418 LATCH1_PIN_LED_VOICE, 0),
419 { },
420 },
421};
422
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700423static struct i2c_board_info ams_delta_camera_board_info[] = {
424 {
425 I2C_BOARD_INFO("ov6650", 0x60),
426 },
427};
428
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -0700429#ifdef CONFIG_LEDS_TRIGGERS
430DEFINE_LED_TRIGGER(ams_delta_camera_led_trigger);
431
432static int ams_delta_camera_power(struct device *dev, int power)
433{
434 /*
435 * turn on camera LED
436 */
437 if (power)
438 led_trigger_event(ams_delta_camera_led_trigger, LED_FULL);
439 else
440 led_trigger_event(ams_delta_camera_led_trigger, LED_OFF);
441 return 0;
442}
443#else
444#define ams_delta_camera_power NULL
445#endif
446
Uwe Kleine-Königa7e2a892011-02-09 21:40:10 +0100447static struct soc_camera_link ams_delta_iclink = {
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700448 .bus_id = 0, /* OMAP1 SoC camera bus */
449 .i2c_adapter_id = 1,
450 .board_info = &ams_delta_camera_board_info[0],
451 .module_name = "ov6650",
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -0700452 .power = ams_delta_camera_power,
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700453};
454
Janusz Krzysztofik07ad6ab2011-07-04 03:56:15 -0700455static struct platform_device ams_delta_camera_device = {
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700456 .name = "soc-camera-pdrv",
457 .id = 0,
458 .dev = {
459 .platform_data = &ams_delta_iclink,
460 },
461};
462
463static struct omap1_cam_platform_data ams_delta_camera_platform_data = {
464 .camexclk_khz = 12000, /* default 12MHz clock, no extra DPLL */
465 .lclk_khz_max = 1334, /* results in 5fps CIF, 10fps QCIF */
466};
467
Janusz Krzysztofikb764de22012-10-03 12:46:57 +0200468static struct platform_device ams_delta_audio_device = {
469 .name = "ams-delta-audio",
470 .id = -1,
471};
472
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200473static struct gpiod_lookup_table ams_delta_audio_gpio_table = {
474 .table = {
475 GPIO_LOOKUP(OMAP_GPIO_LABEL, AMS_DELTA_GPIO_PIN_HOOK_SWITCH,
476 "hook_switch", 0),
477 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_MODEM_CODEC,
478 "modem_codec", 0),
Janusz Krzysztofik73681f42019-09-07 13:16:50 +0200479 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_HANDSFREE_MUTE,
480 "handsfree_mute", 0),
481 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_HANDSET_MUTE,
482 "handset_mute", 0),
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200483 { },
484 },
485};
486
Janusz Krzysztofikb764de22012-10-03 12:46:57 +0200487static struct platform_device cx20442_codec_device = {
488 .name = "cx20442-codec",
489 .id = -1,
490};
491
Janusz Krzysztofika617b362018-06-22 00:41:27 +0200492static struct resource ams_delta_serio_resources[] = {
493 {
494 .flags = IORESOURCE_IRQ,
495 /*
496 * Initialize IRQ resource with invalid IRQ number.
497 * It will be replaced with dynamically allocated GPIO IRQ
498 * obtained from GPIO chip as soon as the chip is available.
499 */
500 .start = -EINVAL,
501 .end = -EINVAL,
502 },
503};
504
Janusz Krzysztofikdf88c572018-06-22 00:41:20 +0200505static struct platform_device ams_delta_serio_device = {
506 .name = "ams-delta-serio",
507 .id = PLATFORM_DEVID_NONE,
Janusz Krzysztofik5f738612018-06-22 00:41:28 +0200508 .dev = {
509 /*
510 * Initialize .platform_data explicitly with NULL to
511 * indicate it is going to be used. It will be replaced
512 * with FIQ buffer address as soon as FIQ is initialized.
513 */
514 .platform_data = NULL,
515 },
Janusz Krzysztofika617b362018-06-22 00:41:27 +0200516 .num_resources = ARRAY_SIZE(ams_delta_serio_resources),
517 .resource = ams_delta_serio_resources,
Janusz Krzysztofikdf88c572018-06-22 00:41:20 +0200518};
519
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200520static struct regulator_consumer_supply keybrd_pwr_consumers[] = {
521 /*
522 * Initialize supply .dev_name with NULL. It will be replaced
523 * with serio dev_name() as soon as the serio device is registered.
524 */
525 REGULATOR_SUPPLY("vcc", NULL),
526};
527
528static struct regulator_init_data keybrd_pwr_initdata = {
529 .constraints = {
530 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
531 },
532 .num_consumer_supplies = ARRAY_SIZE(keybrd_pwr_consumers),
533 .consumer_supplies = keybrd_pwr_consumers,
534};
535
536static struct fixed_voltage_config keybrd_pwr_config = {
537 .supply_name = "keybrd_pwr",
538 .microvolts = 5000000,
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200539 .init_data = &keybrd_pwr_initdata,
540};
541
542static struct platform_device keybrd_pwr_device = {
543 .name = "reg-fixed-voltage",
544 .id = PLATFORM_DEVID_AUTO,
545 .dev = {
546 .platform_data = &keybrd_pwr_config,
547 },
548};
549
550static struct gpiod_lookup_table keybrd_pwr_gpio_table = {
551 .table = {
552 GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_KEYBRD_PWR, NULL,
553 GPIO_ACTIVE_HIGH),
554 { },
555 },
556};
557
Jonathan McDowell9becde72006-06-23 02:05:33 -0700558static struct platform_device *ams_delta_devices[] __initdata = {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100559 &latch1_gpio_device,
560 &latch2_gpio_device,
Jonathan McDowell325d50b2006-12-06 17:13:52 -0800561 &ams_delta_kp_device,
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700562 &ams_delta_camera_device,
Janusz Krzysztofikb764de22012-10-03 12:46:57 +0200563 &ams_delta_audio_device,
Janusz Krzysztofikdf88c572018-06-22 00:41:20 +0200564 &ams_delta_serio_device,
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100565 &ams_delta_nand_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100566 &ams_delta_lcd_device,
Janusz Krzysztofikb764de22012-10-03 12:46:57 +0200567 &cx20442_codec_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100568};
569
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200570static struct gpiod_lookup_table *ams_delta_gpio_tables[] __initdata = {
Linus Walleijefdfeb02018-09-06 14:24:36 +0200571 &ams_delta_nreset_gpiod_table,
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200572 &ams_delta_audio_gpio_table,
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200573 &keybrd_pwr_gpio_table,
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200574 &ams_delta_lcd_gpio_table,
575 &ams_delta_nand_gpio_table,
576};
577
Janusz Krzysztofik8c14b082018-05-27 15:55:48 +0200578/*
579 * Some drivers may not use GPIO lookup tables but need to be provided
580 * with GPIO numbers. The same applies to GPIO based IRQ lines - some
581 * drivers may even not use GPIO layer but expect just IRQ numbers.
582 * We could either define GPIO lookup tables then use them on behalf
583 * of those devices, or we can use GPIO driver level methods for
584 * identification of GPIO and IRQ numbers. For the purpose of the latter,
585 * defina a helper function which identifies GPIO chips by their labels.
586 */
587static int gpiochip_match_by_label(struct gpio_chip *chip, void *data)
588{
589 char *label = data;
590
591 return !strcmp(label, chip->label);
592}
593
Janusz Krzysztofik41f8fee2018-06-22 00:41:23 +0200594static struct gpiod_hog ams_delta_gpio_hogs[] = {
595 GPIO_HOG(LATCH2_LABEL, LATCH2_PIN_KEYBRD_DATAOUT, "keybrd_dataout",
596 GPIO_ACTIVE_HIGH, GPIOD_OUT_LOW),
597 {},
598};
599
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200600static struct plat_serial8250_port ams_delta_modem_ports[];
601
602/*
603 * Obtain MODEM IRQ GPIO descriptor using its hardware pin
604 * number and assign related IRQ number to the MODEM port.
605 * Keep the GPIO descriptor open so nobody steps in.
606 */
607static void __init modem_assign_irq(struct gpio_chip *chip)
608{
609 struct gpio_desc *gpiod;
610
611 gpiod = gpiochip_request_own_desc(chip, AMS_DELTA_GPIO_PIN_MODEM_IRQ,
Linus Walleij5923ea62019-04-26 14:40:18 +0200612 "modem_irq", GPIO_ACTIVE_HIGH,
613 GPIOD_IN);
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200614 if (IS_ERR(gpiod)) {
615 pr_err("%s: modem IRQ GPIO request failed (%ld)\n", __func__,
616 PTR_ERR(gpiod));
617 } else {
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200618 ams_delta_modem_ports[0].irq = gpiod_to_irq(gpiod);
619 }
620}
621
Janusz Krzysztofik97abda92018-06-22 00:41:24 +0200622/*
623 * The purpose of this function is to take care of proper initialization of
624 * devices and data structures which depend on GPIO lines provided by OMAP GPIO
625 * banks but their drivers don't use GPIO lookup tables or GPIO layer at all.
626 * The function may be called as soon as OMAP GPIO devices are probed.
627 * Since that happens at postcore_initcall, it can be called successfully
628 * from init_machine or later.
629 * Dependent devices may be registered from within this function or later.
630 */
631static void __init omap_gpio_deps_init(void)
632{
633 struct gpio_chip *chip;
634
635 chip = gpiochip_find(OMAP_GPIO_LABEL, gpiochip_match_by_label);
636 if (!chip) {
637 pr_err("%s: OMAP GPIO chip not found\n", __func__);
638 return;
639 }
640
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200641 /*
642 * Start with FIQ initialization as it may have to request
643 * and release successfully each OMAP GPIO pin in turn.
644 */
Janusz Krzysztofika617b362018-06-22 00:41:27 +0200645 ams_delta_init_fiq(chip, &ams_delta_serio_device);
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200646
647 modem_assign_irq(chip);
Janusz Krzysztofik97abda92018-06-22 00:41:24 +0200648}
649
Janusz Krzysztofik1464d032018-09-10 01:44:18 +0200650/*
651 * Initialize latch2 pins with values which are safe for dependent on-board
652 * devices or useful for their successull initialization even before GPIO
653 * driver takes control over the latch pins:
654 * - LATCH2_PIN_LCD_VBLEN = 0
655 * - LATCH2_PIN_LCD_NDISP = 0 Keep LCD device powered off before its
656 * driver takes control over it.
657 * - LATCH2_PIN_NAND_NCE = 0
658 * - LATCH2_PIN_NAND_NWP = 0 Keep NAND device down and write-
659 * protected before its driver takes
660 * control over it.
661 * - LATCH2_PIN_KEYBRD_PWR = 0 Keep keyboard powered off before serio
662 * driver takes control over it.
663 * - LATCH2_PIN_KEYBRD_DATAOUT = 0 Keep low to avoid corruption of first
664 * byte of data received from attached
665 * keyboard when serio device is probed;
666 * the pin is also hogged low by the latch2
667 * GPIO driver as soon as it is ready.
668 * - LATCH2_PIN_MODEM_NRESET = 1 Enable voice MODEM device, allowing for
669 * its successful probe even before a
670 * regulator it depends on, which in turn
671 * takes control over the pin, is set up.
672 * - LATCH2_PIN_MODEM_CODEC = 1 Attach voice MODEM CODEC data port
673 * to the MODEM so the CODEC is under
674 * control even if audio driver doesn't
675 * take it over.
676 */
677static void __init ams_delta_latch2_init(void)
678{
679 u16 latch2 = 1 << LATCH2_PIN_MODEM_NRESET | 1 << LATCH2_PIN_MODEM_CODEC;
680
681 __raw_writew(latch2, LATCH2_VIRT);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100682}
683
684static void __init ams_delta_init(void)
685{
Janusz Krzysztofik19a2668a2018-11-06 00:23:49 +0100686 struct platform_device *leds_pdev;
687
Janusz Krzysztofikc33da3a2009-10-22 14:47:42 -0700688 /* mux pins for uarts */
689 omap_cfg_reg(UART1_TX);
690 omap_cfg_reg(UART1_RTS);
691
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700692 /* parallel camera interface */
693 omap_cfg_reg(H19_1610_CAM_EXCLK);
694 omap_cfg_reg(J15_1610_CAM_LCLK);
695 omap_cfg_reg(L18_1610_CAM_VS);
696 omap_cfg_reg(L15_1610_CAM_HS);
697 omap_cfg_reg(L19_1610_CAM_D0);
698 omap_cfg_reg(K14_1610_CAM_D1);
699 omap_cfg_reg(K15_1610_CAM_D2);
700 omap_cfg_reg(K19_1610_CAM_D3);
701 omap_cfg_reg(K18_1610_CAM_D4);
702 omap_cfg_reg(J14_1610_CAM_D5);
703 omap_cfg_reg(J19_1610_CAM_D6);
704 omap_cfg_reg(J18_1610_CAM_D7);
705
Janusz Krzysztofik97abda92018-06-22 00:41:24 +0200706 omap_gpio_deps_init();
Janusz Krzysztofik1464d032018-09-10 01:44:18 +0200707 ams_delta_latch2_init();
Janusz Krzysztofik41f8fee2018-06-22 00:41:23 +0200708 gpiod_add_hogs(ams_delta_gpio_hogs);
709
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100710 omap_serial_init();
Jarkko Nikula1ed16a82007-11-07 06:54:32 +0200711 omap_register_i2c_bus(1, 100, NULL, 0);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100712
Tony Lindgrendd0cdd82010-07-05 16:31:30 +0300713 omap1_usb_init(&ams_delta_usb_config);
Janusz Krzysztofik8452e9e2010-10-01 16:37:00 -0700714 omap1_set_camera_info(&ams_delta_camera_platform_data);
Janusz Krzysztofik243e76b2010-10-01 16:37:01 -0700715#ifdef CONFIG_LEDS_TRIGGERS
716 led_trigger_register_simple("ams_delta_camera",
717 &ams_delta_camera_led_trigger);
718#endif
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100719 platform_add_devices(ams_delta_devices, ARRAY_SIZE(ams_delta_devices));
Janusz Krzysztofikb3dba0b2009-10-22 14:47:42 -0700720
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200721 /*
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200722 * As soon as regulator consumers have been registered, assign their
723 * dev_names to consumer supply entries of respective regulators.
724 */
725 keybrd_pwr_consumers[0].dev_name =
726 dev_name(&ams_delta_serio_device.dev);
727
728 /*
729 * Once consumer supply entries are populated with dev_names,
730 * register regulator devices. At this stage only the keyboard
731 * power regulator has its consumer supply table fully populated.
732 */
733 platform_device_register(&keybrd_pwr_device);
734
735 /*
736 * As soon as GPIO consumers have been registered, assign
737 * their dev_names to respective GPIO lookup tables.
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200738 */
739 ams_delta_audio_gpio_table.dev_id =
740 dev_name(&ams_delta_audio_device.dev);
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200741 keybrd_pwr_gpio_table.dev_id = dev_name(&keybrd_pwr_device.dev);
Janusz Krzysztofikd08605a2018-07-03 00:28:28 +0200742 ams_delta_nand_gpio_table.dev_id = dev_name(&ams_delta_nand_device.dev);
743 ams_delta_lcd_gpio_table.dev_id = dev_name(&ams_delta_lcd_device.dev);
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200744
Janusz Krzysztofik2bcb1be2018-06-22 00:41:22 +0200745 /*
746 * Once GPIO lookup tables are populated with dev_names, register them.
747 */
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200748 gpiod_add_lookup_tables(ams_delta_gpio_tables,
749 ARRAY_SIZE(ams_delta_gpio_tables));
750
Janusz Krzysztofik19a2668a2018-11-06 00:23:49 +0100751 leds_pdev = gpio_led_register_device(PLATFORM_DEVID_NONE, &leds_pdata);
Aaro Koskinen11e600a2019-04-16 02:37:32 +0300752 if (!IS_ERR_OR_NULL(leds_pdev)) {
Janusz Krzysztofik19a2668a2018-11-06 00:23:49 +0100753 leds_gpio_table.dev_id = dev_name(&leds_pdev->dev);
754 gpiod_add_lookup_table(&leds_gpio_table);
755 }
756
Janusz Krzysztofikb3dba0b2009-10-22 14:47:42 -0700757 omap_writew(omap_readw(ARM_RSTCT1) | 0x0004, ARM_RSTCT1);
Tomi Valkeinenddba6c72011-09-20 15:23:13 +0300758
759 omapfb_set_lcd_config(&ams_delta_lcd_config);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100760}
761
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100762static void modem_pm(struct uart_port *port, unsigned int state, unsigned old)
763{
764 struct modem_private_data *priv = port->private_data;
Arnd Bergmann595a9f92016-01-15 14:41:03 +0100765 int ret;
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100766
Janusz Krzysztofikcec83ff2018-11-07 22:30:31 +0100767 if (!priv)
768 return;
769
Janusz Krzysztofik0379c1f2012-03-05 17:05:12 +0100770 if (IS_ERR(priv->regulator))
771 return;
772
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100773 if (state == old)
774 return;
775
Janusz Krzysztofik0379c1f2012-03-05 17:05:12 +0100776 if (state == 0)
Arnd Bergmann595a9f92016-01-15 14:41:03 +0100777 ret = regulator_enable(priv->regulator);
Janusz Krzysztofik0379c1f2012-03-05 17:05:12 +0100778 else if (old == 0)
Arnd Bergmann595a9f92016-01-15 14:41:03 +0100779 ret = regulator_disable(priv->regulator);
780 else
781 ret = 0;
782
783 if (ret)
784 dev_warn(port->dev,
785 "ams_delta modem_pm: failed to %sable regulator: %d\n",
786 state ? "dis" : "en", ret);
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100787}
788
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700789static struct plat_serial8250_port ams_delta_modem_ports[] = {
790 {
Janusz Krzysztofik937eb4b2011-12-20 03:24:21 +0100791 .membase = IOMEM(MODEM_VIRT),
792 .mapbase = MODEM_PHYS,
Janusz Krzysztofikab6ead72018-10-02 11:45:29 +0200793 .irq = IRQ_NOTCONNECTED, /* changed later */
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700794 .flags = UPF_BOOT_AUTOCONF,
795 .irqflags = IRQF_TRIGGER_RISING,
796 .iotype = UPIO_MEM,
797 .regshift = 1,
798 .uartclk = BASE_BAUD * 16,
Janusz Krzysztofikaabf3172012-03-05 17:05:11 +0100799 .pm = modem_pm,
800 .private_data = &modem_priv,
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700801 },
802 { },
803};
804
805static struct platform_device ams_delta_modem_device = {
806 .name = "serial8250",
807 .id = PLAT8250_DEV_PLATFORM1,
808 .dev = {
809 .platform_data = ams_delta_modem_ports,
810 },
811};
812
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200813static int __init modem_nreset_init(void)
814{
815 int err;
Janusz Krzysztofik04867382018-05-18 23:09:49 +0200816
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100817 err = platform_device_register(&modem_nreset_device);
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200818 if (err)
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100819 pr_err("Couldn't register the modem regulator device\n");
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200820
821 return err;
822}
823
824
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200825/*
Janusz Krzysztofikab6ead72018-10-02 11:45:29 +0200826 * This function expects MODEM IRQ number already assigned to the port.
Janusz Krzysztofikd3e952a2018-09-10 01:44:19 +0200827 * The MODEM device requires its RESET# pin kept high during probe.
828 * That requirement can be fulfilled in several ways:
829 * - with a descriptor of already functional modem_nreset regulator
830 * assigned to the MODEM private data,
831 * - with the regulator not yet controlled by modem_pm function but
832 * already enabled by default on probe,
833 * - before the modem_nreset regulator is probed, with the pin already
834 * set high explicitly.
835 * The last one is already guaranteed by ams_delta_latch2_init() called
836 * from machine_init.
837 * In order to avoid taking over ttyS0 device slot, the MODEM device
838 * should be registered after OMAP serial ports. Since those ports
839 * are registered at arch_initcall, this function can be called safely
840 * at arch_initcall_sync earliest.
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200841 */
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200842static int __init ams_delta_modem_init(void)
843{
844 int err;
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100845
Janusz Krzysztofikd3e952a2018-09-10 01:44:19 +0200846 if (!machine_is_ams_delta())
847 return -ENODEV;
Janusz Krzysztofik4cb2dc62010-04-28 01:05:47 +0000848
Janusz Krzysztofik0812db92018-09-10 01:44:17 +0200849 omap_cfg_reg(M14_1510_GPIO2);
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700850
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100851 /* Initialize the modem_nreset regulator consumer before use */
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100852 modem_priv.regulator = ERR_PTR(-ENODEV);
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700853
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100854 err = platform_device_register(&ams_delta_modem_device);
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200855
856 return err;
857}
Janusz Krzysztofikd3e952a2018-09-10 01:44:19 +0200858arch_initcall_sync(ams_delta_modem_init);
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200859
860static int __init late_init(void)
861{
862 int err;
863
Janusz Krzysztofik3e14de32018-05-27 15:55:47 +0200864 err = modem_nreset_init();
865 if (err)
866 return err;
867
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100868 /*
869 * Once the modem device is registered, the modem_nreset
870 * regulator can be requested on behalf of that device.
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100871 */
872 modem_priv.regulator = regulator_get(&ams_delta_modem_device.dev,
873 "RESET#");
874 if (IS_ERR(modem_priv.regulator)) {
875 err = PTR_ERR(modem_priv.regulator);
876 goto unregister;
877 }
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100878 return 0;
879
Janusz Krzysztofikac2885d2012-03-05 17:05:10 +0100880unregister:
881 platform_device_unregister(&ams_delta_modem_device);
Janusz Krzysztofikf7519d82011-12-20 22:54:18 +0100882 return err;
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700883}
Shawn Guo82c3bd02012-04-26 13:49:29 +0800884
885static void __init ams_delta_init_late(void)
886{
887 omap1_init_late();
888 late_init();
889}
Janusz Krzysztofikeff443d2009-08-28 10:51:37 -0700890
Tony Lindgren5bb01a92011-11-09 15:29:31 -0800891static void __init ams_delta_map_io(void)
892{
893 omap15xx_map_io();
894 iotable_init(ams_delta_io_desc, ARRAY_SIZE(ams_delta_io_desc));
895}
896
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100897MACHINE_START(AMS_DELTA, "Amstrad E3 (Delta)")
898 /* Maintainer: Jonathan McDowell <noodles@earth.li> */
Nicolas Pitre246e3892011-07-05 22:38:15 -0400899 .atag_offset = 0x100,
Tony Lindgren5bb01a92011-11-09 15:29:31 -0800900 .map_io = ams_delta_map_io,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700901 .init_early = omap1_init_early,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700902 .init_irq = omap1_init_irq,
Tony Lindgrenb6943312015-05-20 09:01:21 -0700903 .handle_irq = omap1_handle_irq,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100904 .init_machine = ams_delta_init,
Shawn Guo82c3bd02012-04-26 13:49:29 +0800905 .init_late = ams_delta_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700906 .init_time = omap1_timer_init,
Russell Kingbaa95882011-11-05 17:06:28 +0000907 .restart = omap1_restart,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100908MACHINE_END