2 * Miscellaneous procedures for dealing with the PowerMac hardware.
3 * Contains support for the backlight.
5 * Copyright (C) 2000 Benjamin Herrenschmidt
6 * Copyright (C) 2006 Michael Hanselmann <linux-kernel@hansmi.ch>
10 #include <linux/kernel.h>
12 #include <linux/backlight.h>
13 #include <linux/adb.h>
14 #include <linux/pmu.h>
15 #include <linux/atomic.h>
16 #include <linux/export.h>
18 #include <asm/backlight.h>
20 #define OLD_BACKLIGHT_MAX 15
22 static void pmac_backlight_key_worker(struct work_struct
*work
);
23 static void pmac_backlight_set_legacy_worker(struct work_struct
*work
);
25 static DECLARE_WORK(pmac_backlight_key_work
, pmac_backlight_key_worker
);
26 static DECLARE_WORK(pmac_backlight_set_legacy_work
, pmac_backlight_set_legacy_worker
);
28 /* Although these variables are used in interrupt context, it makes no sense to
29 * protect them. No user is able to produce enough key events per second and
30 * notice the errors that might happen.
32 static int pmac_backlight_key_queued
;
33 static int pmac_backlight_set_legacy_queued
;
35 /* The via-pmu code allows the backlight to be grabbed, in which case the
36 * in-kernel control of the brightness needs to be disabled. This should
37 * only be used by really old PowerBooks.
39 static atomic_t kernel_backlight_disabled
= ATOMIC_INIT(0);
41 /* Protect the pmac_backlight variable below.
42 You should hold this lock when using the pmac_backlight pointer to
43 prevent its potential removal. */
44 DEFINE_MUTEX(pmac_backlight_mutex
);
46 /* Main backlight storage
48 * Backlight drivers in this variable are required to have the "ops"
49 * attribute set and to have an update_status function.
51 * We can only store one backlight here, but since Apple laptops have only one
52 * internal display, it doesn't matter. Other backlight drivers can be used
56 struct backlight_device
*pmac_backlight
;
58 int pmac_has_backlight_type(const char *type
)
60 struct device_node
* bk_node
= of_find_node_by_name(NULL
, "backlight");
63 const char *prop
= of_get_property(bk_node
,
64 "backlight-control", NULL
);
65 if (prop
&& strncmp(prop
, type
, strlen(type
)) == 0) {
75 int pmac_backlight_curve_lookup(struct fb_info
*info
, int value
)
77 int level
= (FB_BACKLIGHT_LEVELS
- 1);
79 if (info
&& info
->bl_dev
) {
82 /* Look for biggest value */
83 for (i
= 0; i
< FB_BACKLIGHT_LEVELS
; i
++)
84 max
= max((int)info
->bl_curve
[i
], max
);
86 /* Look for nearest value */
87 for (i
= 0; i
< FB_BACKLIGHT_LEVELS
; i
++) {
88 int diff
= abs(info
->bl_curve
[i
] - value
);
100 static void pmac_backlight_key_worker(struct work_struct
*work
)
102 if (atomic_read(&kernel_backlight_disabled
))
105 mutex_lock(&pmac_backlight_mutex
);
106 if (pmac_backlight
) {
107 struct backlight_properties
*props
;
110 props
= &pmac_backlight
->props
;
112 brightness
= props
->brightness
+
113 ((pmac_backlight_key_queued
?-1:1) *
114 (props
->max_brightness
/ 15));
118 else if (brightness
> props
->max_brightness
)
119 brightness
= props
->max_brightness
;
121 props
->brightness
= brightness
;
122 backlight_update_status(pmac_backlight
);
124 mutex_unlock(&pmac_backlight_mutex
);
127 /* This function is called in interrupt context */
128 void pmac_backlight_key(int direction
)
130 if (atomic_read(&kernel_backlight_disabled
))
133 /* we can receive multiple interrupts here, but the scheduled work
134 * will run only once, with the last value
136 pmac_backlight_key_queued
= direction
;
137 schedule_work(&pmac_backlight_key_work
);
140 static int __pmac_backlight_set_legacy_brightness(int brightness
)
144 mutex_lock(&pmac_backlight_mutex
);
145 if (pmac_backlight
) {
146 struct backlight_properties
*props
;
148 props
= &pmac_backlight
->props
;
149 props
->brightness
= brightness
*
150 (props
->max_brightness
+ 1) /
151 (OLD_BACKLIGHT_MAX
+ 1);
153 if (props
->brightness
> props
->max_brightness
)
154 props
->brightness
= props
->max_brightness
;
155 else if (props
->brightness
< 0)
156 props
->brightness
= 0;
158 backlight_update_status(pmac_backlight
);
162 mutex_unlock(&pmac_backlight_mutex
);
167 static void pmac_backlight_set_legacy_worker(struct work_struct
*work
)
169 if (atomic_read(&kernel_backlight_disabled
))
172 __pmac_backlight_set_legacy_brightness(pmac_backlight_set_legacy_queued
);
175 /* This function is called in interrupt context */
176 void pmac_backlight_set_legacy_brightness_pmu(int brightness
) {
177 if (atomic_read(&kernel_backlight_disabled
))
180 pmac_backlight_set_legacy_queued
= brightness
;
181 schedule_work(&pmac_backlight_set_legacy_work
);
184 int pmac_backlight_set_legacy_brightness(int brightness
)
186 return __pmac_backlight_set_legacy_brightness(brightness
);
189 int pmac_backlight_get_legacy_brightness()
193 mutex_lock(&pmac_backlight_mutex
);
194 if (pmac_backlight
) {
195 struct backlight_properties
*props
;
197 props
= &pmac_backlight
->props
;
199 result
= props
->brightness
*
200 (OLD_BACKLIGHT_MAX
+ 1) /
201 (props
->max_brightness
+ 1);
203 mutex_unlock(&pmac_backlight_mutex
);
208 void pmac_backlight_disable()
210 atomic_inc(&kernel_backlight_disabled
);
213 void pmac_backlight_enable()
215 atomic_dec(&kernel_backlight_disabled
);
218 EXPORT_SYMBOL_GPL(pmac_backlight
);
219 EXPORT_SYMBOL_GPL(pmac_backlight_mutex
);
220 EXPORT_SYMBOL_GPL(pmac_has_backlight_type
);