diff options
author | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2013-07-04 15:13:26 -0400 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2013-07-16 00:01:19 -0400 |
commit | 67b43e590415866649e5ba8a6421bb84ecb74f72 (patch) | |
tree | 69931cf2347c38315625eacf0d59273c6b76a777 | |
parent | 82e5c40d88f928afffe7bd4027719d3184433908 (diff) |
backlight: Add ROHM BD6107 backlight driver
The BD6107 is a multi-purpose 10 channels LED driver for the mobile
market. Only the main channel is supported by this driver.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Acked-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r-- | drivers/video/backlight/Kconfig | 6 | ||||
-rw-r--r-- | drivers/video/backlight/Makefile | 1 | ||||
-rw-r--r-- | drivers/video/backlight/bd6107.c | 213 | ||||
-rw-r--r-- | include/linux/platform_data/bd6107.h | 19 |
4 files changed, 239 insertions, 0 deletions
diff --git a/drivers/video/backlight/Kconfig b/drivers/video/backlight/Kconfig index b304e075cf3a..d4a7a351d67c 100644 --- a/drivers/video/backlight/Kconfig +++ b/drivers/video/backlight/Kconfig | |||
@@ -438,6 +438,12 @@ config BACKLIGHT_LV5207LP | |||
438 | help | 438 | help |
439 | If you have a Sanyo LV5207LP say Y to enable the backlight driver. | 439 | If you have a Sanyo LV5207LP say Y to enable the backlight driver. |
440 | 440 | ||
441 | config BACKLIGHT_BD6107 | ||
442 | tristate "Rohm BD6107 Backlight" | ||
443 | depends on I2C | ||
444 | help | ||
445 | If you have a Rohm BD6107 say Y to enable the backlight driver. | ||
446 | |||
441 | endif # BACKLIGHT_CLASS_DEVICE | 447 | endif # BACKLIGHT_CLASS_DEVICE |
442 | 448 | ||
443 | endif # BACKLIGHT_LCD_SUPPORT | 449 | endif # BACKLIGHT_LCD_SUPPORT |
diff --git a/drivers/video/backlight/Makefile b/drivers/video/backlight/Makefile index 4e5e8116c8c4..38e1babb1946 100644 --- a/drivers/video/backlight/Makefile +++ b/drivers/video/backlight/Makefile | |||
@@ -26,6 +26,7 @@ obj-$(CONFIG_BACKLIGHT_ADP8870) += adp8870_bl.o | |||
26 | obj-$(CONFIG_BACKLIGHT_APPLE) += apple_bl.o | 26 | obj-$(CONFIG_BACKLIGHT_APPLE) += apple_bl.o |
27 | obj-$(CONFIG_BACKLIGHT_AS3711) += as3711_bl.o | 27 | obj-$(CONFIG_BACKLIGHT_AS3711) += as3711_bl.o |
28 | obj-$(CONFIG_BACKLIGHT_ATMEL_PWM) += atmel-pwm-bl.o | 28 | obj-$(CONFIG_BACKLIGHT_ATMEL_PWM) += atmel-pwm-bl.o |
29 | obj-$(CONFIG_BACKLIGHT_BD6107) += bd6107.o | ||
29 | obj-$(CONFIG_BACKLIGHT_CARILLO_RANCH) += cr_bllcd.o | 30 | obj-$(CONFIG_BACKLIGHT_CARILLO_RANCH) += cr_bllcd.o |
30 | obj-$(CONFIG_BACKLIGHT_CLASS_DEVICE) += backlight.o | 31 | obj-$(CONFIG_BACKLIGHT_CLASS_DEVICE) += backlight.o |
31 | obj-$(CONFIG_BACKLIGHT_DA903X) += da903x_bl.o | 32 | obj-$(CONFIG_BACKLIGHT_DA903X) += da903x_bl.o |
diff --git a/drivers/video/backlight/bd6107.c b/drivers/video/backlight/bd6107.c new file mode 100644 index 000000000000..15e3294b29fe --- /dev/null +++ b/drivers/video/backlight/bd6107.c | |||
@@ -0,0 +1,213 @@ | |||
1 | /* | ||
2 | * ROHM Semiconductor BD6107 LED Driver | ||
3 | * | ||
4 | * Copyright (C) 2013 Ideas on board SPRL | ||
5 | * | ||
6 | * Contact: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | ||
7 | * | ||
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. | ||
11 | */ | ||
12 | |||
13 | #include <linux/backlight.h> | ||
14 | #include <linux/delay.h> | ||
15 | #include <linux/err.h> | ||
16 | #include <linux/fb.h> | ||
17 | #include <linux/gpio.h> | ||
18 | #include <linux/i2c.h> | ||
19 | #include <linux/module.h> | ||
20 | #include <linux/platform_data/bd6107.h> | ||
21 | #include <linux/slab.h> | ||
22 | |||
23 | #define BD6107_PSCNT1 0x00 | ||
24 | #define BD6107_PSCNT1_PSCNTREG2 (1 << 2) | ||
25 | #define BD6107_PSCNT1_PSCNTREG1 (1 << 0) | ||
26 | #define BD6107_REGVSET 0x02 | ||
27 | #define BD6107_REGVSET_REG1VSET_2_85V (1 << 2) | ||
28 | #define BD6107_REGVSET_REG1VSET_2_80V (0 << 2) | ||
29 | #define BD6107_LEDCNT1 0x03 | ||
30 | #define BD6107_LEDCNT1_LEDONOFF2 (1 << 1) | ||
31 | #define BD6107_LEDCNT1_LEDONOFF1 (1 << 0) | ||
32 | #define BD6107_PORTSEL 0x04 | ||
33 | #define BD6107_PORTSEL_LEDM(n) (1 << (n)) | ||
34 | #define BD6107_RGB1CNT1 0x05 | ||
35 | #define BD6107_RGB1CNT2 0x06 | ||
36 | #define BD6107_RGB1CNT3 0x07 | ||
37 | #define BD6107_RGB1CNT4 0x08 | ||
38 | #define BD6107_RGB1CNT5 0x09 | ||
39 | #define BD6107_RGB1FLM 0x0a | ||
40 | #define BD6107_RGB2CNT1 0x0b | ||
41 | #define BD6107_RGB2CNT2 0x0c | ||
42 | #define BD6107_RGB2CNT3 0x0d | ||
43 | #define BD6107_RGB2CNT4 0x0e | ||
44 | #define BD6107_RGB2CNT5 0x0f | ||
45 | #define BD6107_RGB2FLM 0x10 | ||
46 | #define BD6107_PSCONT3 0x11 | ||
47 | #define BD6107_SMMONCNT 0x12 | ||
48 | #define BD6107_DCDCCNT 0x13 | ||
49 | #define BD6107_IOSEL 0x14 | ||
50 | #define BD6107_OUT1 0x15 | ||
51 | #define BD6107_OUT2 0x16 | ||
52 | #define BD6107_MASK1 0x17 | ||
53 | #define BD6107_MASK2 0x18 | ||
54 | #define BD6107_FACTOR1 0x19 | ||
55 | #define BD6107_FACTOR2 0x1a | ||
56 | #define BD6107_CLRFACT1 0x1b | ||
57 | #define BD6107_CLRFACT2 0x1c | ||
58 | #define BD6107_STATE1 0x1d | ||
59 | #define BD6107_LSIVER 0x1e | ||
60 | #define BD6107_GRPSEL 0x1f | ||
61 | #define BD6107_LEDCNT2 0x20 | ||
62 | #define BD6107_LEDCNT3 0x21 | ||
63 | #define BD6107_MCURRENT 0x22 | ||
64 | #define BD6107_MAINCNT1 0x23 | ||
65 | #define BD6107_MAINCNT2 0x24 | ||
66 | #define BD6107_SLOPECNT 0x25 | ||
67 | #define BD6107_MSLOPE 0x26 | ||
68 | #define BD6107_RGBSLOPE 0x27 | ||
69 | #define BD6107_TEST 0x29 | ||
70 | #define BD6107_SFTRST 0x2a | ||
71 | #define BD6107_SFTRSTGD 0x2b | ||
72 | |||
73 | struct bd6107 { | ||
74 | struct i2c_client *client; | ||
75 | struct backlight_device *backlight; | ||
76 | struct bd6107_platform_data *pdata; | ||
77 | }; | ||
78 | |||
79 | static int bd6107_write(struct bd6107 *bd, u8 reg, u8 data) | ||
80 | { | ||
81 | return i2c_smbus_write_byte_data(bd->client, reg, data); | ||
82 | } | ||
83 | |||
84 | static int bd6107_backlight_update_status(struct backlight_device *backlight) | ||
85 | { | ||
86 | struct bd6107 *bd = bl_get_data(backlight); | ||
87 | int brightness = backlight->props.brightness; | ||
88 | |||
89 | if (backlight->props.power != FB_BLANK_UNBLANK || | ||
90 | backlight->props.fb_blank != FB_BLANK_UNBLANK || | ||
91 | backlight->props.state & (BL_CORE_SUSPENDED | BL_CORE_FBBLANK)) | ||
92 | brightness = 0; | ||
93 | |||
94 | if (brightness) { | ||
95 | bd6107_write(bd, BD6107_PORTSEL, BD6107_PORTSEL_LEDM(2) | | ||
96 | BD6107_PORTSEL_LEDM(1) | BD6107_PORTSEL_LEDM(0)); | ||
97 | bd6107_write(bd, BD6107_MAINCNT1, brightness); | ||
98 | bd6107_write(bd, BD6107_LEDCNT1, BD6107_LEDCNT1_LEDONOFF1); | ||
99 | } else { | ||
100 | gpio_set_value(bd->pdata->reset, 0); | ||
101 | msleep(24); | ||
102 | gpio_set_value(bd->pdata->reset, 1); | ||
103 | } | ||
104 | |||
105 | return 0; | ||
106 | } | ||
107 | |||
108 | static int bd6107_backlight_get_brightness(struct backlight_device *backlight) | ||
109 | { | ||
110 | return backlight->props.brightness; | ||
111 | } | ||
112 | |||
113 | static int bd6107_backlight_check_fb(struct backlight_device *backlight, | ||
114 | struct fb_info *info) | ||
115 | { | ||
116 | struct bd6107 *bd = bl_get_data(backlight); | ||
117 | |||
118 | return bd->pdata->fbdev == NULL || bd->pdata->fbdev == info->dev; | ||
119 | } | ||
120 | |||
121 | static const struct backlight_ops bd6107_backlight_ops = { | ||
122 | .options = BL_CORE_SUSPENDRESUME, | ||
123 | .update_status = bd6107_backlight_update_status, | ||
124 | .get_brightness = bd6107_backlight_get_brightness, | ||
125 | .check_fb = bd6107_backlight_check_fb, | ||
126 | }; | ||
127 | |||
128 | static int bd6107_probe(struct i2c_client *client, | ||
129 | const struct i2c_device_id *id) | ||
130 | { | ||
131 | struct bd6107_platform_data *pdata = client->dev.platform_data; | ||
132 | struct backlight_device *backlight; | ||
133 | struct backlight_properties props; | ||
134 | struct bd6107 *bd; | ||
135 | int ret; | ||
136 | |||
137 | if (pdata == NULL || !pdata->reset) { | ||
138 | dev_err(&client->dev, "No reset GPIO in platform data\n"); | ||
139 | return -EINVAL; | ||
140 | } | ||
141 | |||
142 | if (!i2c_check_functionality(client->adapter, | ||
143 | I2C_FUNC_SMBUS_BYTE_DATA)) { | ||
144 | dev_warn(&client->dev, | ||
145 | "I2C adapter doesn't support I2C_FUNC_SMBUS_BYTE\n"); | ||
146 | return -EIO; | ||
147 | } | ||
148 | |||
149 | bd = devm_kzalloc(&client->dev, sizeof(*bd), GFP_KERNEL); | ||
150 | if (!bd) | ||
151 | return -ENOMEM; | ||
152 | |||
153 | bd->client = client; | ||
154 | bd->pdata = pdata; | ||
155 | |||
156 | ret = devm_gpio_request_one(&client->dev, pdata->reset, | ||
157 | GPIOF_DIR_OUT | GPIOF_INIT_LOW, "reset"); | ||
158 | if (ret < 0) { | ||
159 | dev_err(&client->dev, "unable to request reset GPIO\n"); | ||
160 | return ret; | ||
161 | } | ||
162 | |||
163 | memset(&props, 0, sizeof(props)); | ||
164 | props.type = BACKLIGHT_RAW; | ||
165 | props.max_brightness = 128; | ||
166 | props.brightness = clamp_t(unsigned int, pdata->def_value, 0, | ||
167 | props.max_brightness); | ||
168 | |||
169 | backlight = backlight_device_register(dev_name(&client->dev), | ||
170 | &bd->client->dev, bd, | ||
171 | &bd6107_backlight_ops, &props); | ||
172 | if (IS_ERR(backlight)) { | ||
173 | dev_err(&client->dev, "failed to register backlight\n"); | ||
174 | return PTR_ERR(backlight); | ||
175 | } | ||
176 | |||
177 | backlight_update_status(backlight); | ||
178 | i2c_set_clientdata(client, backlight); | ||
179 | |||
180 | return 0; | ||
181 | } | ||
182 | |||
183 | static int bd6107_remove(struct i2c_client *client) | ||
184 | { | ||
185 | struct backlight_device *backlight = i2c_get_clientdata(client); | ||
186 | |||
187 | backlight->props.brightness = 0; | ||
188 | backlight_update_status(backlight); | ||
189 | backlight_device_unregister(backlight); | ||
190 | |||
191 | return 0; | ||
192 | } | ||
193 | |||
194 | static const struct i2c_device_id bd6107_ids[] = { | ||
195 | { "bd6107", 0 }, | ||
196 | { } | ||
197 | }; | ||
198 | MODULE_DEVICE_TABLE(i2c, bd6107_ids); | ||
199 | |||
200 | static struct i2c_driver bd6107_driver = { | ||
201 | .driver = { | ||
202 | .name = "bd6107", | ||
203 | }, | ||
204 | .probe = bd6107_probe, | ||
205 | .remove = bd6107_remove, | ||
206 | .id_table = bd6107_ids, | ||
207 | }; | ||
208 | |||
209 | module_i2c_driver(bd6107_driver); | ||
210 | |||
211 | MODULE_DESCRIPTION("Rohm BD6107 Backlight Driver"); | ||
212 | MODULE_AUTHOR("Laurent Pinchart <laurent.pinchart@ideasonboard.com>"); | ||
213 | MODULE_LICENSE("GPL"); | ||
diff --git a/include/linux/platform_data/bd6107.h b/include/linux/platform_data/bd6107.h new file mode 100644 index 000000000000..671d6502d241 --- /dev/null +++ b/include/linux/platform_data/bd6107.h | |||
@@ -0,0 +1,19 @@ | |||
1 | /* | ||
2 | * bd6107.h - Rohm BD6107 LEDs Driver | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 as | ||
6 | * published by the Free Software Foundation. | ||
7 | */ | ||
8 | #ifndef __BD6107_H__ | ||
9 | #define __BD6107_H__ | ||
10 | |||
11 | struct device; | ||
12 | |||
13 | struct bd6107_platform_data { | ||
14 | struct device *fbdev; | ||
15 | int reset; /* Reset GPIO */ | ||
16 | unsigned int def_value; | ||
17 | }; | ||
18 | |||
19 | #endif | ||