2 * Backlight Driver for HP Jornada 680
4 * Copyright (c) 2005 Andriy Skulysh
6 * Based on Sharp's Corgi Backlight Driver
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/platform_device.h>
17 #include <linux/spinlock.h>
19 #include <linux/backlight.h>
22 #include <mach/hp6xx.h>
23 #include <asm/hd64461.h>
25 #define HP680_MAX_INTENSITY 255
26 #define HP680_DEFAULT_INTENSITY 10
28 static int hp680bl_suspended
;
29 static int current_intensity
= 0;
30 static DEFINE_SPINLOCK(bl_lock
);
32 static void hp680bl_send_intensity(struct backlight_device
*bd
)
36 int intensity
= bd
->props
.brightness
;
38 if (bd
->props
.power
!= FB_BLANK_UNBLANK
)
40 if (bd
->props
.fb_blank
!= FB_BLANK_UNBLANK
)
42 if (hp680bl_suspended
)
45 spin_lock_irqsave(&bl_lock
, flags
);
46 if (intensity
&& current_intensity
== 0) {
47 sh_dac_enable(DAC_LCD_BRIGHTNESS
);
48 v
= inw(HD64461_GPBDR
);
49 v
&= ~HD64461_GPBDR_LCDOFF
;
50 outw(v
, HD64461_GPBDR
);
51 sh_dac_output(255-(u8
)intensity
, DAC_LCD_BRIGHTNESS
);
52 } else if (intensity
== 0 && current_intensity
!= 0) {
53 sh_dac_output(255-(u8
)intensity
, DAC_LCD_BRIGHTNESS
);
54 sh_dac_disable(DAC_LCD_BRIGHTNESS
);
55 v
= inw(HD64461_GPBDR
);
56 v
|= HD64461_GPBDR_LCDOFF
;
57 outw(v
, HD64461_GPBDR
);
58 } else if (intensity
) {
59 sh_dac_output(255-(u8
)intensity
, DAC_LCD_BRIGHTNESS
);
61 spin_unlock_irqrestore(&bl_lock
, flags
);
63 current_intensity
= intensity
;
68 static int hp680bl_suspend(struct platform_device
*pdev
, pm_message_t state
)
70 struct backlight_device
*bd
= platform_get_drvdata(pdev
);
72 hp680bl_suspended
= 1;
73 hp680bl_send_intensity(bd
);
77 static int hp680bl_resume(struct platform_device
*pdev
)
79 struct backlight_device
*bd
= platform_get_drvdata(pdev
);
81 hp680bl_suspended
= 0;
82 hp680bl_send_intensity(bd
);
86 #define hp680bl_suspend NULL
87 #define hp680bl_resume NULL
90 static int hp680bl_set_intensity(struct backlight_device
*bd
)
92 hp680bl_send_intensity(bd
);
96 static int hp680bl_get_intensity(struct backlight_device
*bd
)
98 return current_intensity
;
101 static struct backlight_ops hp680bl_ops
= {
102 .get_brightness
= hp680bl_get_intensity
,
103 .update_status
= hp680bl_set_intensity
,
106 static int __devinit
hp680bl_probe(struct platform_device
*pdev
)
108 struct backlight_device
*bd
;
110 bd
= backlight_device_register ("hp680-bl", &pdev
->dev
, NULL
,
115 platform_set_drvdata(pdev
, bd
);
117 bd
->props
.max_brightness
= HP680_MAX_INTENSITY
;
118 bd
->props
.brightness
= HP680_DEFAULT_INTENSITY
;
119 hp680bl_send_intensity(bd
);
124 static int hp680bl_remove(struct platform_device
*pdev
)
126 struct backlight_device
*bd
= platform_get_drvdata(pdev
);
128 bd
->props
.brightness
= 0;
130 hp680bl_send_intensity(bd
);
132 backlight_device_unregister(bd
);
137 static struct platform_driver hp680bl_driver
= {
138 .probe
= hp680bl_probe
,
139 .remove
= hp680bl_remove
,
140 .suspend
= hp680bl_suspend
,
141 .resume
= hp680bl_resume
,
147 static struct platform_device
*hp680bl_device
;
149 static int __init
hp680bl_init(void)
153 ret
= platform_driver_register(&hp680bl_driver
);
156 hp680bl_device
= platform_device_register_simple("hp680-bl", -1,
158 if (IS_ERR(hp680bl_device
)) {
159 platform_driver_unregister(&hp680bl_driver
);
160 return PTR_ERR(hp680bl_device
);
165 static void __exit
hp680bl_exit(void)
167 platform_device_unregister(hp680bl_device
);
168 platform_driver_unregister(&hp680bl_driver
);
171 module_init(hp680bl_init
);
172 module_exit(hp680bl_exit
);
174 MODULE_AUTHOR("Andriy Skulysh <askulysh@gmail.com>");
175 MODULE_DESCRIPTION("HP Jornada 680 Backlight Driver");
176 MODULE_LICENSE("GPL");