2 * Backlight driver for Pandora handheld.
3 * Pandora uses TWL4030 PWM0 -> TPS61161 combo for control backlight.
6 * Copyright 2009,2012 Gražvydas Ignotas <notasas@gmail.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/platform_device.h>
16 #include <linux/delay.h>
18 #include <linux/backlight.h>
19 #include <linux/i2c/twl.h>
20 #include <linux/err.h>
22 #define TWL_PWM0_ON 0x00
23 #define TWL_PWM0_OFF 0x01
25 #define TWL_INTBR_GPBR1 0x0c
26 #define TWL_INTBR_PMBR1 0x0d
28 #define TWL_PMBR1_PWM0_MUXMASK 0x0c
29 #define TWL_PMBR1_PWM0 0x04
30 #define PWM0_CLK_ENABLE BIT(0)
31 #define PWM0_ENABLE BIT(2)
33 /* range accepted by hardware */
36 #define MAX_USER_VALUE (MAX_VALUE - MIN_VALUE)
38 #define PANDORABL_WAS_OFF BL_CORE_DRIVER1
40 static int pandora_backlight_update_status(struct backlight_device
*bl
)
42 int brightness
= bl
->props
.brightness
;
45 if (bl
->props
.power
!= FB_BLANK_UNBLANK
)
47 if (bl
->props
.state
& BL_CORE_FBBLANK
)
49 if (bl
->props
.state
& BL_CORE_SUSPENDED
)
52 if ((unsigned int)brightness
> MAX_USER_VALUE
)
53 brightness
= MAX_USER_VALUE
;
55 if (brightness
== 0) {
56 if (bl
->props
.state
& PANDORABL_WAS_OFF
)
59 /* first disable PWM0 output, then clock */
60 twl_i2c_read_u8(TWL4030_MODULE_INTBR
, &r
, TWL_INTBR_GPBR1
);
62 twl_i2c_write_u8(TWL4030_MODULE_INTBR
, r
, TWL_INTBR_GPBR1
);
63 r
&= ~PWM0_CLK_ENABLE
;
64 twl_i2c_write_u8(TWL4030_MODULE_INTBR
, r
, TWL_INTBR_GPBR1
);
69 if (bl
->props
.state
& PANDORABL_WAS_OFF
) {
71 * set PWM duty cycle to max. TPS61161 seems to use this
72 * to calibrate it's PWM sensitivity when it starts.
74 twl_i2c_write_u8(TWL_MODULE_PWM
, MAX_VALUE
, TWL_PWM0_OFF
);
76 /* first enable clock, then PWM0 out */
77 twl_i2c_read_u8(TWL4030_MODULE_INTBR
, &r
, TWL_INTBR_GPBR1
);
80 twl_i2c_write_u8(TWL4030_MODULE_INTBR
, r
, TWL_INTBR_GPBR1
);
82 twl_i2c_write_u8(TWL4030_MODULE_INTBR
, r
, TWL_INTBR_GPBR1
);
85 * TI made it very easy to enable digital control, so easy that
86 * it often triggers unintentionally and disabes PWM control,
87 * so wait until 1 wire mode detection window ends.
89 usleep_range(2000, 10000);
92 twl_i2c_write_u8(TWL_MODULE_PWM
, MIN_VALUE
+ brightness
, TWL_PWM0_OFF
);
96 bl
->props
.state
&= ~PANDORABL_WAS_OFF
;
98 bl
->props
.state
|= PANDORABL_WAS_OFF
;
103 static const struct backlight_ops pandora_backlight_ops
= {
104 .options
= BL_CORE_SUSPENDRESUME
,
105 .update_status
= pandora_backlight_update_status
,
108 static int pandora_backlight_probe(struct platform_device
*pdev
)
110 struct backlight_properties props
;
111 struct backlight_device
*bl
;
114 memset(&props
, 0, sizeof(props
));
115 props
.max_brightness
= MAX_USER_VALUE
;
116 props
.type
= BACKLIGHT_RAW
;
117 bl
= devm_backlight_device_register(&pdev
->dev
, pdev
->name
, &pdev
->dev
,
118 NULL
, &pandora_backlight_ops
, &props
);
120 dev_err(&pdev
->dev
, "failed to register backlight\n");
124 platform_set_drvdata(pdev
, bl
);
126 /* 64 cycle period, ON position 0 */
127 twl_i2c_write_u8(TWL_MODULE_PWM
, 0x80, TWL_PWM0_ON
);
129 bl
->props
.state
|= PANDORABL_WAS_OFF
;
130 bl
->props
.brightness
= MAX_USER_VALUE
;
131 backlight_update_status(bl
);
133 /* enable PWM function in pin mux */
134 twl_i2c_read_u8(TWL4030_MODULE_INTBR
, &r
, TWL_INTBR_PMBR1
);
135 r
&= ~TWL_PMBR1_PWM0_MUXMASK
;
137 twl_i2c_write_u8(TWL4030_MODULE_INTBR
, r
, TWL_INTBR_PMBR1
);
142 static struct platform_driver pandora_backlight_driver
= {
144 .name
= "pandora-backlight",
146 .probe
= pandora_backlight_probe
,
149 module_platform_driver(pandora_backlight_driver
);
151 MODULE_AUTHOR("Gražvydas Ignotas <notasas@gmail.com>");
152 MODULE_DESCRIPTION("Pandora Backlight Driver");
153 MODULE_LICENSE("GPL");
154 MODULE_ALIAS("platform:pandora-backlight");