board-ams-delta.c 23.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * linux/arch/arm/mach-omap1/board-ams-delta.c
 *
 * Modified from board-generic.c
 *
 * Board specific inits for the Amstrad E3 (codename Delta) videophone
 *
 * Copyright (C) 2006 Jonathan McDowell <noodles@earth.li>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
14
#include <linux/gpio/driver.h>
15
#include <linux/gpio/machine.h>
16
#include <linux/gpio.h>
17 18
#include <linux/kernel.h>
#include <linux/init.h>
19
#include <linux/input.h>
20
#include <linux/interrupt.h>
21
#include <linux/leds.h>
22
#include <linux/platform_device.h>
23 24 25
#include <linux/regulator/consumer.h>
#include <linux/regulator/fixed.h>
#include <linux/regulator/machine.h>
26
#include <linux/serial_8250.h>
27
#include <linux/export.h>
28
#include <linux/omapfb.h>
29
#include <linux/io.h>
30
#include <linux/platform_data/gpio-omap.h>
31

32 33
#include <media/soc_camera.h>

34
#include <asm/serial.h>
35 36 37 38
#include <asm/mach-types.h>
#include <asm/mach/arch.h>
#include <asm/mach/map.h>

39
#include <mach/board-ams-delta.h>
40
#include <linux/platform_data/keypad-omap.h>
41
#include <mach/mux.h>
42

43
#include <mach/hardware.h>
44
#include "camera.h"
45
#include <mach/usb.h>
46

47
#include "ams-delta-fiq.h"
48 49
#include "iomap.h"
#include "common.h"
50

51
static const unsigned int ams_delta_keymap[] = {
52
	KEY(0, 0, KEY_F1),		/* Advert    */
53

54 55 56 57
	KEY(0, 3, KEY_COFFEE),		/* Games     */
	KEY(0, 2, KEY_QUESTION),	/* Directory */
	KEY(2, 3, KEY_CONNECT),		/* Internet  */
	KEY(1, 2, KEY_SHOP),		/* Services  */
58
	KEY(1, 1, KEY_PHONE),		/* VoiceMail */
59

60
	KEY(0, 1, KEY_DELETE),		/* Delete    */
61
	KEY(2, 2, KEY_PLAY),		/* Play      */
62 63 64 65
	KEY(1, 0, KEY_PAGEUP),		/* Up        */
	KEY(1, 3, KEY_PAGEDOWN),	/* Down      */
	KEY(2, 0, KEY_EMAIL),		/* ReadEmail */
	KEY(2, 1, KEY_STOP),		/* Stop      */
66 67

	/* Numeric keypad portion */
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
	KEY(0, 7, KEY_KP1),
	KEY(0, 6, KEY_KP2),
	KEY(0, 5, KEY_KP3),
	KEY(1, 7, KEY_KP4),
	KEY(1, 6, KEY_KP5),
	KEY(1, 5, KEY_KP6),
	KEY(2, 7, KEY_KP7),
	KEY(2, 6, KEY_KP8),
	KEY(2, 5, KEY_KP9),
	KEY(3, 6, KEY_KP0),
	KEY(3, 7, KEY_KPASTERISK),
	KEY(3, 5, KEY_KPDOT),		/* # key     */
	KEY(7, 2, KEY_NUMLOCK),		/* Mute      */
	KEY(7, 1, KEY_KPMINUS),		/* Recall    */
	KEY(6, 1, KEY_KPPLUS),		/* Redial    */
	KEY(7, 6, KEY_KPSLASH),		/* Handsfree */
	KEY(6, 0, KEY_ENTER),		/* Video     */

	KEY(7, 4, KEY_CAMERA),		/* Photo     */

	KEY(0, 4, KEY_F2),		/* Home      */
	KEY(1, 4, KEY_F3),		/* Office    */
	KEY(2, 4, KEY_F4),		/* Mobile    */
91
	KEY(7, 7, KEY_F5),		/* SMS       */
92
	KEY(7, 5, KEY_F6),		/* Email     */
93 94

	/* QWERTY portion of keypad */
95
	KEY(3, 4, KEY_Q),
96
	KEY(3, 3, KEY_W),
97 98 99 100 101 102
	KEY(3, 2, KEY_E),
	KEY(3, 1, KEY_R),
	KEY(3, 0, KEY_T),
	KEY(4, 7, KEY_Y),
	KEY(4, 6, KEY_U),
	KEY(4, 5, KEY_I),
103
	KEY(4, 4, KEY_O),
104
	KEY(4, 3, KEY_P),
105

106 107 108 109 110
	KEY(4, 2, KEY_A),
	KEY(4, 1, KEY_S),
	KEY(4, 0, KEY_D),
	KEY(5, 7, KEY_F),
	KEY(5, 6, KEY_G),
111
	KEY(5, 5, KEY_H),
112 113 114
	KEY(5, 4, KEY_J),
	KEY(5, 3, KEY_K),
	KEY(5, 2, KEY_L),
115

116 117 118
	KEY(5, 1, KEY_Z),
	KEY(5, 0, KEY_X),
	KEY(6, 7, KEY_C),
119
	KEY(6, 6, KEY_V),
120 121 122 123
	KEY(6, 5, KEY_B),
	KEY(6, 4, KEY_N),
	KEY(6, 3, KEY_M),
	KEY(6, 2, KEY_SPACE),
124

125 126
	KEY(7, 0, KEY_LEFTSHIFT),	/* Vol up    */
	KEY(7, 3, KEY_LEFTCTRL),	/* Vol down  */
127 128
};

