leds-class.txt 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. LED handling under Linux
  2. ========================
  3. In its simplest form, the LED class just allows control of LEDs from
  4. userspace. LEDs appear in /sys/class/leds/. The maximum brightness of the
  5. LED is defined in max_brightness file. The brightness file will set the brightness
  6. of the LED (taking a value 0-max_brightness). Most LEDs don't have hardware
  7. brightness support so will just be turned on for non-zero brightness settings.
  8. The class also introduces the optional concept of an LED trigger. A trigger
  9. is a kernel based source of led events. Triggers can either be simple or
  10. complex. A simple trigger isn't configurable and is designed to slot into
  11. existing subsystems with minimal additional code. Examples are the ide-disk,
  12. nand-disk and sharpsl-charge triggers. With led triggers disabled, the code
  13. optimises away.
  14. Complex triggers whilst available to all LEDs have LED specific
  15. parameters and work on a per LED basis. The timer trigger is an example.
  16. The timer trigger will periodically change the LED brightness between
  17. LED_OFF and the current brightness setting. The "on" and "off" time can
  18. be specified via /sys/class/leds/<device>/delay_{on,off} in milliseconds.
  19. You can change the brightness value of a LED independently of the timer
  20. trigger. However, if you set the brightness value to LED_OFF it will
  21. also disable the timer trigger.
  22. You can change triggers in a similar manner to the way an IO scheduler
  23. is chosen (via /sys/class/leds/<device>/trigger). Trigger specific
  24. parameters can appear in /sys/class/leds/<device> once a given trigger is
  25. selected.
  26. Design Philosophy
  27. =================
  28. The underlying design philosophy is simplicity. LEDs are simple devices
  29. and the aim is to keep a small amount of code giving as much functionality
  30. as possible. Please keep this in mind when suggesting enhancements.
  31. LED Device Naming
  32. =================
  33. Is currently of the form:
  34. "devicename:colour:function"
  35. There have been calls for LED properties such as colour to be exported as
  36. individual led class attributes. As a solution which doesn't incur as much
  37. overhead, I suggest these become part of the device name. The naming scheme
  38. above leaves scope for further attributes should they be needed. If sections
  39. of the name don't apply, just leave that section blank.
  40. Hardware accelerated blink of LEDs
  41. ==================================
  42. Some LEDs can be programmed to blink without any CPU interaction. To
  43. support this feature, a LED driver can optionally implement the
  44. blink_set() function (see <linux/leds.h>). To set an LED to blinking,
  45. however, it is better to use the API function led_blink_set(), as it
  46. will check and implement software fallback if necessary.
  47. To turn off blinking again, use the API function led_brightness_set()
  48. as that will not just set the LED brightness but also stop any software
  49. timers that may have been required for blinking.
  50. The blink_set() function should choose a user friendly blinking value
  51. if it is called with *delay_on==0 && *delay_off==0 parameters. In this
  52. case the driver should give back the chosen value through delay_on and
  53. delay_off parameters to the leds subsystem.
  54. Setting the brightness to zero with brightness_set() callback function
  55. should completely turn off the LED and cancel the previously programmed
  56. hardware blinking function, if any.
  57. Known Issues
  58. ============
  59. The LED Trigger core cannot be a module as the simple trigger functions
  60. would cause nightmare dependency issues. I see this as a minor issue
  61. compared to the benefits the simple trigger functionality brings. The
  62. rest of the LED subsystem can be modular.
  63. Future Development
  64. ==================
  65. At the moment, a trigger can't be created specifically for a single LED.
  66. There are a number of cases where a trigger might only be mappable to a
  67. particular LED (ACPI?). The addition of triggers provided by the LED driver
  68. should cover this option and be possible to add without breaking the
  69. current interface.