aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/devicetree/bindings/input/regulator-haptic.txt21
-rw-r--r--drivers/input/misc/Kconfig12
-rw-r--r--drivers/input/misc/Makefile1
-rw-r--r--drivers/input/misc/regulator-haptic.c279
-rw-r--r--include/linux/platform_data/regulator-haptic.h29
5 files changed, 342 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/input/regulator-haptic.txt b/Documentation/devicetree/bindings/input/regulator-haptic.txt
new file mode 100644
index 000000000000..3ed1c7eb2f97
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/regulator-haptic.txt
@@ -0,0 +1,21 @@
1* Regulator Haptic Device Tree Bindings
2
3Required Properties:
4 - compatible : Should be "regulator-haptic"
5 - haptic-supply : Power supply to the haptic motor.
6 [*] refer Documentation/devicetree/bindings/regulator/regulator.txt
7
8 - max-microvolt : The maximum voltage value supplied to the haptic motor.
9 [The unit of the voltage is a micro]
10
11 - min-microvolt : The minimum voltage value supplied to the haptic motor.
12 [The unit of the voltage is a micro]
13
14Example:
15
16 haptics {
17 compatible = "regulator-haptic";
18 haptic-supply = <&motor_regulator>;
19 max-microvolt = <2700000>;
20 min-microvolt = <1100000>;
21 };
diff --git a/drivers/input/misc/Kconfig b/drivers/input/misc/Kconfig
index 23297ab6163f..1da0a20c42ea 100644
--- a/drivers/input/misc/Kconfig
+++ b/drivers/input/misc/Kconfig
@@ -394,6 +394,18 @@ config INPUT_CM109
394 To compile this driver as a module, choose M here: the module will be 394 To compile this driver as a module, choose M here: the module will be
395 called cm109. 395 called cm109.
396 396
397config INPUT_REGULATOR_HAPTIC
398 tristate "Regulator haptics support"
399 depends on REGULATOR
400 select INPUT_FF_MEMLESS
401 help
402 This option enables device driver support for the haptic controlled
403 by a regulator. This driver supports ff-memless interface
404 from input framework.
405
406 To compile this driver as a module, choose M here: the
407 module will be called regulator-haptic.
408
397config INPUT_RETU_PWRBUTTON 409config INPUT_RETU_PWRBUTTON
398 tristate "Retu Power button Driver" 410 tristate "Retu Power button Driver"
399 depends on MFD_RETU 411 depends on MFD_RETU
diff --git a/drivers/input/misc/Makefile b/drivers/input/misc/Makefile
index 19c760361f80..1f135af4af01 100644
--- a/drivers/input/misc/Makefile
+++ b/drivers/input/misc/Makefile
@@ -53,6 +53,7 @@ obj-$(CONFIG_INPUT_PMIC8XXX_PWRKEY) += pmic8xxx-pwrkey.o
53obj-$(CONFIG_INPUT_POWERMATE) += powermate.o 53obj-$(CONFIG_INPUT_POWERMATE) += powermate.o
54obj-$(CONFIG_INPUT_PWM_BEEPER) += pwm-beeper.o 54obj-$(CONFIG_INPUT_PWM_BEEPER) += pwm-beeper.o
55obj-$(CONFIG_INPUT_RB532_BUTTON) += rb532_button.o 55obj-$(CONFIG_INPUT_RB532_BUTTON) += rb532_button.o
56obj-$(CONFIG_INPUT_REGULATOR_HAPTIC) += regulator-haptic.o
56obj-$(CONFIG_INPUT_RETU_PWRBUTTON) += retu-pwrbutton.o 57obj-$(CONFIG_INPUT_RETU_PWRBUTTON) += retu-pwrbutton.o
57obj-$(CONFIG_INPUT_GPIO_ROTARY_ENCODER) += rotary_encoder.o 58obj-$(CONFIG_INPUT_GPIO_ROTARY_ENCODER) += rotary_encoder.o
58obj-$(CONFIG_INPUT_SGI_BTNS) += sgi_btns.o 59obj-$(CONFIG_INPUT_SGI_BTNS) += sgi_btns.o
diff --git a/drivers/input/misc/regulator-haptic.c b/drivers/input/misc/regulator-haptic.c
new file mode 100644
index 000000000000..942622189bee
--- /dev/null
+++ b/drivers/input/misc/regulator-haptic.c
@@ -0,0 +1,279 @@
1/*
2 * Regulator haptic driver
3 *
4 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
5 * Author: Jaewon Kim <jaewon02.kim@samsung.com>
6 * Author: Hyunhee Kim <hyunhee.kim@samsung.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/input.h>
14#include <linux/module.h>
15#include <linux/of.h>
16#include <linux/platform_data/regulator-haptic.h>
17#include <linux/platform_device.h>
18#include <linux/regulator/consumer.h>
19#include <linux/slab.h>
20
21#define MAX_MAGNITUDE_SHIFT 16
22
23struct regulator_haptic {
24 struct device *dev;
25 struct input_dev *input_dev;
26 struct regulator *regulator;
27
28 struct work_struct work;
29 struct mutex mutex;
30
31 bool active;
32 bool suspended;
33
34 unsigned int max_volt;
35 unsigned int min_volt;
36 unsigned int magnitude;
37};
38
39static int regulator_haptic_toggle(struct regulator_haptic *haptic, bool on)
40{
41 int error;
42
43 if (haptic->active != on) {
44
45 error = on ? regulator_enable(haptic->regulator) :
46 regulator_disable(haptic->regulator);
47 if (error) {
48 dev_err(haptic->dev,
49 "failed to switch regulator %s: %d\n",
50 on ? "on" : "off", error);
51 return error;
52 }
53
54 haptic->active = on;
55 }
56
57 return 0;
58}
59
60static int regulator_haptic_set_voltage(struct regulator_haptic *haptic,
61 unsigned int magnitude)
62{
63 u64 volt_mag_multi;
64 unsigned int intensity;
65 int error;
66
67 volt_mag_multi = (u64)(haptic->max_volt - haptic->min_volt) * magnitude;
68 intensity = (unsigned int)(volt_mag_multi >> MAX_MAGNITUDE_SHIFT);
69
70 error = regulator_set_voltage(haptic->regulator,
71 intensity + haptic->min_volt,
72 haptic->max_volt);
73 if (error) {
74 dev_err(haptic->dev, "cannot set regulator voltage to %d: %d\n",
75 intensity + haptic->min_volt, error);
76 return error;
77 }
78
79 return 0;
80}
81
82static void regulator_haptic_work(struct work_struct *work)
83{
84 struct regulator_haptic *haptic = container_of(work,
85 struct regulator_haptic, work);
86 unsigned int magnitude;
87 int error;
88
89 mutex_lock(&haptic->mutex);
90
91 if (haptic->suspended)
92 goto out;
93
94 magnitude = ACCESS_ONCE(haptic->magnitude);
95
96 error = regulator_haptic_set_voltage(haptic, magnitude);
97 if (error)
98 goto out;
99
100 regulator_haptic_toggle(haptic, magnitude != 0);
101
102out:
103 mutex_unlock(&haptic->mutex);
104}
105
106static int regulator_haptic_play_effect(struct input_dev *input, void *data,
107 struct ff_effect *effect)
108{
109 struct regulator_haptic *haptic = input_get_drvdata(input);
110
111 haptic->magnitude = effect->u.rumble.strong_magnitude;
112 if (!haptic->magnitude)
113 haptic->magnitude = effect->u.rumble.weak_magnitude;
114
115 schedule_work(&haptic->work);
116
117 return 0;
118}
119
120static void regulator_haptic_close(struct input_dev *input)
121{
122 struct regulator_haptic *haptic = input_get_drvdata(input);
123
124 cancel_work_sync(&haptic->work);
125 regulator_haptic_set_voltage(haptic, 0);
126 regulator_haptic_toggle(haptic, false);
127}
128
129static int __maybe_unused