129 130 131 132 133 134
#define LATCH1_PHYS	0x01000000
#define LATCH1_VIRT	0xEA000000
#define MODEM_PHYS	0x04000000
#define MODEM_VIRT	0xEB000000
#define LATCH2_PHYS	0x08000000
#define LATCH2_VIRT	0xEC000000
135 136

static struct map_desc ams_delta_io_desc[] __initdata = {
137
	/* AMS_DELTA_LATCH1 */
138
	{
139 140
		.virtual	= LATCH1_VIRT,
		.pfn		= __phys_to_pfn(LATCH1_PHYS),
141 142 143
		.length		= 0x01000000,
		.type		= MT_DEVICE
	},
144
	/* AMS_DELTA_LATCH2 */
145
	{
146 147
		.virtual	= LATCH2_VIRT,
		.pfn		= __phys_to_pfn(LATCH2_PHYS),
148 149 150
		.length		= 0x01000000,
		.type		= MT_DEVICE
	},
151
	/* AMS_DELTA_MODEM */
152
	{
153 154
		.virtual	= MODEM_VIRT,
		.pfn		= __phys_to_pfn(MODEM_PHYS),
155 156 157 158 159
		.length		= 0x01000000,
		.type		= MT_DEVICE
	}
};

160
static const struct omap_lcd_config ams_delta_lcd_config __initconst = {
161 162 163
	.ctrl_name	= "internal",
};

164
static struct omap_usb_config ams_delta_usb_config __initdata = {
165 166 167 168 169
	.register_host	= 1,
	.hmc_mode	= 16,
	.pins[0]	= 2,
};

170 171 172
#define LATCH1_GPIO_BASE	232
#define LATCH1_NGPIO		8

173
static struct resource latch1_resources[] = {
174 175 176
	[0] = {
		.name	= "dat",
		.start	= LATCH1_PHYS,
177
		.end	= LATCH1_PHYS + (LATCH1_NGPIO - 1) / 8,
178 179 180 181
		.flags	= IORESOURCE_MEM,
	},
};

182 183
#define LATCH1_LABEL	"latch1"

184
static struct bgpio_pdata latch1_pdata = {
185
	.label	= LATCH1_LABEL,
186 187
	.base	= LATCH1_GPIO_BASE,
	.ngpio	= LATCH1_NGPIO,
188 189 190 191 192 193 194 195 196 197 198 199
};

static struct platform_device latch1_gpio_device = {
	.name		= "basic-mmio-gpio",
	.id		= 0,
	.resource	= latch1_resources,
	.num_resources	= ARRAY_SIZE(latch1_resources),
	.dev		= {
		.platform_data	= &latch1_pdata,
	},
};

200 201 202 203 204 205 206 207 208
#define LATCH1_PIN_LED_CAMERA		0
#define LATCH1_PIN_LED_ADVERT		1
#define LATCH1_PIN_LED_MAIL		2
#define LATCH1_PIN_LED_HANDSFREE	3
#define LATCH1_PIN_LED_VOICEMAIL	4
#define LATCH1_PIN_LED_VOICE		5
#define LATCH1_PIN_DOCKIT1		6
#define LATCH1_PIN_DOCKIT2		7

209
static struct resource latch2_resources[] = {
210 211 212 213 214 215 216 217
	[0] = {
		.name	= "dat",
		.start	= LATCH2_PHYS,
		.end	= LATCH2_PHYS + (AMS_DELTA_LATCH2_NGPIO - 1) / 8,
		.flags	= IORESOURCE_MEM,
	},
};

218 219
#define LATCH2_LABEL	"latch2"

220
static struct bgpio_pdata latch2_pdata = {
221
	.label	= LATCH2_LABEL,
222 223 224 225 226 227 228 229 230 231 232 233 234 235
	.base	= AMS_DELTA_LATCH2_GPIO_BASE,
	.ngpio	= AMS_DELTA_LATCH2_NGPIO,
};

