2 * linux/arch/arm/mach-omap2/board-n8x0.c
4 * Copyright (C) 2005-2009 Nokia Corporation
5 * Author: Juha Yrjola <juha.yrjola@nokia.com>
7 * Modified from mach-omap2/board-generic.c
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/clk.h>
15 #include <linux/delay.h>
16 #include <linux/gpio.h>
17 #include <linux/init.h>
19 #include <linux/stddef.h>
20 #include <linux/i2c.h>
21 #include <linux/spi/spi.h>
22 #include <linux/usb/musb.h>
23 #include <sound/tlv320aic3x.h>
25 #include <asm/mach/arch.h>
26 #include <asm/mach-types.h>
28 #include <plat/board.h>
29 #include <plat/common.h>
30 #include <plat/menelaus.h>
31 #include <mach/irqs.h>
32 #include <plat/mcspi.h>
33 #include <plat/onenand.h>
35 #include <plat/serial.h>
39 static int slot1_cover_open
;
40 static int slot2_cover_open
;
41 static struct device
*mmc_device
;
43 #define TUSB6010_ASYNC_CS 1
44 #define TUSB6010_SYNC_CS 4
45 #define TUSB6010_GPIO_INT 58
46 #define TUSB6010_GPIO_ENABLE 0
47 #define TUSB6010_DMACHAN 0x3f
49 #ifdef CONFIG_USB_MUSB_TUSB6010
51 * Enable or disable power to TUSB6010. When enabling, turn on 3.3 V and
52 * 1.5 V voltage regulators of PM companion chip. Companion chip will then
53 * provide then PGOOD signal to TUSB6010 which will release it from reset.
55 static int tusb_set_power(int state
)
60 gpio_set_value(TUSB6010_GPIO_ENABLE
, 1);
63 /* Wait until TUSB6010 pulls INT pin down */
65 while (i
&& gpio_get_value(TUSB6010_GPIO_INT
)) {
71 printk(KERN_ERR
"tusb: powerup failed\n");
75 gpio_set_value(TUSB6010_GPIO_ENABLE
, 0);
82 static struct musb_hdrc_config musb_config
= {
89 static struct musb_hdrc_platform_data tusb_data
= {
90 #if defined(CONFIG_USB_MUSB_OTG)
92 #elif defined(CONFIG_USB_MUSB_PERIPHERAL)
93 .mode
= MUSB_PERIPHERAL
,
94 #else /* defined(CONFIG_USB_MUSB_HOST) */
97 .set_power
= tusb_set_power
,
98 .min_power
= 25, /* x2 = 50 mA drawn from VBUS as peripheral */
99 .power
= 100, /* Max 100 mA VBUS for host mode */
100 .config
= &musb_config
,
103 static void __init
n8x0_usb_init(void)
106 static char announce
[] __initdata
= KERN_INFO
"TUSB 6010\n";
108 /* PM companion chip power control pin */
109 ret
= gpio_request_one(TUSB6010_GPIO_ENABLE
, GPIOF_OUT_INIT_LOW
,
112 printk(KERN_ERR
"Could not get TUSB power GPIO%i\n",
113 TUSB6010_GPIO_ENABLE
);
118 ret
= tusb6010_setup_interface(&tusb_data
, TUSB6010_REFCLK_19
, 2,
119 TUSB6010_ASYNC_CS
, TUSB6010_SYNC_CS
,
120 TUSB6010_GPIO_INT
, TUSB6010_DMACHAN
);
129 gpio_free(TUSB6010_GPIO_ENABLE
);
133 static void __init
n8x0_usb_init(void) {}
135 #endif /*CONFIG_USB_MUSB_TUSB6010 */
138 static struct omap2_mcspi_device_config p54spi_mcspi_config
= {
143 static struct spi_board_info n800_spi_board_info
[] __initdata
= {
145 .modalias
= "p54spi",
148 .max_speed_hz
= 48000000,
149 .controller_data
= &p54spi_mcspi_config
,
153 #if defined(CONFIG_MTD_ONENAND_OMAP2) || \
154 defined(CONFIG_MTD_ONENAND_OMAP2_MODULE)
156 static struct mtd_partition onenand_partitions
[] = {
158 .name
= "bootloader",
161 .mask_flags
= MTD_WRITEABLE
, /* Force read-only */
165 .offset
= MTDPART_OFS_APPEND
,
170 .offset
= MTDPART_OFS_APPEND
,
175 .offset
= MTDPART_OFS_APPEND
,
180 .offset
= MTDPART_OFS_APPEND
,
181 .size
= MTDPART_SIZ_FULL
,
185 static struct omap_onenand_platform_data board_onenand_data
[] = {
189 .parts
= onenand_partitions
,
190 .nr_parts
= ARRAY_SIZE(onenand_partitions
),
191 .flags
= ONENAND_SYNC_READ
,
196 #if defined(CONFIG_MENELAUS) && \
197 (defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE))
200 * On both N800 and N810, only the first of the two MMC controllers is in use.
201 * The two MMC slots are multiplexed via Menelaus companion chip over I2C.
202 * On N800, both slots are powered via Menelaus. On N810, only one of the
203 * slots is powered via Menelaus. The N810 EMMC is powered via GPIO.
205 * VMMC slot 1 on both N800 and N810
206 * VDCDC3_APE and VMCS2_APE slot 2 on N800
207 * GPIO23 and GPIO9 slot 2 EMMC on N810
210 #define N8X0_SLOT_SWITCH_GPIO 96
211 #define N810_EMMC_VSD_GPIO 23
212 #define N810_EMMC_VIO_GPIO 9
214 static int n8x0_mmc_switch_slot(struct device
*dev
, int slot
)
216 #ifdef CONFIG_MMC_DEBUG
217 dev_dbg(dev
, "Choose slot %d\n", slot
+ 1);
219 gpio_set_value(N8X0_SLOT_SWITCH_GPIO
, slot
);
223 static int n8x0_mmc_set_power_menelaus(struct device
*dev
, int slot
,
224 int power_on
, int vdd
)
228 #ifdef CONFIG_MMC_DEBUG
229 dev_dbg(dev
, "Set slot %d power: %s (vdd %d)\n", slot
+ 1,
230 power_on
? "on" : "off", vdd
);
234 return menelaus_set_vmmc(0);
247 case MMC_VDD_165_195
:
253 return menelaus_set_vmmc(mV
);
256 return menelaus_set_vdcdc(3, 0);
281 case MMC_VDD_165_195
:
287 return menelaus_set_vdcdc(3, mV
);
292 static void n810_set_power_emmc(struct device
*dev
,
295 dev_dbg(dev
, "Set EMMC power %s\n", power_on
? "on" : "off");
298 gpio_set_value(N810_EMMC_VSD_GPIO
, 1);
300 gpio_set_value(N810_EMMC_VIO_GPIO
, 1);
303 gpio_set_value(N810_EMMC_VIO_GPIO
, 0);
305 gpio_set_value(N810_EMMC_VSD_GPIO
, 0);
310 static int n8x0_mmc_set_power(struct device
*dev
, int slot
, int power_on
,
313 if (machine_is_nokia_n800() || slot
== 0)
314 return n8x0_mmc_set_power_menelaus(dev
, slot
, power_on
, vdd
);
316 n810_set_power_emmc(dev
, power_on
);
321 static int n8x0_mmc_set_bus_mode(struct device
*dev
, int slot
, int bus_mode
)
325 dev_dbg(dev
, "Set slot %d bus mode %s\n", slot
+ 1,
326 bus_mode
== MMC_BUSMODE_OPENDRAIN
? "open-drain" : "push-pull");
327 BUG_ON(slot
!= 0 && slot
!= 1);
330 case MMC_BUSMODE_OPENDRAIN
:
331 r
= menelaus_set_mmc_opendrain(slot
, 1);
333 case MMC_BUSMODE_PUSHPULL
:
334 r
= menelaus_set_mmc_opendrain(slot
, 0);
339 if (r
!= 0 && printk_ratelimit())
340 dev_err(dev
, "MMC: unable to set bus mode for slot %d\n",
345 static int n8x0_mmc_get_cover_state(struct device
*dev
, int slot
)
348 BUG_ON(slot
!= 1 && slot
!= 2);
350 return slot1_cover_open
;
352 return slot2_cover_open
;
355 static void n8x0_mmc_callback(void *data
, u8 card_mask
)
357 int bit
, *openp
, index
;
359 if (machine_is_nokia_n800()) {
361 openp
= &slot2_cover_open
;
365 openp
= &slot1_cover_open
;
374 omap_mmc_notify_cover_event(mmc_device
, index
, *openp
);
377 static int n8x0_mmc_late_init(struct device
*dev
)
384 r
= menelaus_set_slot_sel(1);
388 if (machine_is_nokia_n800())
393 r
= menelaus_set_mmc_slot(2, 0, vs2sel
, 1);
397 n8x0_mmc_set_power(dev
, 0, MMC_POWER_ON
, 16); /* MMC_VDD_28_29 */
398 n8x0_mmc_set_power(dev
, 1, MMC_POWER_ON
, 16);
400 r
= menelaus_set_mmc_slot(1, 1, 0, 1);
403 r
= menelaus_set_mmc_slot(2, 1, vs2sel
, 1);
407 r
= menelaus_get_slot_pin_states();
411 if (machine_is_nokia_n800()) {
413 openp
= &slot2_cover_open
;
416 openp
= &slot1_cover_open
;
417 slot2_cover_open
= 0;
420 /* All slot pin bits seem to be inversed until first switch change */
421 if (r
== 0xf || r
== (0xf & ~bit
))
429 r
= menelaus_register_mmc_callback(n8x0_mmc_callback
, NULL
);
434 static void n8x0_mmc_shutdown(struct device
*dev
)
438 if (machine_is_nokia_n800())
443 menelaus_set_mmc_slot(1, 0, 0, 0);
444 menelaus_set_mmc_slot(2, 0, vs2sel
, 0);
447 static void n8x0_mmc_cleanup(struct device
*dev
)
449 menelaus_unregister_mmc_callback();
451 gpio_free(N8X0_SLOT_SWITCH_GPIO
);
453 if (machine_is_nokia_n810()) {
454 gpio_free(N810_EMMC_VSD_GPIO
);
455 gpio_free(N810_EMMC_VIO_GPIO
);
460 * MMC controller1 has two slots that are multiplexed via I2C.
461 * MMC controller2 is not in use.
463 static struct omap_mmc_platform_data mmc1_data
= {
465 .switch_slot
= n8x0_mmc_switch_slot
,
466 .init
= n8x0_mmc_late_init
,
467 .cleanup
= n8x0_mmc_cleanup
,
468 .shutdown
= n8x0_mmc_shutdown
,
469 .max_freq
= 24000000,
470 .dma_mask
= 0xffffffff,
473 .set_power
= n8x0_mmc_set_power
,
474 .set_bus_mode
= n8x0_mmc_set_bus_mode
,
475 .get_cover_state
= n8x0_mmc_get_cover_state
,
476 .ocr_mask
= MMC_VDD_165_195
| MMC_VDD_30_31
|
477 MMC_VDD_32_33
| MMC_VDD_33_34
,
481 .set_power
= n8x0_mmc_set_power
,
482 .set_bus_mode
= n8x0_mmc_set_bus_mode
,
483 .get_cover_state
= n8x0_mmc_get_cover_state
,
484 .ocr_mask
= MMC_VDD_165_195
| MMC_VDD_20_21
|
485 MMC_VDD_21_22
| MMC_VDD_22_23
|
486 MMC_VDD_23_24
| MMC_VDD_24_25
|
487 MMC_VDD_27_28
| MMC_VDD_28_29
|
488 MMC_VDD_29_30
| MMC_VDD_30_31
|
489 MMC_VDD_32_33
| MMC_VDD_33_34
,
494 static struct omap_mmc_platform_data
*mmc_data
[OMAP24XX_NR_MMC
];
496 static struct gpio n810_emmc_gpios
[] __initdata
= {
497 { N810_EMMC_VSD_GPIO
, GPIOF_OUT_INIT_LOW
, "MMC slot 2 Vddf" },
498 { N810_EMMC_VIO_GPIO
, GPIOF_OUT_INIT_LOW
, "MMC slot 2 Vdd" },
501 static void __init
n8x0_mmc_init(void)
505 if (machine_is_nokia_n810()) {
506 mmc1_data
.slots
[0].name
= "external";
509 * Some Samsung Movinand chips do not like open-ended
510 * multi-block reads and fall to braind-dead state
511 * while doing so. Reducing the number of blocks in
512 * the transfer or delays in clock disable do not help
514 mmc1_data
.slots
[1].name
= "internal";
515 mmc1_data
.slots
[1].ban_openended
= 1;
518 err
= gpio_request_one(N8X0_SLOT_SWITCH_GPIO
, GPIOF_OUT_INIT_LOW
,
523 if (machine_is_nokia_n810()) {
524 err
= gpio_request_array(n810_emmc_gpios
,
525 ARRAY_SIZE(n810_emmc_gpios
));
527 gpio_free(N8X0_SLOT_SWITCH_GPIO
);
532 mmc_data
[0] = &mmc1_data
;
533 omap242x_init_mmc(mmc_data
);
537 void __init
n8x0_mmc_init(void)
540 #endif /* CONFIG_MMC_OMAP */
542 #ifdef CONFIG_MENELAUS
544 static int n8x0_auto_sleep_regulators(void)
549 val
= EN_VPLL_SLEEP
| EN_VMMC_SLEEP \
550 | EN_VAUX_SLEEP
| EN_VIO_SLEEP \
551 | EN_VMEM_SLEEP
| EN_DC3_SLEEP \
552 | EN_VC_SLEEP
| EN_DC2_SLEEP
;
554 ret
= menelaus_set_regulator_sleep(1, val
);
556 printk(KERN_ERR
"Could not set regulators to sleep on "
557 "menelaus: %u\n", ret
);
563 static int n8x0_auto_voltage_scale(void)
567 ret
= menelaus_set_vcore_hw(1400, 1050);
569 printk(KERN_ERR
"Could not set VCORE voltage on "
570 "menelaus: %u\n", ret
);
576 static int n8x0_menelaus_late_init(struct device
*dev
)
580 ret
= n8x0_auto_voltage_scale();
583 ret
= n8x0_auto_sleep_regulators();
590 static int n8x0_menelaus_late_init(struct device
*dev
)
596 static struct menelaus_platform_data n8x0_menelaus_platform_data __initdata
= {
597 .late_init
= n8x0_menelaus_late_init
,
600 static struct i2c_board_info __initdata n8x0_i2c_board_info_1
[] __initdata
= {
602 I2C_BOARD_INFO("menelaus", 0x72),
603 .irq
= INT_24XX_SYS_NIRQ
,
604 .platform_data
= &n8x0_menelaus_platform_data
,
608 static struct aic3x_pdata n810_aic33_data __initdata
= {
612 static struct i2c_board_info n810_i2c_board_info_2
[] __initdata
= {
614 I2C_BOARD_INFO("tlv320aic3x", 0x18),
615 .platform_data
= &n810_aic33_data
,
619 static void __init
n8x0_map_io(void)
621 omap2_set_globals_242x();
622 omap242x_map_common_io();
625 static void __init
n8x0_init_early(void)
627 omap2_init_common_infrastructure();
628 omap2_init_common_devices(NULL
, NULL
);
631 #ifdef CONFIG_OMAP_MUX
632 static struct omap_board_mux board_mux
[] __initdata
= {
633 /* I2S codec port pins for McBSP block */
634 OMAP2420_MUX(EAC_AC_SCLK
, OMAP_MUX_MODE1
| OMAP_PIN_INPUT
),
635 OMAP2420_MUX(EAC_AC_FS
, OMAP_MUX_MODE1
| OMAP_PIN_INPUT
),
636 OMAP2420_MUX(EAC_AC_DIN
, OMAP_MUX_MODE1
| OMAP_PIN_INPUT
),
637 OMAP2420_MUX(EAC_AC_DOUT
, OMAP_MUX_MODE1
| OMAP_PIN_OUTPUT
),
638 { .reg_offset
= OMAP_MUX_TERMINATOR
},
641 static struct omap_device_pad serial2_pads
[] __initdata
= {
643 .name
= "uart3_rx_irrx.uart3_rx_irrx",
644 .flags
= OMAP_DEVICE_PAD_REMUX
| OMAP_DEVICE_PAD_WAKEUP
,
645 .enable
= OMAP_MUX_MODE0
,
646 .idle
= OMAP_MUX_MODE3
/* Mux as GPIO for idle */
650 static inline void board_serial_init(void)
652 struct omap_board_data bdata
;
659 omap_serial_init_port(&bdata
);
662 omap_serial_init_port(&bdata
);
665 bdata
.pads
= serial2_pads
;
666 bdata
.pads_cnt
= ARRAY_SIZE(serial2_pads
);
667 omap_serial_init_port(&bdata
);
672 static inline void board_serial_init(void)
679 static void __init
n8x0_init_machine(void)
681 omap2420_mux_init(board_mux
, OMAP_PACKAGE_ZAC
);
682 /* FIXME: add n810 spi devices */
683 spi_register_board_info(n800_spi_board_info
,
684 ARRAY_SIZE(n800_spi_board_info
));
685 omap_register_i2c_bus(1, 400, n8x0_i2c_board_info_1
,
686 ARRAY_SIZE(n8x0_i2c_board_info_1
));
687 omap_register_i2c_bus(2, 400, NULL
, 0);
688 if (machine_is_nokia_n810())
689 i2c_register_board_info(2, n810_i2c_board_info_2
,
690 ARRAY_SIZE(n810_i2c_board_info_2
));
692 gpmc_onenand_init(board_onenand_data
);
697 MACHINE_START(NOKIA_N800
, "Nokia N800")
698 .boot_params
= 0x80000100,
699 .reserve
= omap_reserve
,
700 .map_io
= n8x0_map_io
,
701 .init_early
= n8x0_init_early
,
702 .init_irq
= omap2_init_irq
,
703 .init_machine
= n8x0_init_machine
,
704 .timer
= &omap2_timer
,
707 MACHINE_START(NOKIA_N810
, "Nokia N810")
708 .boot_params
= 0x80000100,
709 .reserve
= omap_reserve
,
710 .map_io
= n8x0_map_io
,
711 .init_early
= n8x0_init_early
,
712 .init_irq
= omap2_init_irq
,
713 .init_machine
= n8x0_init_machine
,
714 .timer
= &omap2_timer
,
717 MACHINE_START(NOKIA_N810_WIMAX
, "Nokia N810 WiMAX")
718 .boot_params
= 0x80000100,
719 .reserve
= omap_reserve
,
720 .map_io
= n8x0_map_io
,
721 .init_early
= n8x0_init_early
,
722 .init_irq
= omap2_init_irq
,
723 .init_machine
= n8x0_init_machine
,
724 .timer
= &omap2_timer
,