gpio-backlight.txt 395 B

12345678910111213141516
  1. gpio-backlight bindings
  2. Required properties:
  3. - compatible: "gpio-backlight"
  4. - gpios: describes the gpio that is used for enabling/disabling the backlight.
  5. refer to bindings/gpio/gpio.txt for more details.
  6. Optional properties:
  7. - default-on: enable the backlight at boot.
  8. Example:
  9. backlight {
  10. compatible = "gpio-backlight";
  11. gpios = <&gpio3 4 GPIO_ACTIVE_HIGH>;
  12. default-on;
  13. };