lcd.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * LCD Lowlevel Control Abstraction
  3.  *
  4.  * Copyright (C) 2003,2004 Hewlett-Packard Company
  5.  *
  6.  */
  7. #ifndef _LINUX_LCD_H
  8. #define _LINUX_LCD_H
  9. #include <linux/device.h>
  10. #include <linux/notifier.h>
  11. struct lcd_device;
  12. struct fb_info;
  13. /* This structure defines all the properties of a LCD flat panel. */
  14. struct lcd_properties {
  15. /* Owner module */
  16. struct module *owner;
  17. /* Get the LCD panel power status (0: full on, 1..3: controller
  18.    power on, flat panel power off, 4: full off), see FB_BLANK_XXX */
  19. int (*get_power)(struct lcd_device *);
  20. /* Enable or disable power to the LCD (0: on; 4: off, see FB_BLANK_XXX) */
  21. int (*set_power)(struct lcd_device *, int power);
  22. /* The maximum value for contrast (read-only) */
  23. int max_contrast;
  24. /* Get the current contrast setting (0-max_contrast) */
  25. int (*get_contrast)(struct lcd_device *);
  26. /* Set LCD panel contrast */
  27.         int (*set_contrast)(struct lcd_device *, int contrast);
  28. /* Check if given framebuffer device is the one LCD is bound to;
  29.    return 0 if not, !=0 if it is. If NULL, lcd always matches the fb. */
  30. int (*check_fb)(struct fb_info *);
  31. };
  32. struct lcd_device {
  33. /* This protects the 'props' field. If 'props' is NULL, the driver that
  34.    registered this device has been unloaded, and if class_get_devdata()
  35.    points to something in the body of that driver, it is also invalid. */
  36. struct semaphore sem;
  37. /* If this is NULL, the backing module is unloaded */
  38. struct lcd_properties *props;
  39. /* The framebuffer notifier block */
  40. struct notifier_block fb_notif;
  41. /* The class device structure */
  42. struct class_device class_dev;
  43. };
  44. extern struct lcd_device *lcd_device_register(const char *name,
  45. void *devdata, struct lcd_properties *lp);
  46. extern void lcd_device_unregister(struct lcd_device *ld);
  47. #define to_lcd_device(obj) container_of(obj, struct lcd_device, class_dev)
  48. #endif