static struct platform_device latch2_gpio_device = {
	.name		= "basic-mmio-gpio",
	.id		= 1,
	.resource	= latch2_resources,
	.num_resources	= ARRAY_SIZE(latch2_resources),
	.dev		= {
		.platform_data	= &latch2_pdata,
	},
};

236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
#define LATCH2_PIN_LCD_VBLEN		0
#define LATCH2_PIN_LCD_NDISP		1
#define LATCH2_PIN_NAND_NCE		2
#define LATCH2_PIN_NAND_NRE		3
#define LATCH2_PIN_NAND_NWP		4
#define LATCH2_PIN_NAND_NWE		5
#define LATCH2_PIN_NAND_ALE		6
#define LATCH2_PIN_NAND_CLE		7
#define LATCH2_PIN_KEYBRD_PWR		8
#define LATCH2_PIN_KEYBRD_DATAOUT	9
#define LATCH2_PIN_SCARD_RSTIN		10
#define LATCH2_PIN_SCARD_CMDVCC		11
#define LATCH2_PIN_MODEM_NRESET		12
#define LATCH2_PIN_MODEM_CODEC		13
#define LATCH2_PIN_HOOKFLASH1		14
#define LATCH2_PIN_HOOKFLASH2		15

253
static const struct gpio latch_gpios[] __initconst = {
254
	{
255
		.gpio	= LATCH1_GPIO_BASE + 6,
256 257 258 259
		.flags	= GPIOF_OUT_INIT_LOW,
		.label	= "dockit1",
	},
	{
260
		.gpio	= LATCH1_GPIO_BASE + 7,
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
		.flags	= GPIOF_OUT_INIT_LOW,
		.label	= "dockit2",
	},
	{
		.gpio	= AMS_DELTA_GPIO_PIN_SCARD_RSTIN,
		.flags	= GPIOF_OUT_INIT_LOW,
		.label	= "scard_rstin",
	},
	{
		.gpio	= AMS_DELTA_GPIO_PIN_SCARD_CMDVCC,
		.flags	= GPIOF_OUT_INIT_LOW,
		.label	= "scard_cmdvcc",
	},
	{
		.gpio	= AMS_DELTA_LATCH2_GPIO_BASE + 14,
		.flags	= GPIOF_OUT_INIT_LOW,
		.label	= "hookflash1",
	},
	{
		.gpio	= AMS_DELTA_LATCH2_GPIO_BASE + 15,
		.flags	= GPIOF_OUT_INIT_LOW,
		.label	= "hookflash2",
	},
};

286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
static struct regulator_consumer_supply modem_nreset_consumers[] = {
	REGULATOR_SUPPLY("RESET#", "serial8250.1"),
	REGULATOR_SUPPLY("POR", "cx20442-codec"),
};

static struct regulator_init_data modem_nreset_data = {
	.constraints		= {
		.valid_ops_mask		= REGULATOR_CHANGE_STATUS,
		.boot_on		= 1,
	},
	.num_consumer_supplies	= ARRAY_SIZE(modem_nreset_consumers),
	.consumer_supplies	= modem_nreset_consumers,
};

static struct fixed_voltage_config modem_nreset_config = {
	.supply_name		= "modem_nreset",
	.microvolts		= 3300000,
	.gpio			= AMS_DELTA_GPIO_PIN_MODEM_NRESET,
	.startup_delay		= 25000,
	.enable_high		= 1,
	.enabled_at_boot	= 1,
	.init_data		= &modem_nreset_data,
};

static struct platform_device modem_nreset_device = {
	.name	= "reg-fixed-voltage",
	.id	= -1,
	.dev	= {
		.platform_data	= &modem_nreset_config,
	},
};

struct modem_private_data {
	struct regulator *regulator;
};

static struct modem_private_data modem_priv;

324 325 326 327 328 329 330 331
void ams_delta_latch_write(int base, int ngpio, u16 mask, u16 value)
{
	int bit = 0;
	u16 bitpos = 1 << bit;

	for (; bit < ngpio; bit++, bitpos = bitpos << 1) {
		if (!(mask & bitpos))
			continue;
332 333
		else
			gpio_set_value(base + bit, (value & bitpos) != 0);
334 335 336 337
	}
}
EXPORT_SYMBOL(ams_delta_latch_write);

338 339 340 341 342 343 344 345 346
static struct resource ams_delta_nand_resources[] = {
	[0] = {
		.start	= OMAP1_MPUIO_BASE,
		.end	= OMAP1_MPUIO_BASE +
				OMAP_MPUIO_IO_CNTL + sizeof(u32) - 1,
		.flags	= IORESOURCE_MEM,
	},
};

