2 * Driver model for leds and led triggers
4 * Copyright (C) 2005 John Lenz <lenz@cs.wisc.edu>
5 * Copyright (C) 2005 Richard Purdie <rpurdie@openedhand.com>
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.
12 #ifndef __LINUX_LEDS_H_INCLUDED
13 #define __LINUX_LEDS_H_INCLUDED
15 #include <linux/device.h>
16 #include <linux/kernfs.h>
17 #include <linux/list.h>
18 #include <linux/mutex.h>
19 #include <linux/rwsem.h>
20 #include <linux/spinlock.h>
21 #include <linux/timer.h>
22 #include <linux/workqueue.h>
38 enum led_brightness brightness;
39 enum led_brightness max_brightness;
42 /* Lower 16 bits reflect status */
43 #define LED_SUSPENDED (1 << 0)
44 #define LED_UNREGISTERING (1 << 1)
45 /* Upper 16 bits reflect control information */
46 #define LED_CORE_SUSPENDRESUME (1 << 16)
47 #define LED_SYSFS_DISABLE (1 << 17)
48 #define LED_DEV_CAP_FLASH (1 << 18)
49 #define LED_HW_PLUGGABLE (1 << 19)
50 #define LED_PANIC_INDICATOR (1 << 20)
51 #define LED_BRIGHT_HW_CHANGED (1 << 21)
53 /* set_brightness_work / blink_timer flags, atomic, private. */
54 unsigned long work_flags;
56 #define LED_BLINK_SW 0
57 #define LED_BLINK_ONESHOT 1
58 #define LED_BLINK_ONESHOT_STOP 2
59 #define LED_BLINK_INVERT 3
60 #define LED_BLINK_BRIGHTNESS_CHANGE 4
61 #define LED_BLINK_DISABLE 5
63 /* Set LED brightness level
64 * Must not sleep. Use brightness_set_blocking for drivers
65 * that can sleep while setting brightness.
67 void (*brightness_set)(struct led_classdev *led_cdev,
68 enum led_brightness brightness);
70 * Set LED brightness level immediately - it can block the caller for
71 * the time required for accessing a LED device register.
73 int (*brightness_set_blocking)(struct led_classdev *led_cdev,
74 enum led_brightness brightness);
75 /* Get LED brightness level */
76 enum led_brightness (*brightness_get)(struct led_classdev *led_cdev);
79 * Activate hardware accelerated blink, delays are in milliseconds
80 * and if both are zero then a sensible default should be chosen.
81 * The call should adjust the timings in that case and if it can't
82 * match the values specified exactly.
83 * Deactivate blinking again when the brightness is set to LED_OFF
84 * via the brightness_set() callback.
86 int (*blink_set)(struct led_classdev *led_cdev,
87 unsigned long *delay_on,
88 unsigned long *delay_off);
91 const struct attribute_group **groups;
93 struct list_head node; /* LED Device list */
94 const char *default_trigger; /* Trigger to use */
96 unsigned long blink_delay_on, blink_delay_off;
97 struct timer_list blink_timer;
99 int new_blink_brightness;
100 void (*flash_resume)(struct led_classdev *led_cdev);
102 struct work_struct set_brightness_work;
103 int delayed_set_value;
105 #ifdef CONFIG_LEDS_TRIGGERS
106 /* Protects the trigger data below */
107 struct rw_semaphore trigger_lock;
109 struct led_trigger *trigger;
110 struct list_head trig_list;
112 /* true if activated - deactivate routine uses it to do cleanup */
116 #ifdef CONFIG_LEDS_BRIGHTNESS_HW_CHANGED
117 int brightness_hw_changed;
118 struct kernfs_node *brightness_hw_changed_kn;
121 /* Ensures consistent access to the LED Flash Class device */
122 struct mutex led_access;
125 extern int led_classdev_register(struct device *parent,
126 struct led_classdev *led_cdev);
127 extern int devm_led_classdev_register(struct device *parent,
128 struct led_classdev *led_cdev);
129 extern void led_classdev_unregister(struct led_classdev *led_cdev);
130 extern void devm_led_classdev_unregister(struct device *parent,
131 struct led_classdev *led_cdev);
132 extern void led_classdev_suspend(struct led_classdev *led_cdev);
133 extern void led_classdev_resume(struct led_classdev *led_cdev);
136 * led_blink_set - set blinking with software fallback
137 * @led_cdev: the LED to start blinking
138 * @delay_on: the time it should be on (in ms)
139 * @delay_off: the time it should ble off (in ms)
141 * This function makes the LED blink, attempting to use the
142 * hardware acceleration if possible, but falling back to
143 * software blinking if there is no hardware blinking or if
144 * the LED refuses the passed values.
146 * Note that if software blinking is active, simply calling
147 * led_cdev->brightness_set() will not stop the blinking,
148 * use led_classdev_brightness_set() instead.
150 extern void led_blink_set(struct led_classdev *led_cdev,
151 unsigned long *delay_on,
152 unsigned long *delay_off);
154 * led_blink_set_oneshot - do a oneshot software blink
155 * @led_cdev: the LED to start blinking
156 * @delay_on: the time it should be on (in ms)
157 * @delay_off: the time it should ble off (in ms)
158 * @invert: blink off, then on, leaving the led on
160 * This function makes the LED blink one time for delay_on +
161 * delay_off time, ignoring the request if another one-shot
162 * blink is already in progress.
164 * If invert is set, led blinks for delay_off first, then for
165 * delay_on and leave the led on after the on-off cycle.
167 extern void led_blink_set_oneshot(struct led_classdev *led_cdev,
168 unsigned long *delay_on,
169 unsigned long *delay_off,
172 * led_set_brightness - set LED brightness
173 * @led_cdev: the LED to set
174 * @brightness: the brightness to set it to
176 * Set an LED's brightness, and, if necessary, cancel the
177 * software blink timer that implements blinking when the
178 * hardware doesn't. This function is guaranteed not to sleep.
180 extern void led_set_brightness(struct led_classdev *led_cdev,
181 enum led_brightness brightness);
184 * led_set_brightness_sync - set LED brightness synchronously
185 * @led_cdev: the LED to set
186 * @brightness: the brightness to set it to
188 * Set an LED's brightness immediately. This function will block
189 * the caller for the time required for accessing device registers,
192 * Returns: 0 on success or negative error value on failure
194 extern int led_set_brightness_sync(struct led_classdev *led_cdev,
195 enum led_brightness value);
198 * led_update_brightness - update LED brightness
199 * @led_cdev: the LED to query
201 * Get an LED's current brightness and update led_cdev->brightness
202 * member with the obtained value.
204 * Returns: 0 on success or negative error value on failure
206 extern int led_update_brightness(struct led_classdev *led_cdev);
209 * led_sysfs_disable - disable LED sysfs interface
210 * @led_cdev: the LED to set
212 * Disable the led_cdev's sysfs interface.
214 extern void led_sysfs_disable(struct led_classdev *led_cdev);
217 * led_sysfs_enable - enable LED sysfs interface
218 * @led_cdev: the LED to set
220 * Enable the led_cdev's sysfs interface.
222 extern void led_sysfs_enable(struct led_classdev *led_cdev);
225 * led_sysfs_is_disabled - check if LED sysfs interface is disabled
226 * @led_cdev: the LED to query
228 * Returns: true if the led_cdev's sysfs interface is disabled.
230 static inline bool led_sysfs_is_disabled(struct led_classdev *led_cdev)
232 return led_cdev->flags & LED_SYSFS_DISABLE;
238 /* Registration functions for simple triggers */
239 #define DEFINE_LED_TRIGGER(x) static struct led_trigger *x;
240 #define DEFINE_LED_TRIGGER_GLOBAL(x) struct led_trigger *x;
242 #ifdef CONFIG_LEDS_TRIGGERS
244 #define TRIG_NAME_MAX 50
247 /* Trigger Properties */
249 void (*activate)(struct led_classdev *led_cdev);
250 void (*deactivate)(struct led_classdev *led_cdev);
252 /* LEDs under control by this trigger (for simple triggers) */
253 rwlock_t leddev_list_lock;
254 struct list_head led_cdevs;
256 /* Link to next registered trigger */
257 struct list_head next_trig;
260 ssize_t led_trigger_store(struct device *dev, struct device_attribute *attr,
261 const char *buf, size_t count);
262 ssize_t led_trigger_show(struct device *dev, struct device_attribute *attr,
265 /* Registration functions for complex triggers */
266 extern int led_trigger_register(struct led_trigger *trigger);
267 extern void led_trigger_unregister(struct led_trigger *trigger);
268 extern int devm_led_trigger_register(struct device *dev,
269 struct led_trigger *trigger);
271 extern void led_trigger_register_simple(const char *name,
272 struct led_trigger **trigger);
273 extern void led_trigger_unregister_simple(struct led_trigger *trigger);
274 extern void led_trigger_event(struct led_trigger *trigger,
275 enum led_brightness event);
276 extern void led_trigger_blink(struct led_trigger *trigger,
277 unsigned long *delay_on,
278 unsigned long *delay_off);
279 extern void led_trigger_blink_oneshot(struct led_trigger *trigger,
280 unsigned long *delay_on,
281 unsigned long *delay_off,
283 extern void led_trigger_set_default(struct led_classdev *led_cdev);
284 extern void led_trigger_set(struct led_classdev *led_cdev,
285 struct led_trigger *trigger);
286 extern void led_trigger_remove(struct led_classdev *led_cdev);
288 static inline void *led_get_trigger_data(struct led_classdev *led_cdev)
290 return led_cdev->trigger_data;
294 * led_trigger_rename_static - rename a trigger
295 * @name: the new trigger name
296 * @trig: the LED trigger to rename
298 * Change a LED trigger name by copying the string passed in
299 * name into current trigger name, which MUST be large
300 * enough for the new string.
302 * Note that name must NOT point to the same string used
303 * during LED registration, as that could lead to races.
305 * This is meant to be used on triggers with statically
308 extern void led_trigger_rename_static(const char *name,
309 struct led_trigger *trig);
313 /* Trigger has no members */
314 struct led_trigger {};
316 /* Trigger inline empty functions */
317 static inline void led_trigger_register_simple(const char *name,
318 struct led_trigger **trigger) {}
319 static inline void led_trigger_unregister_simple(struct led_trigger *trigger) {}
320 static inline void led_trigger_event(struct led_trigger *trigger,
321 enum led_brightness event) {}
322 static inline void led_trigger_blink(struct led_trigger *trigger,
323 unsigned long *delay_on,
324 unsigned long *delay_off) {}
325 static inline void led_trigger_blink_oneshot(struct led_trigger *trigger,
326 unsigned long *delay_on,
327 unsigned long *delay_off,
329 static inline void led_trigger_set_default(struct led_classdev *led_cdev) {}
330 static inline void led_trigger_set(struct led_classdev *led_cdev,
331 struct led_trigger *trigger) {}
332 static inline void led_trigger_remove(struct led_classdev *led_cdev) {}
333 static inline void *led_get_trigger_data(struct led_classdev *led_cdev)
338 #endif /* CONFIG_LEDS_TRIGGERS */
340 /* Trigger specific functions */
341 #ifdef CONFIG_LEDS_TRIGGER_DISK
342 extern void ledtrig_disk_activity(void);
344 static inline void ledtrig_disk_activity(void) {}
347 #ifdef CONFIG_LEDS_TRIGGER_MTD
348 extern void ledtrig_mtd_activity(void);
350 static inline void ledtrig_mtd_activity(void) {}
353 #if defined(CONFIG_LEDS_TRIGGER_CAMERA) || defined(CONFIG_LEDS_TRIGGER_CAMERA_MODULE)
354 extern void ledtrig_flash_ctrl(bool on);
355 extern void ledtrig_torch_ctrl(bool on);
357 static inline void ledtrig_flash_ctrl(bool on) {}
358 static inline void ledtrig_torch_ctrl(bool on) {}
362 * Generic LED platform data for describing LED names and default triggers.
366 const char *default_trigger;
370 struct led_platform_data {
372 struct led_info *leds;
376 typedef int (*gpio_blink_set_t)(struct gpio_desc *desc, int state,
377 unsigned long *delay_on,
378 unsigned long *delay_off);
380 /* For the leds-gpio driver */
383 const char *default_trigger;
385 unsigned active_low : 1;
386 unsigned retain_state_suspended : 1;
387 unsigned panic_indicator : 1;
388 unsigned default_state : 2;
389 /* default_state should be one of LEDS_GPIO_DEFSTATE_(ON|OFF|KEEP) */
390 struct gpio_desc *gpiod;
392 #define LEDS_GPIO_DEFSTATE_OFF 0
393 #define LEDS_GPIO_DEFSTATE_ON 1
394 #define LEDS_GPIO_DEFSTATE_KEEP 2
396 struct gpio_led_platform_data {
398 const struct gpio_led *leds;
400 #define GPIO_LED_NO_BLINK_LOW 0 /* No blink GPIO state low */
401 #define GPIO_LED_NO_BLINK_HIGH 1 /* No blink GPIO state high */
402 #define GPIO_LED_BLINK 2 /* Please, blink */
403 gpio_blink_set_t gpio_blink_set;
406 #ifdef CONFIG_NEW_LEDS
407 struct platform_device *gpio_led_register_device(
408 int id, const struct gpio_led_platform_data *pdata);
410 static inline struct platform_device *gpio_led_register_device(
411 int id, const struct gpio_led_platform_data *pdata)
418 CPU_LED_IDLE_START, /* CPU enters idle */
419 CPU_LED_IDLE_END, /* CPU idle ends */
420 CPU_LED_START, /* Machine starts, especially resume */
421 CPU_LED_STOP, /* Machine stops, especially suspend */
422 CPU_LED_HALTED, /* Machine shutdown */
424 #ifdef CONFIG_LEDS_TRIGGER_CPU
425 extern void ledtrig_cpu(enum cpu_led_event evt);
427 static inline void ledtrig_cpu(enum cpu_led_event evt)
433 #ifdef CONFIG_LEDS_BRIGHTNESS_HW_CHANGED
434 extern void led_classdev_notify_brightness_hw_changed(
435 struct led_classdev *led_cdev, enum led_brightness brightness);
437 static inline void led_classdev_notify_brightness_hw_changed(
438 struct led_classdev *led_cdev, enum led_brightness brightness) { }
441 #endif /* __LINUX_LEDS_H_INCLUDED */