summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorEugene Konev <ejka@imfi.kspu.ru>2007-09-21 14:04:29 +0000
committerEugene Konev <ejka@imfi.kspu.ru>2007-09-21 14:04:29 +0000
commit6e7564b6409dd89e7b53940840021d9568593dae (patch)
tree6cecf726dd8777aaa876f1a944147da55b9bea81 /target
parentcd95009fc6727026f559cfdab5888727263ced1f (diff)
downloadmaster-31e0f0ae-6e7564b6409dd89e7b53940840021d9568593dae.tar.gz
master-31e0f0ae-6e7564b6409dd89e7b53940840021d9568593dae.tar.bz2
master-31e0f0ae-6e7564b6409dd89e7b53940840021d9568593dae.zip
add initial generic gpio-leds support
SVN-Revision: 8918
Diffstat (limited to 'target')
-rw-r--r--target/linux/ar7/files/arch/mips/ar7/platform.c44
1 files changed, 44 insertions, 0 deletions
diff --git a/target/linux/ar7/files/arch/mips/ar7/platform.c b/target/linux/ar7/files/arch/mips/ar7/platform.c
index 980739f90a..1671be1ba0 100644
--- a/target/linux/ar7/files/arch/mips/ar7/platform.c
+++ b/target/linux/ar7/files/arch/mips/ar7/platform.c
@@ -28,6 +28,10 @@
#include <linux/serial_8250.h>
#include <linux/ioport.h>
#include <linux/io.h>
+#include <linux/version.h>
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23)
+#include <linux/leds.h>
+#endif
#include <asm/addrspace.h>
#include <asm/ar7/ar7.h>
@@ -295,6 +299,38 @@ static struct platform_device uart = {
};
#endif
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23)
+static struct gpio_led default_leds[] = {
+ { .name = "status", .gpio = 8, .active_low = 1, },
+};
+
+static struct gpio_led fb_leds[] = {
+ { .name = "1", .gpio = 7, },
+ { .name = "2", .gpio = 13, .active_low = 1, },
+ { .name = "3", .gpio = 10, .active_low = 1, },
+ { .name = "4", .gpio = 12, .active_low = 1, },
+ { .name = "5", .gpio = 9, .active_low = 1, },
+};
+
+static struct gpio_led fb_fon_leds[] = {
+ { .name = "1", .gpio = 8, },
+ { .name = "2", .gpio = 3, .active_low = 1, },
+ { .name = "3", .gpio = 5, },
+ { .name = "4", .gpio = 4, .active_low = 1, },
+ { .name = "5", .gpio = 11, .active_low = 1, },
+};
+
+static struct gpio_led_platform_data ar7_led_data;
+
+static struct platform_device ar7_gpio_leds = {
+ .name = "leds-gpio",
+ .id = -1,
+ .dev = {
+ .platform_data = &ar7_led_data,
+ }
+};
+#endif
+
static inline unsigned char char2hex(char h)
{
switch (h) {
@@ -409,7 +445,15 @@ static int __init ar7_register_devices(void)
cpmac_get_mac(0, cpmac_low_data.dev_addr);
res = platform_device_register(&cpmac_low);
+ if (res)
+ return res;
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23)
+#warning FIXME: add model detection
+ ar7_led_data.num_leds = ARRAY_SIZE(default_leds);
+ ar7_led_data.leds = default_leds;
+ res = platform_device_register(&ar7_gpio_leds);
+#endif
return res;
}