347 348
static struct platform_device ams_delta_nand_device = {
	.name	= "ams-delta-nand",
349 350 351
	.id	= -1,
	.num_resources	= ARRAY_SIZE(ams_delta_nand_resources),
	.resource	= ams_delta_nand_resources,
352 353
};

354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
#define OMAP_GPIO_LABEL	"gpio-0-15"

static struct gpiod_lookup_table ams_delta_nand_gpio_table = {
	.table = {
		GPIO_LOOKUP(OMAP_GPIO_LABEL, AMS_DELTA_GPIO_PIN_NAND_RB, "rdy",
			    0),
		GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NCE, "nce", 0),
		GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NRE, "nre", 0),
		GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NWP, "nwp", 0),
		GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_NWE, "nwe", 0),
		GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_ALE, "ale", 0),
		GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_NAND_CLE, "cle", 0),
		{ },
	},
};

370 371 372 373 374 375 376 377
static struct resource ams_delta_kp_resources[] = {
	[0] = {
		.start	= INT_KEYBOARD,
		.end	= INT_KEYBOARD,
		.flags	= IORESOURCE_IRQ,
	},
};

378 379 380 381 382
static const struct matrix_keymap_data ams_delta_keymap_data = {
	.keymap		= ams_delta_keymap,
	.keymap_size	= ARRAY_SIZE(ams_delta_keymap),
};

383
static struct omap_kp_platform_data ams_delta_kp_data = {
384 385
	.rows		= 8,
	.cols		= 8,
386
	.keymap_data	= &ams_delta_keymap_data,
387 388 389
	.delay		= 9,
};

390
static struct platform_device ams_delta_kp_device = {
391 392 393 394 395 396 397 398 399
	.name		= "omap-keypad",
	.id		= -1,
	.dev		= {
		.platform_data = &ams_delta_kp_data,
	},
	.num_resources	= ARRAY_SIZE(ams_delta_kp_resources),
	.resource	= ams_delta_kp_resources,
};

400
static struct platform_device ams_delta_lcd_device = {
401 402 403 404
	.name	= "lcd_ams_delta",
	.id	= -1,
};

405 406 407 408 409 410 411 412
static struct gpiod_lookup_table ams_delta_lcd_gpio_table = {
	.table = {
		GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_LCD_VBLEN, "vblen", 0),
		GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_LCD_NDISP, "ndisp", 0),
		{ },
	},
};

413 414 415 416 417 418 419
/*
 * Dynamically allocated GPIO numbers must be obtained fromm GPIO device
 * before they can be put in the gpio_led table.  Before that happens,
 * initialize the table with invalid GPIO numbers, not 0.
 */
static struct gpio_led gpio_leds[] __initdata = {
	[LATCH1_PIN_LED_CAMERA] = {
420
		.name		 = "camera",
421
		.gpio		 = -EINVAL,
422 423 424 425 426
		.default_state	 = LEDS_GPIO_DEFSTATE_OFF,
#ifdef CONFIG_LEDS_TRIGGERS
		.default_trigger = "ams_delta_camera",
#endif
	},
427
	[LATCH1_PIN_LED_ADVERT] = {
428
		.name		 = "advert",
429
		.gpio		 = -EINVAL,
430 431
		.default_state	 = LEDS_GPIO_DEFSTATE_OFF,
	},
432
	[LATCH1_PIN_LED_MAIL] = {
433
		.name		 = "email",
434
		.gpio		 = -EINVAL,
435 436
		.default_state	 = LEDS_GPIO_DEFSTATE_OFF,
	},
437
	[LATCH1_PIN_LED_HANDSFREE] = {
438
		.name		 = "handsfree",
439
		.gpio		 = -EINVAL,
440 441
		.default_state	 = LEDS_GPIO_DEFSTATE_OFF,
	},
442
	[LATCH1_PIN_LED_VOICEMAIL] = {
443
		.name		 = "voicemail",
444
		.gpio		 = -EINVAL,
445 446
		.default_state	 = LEDS_GPIO_DEFSTATE_OFF,
	},
447
	[LATCH1_PIN_LED_VOICE] = {
448
		.name		 = "voice",
449
		.gpio		 = -EINVAL,
450 451 452 453
		.default_state	 = LEDS_GPIO_DEFSTATE_OFF,
	},
};

454
static const struct gpio_led_platform_data leds_pdata __initconst = {
455 456
	.leds		= gpio_leds,
	.num_leds	= ARRAY_SIZE(gpio_leds),
457 458
};

