diff options
author | Tony Lindgren <tony@atomide.com> | 2010-09-27 13:19:44 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-09-27 13:19:44 -0400 |
commit | 98bb8c3e98267f2aa422bbafce3b734016e7ed02 (patch) | |
tree | 6f494fd5924d631691ec1ef73bd986ecff0539d9 /arch/arm/mach-omap2/board-omap4panda.c | |
parent | d58cc92bda765e62f28b12a8f4627ddee32978f0 (diff) | |
parent | 3da434acd4f7c7f5aeebd44fed42bf5ed9adfc44 (diff) |
Merge branch 'devel-boards' into omap-for-linus
Diffstat (limited to 'arch/arm/mach-omap2/board-omap4panda.c')
-rw-r--r-- | arch/arm/mach-omap2/board-omap4panda.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c index 0bb2353b64a4..aa8296e7e9d4 100644 --- a/arch/arm/mach-omap2/board-omap4panda.c +++ b/arch/arm/mach-omap2/board-omap4panda.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <linux/init.h> | 20 | #include <linux/init.h> |
21 | #include <linux/platform_device.h> | 21 | #include <linux/platform_device.h> |
22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
23 | #include <linux/leds.h> | ||
23 | #include <linux/gpio.h> | 24 | #include <linux/gpio.h> |
24 | #include <linux/usb/otg.h> | 25 | #include <linux/usb/otg.h> |
25 | #include <linux/i2c/twl.h> | 26 | #include <linux/i2c/twl.h> |
@@ -40,6 +41,36 @@ | |||
40 | #include "hsmmc.h" | 41 | #include "hsmmc.h" |
41 | 42 | ||
42 | 43 | ||
44 | static struct gpio_led gpio_leds[] = { | ||
45 | { | ||
46 | .name = "pandaboard::status1", | ||
47 | .default_trigger = "heartbeat", | ||
48 | .gpio = 7, | ||
49 | }, | ||
50 | { | ||
51 | .name = "pandaboard::status2", | ||
52 | .default_trigger = "mmc0", | ||
53 | .gpio = 8, | ||
54 | }, | ||
55 | }; | ||
56 | |||
57 | static struct gpio_led_platform_data gpio_led_info = { | ||
58 | .leds = gpio_leds, | ||
59 | .num_leds = ARRAY_SIZE(gpio_leds), | ||
60 | }; | ||
61 | |||
62 | static struct platform_device leds_gpio = { | ||
63 | .name = "leds-gpio", | ||
64 | .id = -1, | ||
65 | .dev = { | ||
66 | .platform_data = &gpio_led_info, | ||
67 | }, | ||
68 | }; | ||
69 | |||
70 | static struct platform_device *panda_devices[] __initdata = { | ||
71 | &leds_gpio, | ||
72 | }; | ||
73 | |||
43 | static void __init omap4_panda_init_irq(void) | 74 | static void __init omap4_panda_init_irq(void) |
44 | { | 75 | { |
45 | omap2_init_common_hw(NULL, NULL); | 76 | omap2_init_common_hw(NULL, NULL); |
@@ -275,6 +306,7 @@ static int __init omap4_panda_i2c_init(void) | |||
275 | static void __init omap4_panda_init(void) | 306 | static void __init omap4_panda_init(void) |
276 | { | 307 | { |
277 | omap4_panda_i2c_init(); | 308 | omap4_panda_i2c_init(); |
309 | platform_add_devices(panda_devices, ARRAY_SIZE(panda_devices)); | ||
278 | omap_serial_init(); | 310 | omap_serial_init(); |
279 | omap4_twl6030_hsmmc_init(mmc); | 311 | omap4_twl6030_hsmmc_init(mmc); |
280 | /* OMAP4 Panda uses internal transceiver so register nop transceiver */ | 312 | /* OMAP4 Panda uses internal transceiver so register nop transceiver */ |