1 // SPDX-License-Identifier: GPL-2.0-only
3 * DRV2667 haptics driver family
7 * Copyright: (C) 2014 Texas Instruments, Inc.
10 #include <linux/i2c.h>
11 #include <linux/input.h>
12 #include <linux/module.h>
13 #include <linux/platform_device.h>
14 #include <linux/regmap.h>
15 #include <linux/slab.h>
16 #include <linux/delay.h>
17 #include <linux/regulator/consumer.h>
19 /* Contol registers */
20 #define DRV2667_STATUS 0x00
21 #define DRV2667_CTRL_1 0x01
22 #define DRV2667_CTRL_2 0x02
23 /* Waveform sequencer */
24 #define DRV2667_WV_SEQ_0 0x03
25 #define DRV2667_WV_SEQ_1 0x04
26 #define DRV2667_WV_SEQ_2 0x05
27 #define DRV2667_WV_SEQ_3 0x06
28 #define DRV2667_WV_SEQ_4 0x07
29 #define DRV2667_WV_SEQ_5 0x08
30 #define DRV2667_WV_SEQ_6 0x09
31 #define DRV2667_WV_SEQ_7 0x0A
32 #define DRV2667_FIFO 0x0B
33 #define DRV2667_PAGE 0xFF
34 #define DRV2667_MAX_REG DRV2667_PAGE
36 #define DRV2667_PAGE_0 0x00
37 #define DRV2667_PAGE_1 0x01
38 #define DRV2667_PAGE_2 0x02
39 #define DRV2667_PAGE_3 0x03
40 #define DRV2667_PAGE_4 0x04
41 #define DRV2667_PAGE_5 0x05
42 #define DRV2667_PAGE_6 0x06
43 #define DRV2667_PAGE_7 0x07
44 #define DRV2667_PAGE_8 0x08
47 #define DRV2667_RAM_HDR_SZ 0x0
48 /* RAM Header addresses */
49 #define DRV2667_RAM_START_HI 0x01
50 #define DRV2667_RAM_START_LO 0x02
51 #define DRV2667_RAM_STOP_HI 0x03
52 #define DRV2667_RAM_STOP_LO 0x04
53 #define DRV2667_RAM_REPEAT_CT 0x05
54 /* RAM data addresses */
55 #define DRV2667_RAM_AMP 0x06
56 #define DRV2667_RAM_FREQ 0x07
57 #define DRV2667_RAM_DURATION 0x08
58 #define DRV2667_RAM_ENVELOPE 0x09
60 /* Control 1 Register */
61 #define DRV2667_25_VPP_GAIN 0x00
62 #define DRV2667_50_VPP_GAIN 0x01
63 #define DRV2667_75_VPP_GAIN 0x02
64 #define DRV2667_100_VPP_GAIN 0x03
65 #define DRV2667_DIGITAL_IN 0xfc
66 #define DRV2667_ANALOG_IN (1 << 2)
68 /* Control 2 Register */
69 #define DRV2667_GO (1 << 0)
70 #define DRV2667_STANDBY (1 << 6)
71 #define DRV2667_DEV_RST (1 << 7)
73 /* RAM Envelope settings */
74 #define DRV2667_NO_ENV 0x00
75 #define DRV2667_32_MS_ENV 0x01
76 #define DRV2667_64_MS_ENV 0x02
77 #define DRV2667_96_MS_ENV 0x03
78 #define DRV2667_128_MS_ENV 0x04
79 #define DRV2667_160_MS_ENV 0x05
80 #define DRV2667_192_MS_ENV 0x06
81 #define DRV2667_224_MS_ENV 0x07
82 #define DRV2667_256_MS_ENV 0x08
83 #define DRV2667_512_MS_ENV 0x09
84 #define DRV2667_768_MS_ENV 0x0a
85 #define DRV2667_1024_MS_ENV 0x0b
86 #define DRV2667_1280_MS_ENV 0x0c
87 #define DRV2667_1536_MS_ENV 0x0d
88 #define DRV2667_1792_MS_ENV 0x0e
89 #define DRV2667_2048_MS_ENV 0x0f
92 * struct drv2667_data -
93 * @input_dev: Pointer to the input device
94 * @client: Pointer to the I2C client
95 * @regmap: Register map of the device
96 * @work: Work item used to off load the enable/disable of the vibration
97 * @regulator: Pointer to the regulator for the IC
99 * @magnitude: Magnitude of the vibration event
100 * @frequency: Frequency of the vibration event
102 struct drv2667_data {
103 struct input_dev *input_dev;
104 struct i2c_client *client;
105 struct regmap *regmap;
106 struct work_struct work;
107 struct regulator *regulator;
113 static const struct reg_default drv2667_reg_defs[] = {
114 { DRV2667_STATUS, 0x02 },
115 { DRV2667_CTRL_1, 0x28 },
116 { DRV2667_CTRL_2, 0x40 },
117 { DRV2667_WV_SEQ_0, 0x00 },
118 { DRV2667_WV_SEQ_1, 0x00 },
119 { DRV2667_WV_SEQ_2, 0x00 },
120 { DRV2667_WV_SEQ_3, 0x00 },
121 { DRV2667_WV_SEQ_4, 0x00 },
122 { DRV2667_WV_SEQ_5, 0x00 },
123 { DRV2667_WV_SEQ_6, 0x00 },
124 { DRV2667_WV_SEQ_7, 0x00 },
125 { DRV2667_FIFO, 0x00 },
126 { DRV2667_PAGE, 0x00 },
129 static int drv2667_set_waveform_freq(struct drv2667_data *haptics)
131 unsigned int read_buf;
135 /* Per the data sheet:
136 * Sinusoid Frequency (Hz) = 7.8125 x Frequency
138 freq = (haptics->frequency * 1000) / 78125;
140 dev_err(&haptics->client->dev,
141 "ERROR: Frequency calculated to %i\n", freq);
145 error = regmap_read(haptics->regmap, DRV2667_PAGE, &read_buf);
147 dev_err(&haptics->client->dev,
148 "Failed to read the page number: %d\n", error);
152 if (read_buf == DRV2667_PAGE_0 ||
153 haptics->page != read_buf) {
154 error = regmap_write(haptics->regmap,
155 DRV2667_PAGE, haptics->page);
157 dev_err(&haptics->client->dev,
158 "Failed to set the page: %d\n", error);
163 error = regmap_write(haptics->regmap, DRV2667_RAM_FREQ, freq);
165 dev_err(&haptics->client->dev,
166 "Failed to set the frequency: %d\n", error);
168 /* Reset back to original page */
169 if (read_buf == DRV2667_PAGE_0 ||
170 haptics->page != read_buf) {
171 error = regmap_write(haptics->regmap, DRV2667_PAGE, read_buf);
173 dev_err(&haptics->client->dev,
174 "Failed to set the page: %d\n", error);
182 static void drv2667_worker(struct work_struct *work)
184 struct drv2667_data *haptics = container_of(work, struct drv2667_data, work);
187 if (haptics->magnitude) {
188 error = regmap_write(haptics->regmap,
189 DRV2667_PAGE, haptics->page);
191 dev_err(&haptics->client->dev,
192 "Failed to set the page: %d\n", error);
196 error = regmap_write(haptics->regmap, DRV2667_RAM_AMP,
199 dev_err(&haptics->client->dev,
200 "Failed to set the amplitude: %d\n", error);
204 error = regmap_write(haptics->regmap,
205 DRV2667_PAGE, DRV2667_PAGE_0);
207 dev_err(&haptics->client->dev,
208 "Failed to set the page: %d\n", error);
212 error = regmap_write(haptics->regmap,
213 DRV2667_CTRL_2, DRV2667_GO);
215 dev_err(&haptics->client->dev,
216 "Failed to set the GO bit: %d\n", error);
219 error = regmap_update_bits(haptics->regmap, DRV2667_CTRL_2,
222 dev_err(&haptics->client->dev,
223 "Failed to unset the GO bit: %d\n", error);
228 static int drv2667_haptics_play(struct input_dev *input, void *data,
229 struct ff_effect *effect)
231 struct drv2667_data *haptics = input_get_drvdata(input);
233 if (effect->u.rumble.strong_magnitude > 0)
234 haptics->magnitude = effect->u.rumble.strong_magnitude;
235 else if (effect->u.rumble.weak_magnitude > 0)
236 haptics->magnitude = effect->u.rumble.weak_magnitude;
238 haptics->magnitude = 0;
240 schedule_work(&haptics->work);
245 static void drv2667_close(struct input_dev *input)
247 struct drv2667_data *haptics = input_get_drvdata(input);
250 cancel_work_sync(&haptics->work);
252 error = regmap_update_bits(haptics->regmap, DRV2667_CTRL_2,
253 DRV2667_STANDBY, DRV2667_STANDBY);
255 dev_err(&haptics->client->dev,
256 "Failed to enter standby mode: %d\n", error);
259 static const struct reg_sequence drv2667_init_regs[] = {
260 { DRV2667_CTRL_2, 0 },
261 { DRV2667_CTRL_1, DRV2667_25_VPP_GAIN },
262 { DRV2667_WV_SEQ_0, 1 },
263 { DRV2667_WV_SEQ_1, 0 }
266 static const struct reg_sequence drv2667_page1_init[] = {
267 { DRV2667_RAM_HDR_SZ, 0x05 },
268 { DRV2667_RAM_START_HI, 0x80 },
269 { DRV2667_RAM_START_LO, 0x06 },
270 { DRV2667_RAM_STOP_HI, 0x00 },
271 { DRV2667_RAM_STOP_LO, 0x09 },
272 { DRV2667_RAM_REPEAT_CT, 0 },
273 { DRV2667_RAM_DURATION, 0x05 },
274 { DRV2667_RAM_ENVELOPE, DRV2667_NO_ENV },
275 { DRV2667_RAM_AMP, 0x60 },
278 static int drv2667_init(struct drv2667_data *haptics)
282 /* Set default haptic frequency to 195Hz on Page 1*/
283 haptics->frequency = 195;
284 haptics->page = DRV2667_PAGE_1;
286 error = regmap_register_patch(haptics->regmap,
288 ARRAY_SIZE(drv2667_init_regs));
290 dev_err(&haptics->client->dev,
291 "Failed to write init registers: %d\n",
296 error = regmap_write(haptics->regmap, DRV2667_PAGE, haptics->page);
298 dev_err(&haptics->client->dev, "Failed to set page: %d\n",
303 error = drv2667_set_waveform_freq(haptics);
307 error = regmap_register_patch(haptics->regmap,
309 ARRAY_SIZE(drv2667_page1_init));
311 dev_err(&haptics->client->dev,
312 "Failed to write page registers: %d\n",
317 error = regmap_write(haptics->regmap, DRV2667_PAGE, DRV2667_PAGE_0);
321 regmap_write(haptics->regmap, DRV2667_PAGE, DRV2667_PAGE_0);
326 static const struct regmap_config drv2667_regmap_config = {
330 .max_register = DRV2667_MAX_REG,
331 .reg_defaults = drv2667_reg_defs,
332 .num_reg_defaults = ARRAY_SIZE(drv2667_reg_defs),
333 .cache_type = REGCACHE_NONE,
336 static int drv2667_probe(struct i2c_client *client)
338 struct drv2667_data *haptics;
341 haptics = devm_kzalloc(&client->dev, sizeof(*haptics), GFP_KERNEL);
345 haptics->regulator = devm_regulator_get(&client->dev, "vbat");
346 if (IS_ERR(haptics->regulator)) {
347 error = PTR_ERR(haptics->regulator);
348 dev_err(&client->dev,
349 "unable to get regulator, error: %d\n", error);
353 haptics->input_dev = devm_input_allocate_device(&client->dev);
354 if (!haptics->input_dev) {
355 dev_err(&client->dev, "Failed to allocate input device\n");
359 haptics->input_dev->name = "drv2667:haptics";
360 haptics->input_dev->dev.parent = client->dev.parent;
361 haptics->input_dev->close = drv2667_close;
362 input_set_drvdata(haptics->input_dev, haptics);
363 input_set_capability(haptics->input_dev, EV_FF, FF_RUMBLE);
365 error = input_ff_create_memless(haptics->input_dev, NULL,
366 drv2667_haptics_play);
368 dev_err(&client->dev, "input_ff_create() failed: %d\n",
373 INIT_WORK(&haptics->work, drv2667_worker);
375 haptics->client = client;
376 i2c_set_clientdata(client, haptics);
378 haptics->regmap = devm_regmap_init_i2c(client, &drv2667_regmap_config);
379 if (IS_ERR(haptics->regmap)) {
380 error = PTR_ERR(haptics->regmap);
381 dev_err(&client->dev, "Failed to allocate register map: %d\n",
386 error = drv2667_init(haptics);
388 dev_err(&client->dev, "Device init failed: %d\n", error);
392 error = input_register_device(haptics->input_dev);
394 dev_err(&client->dev, "couldn't register input device: %d\n",
402 static int drv2667_suspend(struct device *dev)
404 struct drv2667_data *haptics = dev_get_drvdata(dev);
407 mutex_lock(&haptics->input_dev->mutex);
409 if (input_device_enabled(haptics->input_dev)) {
410 ret = regmap_update_bits(haptics->regmap, DRV2667_CTRL_2,
411 DRV2667_STANDBY, DRV2667_STANDBY);
413 dev_err(dev, "Failed to set standby mode\n");
414 regulator_disable(haptics->regulator);
418 ret = regulator_disable(haptics->regulator);
420 dev_err(dev, "Failed to disable regulator\n");
421 regmap_update_bits(haptics->regmap,
427 mutex_unlock(&haptics->input_dev->mutex);
431 static int drv2667_resume(struct device *dev)
433 struct drv2667_data *haptics = dev_get_drvdata(dev);
436 mutex_lock(&haptics->input_dev->mutex);
438 if (input_device_enabled(haptics->input_dev)) {
439 ret = regulator_enable(haptics->regulator);
441 dev_err(dev, "Failed to enable regulator\n");
445 ret = regmap_update_bits(haptics->regmap, DRV2667_CTRL_2,
448 dev_err(dev, "Failed to unset standby mode\n");
449 regulator_disable(haptics->regulator);
456 mutex_unlock(&haptics->input_dev->mutex);
460 static DEFINE_SIMPLE_DEV_PM_OPS(drv2667_pm_ops, drv2667_suspend, drv2667_resume);
462 static const struct i2c_device_id drv2667_id[] = {
466 MODULE_DEVICE_TABLE(i2c, drv2667_id);
469 static const struct of_device_id drv2667_of_match[] = {
470 { .compatible = "ti,drv2667", },
473 MODULE_DEVICE_TABLE(of, drv2667_of_match);
476 static struct i2c_driver drv2667_driver = {
477 .probe_new = drv2667_probe,
479 .name = "drv2667-haptics",
480 .of_match_table = of_match_ptr(drv2667_of_match),
481 .pm = pm_sleep_ptr(&drv2667_pm_ops),
483 .id_table = drv2667_id,
485 module_i2c_driver(drv2667_driver);
487 MODULE_DESCRIPTION("TI DRV2667 haptics driver");
488 MODULE_LICENSE("GPL");