blob: 79ca2da81c87a9710f790241dc494f67ed003dae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Backlight Lowlevel Control Abstraction
3 *
4 * Copyright (C) 2003,2004 Hewlett-Packard Company
5 *
6 */
7
8#ifndef _LINUX_BACKLIGHT_H
9#define _LINUX_BACKLIGHT_H
10
11#include <linux/device.h>
Richard Purdie28ee0862007-02-08 22:25:09 +000012#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/notifier.h>
14
Richard Purdie28ee0862007-02-08 22:25:09 +000015/* Notes on locking:
16 *
Richard Purdie599a52d2007-02-10 23:07:48 +000017 * backlight_device->ops_lock is an internal backlight lock protecting the
18 * ops pointer and no code outside the core should need to touch it.
Richard Purdie28ee0862007-02-08 22:25:09 +000019 *
20 * Access to update_status() is serialised by the update_lock mutex since
21 * most drivers seem to need this and historically get it wrong.
22 *
23 * Most drivers don't need locking on their get_brightness() method.
24 * If yours does, you need to implement it in the driver. You can use the
25 * update_lock mutex if appropriate.
26 *
27 * Any other use of the locks below is probably wrong.
28 */
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030struct backlight_device;
31struct fb_info;
32
Richard Purdie599a52d2007-02-10 23:07:48 +000033struct backlight_ops {
Richard Purdiec835ee72009-01-06 21:00:19 +000034 unsigned int options;
35
36#define BL_CORE_SUSPENDRESUME (1 << 0)
37
Richard Purdie6ca01762006-03-31 02:31:49 -080038 /* Notify the backlight driver some property has changed */
39 int (*update_status)(struct backlight_device *);
40 /* Return the current backlight brightness (accounting for power,
41 fb_blank etc.) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 int (*get_brightness)(struct backlight_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 /* Check if given framebuffer device is the one bound to this backlight;
44 return 0 if not, !=0 if it is. If NULL, backlight always matches the fb. */
45 int (*check_fb)(struct fb_info *);
Richard Purdie599a52d2007-02-10 23:07:48 +000046};
Richard Purdie6ca01762006-03-31 02:31:49 -080047
Richard Purdie599a52d2007-02-10 23:07:48 +000048/* This structure defines all the properties of a backlight */
49struct backlight_properties {
Richard Purdie6ca01762006-03-31 02:31:49 -080050 /* Current User requested brightness (0 - max_brightness) */
51 int brightness;
52 /* Maximal value for brightness (read-only) */
53 int max_brightness;
54 /* Current FB Power mode (0: full on, 1..3: power saving
55 modes; 4: full off), see FB_BLANK_XXX */
56 int power;
57 /* FB Blanking active? (values as for power) */
Richard Purdiec835ee72009-01-06 21:00:19 +000058 /* Due to be removed, please use (state & BL_CORE_FBBLANK) */
Richard Purdie6ca01762006-03-31 02:31:49 -080059 int fb_blank;
Richard Purdiec835ee72009-01-06 21:00:19 +000060 /* Flags used to signal drivers of state changes */
61 /* Upper 4 bits are reserved for driver internal use */
62 unsigned int state;
63
64#define BL_CORE_SUSPENDED (1 << 0) /* backlight is suspended */
65#define BL_CORE_FBBLANK (1 << 1) /* backlight is under an fb blank event */
66#define BL_CORE_DRIVER4 (1 << 28) /* reserved for driver specific use */
67#define BL_CORE_DRIVER3 (1 << 29) /* reserved for driver specific use */
68#define BL_CORE_DRIVER2 (1 << 30) /* reserved for driver specific use */
69#define BL_CORE_DRIVER1 (1 << 31) /* reserved for driver specific use */
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
73struct backlight_device {
Richard Purdie599a52d2007-02-10 23:07:48 +000074 /* Backlight properties */
75 struct backlight_properties props;
76
Richard Purdie28ee0862007-02-08 22:25:09 +000077 /* Serialise access to update_status method */
78 struct mutex update_lock;
Richard Purdie599a52d2007-02-10 23:07:48 +000079
80 /* This protects the 'ops' field. If 'ops' is NULL, the driver that
81 registered this device has been unloaded, and if class_get_devdata()
82 points to something in the body of that driver, it is also invalid. */
83 struct mutex ops_lock;
84 struct backlight_ops *ops;
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 /* The framebuffer notifier block */
87 struct notifier_block fb_notif;
Richard Purdie655bfd72007-07-09 12:17:24 +010088
89 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090};
91
Richard Purdie28ee0862007-02-08 22:25:09 +000092static inline void backlight_update_status(struct backlight_device *bd)
93{
94 mutex_lock(&bd->update_lock);
Richard Purdie599a52d2007-02-10 23:07:48 +000095 if (bd->ops && bd->ops->update_status)
96 bd->ops->update_status(bd);
Richard Purdie28ee0862007-02-08 22:25:09 +000097 mutex_unlock(&bd->update_lock);
98}
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100extern struct backlight_device *backlight_device_register(const char *name,
Richard Purdie599a52d2007-02-10 23:07:48 +0000101 struct device *dev, void *devdata, struct backlight_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102extern void backlight_device_unregister(struct backlight_device *bd);
103
Richard Purdie655bfd72007-07-09 12:17:24 +0100104#define to_backlight_device(obj) container_of(obj, struct backlight_device, dev)
105
106static inline void * bl_get_data(struct backlight_device *bl_dev)
107{
108 return dev_get_drvdata(&bl_dev->dev);
109}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Richard Purdiec3f8f652007-09-03 00:27:00 +0100111struct generic_bl_info {
112 const char *name;
113 int max_intensity;
114 int default_intensity;
115 int limit_mask;
116 void (*set_bl_intensity)(int intensity);
117 void (*kick_battery)(void);
118};
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#endif