459 460 461 462 463 464
static struct i2c_board_info ams_delta_camera_board_info[] = {
	{
		I2C_BOARD_INFO("ov6650", 0x60),
	},
};

465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
#ifdef CONFIG_LEDS_TRIGGERS
DEFINE_LED_TRIGGER(ams_delta_camera_led_trigger);

static int ams_delta_camera_power(struct device *dev, int power)
{
	/*
	 * turn on camera LED
	 */
	if (power)
		led_trigger_event(ams_delta_camera_led_trigger, LED_FULL);
	else
		led_trigger_event(ams_delta_camera_led_trigger, LED_OFF);
	return 0;
}
#else
#define ams_delta_camera_power	NULL
#endif

483
static struct soc_camera_link ams_delta_iclink = {
484 485 486 487
	.bus_id         = 0,	/* OMAP1 SoC camera bus */
	.i2c_adapter_id = 1,
	.board_info     = &ams_delta_camera_board_info[0],
	.module_name    = "ov6650",
488
	.power		= ams_delta_camera_power,
489 490
};

491
static struct platform_device ams_delta_camera_device = {
492 493 494 495 496 497 498 499 500 501 502 503
	.name   = "soc-camera-pdrv",
	.id     = 0,
	.dev    = {
		.platform_data = &ams_delta_iclink,
	},
};

static struct omap1_cam_platform_data ams_delta_camera_platform_data = {
	.camexclk_khz	= 12000,	/* default 12MHz clock, no extra DPLL */
	.lclk_khz_max	= 1334,		/* results in 5fps CIF, 10fps QCIF */
};

504 505 506 507 508
static struct platform_device ams_delta_audio_device = {
	.name   = "ams-delta-audio",
	.id     = -1,
};

509 510 511 512 513 514 515 516 517 518
static struct gpiod_lookup_table ams_delta_audio_gpio_table = {
	.table = {
		GPIO_LOOKUP(OMAP_GPIO_LABEL, AMS_DELTA_GPIO_PIN_HOOK_SWITCH,
			    "hook_switch", 0),
		GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_MODEM_CODEC,
			    "modem_codec", 0),
		{ },
	},
};

519 520 521 522 523
static struct platform_device cx20442_codec_device = {
	.name   = "cx20442-codec",
	.id     = -1,
};

524 525 526 527 528 529 530 531 532 533 534 535 536
static struct resource ams_delta_serio_resources[] = {
	{
		.flags	= IORESOURCE_IRQ,
		/*
		 * Initialize IRQ resource with invalid IRQ number.
		 * It will be replaced with dynamically allocated GPIO IRQ
		 * obtained from GPIO chip as soon as the chip is available.
		 */
		.start	= -EINVAL,
		.end	= -EINVAL,
	},
};

537 538 539
static struct platform_device ams_delta_serio_device = {
	.name		= "ams-delta-serio",
	.id		= PLATFORM_DEVID_NONE,
540 541 542 543 544 545 546 547
	.dev		= {
		/*
		 * Initialize .platform_data explicitly with NULL to
		 * indicate it is going to be used.  It will be replaced
		 * with FIQ buffer address as soon as FIQ is initialized.
		 */
		.platform_data = NULL,
	},
548 549
	.num_resources	= ARRAY_SIZE(ams_delta_serio_resources),
	.resource	= ams_delta_serio_resources,
550 551
};

552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
static struct regulator_consumer_supply keybrd_pwr_consumers[] = {
	/*
	 * Initialize supply .dev_name with NULL.  It will be replaced
	 * with serio dev_name() as soon as the serio device is registered.
	 */
	REGULATOR_SUPPLY("vcc", NULL),
};

static struct regulator_init_data keybrd_pwr_initdata = {
	.constraints		= {
		.valid_ops_mask		= REGULATOR_CHANGE_STATUS,
	},
	.num_consumer_supplies	= ARRAY_SIZE(keybrd_pwr_consumers),
	.consumer_supplies	= keybrd_pwr_consumers,
};

static struct fixed_voltage_config keybrd_pwr_config = {
	.supply_name		= "keybrd_pwr",
	.microvolts		= 5000000,
	.gpio			= AMS_DELTA_GPIO_PIN_KEYBRD_PWR,
	.enable_high		= 1,
	.init_data		= &keybrd_pwr_initdata,
};

static struct platform_device keybrd_pwr_device = {
	.name	= "reg-fixed-voltage",
	.id	= PLATFORM_DEVID_AUTO,
	.dev	= {
		.platform_data	= &keybrd_pwr_config,
	},
};

static struct gpiod_lookup_table keybrd_pwr_gpio_table = {
	.table = {
		GPIO_LOOKUP(LATCH2_LABEL, LATCH2_PIN_KEYBRD_PWR, NULL,
			    GPIO_ACTIVE_HIGH),
		{ },
	},
};

