aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/linux/linux-2.6.24/ts72xx/ep93xx-leds.diff
blob: 9836145c248f761daa8595d8dbd427a928ca1c24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
EP93xx leds driver

Signed-off-by: Petr Stetiar <ynezz@true.cz>

Index: linux-2.6.24/arch/arm/mach-ep93xx/core.c
===================================================================
--- linux-2.6.24.orig/arch/arm/mach-ep93xx/core.c	2008-02-03 13:06:34.000000000 +0100
+++ linux-2.6.24/arch/arm/mach-ep93xx/core.c	2008-02-03 13:38:46.000000000 +0100
@@ -555,6 +555,12 @@
 }
 
 
+static struct platform_device ep93xx_led_device = {
+	.name			= "ep93xx-led",
+	.id			= -1,
+};
+
+
 void __init ep93xx_init_devices(void)
 {
 	unsigned int v;
@@ -583,4 +589,5 @@
 	platform_device_register(&ep93xx_rtc_device);
 	platform_device_register(&ep93xx_ohci_device);
 	platform_device_register(&ep93xx_i2c_device);
+	platform_device_register(&ep93xx_led_device);
 }
Index: linux-2.6.24/drivers/leds/Kconfig
===================================================================
--- linux-2.6.24.orig/drivers/leds/Kconfig	2008-01-24 23:58:37.000000000 +0100
+++ linux-2.6.24/drivers/leds/Kconfig	2008-02-03 13:38:46.000000000 +0100
@@ -114,6 +114,12 @@
 	help
 	  This option enables support for the CM-X270 LEDs.
 
+config LEDS_EP93XX
+	tristate "LED Support for Cirrus Logic EP93xx"
+	depends on LEDS_CLASS && ARCH_EP93XX
+	help
+	  This option enables support for the Cirrus Logic EP93xx based boards.
+
 comment "LED Triggers"
 
 config LEDS_TRIGGERS
Index: linux-2.6.24/drivers/leds/Makefile
===================================================================
--- linux-2.6.24.orig/drivers/leds/Makefile	2008-01-24 23:58:37.000000000 +0100
+++ linux-2.6.24/drivers/leds/Makefile	2008-02-03 13:40:49.000000000 +0100
@@ -19,6 +19,7 @@
 obj-$(CONFIG_LEDS_COBALT_RAQ)		+= leds-cobalt-raq.o
 obj-$(CONFIG_LEDS_GPIO)			+= leds-gpio.o
 obj-$(CONFIG_LEDS_CM_X270)              += leds-cm-x270.o
+obj-$(CONFIG_LEDS_EP93XX)		+= leds-ep93xx.o
 
 # LED Triggers
 obj-$(CONFIG_LEDS_TRIGGER_TIMER)	+= ledtrig-timer.o
Index: linux-2.6.24/drivers/leds/leds-ep93xx.c
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ linux-2.6.24/drivers/leds/leds-ep93xx.c	2008-02-03 13:38:46.000000000 +0100
@@ -0,0 +1,119 @@
+/*
+ * LEDs driver for Cirrus Logic EP93xx
+ *
+ * Author: Petr Stetiar <ynezz@true.cz>
+ *
+ * Based on leds-corgi.c by Richard Purdie
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ */
+
+#include <linux/kernel.h>
+#include <linux/init.h>
+#include <linux/platform_device.h>
+#include <linux/leds.h>
+#include <asm/mach-types.h>
+#include <asm/arch/hardware.h>
+#include <asm/arch/gpio.h>
+
+static void ep93xx_green_led_set(struct led_classdev *led_cdev, enum led_brightness value)
+{
+	if (value)
+		gpio_line_set(EP93XX_GPIO_LINE_GRLED, EP93XX_GPIO_HIGH);
+	else
+		gpio_line_set(EP93XX_GPIO_LINE_GRLED, EP93XX_GPIO_LOW);
+}
+
+static void ep93xx_red_led_set(struct led_classdev *led_cdev, enum led_brightness value)
+{
+	if (value)
+		gpio_line_set(EP93XX_GPIO_LINE_RDLED, EP93XX_GPIO_HIGH);
+	else
+		gpio_line_set(EP93XX_GPIO_LINE_RDLED, EP93XX_GPIO_LOW);
+}
+
+
+static struct led_classdev ep93xx_green_led = {
+	.name			= "ep93xx:green",
+	.default_trigger	= "none",
+	.brightness_set		= ep93xx_green_led_set,
+};
+
+static struct led_classdev ep93xx_red_led = {
+	.name			= "ep93xx:red",
+	.default_trigger	= "heartbeat",
+	.brightness_set		= ep93xx_red_led_set,
+};
+
+#ifdef CONFIG_PM
+static int ep93xx_led_suspend(struct platform_device *dev, pm_message_t state)
+{
+	led_classdev_suspend(&ep93xx_green_led);
+	led_classdev_suspend(&ep93xx_red_led);
+	return 0;
+}
+
+static int ep93xx_led_resume(struct platform_device *dev)
+{
+	led_classdev_resume(&ep93xx_red_led);
+	led_classdev_resume(&ep93xx_green_led);
+	return 0;
+}
+#endif
+
+static int ep93xx_led_probe(struct platform_device *pdev)
+{
+	int ret;
+
+	gpio_line_config(EP93XX_GPIO_LINE_GRLED, GPIO_OUT);
+	gpio_line_config(EP93XX_GPIO_LINE_RDLED, GPIO_OUT);
+
+	ret = led_classdev_register(&pdev->dev, &ep93xx_green_led);
+	if (ret < 0)
+		return ret;
+
+	ret = led_classdev_register(&pdev->dev, &ep93xx_red_led);
+	if (ret < 0)
+		led_classdev_unregister(&ep93xx_green_led);
+
+	return ret;
+}
+
+static int ep93xx_led_remove(struct platform_device *pdev)
+{
+	led_classdev_unregister(&ep93xx_green_led);
+	led_classdev_unregister(&ep93xx_red_led);
+	return 0;
+}
+
+static struct platform_driver ep93xx_led_driver = {
+	.probe		= ep93xx_led_probe,
+	.remove		= ep93xx_led_remove,
+#ifdef CONFIG_PM
+	.suspend	= ep93xx_led_suspend,
+	.resume		= ep93xx_led_resume,
+#endif
+	.driver		= {
+		.name		= "ep93xx-led",
+	},
+};
+
+static int __init ep93xx_led_init(void)
+{
+	return platform_driver_register(&ep93xx_led_driver);
+}
+
+static void __exit ep93xx_led_exit(void)
+{
+ 	platform_driver_unregister(&ep93xx_led_driver);
+}
+
+module_init(ep93xx_led_init);
+module_exit(ep93xx_led_exit);
+
+MODULE_AUTHOR("Petr Stetiar <ynezz@true.cz>");
+MODULE_DESCRIPTION("Cirrus Logic EP93xx LED driver");
+MODULE_LICENSE("GPL");