aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/lcd.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/lcd.h')
-rw-r--r--include/linux/lcd.h23
1 files changed, 13 insertions, 10 deletions
diff --git a/include/linux/lcd.h b/include/linux/lcd.h
index 46970af2ca89..598793c0745b 100644
--- a/include/linux/lcd.h
+++ b/include/linux/lcd.h
@@ -14,7 +14,7 @@
14 14
15/* Notes on locking: 15/* Notes on locking:
16 * 16 *
17 * lcd_device->props_lock is an internal backlight lock protecting the props 17 * lcd_device->ops_lock is an internal backlight lock protecting the ops
18 * field and no code outside the core should need to touch it. 18 * field and no code outside the core should need to touch it.
19 * 19 *
20 * Access to set_power() is serialised by the update_lock mutex since 20 * Access to set_power() is serialised by the update_lock mutex since
@@ -30,15 +30,17 @@
30struct lcd_device; 30struct lcd_device;
31struct fb_info; 31struct fb_info;
32 32
33/* This structure defines all the properties of a LCD flat panel. */
34struct lcd_properties { 33struct lcd_properties {
34 /* The maximum value for contrast (read-only) */
35 int max_contrast;
36};
37
38struct lcd_ops {
35 /* Get the LCD panel power status (0: full on, 1..3: controller 39 /* Get the LCD panel power status (0: full on, 1..3: controller
36 power on, flat panel power off, 4: full off), see FB_BLANK_XXX */ 40 power on, flat panel power off, 4: full off), see FB_BLANK_XXX */
37 int (*get_power)(struct lcd_device *); 41 int (*get_power)(struct lcd_device *);
38 /* Enable or disable power to the LCD (0: on; 4: off, see FB_BLANK_XXX) */ 42 /* Enable or disable power to the LCD (0: on; 4: off, see FB_BLANK_XXX) */
39 int (*set_power)(struct lcd_device *, int power); 43 int (*set_power)(struct lcd_device *, int power);
40 /* The maximum value for contrast (read-only) */
41 int max_contrast;
42 /* Get the current contrast setting (0-max_contrast) */ 44 /* Get the current contrast setting (0-max_contrast) */
43 int (*get_contrast)(struct lcd_device *); 45 int (*get_contrast)(struct lcd_device *);
44 /* Set LCD panel contrast */ 46 /* Set LCD panel contrast */
@@ -49,12 +51,13 @@ struct lcd_properties {
49}; 51};
50 52
51struct lcd_device { 53struct lcd_device {
52 /* This protects the 'props' field. If 'props' is NULL, the driver that 54 struct lcd_properties props;
55 /* This protects the 'ops' field. If 'ops' is NULL, the driver that
53 registered this device has been unloaded, and if class_get_devdata() 56 registered this device has been unloaded, and if class_get_devdata()
54 points to something in the body of that driver, it is also invalid. */ 57 points to something in the body of that driver, it is also invalid. */
55 struct mutex props_lock; 58 struct mutex ops_lock;
56 /* If this is NULL, the backing module is unloaded */ 59 /* If this is NULL, the backing module is unloaded */
57 struct lcd_properties *props; 60 struct lcd_ops *ops;
58 /* Serialise access to set_power method */ 61 /* Serialise access to set_power method */
59 struct mutex update_lock; 62 struct mutex update_lock;
60 /* The framebuffer notifier block */ 63 /* The framebuffer notifier block */
@@ -66,13 +69,13 @@ struct lcd_device {
66static inline void lcd_set_power(struct lcd_device *ld, int power) 69static inline void lcd_set_power(struct lcd_device *ld, int power)
67{ 70{
68 mutex_lock(&ld->update_lock); 71 mutex_lock(&ld->update_lock);
69 if (ld->props && ld->props->set_power) 72 if (ld->ops && ld->ops->set_power)
70 ld->props->set_power(ld, power); 73 ld->ops->set_power(ld, power);
71 mutex_unlock(&ld->update_lock); 74 mutex_unlock(&ld->update_lock);
72} 75}
73 76
74extern struct lcd_device *lcd_device_register(const char *name, 77extern struct lcd_device *lcd_device_register(const char *name,
75 void *devdata, struct lcd_properties *lp); 78 void *devdata, struct lcd_ops *ops);
76extern void lcd_device_unregister(struct lcd_device *ld); 79extern void lcd_device_unregister(struct lcd_device *ld);
77 80
78#define to_lcd_device(obj) container_of(obj, struct lcd_device, class_dev) 81#define to_lcd_device(obj) container_of(obj, struct lcd_device, class_dev)