aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-pxa/csb701.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-pxa/csb701.c')
-rw-r--r--arch/arm/mach-pxa/csb701.c66
1 files changed, 66 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/csb701.c b/arch/arm/mach-pxa/csb701.c
new file mode 100644
index 000000000000..5a221a49ea4d
--- /dev/null
+++ b/arch/arm/mach-pxa/csb701.c
@@ -0,0 +1,66 @@
1#include <linux/kernel.h>
2#include <linux/module.h>
3#include <linux/platform_device.h>
4#include <linux/gpio_keys.h>
5#include <linux/input.h>
6#include <linux/leds.h>
7
8#include <asm/mach-types.h>
9
10static struct gpio_keys_button csb701_buttons[] = {
11 {
12 .code = 0x7,
13 .gpio = 1,
14 .active_low = 1,
15 .desc = "SW2",
16 .type = EV_SW,
17 .wakeup = 1,
18 },
19};
20
21static struct gpio_keys_platform_data csb701_gpio_keys_data = {
22 .buttons = csb701_buttons,
23 .nbuttons = ARRAY_SIZE(csb701_buttons),
24};
25
26static struct gpio_led csb701_leds[] = {
27 {
28 .name = "csb701:yellow:heartbeat",
29 .default_trigger = "heartbeat",
30 .gpio = 11,
31 .active_low = 1,
32 },
33};
34
35static struct platform_device csb701_gpio_keys = {
36 .name = "gpio-keys",
37 .id = -1,
38 .dev.platform_data = &csb701_gpio_keys_data,
39};
40
41static struct gpio_led_platform_data csb701_leds_gpio_data = {
42 .leds = csb701_leds,
43 .num_leds = ARRAY_SIZE(csb701_leds),
44};
45
46static struct platform_device csb701_leds_gpio = {
47 .name = "leds-gpio",
48 .id = -1,
49 .dev.platform_data = &csb701_leds_gpio_data,
50};
51
52static struct platform_device *devices[] __initdata = {
53 &csb701_gpio_keys,
54 &csb701_leds_gpio,
55};
56
57static int __init csb701_init(void)
58{
59 if (!machine_is_csb726())
60 return -ENODEV;
61
62 return platform_add_devices(devices, ARRAY_SIZE(devices));
63}
64
65module_init(csb701_init);
66