2 * linux/arch/arm/mach-pxa/saarb.c
4 * Support for the Marvell Handheld Platform (aka SAARB)
6 * Copyright (C) 2007-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.
12 #include <linux/gpio.h>
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/i2c.h>
16 #include <linux/i2c/pxa-i2c.h>
17 #include <linux/mfd/88pm860x.h>
19 #include <asm/mach-types.h>
20 #include <asm/mach/arch.h>
22 #include <mach/irqs.h>
23 #include <mach/hardware.h>
25 #include <mach/mfp-pxa930.h>
29 #define SAARB_NR_IRQS (IRQ_BOARD_START + 40)
31 static struct pm860x_touch_pdata saarb_touch
= {
40 static struct pm860x_backlight_pdata saarb_backlight
[] = {
42 .id
= PM8606_ID_BACKLIGHT
,
43 .iset
= PM8606_WLED_CURRENT(24),
44 .flags
= PM8606_BACKLIGHT1
,
49 static struct pm860x_led_pdata saarb_led
[] = {
52 .iset
= PM8606_LED_CURRENT(12),
53 .flags
= PM8606_LED1_RED
,
56 .iset
= PM8606_LED_CURRENT(12),
57 .flags
= PM8606_LED1_GREEN
,
60 .iset
= PM8606_LED_CURRENT(12),
61 .flags
= PM8606_LED1_BLUE
,
64 .iset
= PM8606_LED_CURRENT(12),
65 .flags
= PM8606_LED2_RED
,
68 .iset
= PM8606_LED_CURRENT(12),
69 .flags
= PM8606_LED2_GREEN
,
72 .iset
= PM8606_LED_CURRENT(12),
73 .flags
= PM8606_LED2_BLUE
,
77 static struct pm860x_platform_data saarb_pm8607_info
= {
78 .touch
= &saarb_touch
,
79 .backlight
= &saarb_backlight
[0],
81 .companion_addr
= 0x10,
83 .irq_base
= IRQ_BOARD_START
,
85 .i2c_port
= GI2C_PORT
,
88 static struct i2c_board_info saarb_i2c_info
[] = {
92 .platform_data
= &saarb_pm8607_info
,
93 .irq
= gpio_to_irq(mfp_to_gpio(MFP_PIN_GPIO83
)),
97 static void __init
saarb_init(void)
99 pxa_set_ffuart_info(NULL
);
100 pxa_set_i2c_info(NULL
);
101 i2c_register_board_info(0, ARRAY_AND_SIZE(saarb_i2c_info
));
104 MACHINE_START(SAARB
, "PXA955 Handheld Platform (aka SAARB)")
105 .atag_offset
= 0x100,
106 .map_io
= pxa3xx_map_io
,
107 .nr_irqs
= SAARB_NR_IRQS
,
108 .init_irq
= pxa95x_init_irq
,
109 .handle_irq
= pxa3xx_handle_irq
,
111 .init_machine
= saarb_init
,