592
static struct platform_device *ams_delta_devices[] __initdata = {
593 594
	&latch1_gpio_device,
	&latch2_gpio_device,
595
	&ams_delta_kp_device,
596
	&ams_delta_camera_device,
597
	&ams_delta_audio_device,
598
	&ams_delta_serio_device,
599
	&ams_delta_nand_device,
600
	&ams_delta_lcd_device,
601
	&cx20442_codec_device,
602 603
};

604 605
static struct gpiod_lookup_table *ams_delta_gpio_tables[] __initdata = {
	&ams_delta_audio_gpio_table,
606
	&keybrd_pwr_gpio_table,
607 608 609 610
	&ams_delta_lcd_gpio_table,
	&ams_delta_nand_gpio_table,
};

611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
/*
 * Some drivers may not use GPIO lookup tables but need to be provided
 * with GPIO numbers.  The same applies to GPIO based IRQ lines - some
 * drivers may even not use GPIO layer but expect just IRQ numbers.
 * We could either define GPIO lookup tables then use them on behalf
 * of those devices, or we can use GPIO driver level methods for
 * identification of GPIO and IRQ numbers. For the purpose of the latter,
 * defina a helper function which identifies GPIO chips by their labels.
 */
static int gpiochip_match_by_label(struct gpio_chip *chip, void *data)
{
	char *label = data;

	return !strcmp(label, chip->label);
}

627 628 629 630 631 632
static struct gpiod_hog ams_delta_gpio_hogs[] = {
	GPIO_HOG(LATCH2_LABEL, LATCH2_PIN_KEYBRD_DATAOUT, "keybrd_dataout",
		 GPIO_ACTIVE_HIGH, GPIOD_OUT_LOW),
	{},
};

633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
static struct plat_serial8250_port ams_delta_modem_ports[];

/*
 * Obtain MODEM IRQ GPIO descriptor using its hardware pin
 * number and assign related IRQ number to the MODEM port.
 * Keep the GPIO descriptor open so nobody steps in.
 */
static void __init modem_assign_irq(struct gpio_chip *chip)
{
	struct gpio_desc *gpiod;

	gpiod = gpiochip_request_own_desc(chip, AMS_DELTA_GPIO_PIN_MODEM_IRQ,
					  "modem_irq");
	if (IS_ERR(gpiod)) {
		pr_err("%s: modem IRQ GPIO request failed (%ld)\n", __func__,
		       PTR_ERR(gpiod));
	} else {
		gpiod_direction_input(gpiod);
		ams_delta_modem_ports[0].irq = gpiod_to_irq(gpiod);
	}
}

655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
/*
 * The purpose of this function is to take care of proper initialization of
 * devices and data structures which depend on GPIO lines provided by OMAP GPIO
 * banks but their drivers don't use GPIO lookup tables or GPIO layer at all.
 * The function may be called as soon as OMAP GPIO devices are probed.
 * Since that happens at postcore_initcall, it can be called successfully
 * from init_machine or later.
 * Dependent devices may be registered from within this function or later.
 */
static void __init omap_gpio_deps_init(void)
{
	struct gpio_chip *chip;

	chip = gpiochip_find(OMAP_GPIO_LABEL, gpiochip_match_by_label);
	if (!chip) {
		pr_err("%s: OMAP GPIO chip not found\n", __func__);
		return;
	}

674 675 676 677
	/*
	 * Start with FIQ initialization as it may have to request
	 * and release successfully each OMAP GPIO pin in turn.
	 */
678
	ams_delta_init_fiq(chip, &ams_delta_serio_device);
679 680

	modem_assign_irq(chip);
681 682
}

