1 From c9d44c8b43d29dd500c1dd711e490bdcd47f2830 Mon Sep 17 00:00:00 2001
2 From: Andy Green <andy@openmoko.com>
3 Date: Tue, 13 May 2008 18:53:40 +0100
4 Subject: [PATCH] fix-backlight-disable-on-zero-intensity.patch
6 It's never right to put 0 intensity into LEDOUT according to datasheet
7 But having a floor at intensity 2 means backlight isn't properly off
8 when "dimmed". So change to intensity 0 --> disable backlight.
10 Signed-off-by: Andy Green <andy@openmoko.com>
12 drivers/i2c/chips/pcf50633.c | 34 +++++++++++++++++++++-------------
13 1 files changed, 21 insertions(+), 13 deletions(-)
15 diff --git a/drivers/i2c/chips/pcf50633.c b/drivers/i2c/chips/pcf50633.c
16 index dc4ea0a..205f4e3 100644
17 --- a/drivers/i2c/chips/pcf50633.c
18 +++ b/drivers/i2c/chips/pcf50633.c
19 @@ -1458,6 +1458,9 @@ static int pcf50633bl_get_intensity(struct backlight_device *bd)
20 struct pcf50633_data *pcf = bl_get_data(bd);
21 int intensity = reg_read(pcf, PCF50633_REG_LEDOUT);
23 + if (!(reg_read(pcf, PCF50633_REG_LEDOUT) & 1))
26 return intensity & 0x3f;
29 @@ -1466,31 +1469,36 @@ static int pcf50633bl_set_intensity(struct backlight_device *bd)
30 struct pcf50633_data *pcf = bl_get_data(bd);
31 int intensity = bd->props.brightness;
32 int old_intensity = reg_read(pcf, PCF50633_REG_LEDOUT);
33 - u_int8_t ledena = 2;
36 - if (bd->props.power != FB_BLANK_UNBLANK)
38 - if (bd->props.fb_blank != FB_BLANK_UNBLANK)
39 + if (!(reg_read(pcf, PCF50633_REG_LEDOUT) & 1))
42 + if ((bd->props.power != FB_BLANK_UNBLANK) ||
43 + (bd->props.fb_blank != FB_BLANK_UNBLANK))
46 - /* The PCF50633 cannot handle LEDOUT = 0 (datasheet p60)
48 + * The PCF50633 cannot handle LEDOUT = 0 (datasheet p60)
49 * if seen, you have to re-enable the LED unit
50 + * we treat intensity 0 as disable
53 - if (intensity != 0 && old_intensity == 0) {
54 - ledena = reg_read(pcf, PCF50633_REG_LEDENA);
55 - reg_write(pcf, PCF50633_REG_LEDENA, 0x00);
56 + if (intensity && !old_intensity) {
57 + ret = reg_set_bit_mask(pcf, PCF50633_REG_LEDENA, 0x01, 0x00);
62 if (!intensity) /* illegal to set LEDOUT to 0 */
63 - ret = reg_set_bit_mask(pcf, PCF50633_REG_LEDOUT, 0x3f, 2);
65 + ret = reg_set_bit_mask(pcf, PCF50633_REG_LEDENA, 0x01, 0x00);
67 ret = reg_set_bit_mask(pcf, PCF50633_REG_LEDOUT, 0x3f,
70 - if (intensity != 0 && old_intensity == 0)
71 - reg_write(pcf, PCF50633_REG_LEDENA, ledena);
74 + ret = reg_set_bit_mask(pcf, PCF50633_REG_LEDENA, 0x01, 0x01);