backlight.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Backlight Lowlevel Control Abstraction
  3. *
  4. * Copyright (C) 2003,2004 Hewlett-Packard Company
  5. *
  6. */
  7. #ifndef _LINUX_BACKLIGHT_H
  8. #define _LINUX_BACKLIGHT_H
  9. #include <linux/device.h>
  10. #include <linux/notifier.h>
  11. struct backlight_device;
  12. struct fb_info;
  13. /* This structure defines all the properties of a backlight
  14. (usually attached to a LCD). */
  15. struct backlight_properties {
  16. /* Owner module */
  17. struct module *owner;
  18. /* Notify the backlight driver some property has changed */
  19. int (*update_status)(struct backlight_device *);
  20. /* Return the current backlight brightness (accounting for power,
  21. fb_blank etc.) */
  22. int (*get_brightness)(struct backlight_device *);
  23. /* Check if given framebuffer device is the one bound to this backlight;
  24. return 0 if not, !=0 if it is. If NULL, backlight always matches the fb. */
  25. int (*check_fb)(struct fb_info *);
  26. /* Current User requested brightness (0 - max_brightness) */
  27. int brightness;
  28. /* Maximal value for brightness (read-only) */
  29. int max_brightness;
  30. /* Current FB Power mode (0: full on, 1..3: power saving
  31. modes; 4: full off), see FB_BLANK_XXX */
  32. int power;
  33. /* FB Blanking active? (values as for power) */
  34. int fb_blank;
  35. };
  36. struct backlight_device {
  37. /* This protects the 'props' field. If 'props' is NULL, the driver that
  38. registered this device has been unloaded, and if class_get_devdata()
  39. points to something in the body of that driver, it is also invalid. */
  40. struct semaphore sem;
  41. /* If this is NULL, the backing module is unloaded */
  42. struct backlight_properties *props;
  43. /* The framebuffer notifier block */
  44. struct notifier_block fb_notif;
  45. /* The class device structure */
  46. struct class_device class_dev;
  47. };
  48. extern struct backlight_device *backlight_device_register(const char *name,
  49. void *devdata, struct backlight_properties *bp);
  50. extern void backlight_device_unregister(struct backlight_device *bd);
  51. #define to_backlight_device(obj) container_of(obj, struct backlight_device, class_dev)
  52. #endif