683 684
static void __init ams_delta_init(void)
{
685 686 687 688
	/* mux pins for uarts */
	omap_cfg_reg(UART1_TX);
	omap_cfg_reg(UART1_RTS);

689 690 691 692 693 694 695 696 697 698 699 700 701 702
	/* parallel camera interface */
	omap_cfg_reg(H19_1610_CAM_EXCLK);
	omap_cfg_reg(J15_1610_CAM_LCLK);
	omap_cfg_reg(L18_1610_CAM_VS);
	omap_cfg_reg(L15_1610_CAM_HS);
	omap_cfg_reg(L19_1610_CAM_D0);
	omap_cfg_reg(K14_1610_CAM_D1);
	omap_cfg_reg(K15_1610_CAM_D2);
	omap_cfg_reg(K19_1610_CAM_D3);
	omap_cfg_reg(K18_1610_CAM_D4);
	omap_cfg_reg(J14_1610_CAM_D5);
	omap_cfg_reg(J19_1610_CAM_D6);
	omap_cfg_reg(J18_1610_CAM_D7);

703
	omap_gpio_deps_init();
704 705
	gpiod_add_hogs(ams_delta_gpio_hogs);

706
	omap_serial_init();
707
	omap_register_i2c_bus(1, 100, NULL, 0);
708

709
	omap1_usb_init(&ams_delta_usb_config);
710
	omap1_set_camera_info(&ams_delta_camera_platform_data);
711 712 713 714
#ifdef CONFIG_LEDS_TRIGGERS
	led_trigger_register_simple("ams_delta_camera",
			&ams_delta_camera_led_trigger);
#endif
715
	platform_add_devices(ams_delta_devices, ARRAY_SIZE(ams_delta_devices));
716

717
	/*
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733
	 * As soon as regulator consumers have been registered, assign their
	 * dev_names to consumer supply entries of respective regulators.
	 */
	keybrd_pwr_consumers[0].dev_name =
			dev_name(&ams_delta_serio_device.dev);

	/*
	 * Once consumer supply entries are populated with dev_names,
	 * register regulator devices.  At this stage only the keyboard
	 * power regulator has its consumer supply table fully populated.
	 */
	platform_device_register(&keybrd_pwr_device);

	/*
	 * As soon as GPIO consumers have been registered, assign
	 * their dev_names to respective GPIO lookup tables.
734 735 736
	 */
	ams_delta_audio_gpio_table.dev_id =
			dev_name(&ams_delta_audio_device.dev);
737
	keybrd_pwr_gpio_table.dev_id = dev_name(&keybrd_pwr_device.dev);
738 739
	ams_delta_nand_gpio_table.dev_id = dev_name(&ams_delta_nand_device.dev);
	ams_delta_lcd_gpio_table.dev_id = dev_name(&ams_delta_lcd_device.dev);
740

741 742 743
	/*
	 * Once GPIO lookup tables are populated with dev_names, register them.
	 */
744 745 746
	gpiod_add_lookup_tables(ams_delta_gpio_tables,
				ARRAY_SIZE(ams_delta_gpio_tables));

747
	omap_writew(omap_readw(ARM_RSTCT1) | 0x0004, ARM_RSTCT1);
748 749

	omapfb_set_lcd_config(&ams_delta_lcd_config);
750 751
}

752 753 754
static void modem_pm(struct uart_port *port, unsigned int state, unsigned old)
{
	struct modem_private_data *priv = port->private_data;
755
	int ret;
756

757 758 759
	if (IS_ERR(priv->regulator))
		return;

760 761 762
	if (state == old)
		return;

763
	if (state == 0)
764
		ret = regulator_enable(priv->regulator);
765
	else if (old == 0)
766 767 768 769 770 771 772 773
		ret = regulator_disable(priv->regulator);
	else
		ret = 0;

	if (ret)
		dev_warn(port->dev,
			 "ams_delta modem_pm: failed to %sable regulator: %d\n",
			 state ? "dis" : "en", ret);
774 775
}

776 777
static struct plat_serial8250_port ams_delta_modem_ports[] = {
	{
778 779
		.membase	= IOMEM(MODEM_VIRT),
		.mapbase	= MODEM_PHYS,
780 781 782 783 784 785
		.irq		= -EINVAL, /* changed later */
		.flags		= UPF_BOOT_AUTOCONF,
		.irqflags	= IRQF_TRIGGER_RISING,
		.iotype		= UPIO_MEM,
		.regshift	= 1,
		.uartclk	= BASE_BAUD * 16,
786 787
		.pm		= modem_pm,
		.private_data	= &modem_priv,
788 789 790 791 792 793 794 795 796 797 798 799
	},
	{ },
};

static struct platform_device ams_delta_modem_device = {
	.name	= "serial8250",
	.id	= PLAT8250_DEV_PLATFORM1,
	.dev		= {
		.platform_data = ams_delta_modem_ports,
	},
};

800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840
/*
 * leds-gpio driver doesn't make use of GPIO lookup tables,
 * it has to be provided with GPIO numbers over platform data
 * if GPIO descriptor info can't be obtained from device tree.
 * We could either define GPIO lookup tables and use them on behalf
 * of the leds-gpio device, or we can use GPIO driver level methods
 * for identification of GPIO numbers as long as we don't support
 * device tree.  Let's do the latter.
 */
