diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2006-03-31 05:31:50 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-31 15:19:00 -0500 |
commit | 5f27a27bd77fcfd4b90ed33668940bc3cf72768b (patch) | |
tree | 75886974943aa5dea93cfb354d8f521ca4002573 | |
parent | 6ca017658b1f902c9bba2cc1017e301581f7728d (diff) |
[PATCH] backlight: HP Jornada 680 Backlight driver updates/fixes
Updates to the HP Jornada 680 Backlight driver:
- Correct the suspend/resume functions so the driver compiles
(SUSPEND_POWER_DOWN/RESUME_POWER_ON no longer exist).
- Convert the driver to match the recent platform device changes.
- Replace the unsafe static struct platform_device with dynamic allocation.
- Convert the driver to the new backlight code.
This has not been tested on a device due to lack of hardware but wouldn't
compile beforehand.
Signed-off-by: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | drivers/video/backlight/hp680_bl.c | 139 |
1 files changed, 59 insertions, 80 deletions
diff --git a/drivers/video/backlight/hp680_bl.c b/drivers/video/backlight/hp680_bl.c index 95da4c9ed1f1..a71e984c93d4 100644 --- a/drivers/video/backlight/hp680_bl.c +++ b/drivers/video/backlight/hp680_bl.c | |||
@@ -13,7 +13,7 @@ | |||
13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include <linux/init.h> | 15 | #include <linux/init.h> |
16 | #include <linux/device.h> | 16 | #include <linux/platform_device.h> |
17 | #include <linux/spinlock.h> | 17 | #include <linux/spinlock.h> |
18 | #include <linux/fb.h> | 18 | #include <linux/fb.h> |
19 | #include <linux/backlight.h> | 19 | #include <linux/backlight.h> |
@@ -25,66 +25,58 @@ | |||
25 | #define HP680_MAX_INTENSITY 255 | 25 | #define HP680_MAX_INTENSITY 255 |
26 | #define HP680_DEFAULT_INTENSITY 10 | 26 | #define HP680_DEFAULT_INTENSITY 10 |
27 | 27 | ||
28 | static int hp680bl_powermode = FB_BLANK_UNBLANK; | 28 | static int hp680bl_suspended; |
29 | static int current_intensity = 0; | 29 | static int current_intensity = 0; |
30 | static spinlock_t bl_lock = SPIN_LOCK_UNLOCKED; | 30 | static spinlock_t bl_lock = SPIN_LOCK_UNLOCKED; |
31 | static struct backlight_device *hp680_backlight_device; | ||
31 | 32 | ||
32 | static void hp680bl_send_intensity(int intensity) | 33 | static void hp680bl_send_intensity(struct backlight_device *bd) |
33 | { | 34 | { |
34 | unsigned long flags; | 35 | unsigned long flags; |
36 | u16 v; | ||
37 | int intensity = bd->props->brightness; | ||
35 | 38 | ||
36 | if (hp680bl_powermode != FB_BLANK_UNBLANK) | 39 | if (bd->props->power != FB_BLANK_UNBLANK) |
40 | intensity = 0; | ||
41 | if (bd->props->fb_blank != FB_BLANK_UNBLANK) | ||
42 | intensity = 0; | ||
43 | if (hp680bl_suspended) | ||
37 | intensity = 0; | 44 | intensity = 0; |
38 | 45 | ||
39 | spin_lock_irqsave(&bl_lock, flags); | 46 | spin_lock_irqsave(&bl_lock, flags); |
40 | sh_dac_output(255-(u8)intensity, DAC_LCD_BRIGHTNESS); | 47 | if (intensity && current_intensity == 0) { |
48 | sh_dac_enable(DAC_LCD_BRIGHTNESS); | ||
49 | v = inw(HD64461_GPBDR); | ||
50 | v &= ~HD64461_GPBDR_LCDOFF; | ||
51 | outw(v, HD64461_GPBDR); | ||
52 | sh_dac_output(255-(u8)intensity, DAC_LCD_BRIGHTNESS); | ||
53 | } else if (intensity == 0 && current_intensity != 0) { | ||
54 | sh_dac_output(255-(u8)intensity, DAC_LCD_BRIGHTNESS); | ||
55 | sh_dac_disable(DAC_LCD_BRIGHTNESS); | ||
56 | v = inw(HD64461_GPBDR); | ||
57 | v |= HD64461_GPBDR_LCDOFF; | ||
58 | outw(v, HD64461_GPBDR); | ||
59 | } else if (intensity) { | ||
60 | sh_dac_output(255-(u8)intensity, DAC_LCD_BRIGHTNESS); | ||
61 | } | ||
41 | spin_unlock_irqrestore(&bl_lock, flags); | 62 | spin_unlock_irqrestore(&bl_lock, flags); |
42 | } | ||
43 | 63 | ||
44 | static void hp680bl_blank(int blank) | 64 | current_intensity = intensity; |
45 | { | ||
46 | u16 v; | ||
47 | |||
48 | switch(blank) { | ||
49 | |||
50 | case FB_BLANK_NORMAL: | ||
51 | case FB_BLANK_VSYNC_SUSPEND: | ||
52 | case FB_BLANK_HSYNC_SUSPEND: | ||
53 | case FB_BLANK_POWERDOWN: | ||
54 | if (hp680bl_powermode == FB_BLANK_UNBLANK) { | ||
55 | hp680bl_send_intensity(0); | ||
56 | hp680bl_powermode = blank; | ||
57 | sh_dac_disable(DAC_LCD_BRIGHTNESS); | ||
58 | v = inw(HD64461_GPBDR); | ||
59 | v |= HD64461_GPBDR_LCDOFF; | ||
60 | outw(v, HD64461_GPBDR); | ||
61 | } | ||
62 | break; | ||
63 | case FB_BLANK_UNBLANK: | ||
64 | if (hp680bl_powermode != FB_BLANK_UNBLANK) { | ||
65 | sh_dac_enable(DAC_LCD_BRIGHTNESS); | ||
66 | v = inw(HD64461_GPBDR); | ||
67 | v &= ~HD64461_GPBDR_LCDOFF; | ||
68 | outw(v, HD64461_GPBDR); | ||
69 | hp680bl_powermode = blank; | ||
70 | hp680bl_send_intensity(current_intensity); | ||
71 | } | ||
72 | break; | ||
73 | } | ||
74 | } | 65 | } |
75 | 66 | ||
67 | |||
76 | #ifdef CONFIG_PM | 68 | #ifdef CONFIG_PM |
77 | static int hp680bl_suspend(struct device *dev, pm_message_t state, u32 level) | 69 | static int hp680bl_suspend(struct platform_device *dev, pm_message_t state) |
78 | { | 70 | { |
79 | if (level == SUSPEND_POWER_DOWN) | 71 | hp680bl_suspended = 1; |
80 | hp680bl_blank(FB_BLANK_POWERDOWN); | 72 | hp680bl_send_intensity(hp680_backlight_device); |
81 | return 0; | 73 | return 0; |
82 | } | 74 | } |
83 | 75 | ||
84 | static int hp680bl_resume(struct device *dev, u32 level) | 76 | static int hp680bl_resume(struct platform_device *dev) |
85 | { | 77 | { |
86 | if (level == RESUME_POWER_ON) | 78 | hp680bl_suspended = 0; |
87 | hp680bl_blank(FB_BLANK_UNBLANK); | 79 | hp680bl_send_intensity(hp680_backlight_device); |
88 | return 0; | 80 | return 0; |
89 | } | 81 | } |
90 | #else | 82 | #else |
@@ -92,24 +84,9 @@ static int hp680bl_resume(struct device *dev, u32 level) | |||
92 | #define hp680bl_resume NULL | 84 | #define hp680bl_resume NULL |
93 | #endif | 85 | #endif |
94 | 86 | ||
95 | 87 | static int hp680bl_set_intensity(struct backlight_device *bd) | |
96 | static int hp680bl_set_power(struct backlight_device *bd, int state) | ||
97 | { | 88 | { |
98 | hp680bl_blank(state); | 89 | hp680bl_send_intensity(bd); |
99 | return 0; | ||
100 | } | ||
101 | |||
102 | static int hp680bl_get_power(struct backlight_device *bd) | ||
103 | { | ||
104 | return hp680bl_powermode; | ||
105 | } | ||
106 | |||
107 | static int hp680bl_set_intensity(struct backlight_device *bd, int intensity) | ||
108 | { | ||
109 | if (intensity > HP680_MAX_INTENSITY) | ||
110 | intensity = HP680_MAX_INTENSITY; | ||
111 | hp680bl_send_intensity(intensity); | ||
112 | current_intensity = intensity; | ||
113 | return 0; | 90 | return 0; |
114 | } | 91 | } |
115 | 92 | ||
@@ -120,65 +97,67 @@ static int hp680bl_get_intensity(struct backlight_device *bd) | |||
120 | 97 | ||
121 | static struct backlight_properties hp680bl_data = { | 98 | static struct backlight_properties hp680bl_data = { |
122 | .owner = THIS_MODULE, | 99 | .owner = THIS_MODULE, |
123 | .get_power = hp680bl_get_power, | ||
124 | .set_power = hp680bl_set_power, | ||
125 | .max_brightness = HP680_MAX_INTENSITY, | 100 | .max_brightness = HP680_MAX_INTENSITY, |
126 | .get_brightness = hp680bl_get_intensity, | 101 | .get_brightness = hp680bl_get_intensity, |
127 | .set_brightness = hp680bl_set_intensity, | 102 | .update_status = hp680bl_set_intensity, |
128 | }; | 103 | }; |
129 | 104 | ||
130 | static struct backlight_device *hp680_backlight_device; | 105 | static int __init hp680bl_probe(struct platform_device *dev) |
131 | |||
132 | static int __init hp680bl_probe(struct device *dev) | ||
133 | { | 106 | { |
134 | hp680_backlight_device = backlight_device_register ("hp680-bl", | 107 | hp680_backlight_device = backlight_device_register ("hp680-bl", |
135 | NULL, &hp680bl_data); | 108 | NULL, &hp680bl_data); |
136 | if (IS_ERR (hp680_backlight_device)) | 109 | if (IS_ERR (hp680_backlight_device)) |
137 | return PTR_ERR (hp680_backlight_device); | 110 | return PTR_ERR (hp680_backlight_device); |
138 | 111 | ||
139 | hp680bl_set_intensity(NULL, HP680_DEFAULT_INTENSITY); | 112 | hp680_backlight_device->props->brightness = HP680_DEFAULT_INTENSITY; |
113 | hp680bl_send_intensity(hp680_backlight_device); | ||
140 | 114 | ||
141 | return 0; | 115 | return 0; |
142 | } | 116 | } |
143 | 117 | ||
144 | static int hp680bl_remove(struct device *dev) | 118 | static int hp680bl_remove(struct platform_device *dev) |
145 | { | 119 | { |
146 | backlight_device_unregister(hp680_backlight_device); | 120 | backlight_device_unregister(hp680_backlight_device); |
147 | 121 | ||
148 | return 0; | 122 | return 0; |
149 | } | 123 | } |
150 | 124 | ||
151 | static struct device_driver hp680bl_driver = { | 125 | static struct platform_driver hp680bl_driver = { |
152 | .name = "hp680-bl", | ||
153 | .bus = &platform_bus_type, | ||
154 | .probe = hp680bl_probe, | 126 | .probe = hp680bl_probe, |
155 | .remove = hp680bl_remove, | 127 | .remove = hp680bl_remove, |
156 | .suspend = hp680bl_suspend, | 128 | .suspend = hp680bl_suspend, |
157 | .resume = hp680bl_resume, | 129 | .resume = hp680bl_resume, |
130 | .driver = { | ||
131 | .name = "hp680-bl", | ||
132 | }, | ||
158 | }; | 133 | }; |
159 | 134 | ||
160 | static struct platform_device hp680bl_device = { | 135 | static struct platform_device *hp680bl_device; |
161 | .name = "hp680-bl", | ||
162 | .id = -1, | ||
163 | }; | ||
164 | 136 | ||
165 | static int __init hp680bl_init(void) | 137 | static int __init hp680bl_init(void) |
166 | { | 138 | { |
167 | int ret; | 139 | int ret; |
168 | 140 | ||
169 | ret=driver_register(&hp680bl_driver); | 141 | ret = platform_driver_register(&hp680bl_driver); |
170 | if (!ret) { | 142 | if (!ret) { |
171 | ret = platform_device_register(&hp680bl_device); | 143 | hp680bl_device = platform_device_alloc("hp680-bl", -1); |
172 | if (ret) | 144 | if (!hp680bl_device) |
173 | driver_unregister(&hp680bl_driver); | 145 | return -ENOMEM; |
146 | |||
147 | ret = platform_device_add(hp680bl_device); | ||
148 | |||
149 | if (ret) { | ||
150 | platform_device_put(hp680bl_device); | ||
151 | platform_driver_unregister(&hp680bl_driver); | ||
152 | } | ||
174 | } | 153 | } |
175 | return ret; | 154 | return ret; |
176 | } | 155 | } |
177 | 156 | ||
178 | static void __exit hp680bl_exit(void) | 157 | static void __exit hp680bl_exit(void) |
179 | { | 158 | { |
180 | platform_device_unregister(&hp680bl_device); | 159 | platform_device_unregister(hp680bl_device); |
181 | driver_unregister(&hp680bl_driver); | 160 | platform_driver_unregister(&hp680bl_driver); |
182 | } | 161 | } |
183 | 162 | ||
184 | module_init(hp680bl_init); | 163 | module_init(hp680bl_init); |