Merge branch 'for-4.6-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj...
[deliverable/linux.git] / drivers / input / misc / twl6040-vibra.c
CommitLineData
cc697d38
MLC
1/*
2 * twl6040-vibra.c - TWL6040 Vibrator driver
3 *
4 * Author: Jorge Eduardo Candelaria <jorge.candelaria@ti.com>
5 * Author: Misael Lopez Cruz <misael.lopez@ti.com>
6 *
7 * Copyright: (C) 2011 Texas Instruments, Inc.
8 *
9 * Based on twl4030-vibra.c by Henrik Saari <henrik.saari@nokia.com>
10 * Felipe Balbi <felipe.balbi@nokia.com>
11 * Jari Vanhala <ext-javi.vanhala@nokia.com>
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
25 * 02110-1301 USA
26 *
27 */
28#include <linux/module.h>
29#include <linux/platform_device.h>
9ac7b1a3 30#include <linux/of.h>
cc697d38 31#include <linux/workqueue.h>
8eaeb939 32#include <linux/input.h>
cc697d38
MLC
33#include <linux/mfd/twl6040.h>
34#include <linux/slab.h>
35#include <linux/delay.h>
36#include <linux/regulator/consumer.h>
37
38#define EFFECT_DIR_180_DEG 0x8000
39
40/* Recommended modulation index 85% */
41#define TWL6040_VIBRA_MOD 85
42
43#define TWL6040_NUM_SUPPLIES 2
44
45struct vibra_info {
46 struct device *dev;
47 struct input_dev *input_dev;
cc697d38
MLC
48 struct work_struct play_work;
49 struct mutex mutex;
625cbe46 50 int irq;
cc697d38
MLC
51
52 bool enabled;
53 int weak_speed;
54 int strong_speed;
55 int direction;
56
57 unsigned int vibldrv_res;
58 unsigned int vibrdrv_res;
59 unsigned int viblmotor_res;
60 unsigned int vibrmotor_res;
61
62 struct regulator_bulk_data supplies[TWL6040_NUM_SUPPLIES];
63
64 struct twl6040 *twl6040;
65};
66
67static irqreturn_t twl6040_vib_irq_handler(int irq, void *data)
68{
69 struct vibra_info *info = data;
70 struct twl6040 *twl6040 = info->twl6040;
71 u8 status;
72
73 status = twl6040_reg_read(twl6040, TWL6040_REG_STATUS);
74 if (status & TWL6040_VIBLOCDET) {
75 dev_warn(info->dev, "Left Vibrator overcurrent detected\n");
76 twl6040_clear_bits(twl6040, TWL6040_REG_VIBCTLL,
1e036f65 77 TWL6040_VIBENA);
cc697d38
MLC
78 }
79 if (status & TWL6040_VIBROCDET) {
80 dev_warn(info->dev, "Right Vibrator overcurrent detected\n");
81 twl6040_clear_bits(twl6040, TWL6040_REG_VIBCTLR,
1e036f65 82 TWL6040_VIBENA);
cc697d38
MLC
83 }
84
85 return IRQ_HANDLED;
86}
87
88static void twl6040_vibra_enable(struct vibra_info *info)
89{
90 struct twl6040 *twl6040 = info->twl6040;
91 int ret;
92
93 ret = regulator_bulk_enable(ARRAY_SIZE(info->supplies), info->supplies);
94 if (ret) {
95 dev_err(info->dev, "failed to enable regulators %d\n", ret);
96 return;
97 }
98
99 twl6040_power(info->twl6040, 1);
7e968985 100 if (twl6040_get_revid(twl6040) <= TWL6040_REV_ES1_1) {
cc697d38
MLC
101 /*
102 * ERRATA: Disable overcurrent protection for at least
103 * 3ms when enabling vibrator drivers to avoid false
104 * overcurrent detection
105 */
106 twl6040_reg_write(twl6040, TWL6040_REG_VIBCTLL,
1e036f65 107 TWL6040_VIBENA | TWL6040_VIBCTRL);
cc697d38 108 twl6040_reg_write(twl6040, TWL6040_REG_VIBCTLR,
1e036f65 109 TWL6040_VIBENA | TWL6040_VIBCTRL);
cc697d38
MLC
110 usleep_range(3000, 3500);
111 }
112
113 twl6040_reg_write(twl6040, TWL6040_REG_VIBCTLL,
1e036f65 114 TWL6040_VIBENA);
cc697d38 115 twl6040_reg_write(twl6040, TWL6040_REG_VIBCTLR,
1e036f65 116 TWL6040_VIBENA);
cc697d38
MLC
117
118 info->enabled = true;
119}
120
121static void twl6040_vibra_disable(struct vibra_info *info)
122{
123 struct twl6040 *twl6040 = info->twl6040;
124
125 twl6040_reg_write(twl6040, TWL6040_REG_VIBCTLL, 0x00);
126 twl6040_reg_write(twl6040, TWL6040_REG_VIBCTLR, 0x00);
127 twl6040_power(info->twl6040, 0);
128
129 regulator_bulk_disable(ARRAY_SIZE(info->supplies), info->supplies);
130
131 info->enabled = false;
132}
133
134static u8 twl6040_vibra_code(int vddvib, int vibdrv_res, int motor_res,
135 int speed, int direction)
136{
137 int vpk, max_code;
138 u8 vibdat;
139
140 /* output swing */
141 vpk = (vddvib * motor_res * TWL6040_VIBRA_MOD) /
142 (100 * (vibdrv_res + motor_res));
143
144 /* 50mV per VIBDAT code step */
145 max_code = vpk / 50;
146 if (max_code > TWL6040_VIBDAT_MAX)
147 max_code = TWL6040_VIBDAT_MAX;
148
149 /* scale speed to max allowed code */
150 vibdat = (u8)((speed * max_code) / USHRT_MAX);
151
152 /* 2's complement for direction > 180 degrees */
153 vibdat *= direction;
154
155 return vibdat;
156}
157
158static void twl6040_vibra_set_effect(struct vibra_info *info)
159{
160 struct twl6040 *twl6040 = info->twl6040;
161 u8 vibdatl, vibdatr;
162 int volt;
163
164 /* weak motor */
165 volt = regulator_get_voltage(info->supplies[0].consumer) / 1000;
166 vibdatl = twl6040_vibra_code(volt, info->vibldrv_res,
167 info->viblmotor_res,
168 info->weak_speed, info->direction);
169
170 /* strong motor */
171 volt = regulator_get_voltage(info->supplies[1].consumer) / 1000;
172 vibdatr = twl6040_vibra_code(volt, info->vibrdrv_res,
173 info->vibrmotor_res,
174 info->strong_speed, info->direction);
175
176 twl6040_reg_write(twl6040, TWL6040_REG_VIBDATL, vibdatl);
177 twl6040_reg_write(twl6040, TWL6040_REG_VIBDATR, vibdatr);
178}
179
180static void vibra_play_work(struct work_struct *work)
181{
182 struct vibra_info *info = container_of(work,
183 struct vibra_info, play_work);
28a994fa
NS
184 int ret;
185
186 /* Do not allow effect, while the routing is set to use audio */
187 ret = twl6040_get_vibralr_status(info->twl6040);
188 if (ret & TWL6040_VIBSEL) {
189 dev_info(info->dev, "Vibra is configured for audio\n");
190 return;
191 }
cc697d38
MLC
192
193 mutex_lock(&info->mutex);
194
195 if (info->weak_speed || info->strong_speed) {
196 if (!info->enabled)
197 twl6040_vibra_enable(info);
198
199 twl6040_vibra_set_effect(info);
200 } else if (info->enabled)
201 twl6040_vibra_disable(info);
202
203 mutex_unlock(&info->mutex);
204}
205
206static int vibra_play(struct input_dev *input, void *data,
207 struct ff_effect *effect)
208{
209 struct vibra_info *info = input_get_drvdata(input);
5f07c32e 210
cc697d38
MLC
211 info->weak_speed = effect->u.rumble.weak_magnitude;
212 info->strong_speed = effect->u.rumble.strong_magnitude;
213 info->direction = effect->direction < EFFECT_DIR_180_DEG ? 1 : -1;
214
5f7fb6f1 215 schedule_work(&info->play_work);
cc697d38
MLC
216
217 return 0;
218}
219
220static void twl6040_vibra_close(struct input_dev *input)
221{
222 struct vibra_info *info = input_get_drvdata(input);
223
224 cancel_work_sync(&info->play_work);
225
226 mutex_lock(&info->mutex);
227
228 if (info->enabled)
229 twl6040_vibra_disable(info);
230
231 mutex_unlock(&info->mutex);
232}
233
97a652a8 234static int __maybe_unused twl6040_vibra_suspend(struct device *dev)
cc697d38
MLC
235{
236 struct platform_device *pdev = to_platform_device(dev);
237 struct vibra_info *info = platform_get_drvdata(pdev);
238
239 mutex_lock(&info->mutex);
240
241 if (info->enabled)
242 twl6040_vibra_disable(info);
243
244 mutex_unlock(&info->mutex);
245
246 return 0;
247}
cc697d38
MLC
248
249static SIMPLE_DEV_PM_OPS(twl6040_vibra_pm_ops, twl6040_vibra_suspend, NULL);
250
5298cc4c 251static int twl6040_vibra_probe(struct platform_device *pdev)
cc697d38 252{
e7ec014a 253 struct device *twl6040_core_dev = pdev->dev.parent;
32e573c4 254 struct device_node *twl6040_core_node;
cc697d38 255 struct vibra_info *info;
9ac7b1a3
PU
256 int vddvibl_uV = 0;
257 int vddvibr_uV = 0;
1f9e1470 258 int error;
cc697d38 259
e7ec014a
PU
260 twl6040_core_node = of_find_node_by_name(twl6040_core_dev->of_node,
261 "vibra");
7bf2a98a
PU
262 if (!twl6040_core_node) {
263 dev_err(&pdev->dev, "parent of node is missing?\n");
cc697d38
MLC
264 return -EINVAL;
265 }
266
b2ebcc1b 267 info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
cc697d38 268 if (!info) {
f048dd17 269 of_node_put(twl6040_core_node);
cc697d38
MLC
270 dev_err(&pdev->dev, "couldn't allocate memory\n");
271 return -ENOMEM;
272 }
273
274 info->dev = &pdev->dev;
9ac7b1a3 275
cc697d38 276 info->twl6040 = dev_get_drvdata(pdev->dev.parent);
7bf2a98a
PU
277
278 of_property_read_u32(twl6040_core_node, "ti,vibldrv-res",
279 &info->vibldrv_res);
280 of_property_read_u32(twl6040_core_node, "ti,vibrdrv-res",
281 &info->vibrdrv_res);
282 of_property_read_u32(twl6040_core_node, "ti,viblmotor-res",
283 &info->viblmotor_res);
284 of_property_read_u32(twl6040_core_node, "ti,vibrmotor-res",
285 &info->vibrmotor_res);
286 of_property_read_u32(twl6040_core_node, "ti,vddvibl-uV", &vddvibl_uV);
287 of_property_read_u32(twl6040_core_node, "ti,vddvibr-uV", &vddvibr_uV);
9ac7b1a3 288
f048dd17
LC
289 of_node_put(twl6040_core_node);
290
cc697d38
MLC
291 if ((!info->vibldrv_res && !info->viblmotor_res) ||
292 (!info->vibrdrv_res && !info->vibrmotor_res)) {
293 dev_err(info->dev, "invalid vibra driver/motor resistance\n");
b2ebcc1b 294 return -EINVAL;
cc697d38
MLC
295 }
296
625cbe46
PU
297 info->irq = platform_get_irq(pdev, 0);
298 if (info->irq < 0) {
299 dev_err(info->dev, "invalid irq\n");
b2ebcc1b 300 return -EINVAL;
625cbe46
PU
301 }
302
cc697d38
MLC
303 mutex_init(&info->mutex);
304
1f9e1470 305 error = devm_request_threaded_irq(&pdev->dev, info->irq, NULL,
4be01a29
FE
306 twl6040_vib_irq_handler,
307 IRQF_ONESHOT,
1f9e1470
FE
308 "twl6040_irq_vib", info);
309 if (error) {
310 dev_err(info->dev, "VIB IRQ request failed: %d\n", error);
311 return error;
cc697d38
MLC
312 }
313
314 info->supplies[0].supply = "vddvibl";
315 info->supplies[1].supply = "vddvibr";
e7ec014a
PU
316 /*
317 * When booted with Device tree the regulators are attached to the
318 * parent device (twl6040 MFD core)
319 */
1f9e1470
FE
320 error = devm_regulator_bulk_get(twl6040_core_dev,
321 ARRAY_SIZE(info->supplies),
322 info->supplies);
323 if (error) {
324 dev_err(info->dev, "couldn't get regulators %d\n", error);
325 return error;
cc697d38
MLC
326 }
327
9ac7b1a3 328 if (vddvibl_uV) {
1f9e1470
FE
329 error = regulator_set_voltage(info->supplies[0].consumer,
330 vddvibl_uV, vddvibl_uV);
331 if (error) {
cc697d38 332 dev_err(info->dev, "failed to set VDDVIBL volt %d\n",
1f9e1470
FE
333 error);
334 return error;
cc697d38
MLC
335 }
336 }
337
9ac7b1a3 338 if (vddvibr_uV) {
1f9e1470
FE
339 error = regulator_set_voltage(info->supplies[1].consumer,
340 vddvibr_uV, vddvibr_uV);
341 if (error) {
cc697d38 342 dev_err(info->dev, "failed to set VDDVIBR volt %d\n",
1f9e1470
FE
343 error);
344 return error;
cc697d38
MLC
345 }
346 }
347
cc697d38
MLC
348 INIT_WORK(&info->play_work, vibra_play_work);
349
1f9e1470
FE
350 info->input_dev = devm_input_allocate_device(&pdev->dev);
351 if (!info->input_dev) {
b2ebcc1b 352 dev_err(info->dev, "couldn't allocate input device\n");
1f9e1470 353 return -ENOMEM;
b2ebcc1b
PU
354 }
355
356 input_set_drvdata(info->input_dev, info);
357
358 info->input_dev->name = "twl6040:vibrator";
359 info->input_dev->id.version = 1;
b2ebcc1b
PU
360 info->input_dev->close = twl6040_vibra_close;
361 __set_bit(FF_RUMBLE, info->input_dev->ffbit);
362
1f9e1470
FE
363 error = input_ff_create_memless(info->input_dev, NULL, vibra_play);
364 if (error) {
b2ebcc1b 365 dev_err(info->dev, "couldn't register vibrator to FF\n");
1f9e1470 366 return error;
b2ebcc1b
PU
367 }
368
1f9e1470
FE
369 error = input_register_device(info->input_dev);
370 if (error) {
b2ebcc1b 371 dev_err(info->dev, "couldn't register input device\n");
1f9e1470 372 return error;
b2ebcc1b
PU
373 }
374
375 platform_set_drvdata(pdev, info);
376
cc697d38
MLC
377 return 0;
378}
379
380static struct platform_driver twl6040_vibra_driver = {
381 .probe = twl6040_vibra_probe,
cc697d38
MLC
382 .driver = {
383 .name = "twl6040-vibra",
cc697d38
MLC
384 .pm = &twl6040_vibra_pm_ops,
385 },
386};
840a746b 387module_platform_driver(twl6040_vibra_driver);
cc697d38
MLC
388
389MODULE_ALIAS("platform:twl6040-vibra");
390MODULE_DESCRIPTION("TWL6040 Vibra driver");
391MODULE_LICENSE("GPL");
392MODULE_AUTHOR("Jorge Eduardo Candelaria <jorge.candelaria@ti.com>");
393MODULE_AUTHOR("Misael Lopez Cruz <misael.lopez@ti.com>");
This page took 0.136365 seconds and 5 git commands to generate.