leds-class.txt 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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 disk-activity,
  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. Brightness setting API
  41. ======================
  42. LED subsystem core exposes following API for setting brightness:
  43. - led_set_brightness : it is guaranteed not to sleep, passing LED_OFF stops
  44. blinking,
  45. - led_set_brightness_sync : for use cases when immediate effect is desired -
  46. it can block the caller for the time required for accessing
  47. device registers and can sleep, passing LED_OFF stops hardware
  48. blinking, returns -EBUSY if software blink fallback is enabled.
  49. Hardware accelerated blink of LEDs
  50. ==================================
  51. Some LEDs can be programmed to blink without any CPU interaction. To
  52. support this feature, a LED driver can optionally implement the
  53. blink_set() function (see <linux/leds.h>). To set an LED to blinking,
  54. however, it is better to use the API function led_blink_set(), as it
  55. will check and implement software fallback if necessary.
  56. To turn off blinking, use the API function led_brightness_set()
  57. with brightness value LED_OFF, which should stop any software
  58. timers that may have been required for blinking.
  59. The blink_set() function should choose a user friendly blinking value
  60. if it is called with *delay_on==0 && *delay_off==0 parameters. In this
  61. case the driver should give back the chosen value through delay_on and
  62. delay_off parameters to the leds subsystem.
  63. Setting the brightness to zero with brightness_set() callback function
  64. should completely turn off the LED and cancel the previously programmed
  65. hardware blinking function, if any.
  66. Known Issues
  67. ============
  68. The LED Trigger core cannot be a module as the simple trigger functions
  69. would cause nightmare dependency issues. I see this as a minor issue
  70. compared to the benefits the simple trigger functionality brings. The
  71. rest of the LED subsystem can be modular.
  72. Future Development
  73. ==================
  74. At the moment, a trigger can't be created specifically for a single LED.
  75. There are a number of cases where a trigger might only be mappable to a
  76. particular LED (ACPI?). The addition of triggers provided by the LED driver
  77. should cover this option and be possible to add without breaking the
  78. current interface.