leds: make brightness type consistent across whole subsystem
[linux-block.git] / drivers / leds / led-class.c
CommitLineData
c72a1d60
RP
1/*
2 * LED Class Core
3 *
4 * Copyright (C) 2005 John Lenz <lenz@cs.wisc.edu>
f8a7c6fe 5 * Copyright (C) 2005-2007 Richard Purdie <rpurdie@openedhand.com>
c72a1d60
RP
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
04713306
JA
12#include <linux/ctype.h>
13#include <linux/device.h>
14#include <linux/err.h>
c72a1d60 15#include <linux/init.h>
04713306
JA
16#include <linux/kernel.h>
17#include <linux/leds.h>
c72a1d60 18#include <linux/list.h>
04713306
JA
19#include <linux/module.h>
20#include <linux/slab.h>
c72a1d60 21#include <linux/spinlock.h>
9067359f 22#include <linux/timer.h>
c72a1d60
RP
23#include "leds.h"
24
25static struct class *leds_class;
26
29d76dfa
HMH
27static void led_update_brightness(struct led_classdev *led_cdev)
28{
29 if (led_cdev->brightness_get)
30 led_cdev->brightness = led_cdev->brightness_get(led_cdev);
31}
32
5baa7503 33static ssize_t brightness_show(struct device *dev,
f8a7c6fe 34 struct device_attribute *attr, char *buf)
c72a1d60 35{
f8a7c6fe 36 struct led_classdev *led_cdev = dev_get_drvdata(dev);
c72a1d60
RP
37
38 /* no lock needed for this */
29d76dfa 39 led_update_brightness(led_cdev);
c72a1d60 40
dd8e5a20 41 return sprintf(buf, "%u\n", led_cdev->brightness);
c72a1d60
RP
42}
43
5baa7503 44static ssize_t brightness_store(struct device *dev,
f8a7c6fe 45 struct device_attribute *attr, const char *buf, size_t size)
c72a1d60 46{
f8a7c6fe 47 struct led_classdev *led_cdev = dev_get_drvdata(dev);
872b86be 48 unsigned long state;
c72a1d60 49 ssize_t ret = -EINVAL;
c72a1d60 50
872b86be
SK
51 ret = kstrtoul(buf, 10, &state);
52 if (ret)
53 return ret;
3dc7b82e 54
872b86be
SK
55 if (state == LED_OFF)
56 led_trigger_remove(led_cdev);
0da3e65b 57 __led_set_brightness(led_cdev, state);
0013b23d 58
872b86be 59 return size;
c72a1d60 60}
5baa7503 61static DEVICE_ATTR_RW(brightness);
c72a1d60 62
1bd465e6
GL
63static ssize_t led_max_brightness_show(struct device *dev,
64 struct device_attribute *attr, char *buf)
65{
66 struct led_classdev *led_cdev = dev_get_drvdata(dev);
67
68 return sprintf(buf, "%u\n", led_cdev->max_brightness);
69}
5baa7503 70static DEVICE_ATTR(max_brightness, 0444, led_max_brightness_show, NULL);
1bd465e6 71
c3bc9956 72#ifdef CONFIG_LEDS_TRIGGERS
5baa7503
GKH
73static DEVICE_ATTR(trigger, 0644, led_trigger_show, led_trigger_store);
74static struct attribute *led_trigger_attrs[] = {
75 &dev_attr_trigger.attr,
76 NULL,
77};
78static const struct attribute_group led_trigger_group = {
79 .attrs = led_trigger_attrs,
80};
81#endif
82
83static struct attribute *led_class_attrs[] = {
84 &dev_attr_brightness.attr,
85 &dev_attr_max_brightness.attr,
86 NULL,
87};
88
89static const struct attribute_group led_group = {
90 .attrs = led_class_attrs,
91};
92
93static const struct attribute_group *led_groups[] = {
94 &led_group,
95#ifdef CONFIG_LEDS_TRIGGERS
96 &led_trigger_group,
c3bc9956 97#endif
5baa7503 98 NULL,
14b5d6dd 99};
c72a1d60 100
9067359f 101static void led_timer_function(unsigned long data)
5ada28bf 102{
9067359f 103 struct led_classdev *led_cdev = (void *)data;
5ada28bf
JB
104 unsigned long brightness;
105 unsigned long delay;
106
107 if (!led_cdev->blink_delay_on || !led_cdev->blink_delay_off) {
0da3e65b 108 __led_set_brightness(led_cdev, LED_OFF);
5ada28bf
JB
109 return;
110 }
111
5bb629c5
FB
112 if (led_cdev->flags & LED_BLINK_ONESHOT_STOP) {
113 led_cdev->flags &= ~LED_BLINK_ONESHOT_STOP;
114 return;
115 }
116
5ada28bf
JB
117 brightness = led_get_brightness(led_cdev);
118 if (!brightness) {
119 /* Time to switch the LED on. */
120 brightness = led_cdev->blink_brightness;
121 delay = led_cdev->blink_delay_on;
122 } else {
123 /* Store the current brightness value to be able
124 * to restore it when the delay_off period is over.
125 */
126 led_cdev->blink_brightness = brightness;
127 brightness = LED_OFF;
128 delay = led_cdev->blink_delay_off;
129 }
130
0da3e65b 131 __led_set_brightness(led_cdev, brightness);
5ada28bf 132
5bb629c5
FB
133 /* Return in next iteration if led is in one-shot mode and we are in
134 * the final blink state so that the led is toggled each delay_on +
135 * delay_off milliseconds in worst case.
136 */
137 if (led_cdev->flags & LED_BLINK_ONESHOT) {
138 if (led_cdev->flags & LED_BLINK_INVERT) {
139 if (brightness)
140 led_cdev->flags |= LED_BLINK_ONESHOT_STOP;
141 } else {
142 if (!brightness)
143 led_cdev->flags |= LED_BLINK_ONESHOT_STOP;
144 }
145 }
146
9067359f 147 mod_timer(&led_cdev->blink_timer, jiffies + msecs_to_jiffies(delay));
5ada28bf
JB
148}
149
d23a22a7
FB
150static void set_brightness_delayed(struct work_struct *ws)
151{
152 struct led_classdev *led_cdev =
153 container_of(ws, struct led_classdev, set_brightness_work);
154
155 led_stop_software_blink(led_cdev);
156
157 __led_set_brightness(led_cdev, led_cdev->delayed_set_value);
158}
159
c72a1d60
RP
160/**
161 * led_classdev_suspend - suspend an led_classdev.
162 * @led_cdev: the led_classdev to suspend.
163 */
164void led_classdev_suspend(struct led_classdev *led_cdev)
165{
166 led_cdev->flags |= LED_SUSPENDED;
167 led_cdev->brightness_set(led_cdev, 0);
168}
169EXPORT_SYMBOL_GPL(led_classdev_suspend);
170
171/**
172 * led_classdev_resume - resume an led_classdev.
173 * @led_cdev: the led_classdev to resume.
174 */
175void led_classdev_resume(struct led_classdev *led_cdev)
176{
177 led_cdev->brightness_set(led_cdev, led_cdev->brightness);
178 led_cdev->flags &= ~LED_SUSPENDED;
179}
180EXPORT_SYMBOL_GPL(led_classdev_resume);
181
73e1ab41 182static int led_suspend(struct device *dev)
859cb7f2
RP
183{
184 struct led_classdev *led_cdev = dev_get_drvdata(dev);
185
186 if (led_cdev->flags & LED_CORE_SUSPENDRESUME)
187 led_classdev_suspend(led_cdev);
188
189 return 0;
190}
191
192static int led_resume(struct device *dev)
193{
194 struct led_classdev *led_cdev = dev_get_drvdata(dev);
195
196 if (led_cdev->flags & LED_CORE_SUSPENDRESUME)
197 led_classdev_resume(led_cdev);
198
199 return 0;
200}
201
73e1ab41
SK
202static const struct dev_pm_ops leds_class_dev_pm_ops = {
203 .suspend = led_suspend,
204 .resume = led_resume,
205};
206
c72a1d60
RP
207/**
208 * led_classdev_register - register a new object of led_classdev class.
ff8649af 209 * @parent: The device to register.
c72a1d60
RP
210 * @led_cdev: the led_classdev structure for this device.
211 */
212int led_classdev_register(struct device *parent, struct led_classdev *led_cdev)
213{
d0d480cc
JH
214 led_cdev->dev = device_create_with_groups(leds_class, parent, 0,
215 led_cdev, led_cdev->groups,
216 "%s", led_cdev->name);
801678c5 217 if (IS_ERR(led_cdev->dev))
f8a7c6fe 218 return PTR_ERR(led_cdev->dev);
c72a1d60 219
270c3957
RP
220#ifdef CONFIG_LEDS_TRIGGERS
221 init_rwsem(&led_cdev->trigger_lock);
222#endif
c72a1d60 223 /* add to the list of leds */
72f8da32 224 down_write(&leds_list_lock);
c72a1d60 225 list_add_tail(&led_cdev->node, &leds_list);
72f8da32 226 up_write(&leds_list_lock);
c72a1d60 227
1bd465e6
GL
228 if (!led_cdev->max_brightness)
229 led_cdev->max_brightness = LED_FULL;
230
29d76dfa
HMH
231 led_update_brightness(led_cdev);
232
d23a22a7
FB
233 INIT_WORK(&led_cdev->set_brightness_work, set_brightness_delayed);
234
9067359f
JK
235 init_timer(&led_cdev->blink_timer);
236 led_cdev->blink_timer.function = led_timer_function;
237 led_cdev->blink_timer.data = (unsigned long)led_cdev;
5ada28bf 238
c3bc9956 239#ifdef CONFIG_LEDS_TRIGGERS
12fda168 240 led_trigger_set_default(led_cdev);
c3bc9956
RP
241#endif
242
d23e7b8b 243 dev_dbg(parent, "Registered led device: %s\n",
f8a7c6fe 244 led_cdev->name);
c72a1d60
RP
245
246 return 0;
247}
248EXPORT_SYMBOL_GPL(led_classdev_register);
249
250/**
0266a458 251 * led_classdev_unregister - unregisters a object of led_properties class.
70d63ccc 252 * @led_cdev: the led device to unregister
c72a1d60
RP
253 *
254 * Unregisters a previously registered via led_classdev_register object.
255 */
b844eba2 256void led_classdev_unregister(struct led_classdev *led_cdev)
c72a1d60 257{
c3bc9956 258#ifdef CONFIG_LEDS_TRIGGERS
dc47206e 259 down_write(&led_cdev->trigger_lock);
c3bc9956
RP
260 if (led_cdev->trigger)
261 led_trigger_set(led_cdev, NULL);
dc47206e 262 up_write(&led_cdev->trigger_lock);
c3bc9956 263#endif
c72a1d60 264
d23a22a7
FB
265 cancel_work_sync(&led_cdev->set_brightness_work);
266
5ada28bf 267 /* Stop blinking */
d23a22a7 268 led_stop_software_blink(led_cdev);
19cd67e2 269 led_set_brightness(led_cdev, LED_OFF);
5ada28bf 270
b844eba2 271 device_unregister(led_cdev->dev);
c72a1d60 272
72f8da32 273 down_write(&leds_list_lock);
c72a1d60 274 list_del(&led_cdev->node);
72f8da32 275 up_write(&leds_list_lock);
c72a1d60 276}
b844eba2 277EXPORT_SYMBOL_GPL(led_classdev_unregister);
c72a1d60
RP
278
279static int __init leds_init(void)
280{
281 leds_class = class_create(THIS_MODULE, "leds");
282 if (IS_ERR(leds_class))
283 return PTR_ERR(leds_class);
73e1ab41 284 leds_class->pm = &leds_class_dev_pm_ops;
5baa7503 285 leds_class->dev_groups = led_groups;
c72a1d60
RP
286 return 0;
287}
288
289static void __exit leds_exit(void)
290{
291 class_destroy(leds_class);
292}
293
294subsys_initcall(leds_init);
295module_exit(leds_exit);
296
297MODULE_AUTHOR("John Lenz, Richard Purdie");
298MODULE_LICENSE("GPL");
299MODULE_DESCRIPTION("LED Class Interface");