2 * linux/arch/arm/mach-omap2/board-rx51-peripherals.c
4 * Copyright (C) 2008-2009 Nokia
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/input.h>
15 #include <linux/input/matrix_keypad.h>
16 #include <linux/spi/spi.h>
17 #include <linux/spi/wl12xx.h>
18 #include <linux/i2c.h>
19 #include <linux/i2c/twl.h>
20 #include <linux/clk.h>
21 #include <linux/delay.h>
22 #include <linux/regulator/machine.h>
23 #include <linux/gpio.h>
24 #include <linux/gpio_keys.h>
25 #include <linux/mmc/host.h>
27 #include <plat/mcspi.h>
29 #include <plat/board.h>
30 #include <plat/common.h>
32 #include <plat/gpmc.h>
33 #include <plat/onenand.h>
34 #include <plat/gpmc-smc91x.h>
37 #include "mmc-twl4030.h"
39 #define SYSTEM_REV_B_USES_VAUX3 0x1699
40 #define SYSTEM_REV_S_USES_VAUX3 0x8
42 #define RX51_WL1251_POWER_GPIO 87
43 #define RX51_WL1251_IRQ_GPIO 42
45 /* list all spi devices here */
50 static struct wl12xx_platform_data wl1251_pdata
;
52 static struct omap2_mcspi_device_config wl1251_mcspi_config
= {
57 static struct spi_board_info rx51_peripherals_spi_board_info
[] __initdata
= {
62 .max_speed_hz
= 48000000,
64 .controller_data
= &wl1251_mcspi_config
,
65 .platform_data
= &wl1251_pdata
,
69 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
71 #define RX51_GPIO_CAMERA_LENS_COVER 110
72 #define RX51_GPIO_CAMERA_FOCUS 68
73 #define RX51_GPIO_CAMERA_CAPTURE 69
74 #define RX51_GPIO_KEYPAD_SLIDE 71
75 #define RX51_GPIO_LOCK_BUTTON 113
76 #define RX51_GPIO_PROXIMITY 89
78 #define RX51_GPIO_DEBOUNCE_TIMEOUT 10
80 static struct gpio_keys_button rx51_gpio_keys
[] = {
82 .desc
= "Camera Lens Cover",
84 .code
= SW_CAMERA_LENS_COVER
,
85 .gpio
= RX51_GPIO_CAMERA_LENS_COVER
,
87 .debounce_interval
= RX51_GPIO_DEBOUNCE_TIMEOUT
,
89 .desc
= "Camera Focus",
91 .code
= KEY_CAMERA_FOCUS
,
92 .gpio
= RX51_GPIO_CAMERA_FOCUS
,
94 .debounce_interval
= RX51_GPIO_DEBOUNCE_TIMEOUT
,
96 .desc
= "Camera Capture",
99 .gpio
= RX51_GPIO_CAMERA_CAPTURE
,
101 .debounce_interval
= RX51_GPIO_DEBOUNCE_TIMEOUT
,
103 .desc
= "Lock Button",
105 .code
= KEY_SCREENLOCK
,
106 .gpio
= RX51_GPIO_LOCK_BUTTON
,
108 .debounce_interval
= RX51_GPIO_DEBOUNCE_TIMEOUT
,
110 .desc
= "Keypad Slide",
112 .code
= SW_KEYPAD_SLIDE
,
113 .gpio
= RX51_GPIO_KEYPAD_SLIDE
,
115 .debounce_interval
= RX51_GPIO_DEBOUNCE_TIMEOUT
,
117 .desc
= "Proximity Sensor",
119 .code
= SW_FRONT_PROXIMITY
,
120 .gpio
= RX51_GPIO_PROXIMITY
,
122 .debounce_interval
= RX51_GPIO_DEBOUNCE_TIMEOUT
,
126 static struct gpio_keys_platform_data rx51_gpio_keys_data
= {
127 .buttons
= rx51_gpio_keys
,
128 .nbuttons
= ARRAY_SIZE(rx51_gpio_keys
),
131 static struct platform_device rx51_gpio_keys_device
= {
135 .platform_data
= &rx51_gpio_keys_data
,
139 static void __init
rx51_add_gpio_keys(void)
141 platform_device_register(&rx51_gpio_keys_device
);
144 static void __init
rx51_add_gpio_keys(void)
147 #endif /* CONFIG_KEYBOARD_GPIO || CONFIG_KEYBOARD_GPIO_MODULE */
149 static int board_keymap
[] = {
153 KEY(0, 3, KEY_COMMA
),
154 KEY(0, 4, KEY_BACKSPACE
),
168 KEY(2, 3, KEY_ENTER
),
177 KEY(3, 5, KEY_SPACE
),
178 KEY(3, 6, KEY_SPACE
),
182 KEY(4, 2, KEY_RIGHT
),
183 KEY(4, 4, KEY_LEFTCTRL
),
184 KEY(4, 5, KEY_RIGHTALT
),
185 KEY(4, 6, KEY_LEFTSHIFT
),
191 KEY(0xff, 2, KEY_F9
),
192 KEY(0xff, 4, KEY_F10
),
193 KEY(0xff, 5, KEY_F11
),
196 static struct matrix_keymap_data board_map_data
= {
197 .keymap
= board_keymap
,
198 .keymap_size
= ARRAY_SIZE(board_keymap
),
201 static struct twl4030_keypad_data rx51_kp_data
= {
202 .keymap_data
= &board_map_data
,
208 static struct twl4030_madc_platform_data rx51_madc_data
= {
212 static struct twl4030_hsmmc_info mmc
[] = {
220 .power_saving
= true,
228 .nonremovable
= true,
229 .power_saving
= true,
234 static struct regulator_consumer_supply rx51_vmmc1_supply
= {
238 static struct regulator_consumer_supply rx51_vmmc2_supply
= {
242 static struct regulator_consumer_supply rx51_vsim_supply
= {
243 .supply
= "vmmc_aux",
246 static struct regulator_init_data rx51_vaux1
= {
251 .valid_modes_mask
= REGULATOR_MODE_NORMAL
252 | REGULATOR_MODE_STANDBY
,
253 .valid_ops_mask
= REGULATOR_CHANGE_MODE
254 | REGULATOR_CHANGE_STATUS
,
258 static struct regulator_init_data rx51_vaux2
= {
263 .valid_modes_mask
= REGULATOR_MODE_NORMAL
264 | REGULATOR_MODE_STANDBY
,
265 .valid_ops_mask
= REGULATOR_CHANGE_MODE
266 | REGULATOR_CHANGE_STATUS
,
270 /* VAUX3 - adds more power to VIO_18 rail */
271 static struct regulator_init_data rx51_vaux3_cam
= {
273 .name
= "VCAM_DIG_18",
277 .valid_modes_mask
= REGULATOR_MODE_NORMAL
278 | REGULATOR_MODE_STANDBY
,
279 .valid_ops_mask
= REGULATOR_CHANGE_MODE
280 | REGULATOR_CHANGE_STATUS
,
284 static struct regulator_init_data rx51_vaux3_mmc
= {
290 .valid_modes_mask
= REGULATOR_MODE_NORMAL
291 | REGULATOR_MODE_STANDBY
,
292 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
293 | REGULATOR_CHANGE_MODE
294 | REGULATOR_CHANGE_STATUS
,
296 .num_consumer_supplies
= 1,
297 .consumer_supplies
= &rx51_vmmc2_supply
,
300 static struct regulator_init_data rx51_vaux4
= {
302 .name
= "VCAM_ANA_28",
306 .valid_modes_mask
= REGULATOR_MODE_NORMAL
307 | REGULATOR_MODE_STANDBY
,
308 .valid_ops_mask
= REGULATOR_CHANGE_MODE
309 | REGULATOR_CHANGE_STATUS
,
313 static struct regulator_init_data rx51_vmmc1
= {
317 .valid_modes_mask
= REGULATOR_MODE_NORMAL
318 | REGULATOR_MODE_STANDBY
,
319 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
320 | REGULATOR_CHANGE_MODE
321 | REGULATOR_CHANGE_STATUS
,
323 .num_consumer_supplies
= 1,
324 .consumer_supplies
= &rx51_vmmc1_supply
,
327 static struct regulator_init_data rx51_vmmc2
= {
333 .valid_modes_mask
= REGULATOR_MODE_NORMAL
334 | REGULATOR_MODE_STANDBY
,
335 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
336 | REGULATOR_CHANGE_MODE
337 | REGULATOR_CHANGE_STATUS
,
339 .num_consumer_supplies
= 1,
340 .consumer_supplies
= &rx51_vmmc2_supply
,
343 static struct regulator_init_data rx51_vsim
= {
345 .name
= "VMMC2_IO_18",
349 .valid_modes_mask
= REGULATOR_MODE_NORMAL
350 | REGULATOR_MODE_STANDBY
,
351 .valid_ops_mask
= REGULATOR_CHANGE_MODE
352 | REGULATOR_CHANGE_STATUS
,
354 .num_consumer_supplies
= 1,
355 .consumer_supplies
= &rx51_vsim_supply
,
358 static struct regulator_init_data rx51_vdac
= {
362 .valid_modes_mask
= REGULATOR_MODE_NORMAL
363 | REGULATOR_MODE_STANDBY
,
364 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
365 | REGULATOR_CHANGE_MODE
366 | REGULATOR_CHANGE_STATUS
,
370 static int rx51_twlgpio_setup(struct device
*dev
, unsigned gpio
, unsigned n
)
372 /* FIXME this gpio setup is just a placeholder for now */
373 gpio_request(gpio
+ 6, "backlight_pwm");
374 gpio_direction_output(gpio
+ 6, 0);
375 gpio_request(gpio
+ 7, "speaker_en");
376 gpio_direction_output(gpio
+ 7, 1);
378 /* set up MMC adapters, linking their regulators to them */
379 twl4030_mmc_init(mmc
);
380 rx51_vmmc1_supply
.dev
= mmc
[0].dev
;
381 rx51_vmmc2_supply
.dev
= mmc
[1].dev
;
382 rx51_vsim_supply
.dev
= mmc
[1].dev
;
387 static struct twl4030_gpio_platform_data rx51_gpio_data
= {
388 .gpio_base
= OMAP_MAX_GPIO_LINES
,
389 .irq_base
= TWL4030_GPIO_IRQ_BASE
,
390 .irq_end
= TWL4030_GPIO_IRQ_END
,
391 .pulldowns
= BIT(0) | BIT(1) | BIT(2) | BIT(3)
393 | BIT(8) | BIT(9) | BIT(10) | BIT(11)
394 | BIT(12) | BIT(13) | BIT(14) | BIT(15)
395 | BIT(16) | BIT(17) ,
396 .setup
= rx51_twlgpio_setup
,
399 static struct twl4030_usb_data rx51_usb_data
= {
400 .usb_mode
= T2_USB_MODE_ULPI
,
403 static struct twl4030_ins sleep_on_seq
[] __initdata
= {
405 * Turn off everything
407 {MSG_BROADCAST(DEV_GRP_NULL
, RES_GRP_ALL
, 1, 0, RES_STATE_SLEEP
), 2},
410 static struct twl4030_script sleep_on_script __initdata
= {
411 .script
= sleep_on_seq
,
412 .size
= ARRAY_SIZE(sleep_on_seq
),
413 .flags
= TWL4030_SLEEP_SCRIPT
,
416 static struct twl4030_ins wakeup_seq
[] __initdata
= {
418 * Reenable everything
420 {MSG_BROADCAST(DEV_GRP_NULL
, RES_GRP_ALL
, 1, 0, RES_STATE_ACTIVE
), 2},
423 static struct twl4030_script wakeup_script __initdata
= {
424 .script
= wakeup_seq
,
425 .size
= ARRAY_SIZE(wakeup_seq
),
426 .flags
= TWL4030_WAKEUP12_SCRIPT
,
429 static struct twl4030_ins wakeup_p3_seq
[] __initdata
= {
431 * Reenable everything
433 {MSG_BROADCAST(DEV_GRP_NULL
, RES_GRP_ALL
, 1, 0, RES_STATE_ACTIVE
), 2},
436 static struct twl4030_script wakeup_p3_script __initdata
= {
437 .script
= wakeup_p3_seq
,
438 .size
= ARRAY_SIZE(wakeup_p3_seq
),
439 .flags
= TWL4030_WAKEUP3_SCRIPT
,
442 static struct twl4030_ins wrst_seq
[] __initdata
= {
445 * Reset VDD1 regulator.
446 * Reset VDD2 regulator.
447 * Reset VPLL1 regulator.
448 * Enable sysclk output.
451 {MSG_SINGULAR(DEV_GRP_NULL
, RES_RESET
, RES_STATE_OFF
), 2},
452 {MSG_BROADCAST(DEV_GRP_NULL
, RES_GRP_ALL
, 0, 1, RES_STATE_ACTIVE
),
454 {MSG_BROADCAST(DEV_GRP_NULL
, RES_GRP_PP
, 0, 3, RES_STATE_OFF
), 0x13},
455 {MSG_SINGULAR(DEV_GRP_NULL
, RES_VDD1
, RES_STATE_WRST
), 0x13},
456 {MSG_SINGULAR(DEV_GRP_NULL
, RES_VDD2
, RES_STATE_WRST
), 0x13},
457 {MSG_SINGULAR(DEV_GRP_NULL
, RES_VPLL1
, RES_STATE_WRST
), 0x35},
458 {MSG_SINGULAR(DEV_GRP_P3
, RES_HFCLKOUT
, RES_STATE_ACTIVE
), 2},
459 {MSG_SINGULAR(DEV_GRP_NULL
, RES_RESET
, RES_STATE_ACTIVE
), 2},
462 static struct twl4030_script wrst_script __initdata
= {
464 .size
= ARRAY_SIZE(wrst_seq
),
465 .flags
= TWL4030_WRST_SCRIPT
,
468 static struct twl4030_script
*twl4030_scripts
[] __initdata
= {
469 /* wakeup12 script should be loaded before sleep script, otherwise a
470 board might hit retention before loading of wakeup script is
471 completed. This can cause boot failures depending on timing issues.
479 static struct twl4030_resconfig twl4030_rconfig
[] __initdata
= {
480 { .resource
= RES_VDD1
, .devgroup
= -1,
481 .type
= 1, .type2
= -1, .remap_off
= RES_STATE_OFF
,
482 .remap_sleep
= RES_STATE_OFF
484 { .resource
= RES_VDD2
, .devgroup
= -1,
485 .type
= 1, .type2
= -1, .remap_off
= RES_STATE_OFF
,
486 .remap_sleep
= RES_STATE_OFF
488 { .resource
= RES_VPLL1
, .devgroup
= -1,
489 .type
= 1, .type2
= -1, .remap_off
= RES_STATE_OFF
,
490 .remap_sleep
= RES_STATE_OFF
492 { .resource
= RES_VPLL2
, .devgroup
= -1,
493 .type
= -1, .type2
= 3, .remap_off
= -1, .remap_sleep
= -1
495 { .resource
= RES_VAUX1
, .devgroup
= -1,
496 .type
= -1, .type2
= 3, .remap_off
= -1, .remap_sleep
= -1
498 { .resource
= RES_VAUX2
, .devgroup
= -1,
499 .type
= -1, .type2
= 3, .remap_off
= -1, .remap_sleep
= -1
501 { .resource
= RES_VAUX3
, .devgroup
= -1,
502 .type
= -1, .type2
= 3, .remap_off
= -1, .remap_sleep
= -1
504 { .resource
= RES_VAUX4
, .devgroup
= -1,
505 .type
= -1, .type2
= 3, .remap_off
= -1, .remap_sleep
= -1
507 { .resource
= RES_VMMC1
, .devgroup
= -1,
508 .type
= -1, .type2
= 3, .remap_off
= -1, .remap_sleep
= -1
510 { .resource
= RES_VMMC2
, .devgroup
= -1,
511 .type
= -1, .type2
= 3, .remap_off
= -1, .remap_sleep
= -1
513 { .resource
= RES_VDAC
, .devgroup
= -1,
514 .type
= -1, .type2
= 3, .remap_off
= -1, .remap_sleep
= -1
516 { .resource
= RES_VSIM
, .devgroup
= -1,
517 .type
= -1, .type2
= 3, .remap_off
= -1, .remap_sleep
= -1
519 { .resource
= RES_VINTANA1
, .devgroup
= DEV_GRP_P1
| DEV_GRP_P3
,
520 .type
= -1, .type2
= -1, .remap_off
= -1, .remap_sleep
= -1
522 { .resource
= RES_VINTANA2
, .devgroup
= DEV_GRP_P1
| DEV_GRP_P3
,
523 .type
= 1, .type2
= -1, .remap_off
= -1, .remap_sleep
= -1
525 { .resource
= RES_VINTDIG
, .devgroup
= DEV_GRP_P1
| DEV_GRP_P3
,
526 .type
= -1, .type2
= -1, .remap_off
= -1, .remap_sleep
= -1
528 { .resource
= RES_VIO
, .devgroup
= DEV_GRP_P3
,
529 .type
= 1, .type2
= -1, .remap_off
= -1, .remap_sleep
= -1
531 { .resource
= RES_CLKEN
, .devgroup
= DEV_GRP_P1
| DEV_GRP_P3
,
532 .type
= 1, .type2
= -1 , .remap_off
= -1, .remap_sleep
= -1
534 { .resource
= RES_REGEN
, .devgroup
= DEV_GRP_P1
| DEV_GRP_P3
,
535 .type
= 1, .type2
= -1, .remap_off
= -1, .remap_sleep
= -1
537 { .resource
= RES_NRES_PWRON
, .devgroup
= DEV_GRP_P1
| DEV_GRP_P3
,
538 .type
= 1, .type2
= -1, .remap_off
= -1, .remap_sleep
= -1
540 { .resource
= RES_SYSEN
, .devgroup
= DEV_GRP_P1
| DEV_GRP_P3
,
541 .type
= 1, .type2
= -1, .remap_off
= -1, .remap_sleep
= -1
543 { .resource
= RES_HFCLKOUT
, .devgroup
= DEV_GRP_P3
,
544 .type
= 1, .type2
= -1, .remap_off
= -1, .remap_sleep
= -1
546 { .resource
= RES_32KCLKOUT
, .devgroup
= -1,
547 .type
= 1, .type2
= -1, .remap_off
= -1, .remap_sleep
= -1
549 { .resource
= RES_RESET
, .devgroup
= -1,
550 .type
= 1, .type2
= -1, .remap_off
= -1, .remap_sleep
= -1
552 { .resource
= RES_Main_Ref
, .devgroup
= -1,
553 .type
= 1, .type2
= -1, .remap_off
= -1, .remap_sleep
= -1
558 static struct twl4030_power_data rx51_t2scripts_data __initdata
= {
559 .scripts
= twl4030_scripts
,
560 .num
= ARRAY_SIZE(twl4030_scripts
),
561 .resource_config
= twl4030_rconfig
,
566 static struct twl4030_platform_data rx51_twldata __initdata
= {
567 .irq_base
= TWL4030_IRQ_BASE
,
568 .irq_end
= TWL4030_IRQ_END
,
570 /* platform_data for children goes here */
571 .gpio
= &rx51_gpio_data
,
572 .keypad
= &rx51_kp_data
,
573 .madc
= &rx51_madc_data
,
574 .usb
= &rx51_usb_data
,
575 .power
= &rx51_t2scripts_data
,
577 .vaux1
= &rx51_vaux1
,
578 .vaux2
= &rx51_vaux2
,
579 .vaux4
= &rx51_vaux4
,
580 .vmmc1
= &rx51_vmmc1
,
585 static struct i2c_board_info __initdata rx51_peripherals_i2c_board_info_1
[] = {
587 I2C_BOARD_INFO("twl5030", 0x48),
588 .flags
= I2C_CLIENT_WAKE
,
589 .irq
= INT_34XX_SYS_NIRQ
,
590 .platform_data
= &rx51_twldata
,
594 static int __init
rx51_i2c_init(void)
596 if ((system_rev
>= SYSTEM_REV_S_USES_VAUX3
&& system_rev
< 0x100) ||
597 system_rev
>= SYSTEM_REV_B_USES_VAUX3
)
598 rx51_twldata
.vaux3
= &rx51_vaux3_mmc
;
600 rx51_twldata
.vaux3
= &rx51_vaux3_cam
;
601 rx51_twldata
.vmmc2
= &rx51_vmmc2
;
603 omap_register_i2c_bus(1, 2200, rx51_peripherals_i2c_board_info_1
,
604 ARRAY_SIZE(rx51_peripherals_i2c_board_info_1
));
605 omap_register_i2c_bus(2, 100, NULL
, 0);
606 omap_register_i2c_bus(3, 400, NULL
, 0);
610 #if defined(CONFIG_MTD_ONENAND_OMAP2) || \
611 defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
613 static struct mtd_partition onenand_partitions
[] = {
615 .name
= "bootloader",
618 .mask_flags
= MTD_WRITEABLE
, /* Force read-only */
622 .offset
= MTDPART_OFS_APPEND
,
627 .offset
= MTDPART_OFS_APPEND
,
632 .offset
= MTDPART_OFS_APPEND
,
637 .offset
= MTDPART_OFS_APPEND
,
642 .offset
= MTDPART_OFS_APPEND
,
643 .size
= MTDPART_SIZ_FULL
,
647 static struct omap_onenand_platform_data board_onenand_data
= {
650 .parts
= onenand_partitions
,
651 .nr_parts
= ARRAY_SIZE(onenand_partitions
),
652 .flags
= ONENAND_SYNC_READWRITE
,
655 static void __init
board_onenand_init(void)
657 gpmc_onenand_init(&board_onenand_data
);
662 static inline void board_onenand_init(void)
668 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
670 static struct omap_smc91x_platform_data board_smc91x_data
= {
675 .flags
= GPMC_TIMINGS_SMC91C96
| IORESOURCE_IRQ_HIGHLEVEL
,
678 static void __init
board_smc91x_init(void)
680 omap_mux_init_gpio(54, OMAP_PIN_INPUT_PULLDOWN
);
681 omap_mux_init_gpio(86, OMAP_PIN_OUTPUT
);
682 omap_mux_init_gpio(164, OMAP_PIN_OUTPUT
);
684 gpmc_smc91x_init(&board_smc91x_data
);
689 static inline void board_smc91x_init(void)
695 static void rx51_wl1251_set_power(bool enable
)
697 gpio_set_value(RX51_WL1251_POWER_GPIO
, enable
);
700 static void __init
rx51_init_wl1251(void)
704 ret
= gpio_request(RX51_WL1251_POWER_GPIO
, "wl1251 power");
708 ret
= gpio_direction_output(RX51_WL1251_POWER_GPIO
, 0);
712 ret
= gpio_request(RX51_WL1251_IRQ_GPIO
, "wl1251 irq");
716 ret
= gpio_direction_input(RX51_WL1251_IRQ_GPIO
);
720 irq
= gpio_to_irq(RX51_WL1251_IRQ_GPIO
);
724 wl1251_pdata
.set_power
= rx51_wl1251_set_power
;
725 rx51_peripherals_spi_board_info
[RX51_SPI_WL1251
].irq
= irq
;
730 gpio_free(RX51_WL1251_IRQ_GPIO
);
733 gpio_free(RX51_WL1251_POWER_GPIO
);
736 printk(KERN_ERR
"wl1251 board initialisation failed\n");
737 wl1251_pdata
.set_power
= NULL
;
740 * Now rx51_peripherals_spi_board_info[1].irq is zero and
741 * set_power is null, and wl1251_probe() will fail.
745 void __init
rx51_peripherals_init(void)
748 board_onenand_init();
750 rx51_add_gpio_keys();
752 spi_register_board_info(rx51_peripherals_spi_board_info
,
753 ARRAY_SIZE(rx51_peripherals_spi_board_info
));