static void __init ams_delta_led_init(struct gpio_chip *chip)
{
	struct gpio_desc *gpiod;
	int i;

	for (i = LATCH1_PIN_LED_CAMERA; i < LATCH1_PIN_DOCKIT1; i++) {
		gpiod = gpiochip_request_own_desc(chip, i, NULL);
		if (IS_ERR(gpiod)) {
			pr_warn("%s: %s GPIO %d request failed (%ld)\n",
				__func__, LATCH1_LABEL, i, PTR_ERR(gpiod));
			continue;
		}

		/* Assign GPIO numbers to LED device. */
		gpio_leds[i].gpio = desc_to_gpio(gpiod);

		gpiochip_free_own_desc(gpiod);
	}

	gpio_led_register_device(PLATFORM_DEVID_NONE, &leds_pdata);
}

/*
 * The purpose of this function is to take care of assignment of GPIO numbers
 * to platform devices which depend on GPIO lines provided by Amstrad Delta
 * latch1 and/or latch2 GPIO devices but don't use GPIO lookup tables.
 * The function may be called as soon as latch1/latch2 GPIO devices are
 * initilized.  Since basic-mmio-gpio driver is not registered before
 * device_initcall, this may happen at erliest during device_initcall_sync.
 * Dependent devices shouldn't be registered before that, their
 * registration may be performed from within this function or later.
 */
841
static int __init ams_delta_gpio_init(void)
842
{
843
	struct gpio_chip *chip;
844 845
	int err;

846 847 848 849 850 851 852 853 854
	if (!machine_is_ams_delta())
		return -ENODEV;

	chip = gpiochip_find(LATCH1_LABEL, gpiochip_match_by_label);
	if (!chip)
		pr_err("%s: latch1 GPIO chip not found\n", __func__);
	else
		ams_delta_led_init(chip);

855
	err = gpio_request_array(latch_gpios, ARRAY_SIZE(latch_gpios));
856
	if (err)
857
		pr_err("Couldn't take over latch1/latch2 GPIO pins\n");
858

859 860
	return err;
}
861
device_initcall_sync(ams_delta_gpio_init);
862 863 864 865

static int __init modem_nreset_init(void)
{
	int err;
866

867
	err = platform_device_register(&modem_nreset_device);
868
	if (err)
869
		pr_err("Couldn't register the modem regulator device\n");
870 871 872 873 874

	return err;
}


875 876 877 878
/*
 * This function expects MODEM IRQ number already assigned to the port
 * and fails if it's not.
 */
879 880 881
static int __init ams_delta_modem_init(void)
{
	int err;
882

883 884
	if (ams_delta_modem_ports[0].irq < 0)
		return ams_delta_modem_ports[0].irq;
885

886
	omap_cfg_reg(M14_1510_GPIO2);
887

888 889 890
	/* Initialize the modem_nreset regulator consumer before use */
	modem_priv.regulator = ERR_PTR(-ENODEV);

891 892
	ams_delta_latch2_write(AMS_DELTA_LATCH2_MODEM_CODEC,
			AMS_DELTA_LATCH2_MODEM_CODEC);
893

894
	err = platform_device_register(&ams_delta_modem_device);
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909

	return err;
}

static int __init late_init(void)
{
	int err;

	err = modem_nreset_init();
	if (err)
		return err;

	err = ams_delta_modem_init();
	if (err)
		return err;
910

911 912 913 914 915 916 917 918 919 920
	/*
	 * Once the modem device is registered, the modem_nreset
	 * regulator can be requested on behalf of that device.
	 */
	modem_priv.regulator = regulator_get(&ams_delta_modem_device.dev,
			"RESET#");
	if (IS_ERR(modem_priv.regulator)) {
		err = PTR_ERR(modem_priv.regulator);
		goto unregister;
	}
921 922
	return 0;

923 924
unregister:
	platform_device_unregister(&ams_delta_modem_device);
925
	return err;
926
}
927 928 929 930 931 932

static void __init ams_delta_init_late(void)
{
	omap1_init_late();
	late_init();
}
933

934 935 936 937 938 939
static void __init ams_delta_map_io(void)
{
	omap15xx_map_io();
	iotable_init(ams_delta_io_desc, ARRAY_SIZE(ams_delta_io_desc));
}

940 941
MACHINE_START(AMS_DELTA, "Amstrad E3 (Delta)")
	/* Maintainer: Jonathan McDowell <noodles@earth.li> */
942
	.atag_offset	= 0x100,
943
	.map_io		= ams_delta_map_io,
944 945
	.init_early	= omap1_init_early,
	.init_irq	= omap1_init_irq,
946
	.handle_irq	= omap1_handle_irq,
947
	.init_machine	= ams_delta_init,
948
	.init_late	= ams_delta_init_late,
S
Stephen Warren 已提交
949
	.init_time	= omap1_timer_init,
950
	.restart	= omap1_restart,
951
MACHINE_END