backlight.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Copyright (C) 2009-2010, Lars-Peter Clausen <[email protected]>
  4. * PCF50633 backlight device driver
  5. */
  6. #ifndef __LINUX_MFD_PCF50633_BACKLIGHT
  7. #define __LINUX_MFD_PCF50633_BACKLIGHT
  8. /*
  9. * @default_brightness: Backlight brightness is initialized to this value
  10. *
  11. * Brightness to be used after the driver has been probed.
  12. * Valid range 0-63.
  13. *
  14. * @default_brightness_limit: The actual brightness is limited by this value
  15. *
  16. * Brightness limit to be used after the driver has been probed. This is useful
  17. * when it is not known how much power is available for the backlight during
  18. * probe.
  19. * Valid range 0-63. Can be changed later with pcf50633_bl_set_brightness_limit.
  20. *
  21. * @ramp_time: Display ramp time when changing brightness
  22. *
  23. * When changing the backlights brightness the change is not instant, instead
  24. * it fades smooth from one state to another. This value specifies how long
  25. * the fade should take. The lower the value the higher the fade time.
  26. * Valid range 0-255
  27. */
  28. struct pcf50633_bl_platform_data {
  29. unsigned int default_brightness;
  30. unsigned int default_brightness_limit;
  31. uint8_t ramp_time;
  32. };
  33. struct pcf50633;
  34. int pcf50633_bl_set_brightness_limit(struct pcf50633 *pcf, unsigned int limit);
  35. #endif