2 * linux/arch/arm/mach-pxa/tavorevb3.c
4 * Support for the Marvell EVB3 Development Platform.
6 * Copyright: (C) Copyright 2008-2010 Marvell International Ltd.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * publishhed by the Free Software Foundation.
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/platform_device.h>
16 #include <linux/interrupt.h>
17 #include <linux/i2c.h>
18 #include <linux/i2c/pxa-i2c.h>
19 #include <linux/gpio.h>
20 #include <linux/mfd/88pm860x.h>
22 #include <asm/mach-types.h>
23 #include <asm/mach/arch.h>
25 #include <mach/pxa930.h>
30 #define TAVOREVB3_NR_IRQS (IRQ_BOARD_START + 24)
32 static mfp_cfg_t evb3_mfp_cfg
[] __initdata
= {
41 #if defined(CONFIG_I2C_PXA) || defined(CONFIG_I2C_PXA_MODULE)
42 static struct pm860x_touch_pdata evb3_touch
= {
51 static struct pm860x_backlight_pdata evb3_backlight
[] = {
53 .id
= PM8606_ID_BACKLIGHT
,
54 .iset
= PM8606_WLED_CURRENT(24),
55 .flags
= PM8606_BACKLIGHT1
,
60 static struct pm860x_led_pdata evb3_led
[] = {
63 .iset
= PM8606_LED_CURRENT(12),
64 .flags
= PM8606_LED1_RED
,
67 .iset
= PM8606_LED_CURRENT(12),
68 .flags
= PM8606_LED1_GREEN
,
71 .iset
= PM8606_LED_CURRENT(12),
72 .flags
= PM8606_LED1_BLUE
,
75 .iset
= PM8606_LED_CURRENT(12),
76 .flags
= PM8606_LED2_RED
,
79 .iset
= PM8606_LED_CURRENT(12),
80 .flags
= PM8606_LED2_GREEN
,
83 .iset
= PM8606_LED_CURRENT(12),
84 .flags
= PM8606_LED2_BLUE
,
88 static struct pm860x_platform_data evb3_pm8607_info
= {
90 .backlight
= &evb3_backlight
[0],
92 .companion_addr
= 0x10,
94 .irq_base
= IRQ_BOARD_START
,
96 .i2c_port
= GI2C_PORT
,
99 static struct i2c_board_info evb3_i2c_info
[] = {
103 .platform_data
= &evb3_pm8607_info
,
104 .irq
= PXA_GPIO_TO_IRQ(mfp_to_gpio(MFP_PIN_GPIO83
)),
108 static void __init
evb3_init_i2c(void)
110 pxa_set_i2c_info(NULL
);
111 i2c_register_board_info(0, ARRAY_AND_SIZE(evb3_i2c_info
));
114 static inline void evb3_init_i2c(void) {}
117 static void __init
evb3_init(void)
119 /* initialize MFP configurations */
120 pxa3xx_mfp_config(ARRAY_AND_SIZE(evb3_mfp_cfg
));
122 pxa_set_ffuart_info(NULL
);
127 MACHINE_START(TAVOREVB3
, "PXA950 Evaluation Board (aka TavorEVB3)")
128 .atag_offset
= 0x100,
129 .map_io
= pxa3xx_map_io
,
130 .nr_irqs
= TAVOREVB3_NR_IRQS
,
131 .init_irq
= pxa3xx_init_irq
,
132 .handle_irq
= pxa3xx_handle_irq
,
134 .init_machine
= evb3_init
,
135 .restart
= pxa_restart
,