Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * ledtrig-gio.c - LED Trigger Based on GPIO events
4 *
5 * Copyright 2009 Felipe Balbi <me@felipebalbi.com>
6 */
7
8#include <linux/module.h>
9#include <linux/kernel.h>
10#include <linux/init.h>
11#include <linux/gpio.h>
12#include <linux/interrupt.h>
13#include <linux/leds.h>
14#include <linux/slab.h>
15#include "../leds.h"
16
17struct gpio_trig_data {
18 struct led_classdev *led;
19
20 unsigned desired_brightness; /* desired brightness when led is on */
21 unsigned inverted; /* true when gpio is inverted */
22 unsigned gpio; /* gpio that triggers the leds */
23};
24
25static irqreturn_t gpio_trig_irq(int irq, void *_led)
26{
27 struct led_classdev *led = _led;
28 struct gpio_trig_data *gpio_data = led_get_trigger_data(led);
29 int tmp;
30
31 tmp = gpio_get_value_cansleep(gpio_data->gpio);
32 if (gpio_data->inverted)
33 tmp = !tmp;
34
35 if (tmp) {
36 if (gpio_data->desired_brightness)
37 led_set_brightness_nosleep(gpio_data->led,
38 gpio_data->desired_brightness);
39 else
40 led_set_brightness_nosleep(gpio_data->led, LED_FULL);
41 } else {
42 led_set_brightness_nosleep(gpio_data->led, LED_OFF);
43 }
44
45 return IRQ_HANDLED;
46}
47
48static ssize_t gpio_trig_brightness_show(struct device *dev,
49 struct device_attribute *attr, char *buf)
50{
51 struct gpio_trig_data *gpio_data = led_trigger_get_drvdata(dev);
52
53 return sprintf(buf, "%u\n", gpio_data->desired_brightness);
54}
55
56static ssize_t gpio_trig_brightness_store(struct device *dev,
57 struct device_attribute *attr, const char *buf, size_t n)
58{
59 struct gpio_trig_data *gpio_data = led_trigger_get_drvdata(dev);
60 unsigned desired_brightness;
61 int ret;
62
63 ret = sscanf(buf, "%u", &desired_brightness);
64 if (ret < 1 || desired_brightness > 255) {
65 dev_err(dev, "invalid value\n");
66 return -EINVAL;
67 }
68
69 gpio_data->desired_brightness = desired_brightness;
70
71 return n;
72}
73static DEVICE_ATTR(desired_brightness, 0644, gpio_trig_brightness_show,
74 gpio_trig_brightness_store);
75
76static ssize_t gpio_trig_inverted_show(struct device *dev,
77 struct device_attribute *attr, char *buf)
78{
79 struct gpio_trig_data *gpio_data = led_trigger_get_drvdata(dev);
80
81 return sprintf(buf, "%u\n", gpio_data->inverted);
82}
83
84static ssize_t gpio_trig_inverted_store(struct device *dev,
85 struct device_attribute *attr, const char *buf, size_t n)
86{
87 struct led_classdev *led = led_trigger_get_led(dev);
88 struct gpio_trig_data *gpio_data = led_trigger_get_drvdata(dev);
89 unsigned long inverted;
90 int ret;
91
92 ret = kstrtoul(buf, 10, &inverted);
93 if (ret < 0)
94 return ret;
95
96 if (inverted > 1)
97 return -EINVAL;
98
99 gpio_data->inverted = inverted;
100
101 /* After inverting, we need to update the LED. */
102 if (gpio_is_valid(gpio_data->gpio))
103 gpio_trig_irq(0, led);
104
105 return n;
106}
107static DEVICE_ATTR(inverted, 0644, gpio_trig_inverted_show,
108 gpio_trig_inverted_store);
109
110static ssize_t gpio_trig_gpio_show(struct device *dev,
111 struct device_attribute *attr, char *buf)
112{
113 struct gpio_trig_data *gpio_data = led_trigger_get_drvdata(dev);
114
115 return sprintf(buf, "%u\n", gpio_data->gpio);
116}
117
118static ssize_t gpio_trig_gpio_store(struct device *dev,
119 struct device_attribute *attr, const char *buf, size_t n)
120{
121 struct led_classdev *led = led_trigger_get_led(dev);
122 struct gpio_trig_data *gpio_data = led_trigger_get_drvdata(dev);
123 unsigned gpio;
124 int ret;
125
126 ret = sscanf(buf, "%u", &gpio);
127 if (ret < 1) {
128 dev_err(dev, "couldn't read gpio number\n");
129 return -EINVAL;
130 }
131
132 if (gpio_data->gpio == gpio)
133 return n;
134
135 if (!gpio_is_valid(gpio)) {
136 if (gpio_is_valid(gpio_data->gpio))
137 free_irq(gpio_to_irq(gpio_data->gpio), led);
138 gpio_data->gpio = gpio;
139 return n;
140 }
141
142 ret = request_threaded_irq(gpio_to_irq(gpio), NULL, gpio_trig_irq,
143 IRQF_ONESHOT | IRQF_SHARED | IRQF_TRIGGER_RISING
144 | IRQF_TRIGGER_FALLING, "ledtrig-gpio", led);
145 if (ret) {
146 dev_err(dev, "request_irq failed with error %d\n", ret);
147 } else {
148 if (gpio_is_valid(gpio_data->gpio))
149 free_irq(gpio_to_irq(gpio_data->gpio), led);
150 gpio_data->gpio = gpio;
151 /* After changing the GPIO, we need to update the LED. */
152 gpio_trig_irq(0, led);
153 }
154
155 return ret ? ret : n;
156}
157static DEVICE_ATTR(gpio, 0644, gpio_trig_gpio_show, gpio_trig_gpio_store);
158
159static struct attribute *gpio_trig_attrs[] = {
160 &dev_attr_desired_brightness.attr,
161 &dev_attr_inverted.attr,
162 &dev_attr_gpio.attr,
163 NULL
164};
165ATTRIBUTE_GROUPS(gpio_trig);
166
167static int gpio_trig_activate(struct led_classdev *led)
168{
169 struct gpio_trig_data *gpio_data;
170
171 gpio_data = kzalloc(sizeof(*gpio_data), GFP_KERNEL);
172 if (!gpio_data)
173 return -ENOMEM;
174
175 gpio_data->led = led;
176 gpio_data->gpio = -ENOENT;
177
178 led_set_trigger_data(led, gpio_data);
179
180 return 0;
181}
182
183static void gpio_trig_deactivate(struct led_classdev *led)
184{
185 struct gpio_trig_data *gpio_data = led_get_trigger_data(led);
186
187 if (gpio_is_valid(gpio_data->gpio))
188 free_irq(gpio_to_irq(gpio_data->gpio), led);
189 kfree(gpio_data);
190}
191
192static struct led_trigger gpio_led_trigger = {
193 .name = "gpio",
194 .activate = gpio_trig_activate,
195 .deactivate = gpio_trig_deactivate,
196 .groups = gpio_trig_groups,
197};
198module_led_trigger(gpio_led_trigger);
199
200MODULE_AUTHOR("Felipe Balbi <me@felipebalbi.com>");
201MODULE_DESCRIPTION("GPIO LED trigger");
202MODULE_LICENSE("GPL v2");
1/*
2 * ledtrig-gio.c - LED Trigger Based on GPIO events
3 *
4 * Copyright 2009 Felipe Balbi <me@felipebalbi.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 */
11
12#include <linux/module.h>
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/gpio.h>
16#include <linux/interrupt.h>
17#include <linux/leds.h>
18#include <linux/slab.h>
19#include "../leds.h"
20
21struct gpio_trig_data {
22 struct led_classdev *led;
23
24 unsigned desired_brightness; /* desired brightness when led is on */
25 unsigned inverted; /* true when gpio is inverted */
26 unsigned gpio; /* gpio that triggers the leds */
27};
28
29static irqreturn_t gpio_trig_irq(int irq, void *_led)
30{
31 struct led_classdev *led = _led;
32 struct gpio_trig_data *gpio_data = led->trigger_data;
33 int tmp;
34
35 tmp = gpio_get_value_cansleep(gpio_data->gpio);
36 if (gpio_data->inverted)
37 tmp = !tmp;
38
39 if (tmp) {
40 if (gpio_data->desired_brightness)
41 led_set_brightness_nosleep(gpio_data->led,
42 gpio_data->desired_brightness);
43 else
44 led_set_brightness_nosleep(gpio_data->led, LED_FULL);
45 } else {
46 led_set_brightness_nosleep(gpio_data->led, LED_OFF);
47 }
48
49 return IRQ_HANDLED;
50}
51
52static ssize_t gpio_trig_brightness_show(struct device *dev,
53 struct device_attribute *attr, char *buf)
54{
55 struct led_classdev *led = dev_get_drvdata(dev);
56 struct gpio_trig_data *gpio_data = led->trigger_data;
57
58 return sprintf(buf, "%u\n", gpio_data->desired_brightness);
59}
60
61static ssize_t gpio_trig_brightness_store(struct device *dev,
62 struct device_attribute *attr, const char *buf, size_t n)
63{
64 struct led_classdev *led = dev_get_drvdata(dev);
65 struct gpio_trig_data *gpio_data = led->trigger_data;
66 unsigned desired_brightness;
67 int ret;
68
69 ret = sscanf(buf, "%u", &desired_brightness);
70 if (ret < 1 || desired_brightness > 255) {
71 dev_err(dev, "invalid value\n");
72 return -EINVAL;
73 }
74
75 gpio_data->desired_brightness = desired_brightness;
76
77 return n;
78}
79static DEVICE_ATTR(desired_brightness, 0644, gpio_trig_brightness_show,
80 gpio_trig_brightness_store);
81
82static ssize_t gpio_trig_inverted_show(struct device *dev,
83 struct device_attribute *attr, char *buf)
84{
85 struct led_classdev *led = dev_get_drvdata(dev);
86 struct gpio_trig_data *gpio_data = led->trigger_data;
87
88 return sprintf(buf, "%u\n", gpio_data->inverted);
89}
90
91static ssize_t gpio_trig_inverted_store(struct device *dev,
92 struct device_attribute *attr, const char *buf, size_t n)
93{
94 struct led_classdev *led = dev_get_drvdata(dev);
95 struct gpio_trig_data *gpio_data = led->trigger_data;
96 unsigned long inverted;
97 int ret;
98
99 ret = kstrtoul(buf, 10, &inverted);
100 if (ret < 0)
101 return ret;
102
103 if (inverted > 1)
104 return -EINVAL;
105
106 gpio_data->inverted = inverted;
107
108 /* After inverting, we need to update the LED. */
109 gpio_trig_irq(0, led);
110
111 return n;
112}
113static DEVICE_ATTR(inverted, 0644, gpio_trig_inverted_show,
114 gpio_trig_inverted_store);
115
116static ssize_t gpio_trig_gpio_show(struct device *dev,
117 struct device_attribute *attr, char *buf)
118{
119 struct led_classdev *led = dev_get_drvdata(dev);
120 struct gpio_trig_data *gpio_data = led->trigger_data;
121
122 return sprintf(buf, "%u\n", gpio_data->gpio);
123}
124
125static ssize_t gpio_trig_gpio_store(struct device *dev,
126 struct device_attribute *attr, const char *buf, size_t n)
127{
128 struct led_classdev *led = dev_get_drvdata(dev);
129 struct gpio_trig_data *gpio_data = led->trigger_data;
130 unsigned gpio;
131 int ret;
132
133 ret = sscanf(buf, "%u", &gpio);
134 if (ret < 1) {
135 dev_err(dev, "couldn't read gpio number\n");
136 return -EINVAL;
137 }
138
139 if (gpio_data->gpio == gpio)
140 return n;
141
142 if (!gpio) {
143 if (gpio_data->gpio != 0)
144 free_irq(gpio_to_irq(gpio_data->gpio), led);
145 gpio_data->gpio = 0;
146 return n;
147 }
148
149 ret = request_threaded_irq(gpio_to_irq(gpio), NULL, gpio_trig_irq,
150 IRQF_ONESHOT | IRQF_SHARED | IRQF_TRIGGER_RISING
151 | IRQF_TRIGGER_FALLING, "ledtrig-gpio", led);
152 if (ret) {
153 dev_err(dev, "request_irq failed with error %d\n", ret);
154 } else {
155 if (gpio_data->gpio != 0)
156 free_irq(gpio_to_irq(gpio_data->gpio), led);
157 gpio_data->gpio = gpio;
158 /* After changing the GPIO, we need to update the LED. */
159 gpio_trig_irq(0, led);
160 }
161
162 return ret ? ret : n;
163}
164static DEVICE_ATTR(gpio, 0644, gpio_trig_gpio_show, gpio_trig_gpio_store);
165
166static void gpio_trig_activate(struct led_classdev *led)
167{
168 struct gpio_trig_data *gpio_data;
169 int ret;
170
171 gpio_data = kzalloc(sizeof(*gpio_data), GFP_KERNEL);
172 if (!gpio_data)
173 return;
174
175 ret = device_create_file(led->dev, &dev_attr_gpio);
176 if (ret)
177 goto err_gpio;
178
179 ret = device_create_file(led->dev, &dev_attr_inverted);
180 if (ret)
181 goto err_inverted;
182
183 ret = device_create_file(led->dev, &dev_attr_desired_brightness);
184 if (ret)
185 goto err_brightness;
186
187 gpio_data->led = led;
188 led->trigger_data = gpio_data;
189 led->activated = true;
190
191 return;
192
193err_brightness:
194 device_remove_file(led->dev, &dev_attr_inverted);
195
196err_inverted:
197 device_remove_file(led->dev, &dev_attr_gpio);
198
199err_gpio:
200 kfree(gpio_data);
201}
202
203static void gpio_trig_deactivate(struct led_classdev *led)
204{
205 struct gpio_trig_data *gpio_data = led->trigger_data;
206
207 if (led->activated) {
208 device_remove_file(led->dev, &dev_attr_gpio);
209 device_remove_file(led->dev, &dev_attr_inverted);
210 device_remove_file(led->dev, &dev_attr_desired_brightness);
211 if (gpio_data->gpio != 0)
212 free_irq(gpio_to_irq(gpio_data->gpio), led);
213 kfree(gpio_data);
214 led->activated = false;
215 }
216}
217
218static struct led_trigger gpio_led_trigger = {
219 .name = "gpio",
220 .activate = gpio_trig_activate,
221 .deactivate = gpio_trig_deactivate,
222};
223
224static int __init gpio_trig_init(void)
225{
226 return led_trigger_register(&gpio_led_trigger);
227}
228module_init(gpio_trig_init);
229
230static void __exit gpio_trig_exit(void)
231{
232 led_trigger_unregister(&gpio_led_trigger);
233}
234module_exit(gpio_trig_exit);
235
236MODULE_AUTHOR("Felipe Balbi <me@felipebalbi.com>");
237MODULE_DESCRIPTION("GPIO LED trigger");
238MODULE_LICENSE("GPL");