]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/linux/leds.h
leds: bcm6358: remove unneeded busy status check
[mirror_ubuntu-zesty-kernel.git] / include / linux / leds.h
CommitLineData
c72a1d60
RP
1/*
2 * Driver model for leds and led triggers
3 *
4 * Copyright (C) 2005 John Lenz <lenz@cs.wisc.edu>
5 * Copyright (C) 2005 Richard Purdie <rpurdie@openedhand.com>
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 */
12#ifndef __LINUX_LEDS_H_INCLUDED
13#define __LINUX_LEDS_H_INCLUDED
14
20f56758 15#include <linux/device.h>
af410fc1 16#include <linux/list.h>
acd899e4 17#include <linux/mutex.h>
dc47206e 18#include <linux/rwsem.h>
04713306 19#include <linux/spinlock.h>
9067359f 20#include <linux/timer.h>
d23a22a7 21#include <linux/workqueue.h>
af410fc1 22
c72a1d60 23struct device;
c72a1d60
RP
24/*
25 * LED Core
26 */
27
28enum led_brightness {
fb5035db
BD
29 LED_OFF = 0,
30 LED_HALF = 127,
31 LED_FULL = 255,
c72a1d60
RP
32};
33
34struct led_classdev {
fb5035db 35 const char *name;
d8082827
JA
36 enum led_brightness brightness;
37 enum led_brightness max_brightness;
fb5035db 38 int flags;
c72a1d60 39
859cb7f2 40 /* Lower 16 bits reflect status */
fb5035db 41#define LED_SUSPENDED (1 << 0)
859cb7f2
RP
42 /* Upper 16 bits reflect control information */
43#define LED_CORE_SUSPENDRESUME (1 << 16)
5bb629c5
FB
44#define LED_BLINK_ONESHOT (1 << 17)
45#define LED_BLINK_ONESHOT_STOP (1 << 18)
46#define LED_BLINK_INVERT (1 << 19)
f1e80c07
JA
47#define LED_BLINK_BRIGHTNESS_CHANGE (1 << 20)
48#define LED_BLINK_DISABLE (1 << 21)
49#define LED_SYSFS_DISABLE (1 << 22)
13ae79bb 50#define LED_DEV_CAP_FLASH (1 << 23)
c72a1d60 51
fb5035db 52 /* Set LED brightness level */
2e214e0f 53 /* Must not sleep, use a workqueue if needed */
fb5035db
BD
54 void (*brightness_set)(struct led_classdev *led_cdev,
55 enum led_brightness brightness);
4d71a4a1
JA
56 /*
57 * Set LED brightness level immediately - it can block the caller for
58 * the time required for accessing a LED device register.
59 */
437a4240
JA
60 int (*brightness_set_blocking)(struct led_classdev *led_cdev,
61 enum led_brightness brightness);
29d76dfa
HMH
62 /* Get LED brightness level */
63 enum led_brightness (*brightness_get)(struct led_classdev *led_cdev);
fb5035db 64
5ada28bf
JB
65 /*
66 * Activate hardware accelerated blink, delays are in milliseconds
67 * and if both are zero then a sensible default should be chosen.
68 * The call should adjust the timings in that case and if it can't
69 * match the values specified exactly.
70 * Deactivate blinking again when the brightness is set to a fixed
71 * value via the brightness_set() callback.
72 */
4c79141d
MN
73 int (*blink_set)(struct led_classdev *led_cdev,
74 unsigned long *delay_on,
75 unsigned long *delay_off);
76
f8a7c6fe 77 struct device *dev;
d0d480cc
JH
78 const struct attribute_group **groups;
79
fb5035db 80 struct list_head node; /* LED Device list */
781a54e7 81 const char *default_trigger; /* Trigger to use */
c72a1d60 82
5ada28bf 83 unsigned long blink_delay_on, blink_delay_off;
9067359f 84 struct timer_list blink_timer;
5ada28bf 85 int blink_brightness;
7aea8389 86 void (*flash_resume)(struct led_classdev *led_cdev);
5ada28bf 87
d23a22a7
FB
88 struct work_struct set_brightness_work;
89 int delayed_set_value;
90
c3bc9956 91#ifdef CONFIG_LEDS_TRIGGERS
c3bc9956 92 /* Protects the trigger data below */
dc47206e 93 struct rw_semaphore trigger_lock;
c3bc9956 94
fb5035db
BD
95 struct led_trigger *trigger;
96 struct list_head trig_list;
97 void *trigger_data;
b0096182
SK
98 /* true if activated - deactivate routine uses it to do cleanup */
99 bool activated;
c3bc9956 100#endif
acd899e4
JA
101
102 /* Ensures consistent access to the LED Flash Class device */
103 struct mutex led_access;
c72a1d60
RP
104};
105
106extern int led_classdev_register(struct device *parent,
fb5035db 107 struct led_classdev *led_cdev);
ca1bb4ee
BA
108extern int devm_led_classdev_register(struct device *parent,
109 struct led_classdev *led_cdev);
e2387d6c 110extern void led_classdev_unregister(struct led_classdev *led_cdev);
ca1bb4ee
BA
111extern void devm_led_classdev_unregister(struct device *parent,
112 struct led_classdev *led_cdev);
c72a1d60
RP
113extern void led_classdev_suspend(struct led_classdev *led_cdev);
114extern void led_classdev_resume(struct led_classdev *led_cdev);
115
5ada28bf
JB
116/**
117 * led_blink_set - set blinking with software fallback
118 * @led_cdev: the LED to start blinking
119 * @delay_on: the time it should be on (in ms)
120 * @delay_off: the time it should ble off (in ms)
121 *
122 * This function makes the LED blink, attempting to use the
123 * hardware acceleration if possible, but falling back to
124 * software blinking if there is no hardware blinking or if
125 * the LED refuses the passed values.
126 *
127 * Note that if software blinking is active, simply calling
128 * led_cdev->brightness_set() will not stop the blinking,
129 * use led_classdev_brightness_set() instead.
130 */
131extern void led_blink_set(struct led_classdev *led_cdev,
132 unsigned long *delay_on,
133 unsigned long *delay_off);
5bb629c5
FB
134/**
135 * led_blink_set_oneshot - do a oneshot software blink
136 * @led_cdev: the LED to start blinking
137 * @delay_on: the time it should be on (in ms)
138 * @delay_off: the time it should ble off (in ms)
139 * @invert: blink off, then on, leaving the led on
140 *
141 * This function makes the LED blink one time for delay_on +
142 * delay_off time, ignoring the request if another one-shot
143 * blink is already in progress.
144 *
145 * If invert is set, led blinks for delay_off first, then for
146 * delay_on and leave the led on after the on-off cycle.
147 */
148extern void led_blink_set_oneshot(struct led_classdev *led_cdev,
149 unsigned long *delay_on,
150 unsigned long *delay_off,
151 int invert);
5ada28bf 152/**
19cd67e2 153 * led_set_brightness - set LED brightness
5ada28bf
JB
154 * @led_cdev: the LED to set
155 * @brightness: the brightness to set it to
156 *
157 * Set an LED's brightness, and, if necessary, cancel the
158 * software blink timer that implements blinking when the
1afcadfc 159 * hardware doesn't. This function is guaranteed not to sleep.
5ada28bf 160 */
19cd67e2 161extern void led_set_brightness(struct led_classdev *led_cdev,
5ada28bf 162 enum led_brightness brightness);
13ae79bb
JA
163
164/**
165 * led_set_brightness_sync - set LED brightness synchronously
166 * @led_cdev: the LED to set
167 * @brightness: the brightness to set it to
168 *
169 * Set an LED's brightness immediately. This function will block
170 * the caller for the time required for accessing device registers,
171 * and it can sleep.
172 *
173 * Returns: 0 on success or negative error value on failure
174 */
175extern int led_set_brightness_sync(struct led_classdev *led_cdev,
176 enum led_brightness value);
177
3ef7de53
JA
178/**
179 * led_update_brightness - update LED brightness
180 * @led_cdev: the LED to query
181 *
182 * Get an LED's current brightness and update led_cdev->brightness
183 * member with the obtained value.
184 *
185 * Returns: 0 on success or negative error value on failure
186 */
187extern int led_update_brightness(struct led_classdev *led_cdev);
5ada28bf 188
acd899e4
JA
189/**
190 * led_sysfs_disable - disable LED sysfs interface
191 * @led_cdev: the LED to set
192 *
193 * Disable the led_cdev's sysfs interface.
194 */
195extern void led_sysfs_disable(struct led_classdev *led_cdev);
196
197/**
198 * led_sysfs_enable - enable LED sysfs interface
199 * @led_cdev: the LED to set
200 *
201 * Enable the led_cdev's sysfs interface.
202 */
203extern void led_sysfs_enable(struct led_classdev *led_cdev);
204
205/**
206 * led_sysfs_is_disabled - check if LED sysfs interface is disabled
207 * @led_cdev: the LED to query
208 *
209 * Returns: true if the led_cdev's sysfs interface is disabled.
210 */
211static inline bool led_sysfs_is_disabled(struct led_classdev *led_cdev)
212{
213 return led_cdev->flags & LED_SYSFS_DISABLE;
214}
215
c3bc9956
RP
216/*
217 * LED Triggers
218 */
39f7e08a
KM
219/* Registration functions for simple triggers */
220#define DEFINE_LED_TRIGGER(x) static struct led_trigger *x;
221#define DEFINE_LED_TRIGGER_GLOBAL(x) struct led_trigger *x;
222
c3bc9956
RP
223#ifdef CONFIG_LEDS_TRIGGERS
224
225#define TRIG_NAME_MAX 50
226
227struct led_trigger {
228 /* Trigger Properties */
fb5035db
BD
229 const char *name;
230 void (*activate)(struct led_classdev *led_cdev);
231 void (*deactivate)(struct led_classdev *led_cdev);
c3bc9956
RP
232
233 /* LEDs under control by this trigger (for simple triggers) */
fb5035db
BD
234 rwlock_t leddev_list_lock;
235 struct list_head led_cdevs;
c3bc9956
RP
236
237 /* Link to next registered trigger */
fb5035db 238 struct list_head next_trig;
c3bc9956
RP
239};
240
20f56758
JA
241ssize_t led_trigger_store(struct device *dev, struct device_attribute *attr,
242 const char *buf, size_t count);
243ssize_t led_trigger_show(struct device *dev, struct device_attribute *attr,
244 char *buf);
245
c3bc9956
RP
246/* Registration functions for complex triggers */
247extern int led_trigger_register(struct led_trigger *trigger);
248extern void led_trigger_unregister(struct led_trigger *trigger);
249
c3bc9956
RP
250extern void led_trigger_register_simple(const char *name,
251 struct led_trigger **trigger);
252extern void led_trigger_unregister_simple(struct led_trigger *trigger);
253extern void led_trigger_event(struct led_trigger *trigger,
254 enum led_brightness event);
0b9536c9
VK
255extern void led_trigger_blink(struct led_trigger *trigger,
256 unsigned long *delay_on,
257 unsigned long *delay_off);
5bb629c5
FB
258extern void led_trigger_blink_oneshot(struct led_trigger *trigger,
259 unsigned long *delay_on,
260 unsigned long *delay_off,
261 int invert);
20f56758
JA
262extern void led_trigger_set_default(struct led_classdev *led_cdev);
263extern void led_trigger_set(struct led_classdev *led_cdev,
264 struct led_trigger *trigger);
265extern void led_trigger_remove(struct led_classdev *led_cdev);
266
267static inline void *led_get_trigger_data(struct led_classdev *led_cdev)
268{
269 return led_cdev->trigger_data;
270}
271
057407c7
JH
272/**
273 * led_trigger_rename_static - rename a trigger
274 * @name: the new trigger name
275 * @trig: the LED trigger to rename
276 *
277 * Change a LED trigger name by copying the string passed in
278 * name into current trigger name, which MUST be large
279 * enough for the new string.
280 *
281 * Note that name must NOT point to the same string used
282 * during LED registration, as that could lead to races.
283 *
284 * This is meant to be used on triggers with statically
285 * allocated name.
286 */
287extern void led_trigger_rename_static(const char *name,
288 struct led_trigger *trig);
c3bc9956
RP
289
290#else
291
39f7e08a
KM
292/* Trigger has no members */
293struct led_trigger {};
c3bc9956 294
39f7e08a
KM
295/* Trigger inline empty functions */
296static inline void led_trigger_register_simple(const char *name,
297 struct led_trigger **trigger) {}
298static inline void led_trigger_unregister_simple(struct led_trigger *trigger) {}
299static inline void led_trigger_event(struct led_trigger *trigger,
300 enum led_brightness event) {}
8890624a
MG
301static inline void led_trigger_blink(struct led_trigger *trigger,
302 unsigned long *delay_on,
303 unsigned long *delay_off) {}
304static inline void led_trigger_blink_oneshot(struct led_trigger *trigger,
305 unsigned long *delay_on,
306 unsigned long *delay_off,
307 int invert) {}
20f56758
JA
308static inline void led_trigger_set_default(struct led_classdev *led_cdev) {}
309static inline void led_trigger_set(struct led_classdev *led_cdev,
310 struct led_trigger *trigger) {}
311static inline void led_trigger_remove(struct led_classdev *led_cdev) {}
312static inline void *led_get_trigger_data(struct led_classdev *led_cdev)
313{
314 return NULL;
315}
316
39f7e08a 317#endif /* CONFIG_LEDS_TRIGGERS */
2bfb646c
RP
318
319/* Trigger specific functions */
320#ifdef CONFIG_LEDS_TRIGGER_IDE_DISK
321extern void ledtrig_ide_activity(void);
322#else
39f7e08a 323static inline void ledtrig_ide_activity(void) {}
2bfb646c
RP
324#endif
325
48a1d032
KM
326#if defined(CONFIG_LEDS_TRIGGER_CAMERA) || defined(CONFIG_LEDS_TRIGGER_CAMERA_MODULE)
327extern void ledtrig_flash_ctrl(bool on);
328extern void ledtrig_torch_ctrl(bool on);
329#else
330static inline void ledtrig_flash_ctrl(bool on) {}
331static inline void ledtrig_torch_ctrl(bool on) {}
332#endif
333
f46e9203
NC
334/*
335 * Generic LED platform data for describing LED names and default triggers.
336 */
337struct led_info {
338 const char *name;
326bb8a5 339 const char *default_trigger;
f46e9203
NC
340 int flags;
341};
342
343struct led_platform_data {
344 int num_leds;
345 struct led_info *leds;
346};
347
22e03f3b
RA
348/* For the leds-gpio driver */
349struct gpio_led {
350 const char *name;
326bb8a5 351 const char *default_trigger;
22e03f3b 352 unsigned gpio;
ed88bae6
TP
353 unsigned active_low : 1;
354 unsigned retain_state_suspended : 1;
355 unsigned default_state : 2;
356 /* default_state should be one of LEDS_GPIO_DEFSTATE_(ON|OFF|KEEP) */
5c51277a 357 struct gpio_desc *gpiod;
22e03f3b 358};
2146325d
BH
359#define LEDS_GPIO_DEFSTATE_OFF 0
360#define LEDS_GPIO_DEFSTATE_ON 1
361#define LEDS_GPIO_DEFSTATE_KEEP 2
22e03f3b
RA
362
363struct gpio_led_platform_data {
364 int num_leds;
9517f925 365 const struct gpio_led *leds;
2146325d
BH
366
367#define GPIO_LED_NO_BLINK_LOW 0 /* No blink GPIO state low */
368#define GPIO_LED_NO_BLINK_HIGH 1 /* No blink GPIO state high */
9517f925 369#define GPIO_LED_BLINK 2 /* Please, blink */
c673a2b4 370 int (*gpio_blink_set)(struct gpio_desc *desc, int state,
ca3259b3
HVR
371 unsigned long *delay_on,
372 unsigned long *delay_off);
22e03f3b
RA
373};
374
4440673a
UKK
375struct platform_device *gpio_led_register_device(
376 int id, const struct gpio_led_platform_data *pdata);
22e03f3b 377
8f88731d
BW
378enum cpu_led_event {
379 CPU_LED_IDLE_START, /* CPU enters idle */
380 CPU_LED_IDLE_END, /* CPU idle ends */
381 CPU_LED_START, /* Machine starts, especially resume */
382 CPU_LED_STOP, /* Machine stops, especially suspend */
383 CPU_LED_HALTED, /* Machine shutdown */
384};
385#ifdef CONFIG_LEDS_TRIGGER_CPU
386extern void ledtrig_cpu(enum cpu_led_event evt);
387#else
388static inline void ledtrig_cpu(enum cpu_led_event evt)
389{
390 return;
391}
392#endif
393
c72a1d60 394#endif /* __LINUX_LEDS_H_INCLUDED */