Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/* Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
3 */
4
5#include <linux/errno.h>
6#include <linux/input.h>
7#include <linux/kernel.h>
8#include <linux/module.h>
9#include <linux/of.h>
10#include <linux/platform_device.h>
11#include <linux/regmap.h>
12#include <linux/slab.h>
13
14#define VIB_MAX_LEVEL_mV (3100)
15#define VIB_MIN_LEVEL_mV (1200)
16#define VIB_MAX_LEVELS (VIB_MAX_LEVEL_mV - VIB_MIN_LEVEL_mV)
17
18#define MAX_FF_SPEED 0xff
19
20struct pm8xxx_regs {
21 unsigned int enable_addr;
22 unsigned int enable_mask;
23
24 unsigned int drv_addr;
25 unsigned int drv_mask;
26 unsigned int drv_shift;
27 unsigned int drv_en_manual_mask;
28};
29
30static const struct pm8xxx_regs pm8058_regs = {
31 .drv_addr = 0x4A,
32 .drv_mask = 0xf8,
33 .drv_shift = 3,
34 .drv_en_manual_mask = 0xfc,
35};
36
37static struct pm8xxx_regs pm8916_regs = {
38 .enable_addr = 0xc046,
39 .enable_mask = BIT(7),
40 .drv_addr = 0xc041,
41 .drv_mask = 0x1F,
42 .drv_shift = 0,
43 .drv_en_manual_mask = 0,
44};
45
46/**
47 * struct pm8xxx_vib - structure to hold vibrator data
48 * @vib_input_dev: input device supporting force feedback
49 * @work: work structure to set the vibration parameters
50 * @regmap: regmap for register read/write
51 * @regs: registers' info
52 * @speed: speed of vibration set from userland
53 * @active: state of vibrator
54 * @level: level of vibration to set in the chip
55 * @reg_vib_drv: regs->drv_addr register value
56 */
57struct pm8xxx_vib {
58 struct input_dev *vib_input_dev;
59 struct work_struct work;
60 struct regmap *regmap;
61 const struct pm8xxx_regs *regs;
62 int speed;
63 int level;
64 bool active;
65 u8 reg_vib_drv;
66};
67
68/**
69 * pm8xxx_vib_set - handler to start/stop vibration
70 * @vib: pointer to vibrator structure
71 * @on: state to set
72 */
73static int pm8xxx_vib_set(struct pm8xxx_vib *vib, bool on)
74{
75 int rc;
76 unsigned int val = vib->reg_vib_drv;
77 const struct pm8xxx_regs *regs = vib->regs;
78
79 if (on)
80 val |= (vib->level << regs->drv_shift) & regs->drv_mask;
81 else
82 val &= ~regs->drv_mask;
83
84 rc = regmap_write(vib->regmap, regs->drv_addr, val);
85 if (rc < 0)
86 return rc;
87
88 vib->reg_vib_drv = val;
89
90 if (regs->enable_mask)
91 rc = regmap_update_bits(vib->regmap, regs->enable_addr,
92 regs->enable_mask, on ? ~0 : 0);
93
94 return rc;
95}
96
97/**
98 * pm8xxx_work_handler - worker to set vibration level
99 * @work: pointer to work_struct
100 */
101static void pm8xxx_work_handler(struct work_struct *work)
102{
103 struct pm8xxx_vib *vib = container_of(work, struct pm8xxx_vib, work);
104 const struct pm8xxx_regs *regs = vib->regs;
105 int rc;
106 unsigned int val;
107
108 rc = regmap_read(vib->regmap, regs->drv_addr, &val);
109 if (rc < 0)
110 return;
111
112 /*
113 * pmic vibrator supports voltage ranges from 1.2 to 3.1V, so
114 * scale the level to fit into these ranges.
115 */
116 if (vib->speed) {
117 vib->active = true;
118 vib->level = ((VIB_MAX_LEVELS * vib->speed) / MAX_FF_SPEED) +
119 VIB_MIN_LEVEL_mV;
120 vib->level /= 100;
121 } else {
122 vib->active = false;
123 vib->level = VIB_MIN_LEVEL_mV / 100;
124 }
125
126 pm8xxx_vib_set(vib, vib->active);
127}
128
129/**
130 * pm8xxx_vib_close - callback of input close callback
131 * @dev: input device pointer
132 *
133 * Turns off the vibrator.
134 */
135static void pm8xxx_vib_close(struct input_dev *dev)
136{
137 struct pm8xxx_vib *vib = input_get_drvdata(dev);
138
139 cancel_work_sync(&vib->work);
140 if (vib->active)
141 pm8xxx_vib_set(vib, false);
142}
143
144/**
145 * pm8xxx_vib_play_effect - function to handle vib effects.
146 * @dev: input device pointer
147 * @data: data of effect
148 * @effect: effect to play
149 *
150 * Currently this driver supports only rumble effects.
151 */
152static int pm8xxx_vib_play_effect(struct input_dev *dev, void *data,
153 struct ff_effect *effect)
154{
155 struct pm8xxx_vib *vib = input_get_drvdata(dev);
156
157 vib->speed = effect->u.rumble.strong_magnitude >> 8;
158 if (!vib->speed)
159 vib->speed = effect->u.rumble.weak_magnitude >> 9;
160
161 schedule_work(&vib->work);
162
163 return 0;
164}
165
166static int pm8xxx_vib_probe(struct platform_device *pdev)
167{
168 struct pm8xxx_vib *vib;
169 struct input_dev *input_dev;
170 int error;
171 unsigned int val;
172 const struct pm8xxx_regs *regs;
173
174 vib = devm_kzalloc(&pdev->dev, sizeof(*vib), GFP_KERNEL);
175 if (!vib)
176 return -ENOMEM;
177
178 vib->regmap = dev_get_regmap(pdev->dev.parent, NULL);
179 if (!vib->regmap)
180 return -ENODEV;
181
182 input_dev = devm_input_allocate_device(&pdev->dev);
183 if (!input_dev)
184 return -ENOMEM;
185
186 INIT_WORK(&vib->work, pm8xxx_work_handler);
187 vib->vib_input_dev = input_dev;
188
189 regs = of_device_get_match_data(&pdev->dev);
190
191 /* operate in manual mode */
192 error = regmap_read(vib->regmap, regs->drv_addr, &val);
193 if (error < 0)
194 return error;
195
196 val &= regs->drv_en_manual_mask;
197 error = regmap_write(vib->regmap, regs->drv_addr, val);
198 if (error < 0)
199 return error;
200
201 vib->regs = regs;
202 vib->reg_vib_drv = val;
203
204 input_dev->name = "pm8xxx_vib_ffmemless";
205 input_dev->id.version = 1;
206 input_dev->close = pm8xxx_vib_close;
207 input_set_drvdata(input_dev, vib);
208 input_set_capability(vib->vib_input_dev, EV_FF, FF_RUMBLE);
209
210 error = input_ff_create_memless(input_dev, NULL,
211 pm8xxx_vib_play_effect);
212 if (error) {
213 dev_err(&pdev->dev,
214 "couldn't register vibrator as FF device\n");
215 return error;
216 }
217
218 error = input_register_device(input_dev);
219 if (error) {
220 dev_err(&pdev->dev, "couldn't register input device\n");
221 return error;
222 }
223
224 platform_set_drvdata(pdev, vib);
225 return 0;
226}
227
228static int pm8xxx_vib_suspend(struct device *dev)
229{
230 struct pm8xxx_vib *vib = dev_get_drvdata(dev);
231
232 /* Turn off the vibrator */
233 pm8xxx_vib_set(vib, false);
234
235 return 0;
236}
237
238static DEFINE_SIMPLE_DEV_PM_OPS(pm8xxx_vib_pm_ops, pm8xxx_vib_suspend, NULL);
239
240static const struct of_device_id pm8xxx_vib_id_table[] = {
241 { .compatible = "qcom,pm8058-vib", .data = &pm8058_regs },
242 { .compatible = "qcom,pm8921-vib", .data = &pm8058_regs },
243 { .compatible = "qcom,pm8916-vib", .data = &pm8916_regs },
244 { }
245};
246MODULE_DEVICE_TABLE(of, pm8xxx_vib_id_table);
247
248static struct platform_driver pm8xxx_vib_driver = {
249 .probe = pm8xxx_vib_probe,
250 .driver = {
251 .name = "pm8xxx-vib",
252 .pm = pm_sleep_ptr(&pm8xxx_vib_pm_ops),
253 .of_match_table = pm8xxx_vib_id_table,
254 },
255};
256module_platform_driver(pm8xxx_vib_driver);
257
258MODULE_ALIAS("platform:pm8xxx_vib");
259MODULE_DESCRIPTION("PMIC8xxx vibrator driver based on ff-memless framework");
260MODULE_LICENSE("GPL v2");
261MODULE_AUTHOR("Amy Maloche <amaloche@codeaurora.org>");
1/* Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/kernel.h>
16#include <linux/errno.h>
17#include <linux/platform_device.h>
18#include <linux/input.h>
19#include <linux/slab.h>
20#include <linux/mfd/pm8xxx/core.h>
21
22#define VIB_DRV 0x4A
23
24#define VIB_DRV_SEL_MASK 0xf8
25#define VIB_DRV_SEL_SHIFT 0x03
26#define VIB_DRV_EN_MANUAL_MASK 0xfc
27
28#define VIB_MAX_LEVEL_mV (3100)
29#define VIB_MIN_LEVEL_mV (1200)
30#define VIB_MAX_LEVELS (VIB_MAX_LEVEL_mV - VIB_MIN_LEVEL_mV)
31
32#define MAX_FF_SPEED 0xff
33
34/**
35 * struct pm8xxx_vib - structure to hold vibrator data
36 * @vib_input_dev: input device supporting force feedback
37 * @work: work structure to set the vibration parameters
38 * @dev: device supporting force feedback
39 * @speed: speed of vibration set from userland
40 * @active: state of vibrator
41 * @level: level of vibration to set in the chip
42 * @reg_vib_drv: VIB_DRV register value
43 */
44struct pm8xxx_vib {
45 struct input_dev *vib_input_dev;
46 struct work_struct work;
47 struct device *dev;
48 int speed;
49 int level;
50 bool active;
51 u8 reg_vib_drv;
52};
53
54/**
55 * pm8xxx_vib_read_u8 - helper to read a byte from pmic chip
56 * @vib: pointer to vibrator structure
57 * @data: placeholder for data to be read
58 * @reg: register address
59 */
60static int pm8xxx_vib_read_u8(struct pm8xxx_vib *vib,
61 u8 *data, u16 reg)
62{
63 int rc;
64
65 rc = pm8xxx_readb(vib->dev->parent, reg, data);
66 if (rc < 0)
67 dev_warn(vib->dev, "Error reading pm8xxx reg 0x%x(0x%x)\n",
68 reg, rc);
69 return rc;
70}
71
72/**
73 * pm8xxx_vib_write_u8 - helper to write a byte to pmic chip
74 * @vib: pointer to vibrator structure
75 * @data: data to write
76 * @reg: register address
77 */
78static int pm8xxx_vib_write_u8(struct pm8xxx_vib *vib,
79 u8 data, u16 reg)
80{
81 int rc;
82
83 rc = pm8xxx_writeb(vib->dev->parent, reg, data);
84 if (rc < 0)
85 dev_warn(vib->dev, "Error writing pm8xxx reg 0x%x(0x%x)\n",
86 reg, rc);
87 return rc;
88}
89
90/**
91 * pm8xxx_vib_set - handler to start/stop vibration
92 * @vib: pointer to vibrator structure
93 * @on: state to set
94 */
95static int pm8xxx_vib_set(struct pm8xxx_vib *vib, bool on)
96{
97 int rc;
98 u8 val = vib->reg_vib_drv;
99
100 if (on)
101 val |= ((vib->level << VIB_DRV_SEL_SHIFT) & VIB_DRV_SEL_MASK);
102 else
103 val &= ~VIB_DRV_SEL_MASK;
104
105 rc = pm8xxx_vib_write_u8(vib, val, VIB_DRV);
106 if (rc < 0)
107 return rc;
108
109 vib->reg_vib_drv = val;
110 return 0;
111}
112
113/**
114 * pm8xxx_work_handler - worker to set vibration level
115 * @work: pointer to work_struct
116 */
117static void pm8xxx_work_handler(struct work_struct *work)
118{
119 struct pm8xxx_vib *vib = container_of(work, struct pm8xxx_vib, work);
120 int rc;
121 u8 val;
122
123 rc = pm8xxx_vib_read_u8(vib, &val, VIB_DRV);
124 if (rc < 0)
125 return;
126
127 /*
128 * pmic vibrator supports voltage ranges from 1.2 to 3.1V, so
129 * scale the level to fit into these ranges.
130 */
131 if (vib->speed) {
132 vib->active = true;
133 vib->level = ((VIB_MAX_LEVELS * vib->speed) / MAX_FF_SPEED) +
134 VIB_MIN_LEVEL_mV;
135 vib->level /= 100;
136 } else {
137 vib->active = false;
138 vib->level = VIB_MIN_LEVEL_mV / 100;
139 }
140
141 pm8xxx_vib_set(vib, vib->active);
142}
143
144/**
145 * pm8xxx_vib_close - callback of input close callback
146 * @dev: input device pointer
147 *
148 * Turns off the vibrator.
149 */
150static void pm8xxx_vib_close(struct input_dev *dev)
151{
152 struct pm8xxx_vib *vib = input_get_drvdata(dev);
153
154 cancel_work_sync(&vib->work);
155 if (vib->active)
156 pm8xxx_vib_set(vib, false);
157}
158
159/**
160 * pm8xxx_vib_play_effect - function to handle vib effects.
161 * @dev: input device pointer
162 * @data: data of effect
163 * @effect: effect to play
164 *
165 * Currently this driver supports only rumble effects.
166 */
167static int pm8xxx_vib_play_effect(struct input_dev *dev, void *data,
168 struct ff_effect *effect)
169{
170 struct pm8xxx_vib *vib = input_get_drvdata(dev);
171
172 vib->speed = effect->u.rumble.strong_magnitude >> 8;
173 if (!vib->speed)
174 vib->speed = effect->u.rumble.weak_magnitude >> 9;
175
176 schedule_work(&vib->work);
177
178 return 0;
179}
180
181static int __devinit pm8xxx_vib_probe(struct platform_device *pdev)
182
183{
184 struct pm8xxx_vib *vib;
185 struct input_dev *input_dev;
186 int error;
187 u8 val;
188
189 vib = kzalloc(sizeof(*vib), GFP_KERNEL);
190 input_dev = input_allocate_device();
191 if (!vib || !input_dev) {
192 dev_err(&pdev->dev, "couldn't allocate memory\n");
193 error = -ENOMEM;
194 goto err_free_mem;
195 }
196
197 INIT_WORK(&vib->work, pm8xxx_work_handler);
198 vib->dev = &pdev->dev;
199 vib->vib_input_dev = input_dev;
200
201 /* operate in manual mode */
202 error = pm8xxx_vib_read_u8(vib, &val, VIB_DRV);
203 if (error < 0)
204 goto err_free_mem;
205 val &= ~VIB_DRV_EN_MANUAL_MASK;
206 error = pm8xxx_vib_write_u8(vib, val, VIB_DRV);
207 if (error < 0)
208 goto err_free_mem;
209
210 vib->reg_vib_drv = val;
211
212 input_dev->name = "pm8xxx_vib_ffmemless";
213 input_dev->id.version = 1;
214 input_dev->dev.parent = &pdev->dev;
215 input_dev->close = pm8xxx_vib_close;
216 input_set_drvdata(input_dev, vib);
217 input_set_capability(vib->vib_input_dev, EV_FF, FF_RUMBLE);
218
219 error = input_ff_create_memless(input_dev, NULL,
220 pm8xxx_vib_play_effect);
221 if (error) {
222 dev_err(&pdev->dev,
223 "couldn't register vibrator as FF device\n");
224 goto err_free_mem;
225 }
226
227 error = input_register_device(input_dev);
228 if (error) {
229 dev_err(&pdev->dev, "couldn't register input device\n");
230 goto err_destroy_memless;
231 }
232
233 platform_set_drvdata(pdev, vib);
234 return 0;
235
236err_destroy_memless:
237 input_ff_destroy(input_dev);
238err_free_mem:
239 input_free_device(input_dev);
240 kfree(vib);
241
242 return error;
243}
244
245static int __devexit pm8xxx_vib_remove(struct platform_device *pdev)
246{
247 struct pm8xxx_vib *vib = platform_get_drvdata(pdev);
248
249 input_unregister_device(vib->vib_input_dev);
250 kfree(vib);
251
252 platform_set_drvdata(pdev, NULL);
253
254 return 0;
255}
256
257#ifdef CONFIG_PM_SLEEP
258static int pm8xxx_vib_suspend(struct device *dev)
259{
260 struct pm8xxx_vib *vib = dev_get_drvdata(dev);
261
262 /* Turn off the vibrator */
263 pm8xxx_vib_set(vib, false);
264
265 return 0;
266}
267#endif
268
269static SIMPLE_DEV_PM_OPS(pm8xxx_vib_pm_ops, pm8xxx_vib_suspend, NULL);
270
271static struct platform_driver pm8xxx_vib_driver = {
272 .probe = pm8xxx_vib_probe,
273 .remove = __devexit_p(pm8xxx_vib_remove),
274 .driver = {
275 .name = "pm8xxx-vib",
276 .owner = THIS_MODULE,
277 .pm = &pm8xxx_vib_pm_ops,
278 },
279};
280module_platform_driver(pm8xxx_vib_driver);
281
282MODULE_ALIAS("platform:pm8xxx_vib");
283MODULE_DESCRIPTION("PMIC8xxx vibrator driver based on ff-memless framework");
284MODULE_LICENSE("GPL v2");
285MODULE_AUTHOR("Amy Maloche <amaloche@codeaurora.org>");