2 * DRV2665 haptics driver family
4 * Author: Dan Murphy <dmurphy@ti.com>
6 * Copyright: (C) 2015 Texas Instruments, Inc.
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.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
18 #include <linux/i2c.h>
19 #include <linux/input.h>
20 #include <linux/module.h>
21 #include <linux/regmap.h>
22 #include <linux/slab.h>
23 #include <linux/delay.h>
24 #include <linux/regulator/consumer.h>
26 /* Contol registers */
27 #define DRV2665_STATUS 0x00
28 #define DRV2665_CTRL_1 0x01
29 #define DRV2665_CTRL_2 0x02
30 #define DRV2665_FIFO 0x0b
33 #define DRV2665_FIFO_FULL BIT(0)
34 #define DRV2665_FIFO_EMPTY BIT(1)
36 /* Control 1 Register */
37 #define DRV2665_25_VPP_GAIN 0x00
38 #define DRV2665_50_VPP_GAIN 0x01
39 #define DRV2665_75_VPP_GAIN 0x02
40 #define DRV2665_100_VPP_GAIN 0x03
41 #define DRV2665_DIGITAL_IN 0xfc
42 #define DRV2665_ANALOG_IN BIT(2)
44 /* Control 2 Register */
45 #define DRV2665_BOOST_EN BIT(1)
46 #define DRV2665_STANDBY BIT(6)
47 #define DRV2665_DEV_RST BIT(7)
48 #define DRV2665_5_MS_IDLE_TOUT 0x00
49 #define DRV2665_10_MS_IDLE_TOUT 0x04
50 #define DRV2665_15_MS_IDLE_TOUT 0x08
51 #define DRV2665_20_MS_IDLE_TOUT 0x0c
54 * struct drv2665_data -
55 * @input_dev - Pointer to the input device
56 * @client - Pointer to the I2C client
57 * @regmap - Register map of the device
58 * @work - Work item used to off load the enable/disable of the vibration
59 * @regulator - Pointer to the regulator for the IC
62 struct input_dev *input_dev;
63 struct i2c_client *client;
64 struct regmap *regmap;
65 struct work_struct work;
66 struct regulator *regulator;
69 /* 8kHz Sine wave to stream to the FIFO */
70 static const u8 drv2665_sine_wave_form[] = {
71 0x00, 0x10, 0x20, 0x2e, 0x3c, 0x48, 0x53, 0x5b, 0x61, 0x65, 0x66,
72 0x65, 0x61, 0x5b, 0x53, 0x48, 0x3c, 0x2e, 0x20, 0x10,
73 0x00, 0xf0, 0xe0, 0xd2, 0xc4, 0xb8, 0xad, 0xa5, 0x9f, 0x9b, 0x9a,
74 0x9b, 0x9f, 0xa5, 0xad, 0xb8, 0xc4, 0xd2, 0xe0, 0xf0, 0x00,
77 static const struct reg_default drv2665_reg_defs[] = {
78 { DRV2665_STATUS, 0x02 },
79 { DRV2665_CTRL_1, 0x28 },
80 { DRV2665_CTRL_2, 0x40 },
81 { DRV2665_FIFO, 0x00 },
84 static void drv2665_worker(struct work_struct *work)
86 struct drv2665_data *haptics =
87 container_of(work, struct drv2665_data, work);
88 unsigned int read_buf;
91 error = regmap_read(haptics->regmap, DRV2665_STATUS, &read_buf);
93 dev_err(&haptics->client->dev,
94 "Failed to read status: %d\n", error);
98 if (read_buf & DRV2665_FIFO_EMPTY) {
99 error = regmap_bulk_write(haptics->regmap,
101 drv2665_sine_wave_form,
102 ARRAY_SIZE(drv2665_sine_wave_form));
104 dev_err(&haptics->client->dev,
105 "Failed to write FIFO: %d\n", error);
111 static int drv2665_haptics_play(struct input_dev *input, void *data,
112 struct ff_effect *effect)
114 struct drv2665_data *haptics = input_get_drvdata(input);
116 schedule_work(&haptics->work);
121 static void drv2665_close(struct input_dev *input)
123 struct drv2665_data *haptics = input_get_drvdata(input);
126 cancel_work_sync(&haptics->work);
128 error = regmap_update_bits(haptics->regmap, DRV2665_CTRL_2,
129 DRV2665_STANDBY, DRV2665_STANDBY);
131 dev_err(&haptics->client->dev,
132 "Failed to enter standby mode: %d\n", error);
135 static const struct reg_sequence drv2665_init_regs[] = {
136 { DRV2665_CTRL_2, 0 | DRV2665_10_MS_IDLE_TOUT },
137 { DRV2665_CTRL_1, DRV2665_25_VPP_GAIN },
140 static int drv2665_init(struct drv2665_data *haptics)
144 error = regmap_register_patch(haptics->regmap,
146 ARRAY_SIZE(drv2665_init_regs));
148 dev_err(&haptics->client->dev,
149 "Failed to write init registers: %d\n",
157 static const struct regmap_config drv2665_regmap_config = {
161 .max_register = DRV2665_FIFO,
162 .reg_defaults = drv2665_reg_defs,
163 .num_reg_defaults = ARRAY_SIZE(drv2665_reg_defs),
164 .cache_type = REGCACHE_NONE,
167 static int drv2665_probe(struct i2c_client *client,
168 const struct i2c_device_id *id)
170 struct drv2665_data *haptics;
173 haptics = devm_kzalloc(&client->dev, sizeof(*haptics), GFP_KERNEL);
177 haptics->regulator = devm_regulator_get(&client->dev, "vbat");
178 if (IS_ERR(haptics->regulator)) {
179 error = PTR_ERR(haptics->regulator);
180 dev_err(&client->dev,
181 "unable to get regulator, error: %d\n", error);
185 haptics->input_dev = devm_input_allocate_device(&client->dev);
186 if (!haptics->input_dev) {
187 dev_err(&client->dev, "Failed to allocate input device\n");
191 haptics->input_dev->name = "drv2665:haptics";
192 haptics->input_dev->dev.parent = client->dev.parent;
193 haptics->input_dev->close = drv2665_close;
194 input_set_drvdata(haptics->input_dev, haptics);
195 input_set_capability(haptics->input_dev, EV_FF, FF_RUMBLE);
197 error = input_ff_create_memless(haptics->input_dev, NULL,
198 drv2665_haptics_play);
200 dev_err(&client->dev, "input_ff_create() failed: %d\n",
205 INIT_WORK(&haptics->work, drv2665_worker);
207 haptics->client = client;
208 i2c_set_clientdata(client, haptics);
210 haptics->regmap = devm_regmap_init_i2c(client, &drv2665_regmap_config);
211 if (IS_ERR(haptics->regmap)) {
212 error = PTR_ERR(haptics->regmap);
213 dev_err(&client->dev, "Failed to allocate register map: %d\n",
218 error = drv2665_init(haptics);
220 dev_err(&client->dev, "Device init failed: %d\n", error);
224 error = input_register_device(haptics->input_dev);
226 dev_err(&client->dev, "couldn't register input device: %d\n",
234 static int __maybe_unused drv2665_suspend(struct device *dev)
236 struct drv2665_data *haptics = dev_get_drvdata(dev);
239 mutex_lock(&haptics->input_dev->mutex);
241 if (haptics->input_dev->users) {
242 ret = regmap_update_bits(haptics->regmap, DRV2665_CTRL_2,
243 DRV2665_STANDBY, DRV2665_STANDBY);
245 dev_err(dev, "Failed to set standby mode\n");
246 regulator_disable(haptics->regulator);
250 ret = regulator_disable(haptics->regulator);
252 dev_err(dev, "Failed to disable regulator\n");
253 regmap_update_bits(haptics->regmap,
259 mutex_unlock(&haptics->input_dev->mutex);
263 static int __maybe_unused drv2665_resume(struct device *dev)
265 struct drv2665_data *haptics = dev_get_drvdata(dev);
268 mutex_lock(&haptics->input_dev->mutex);
270 if (haptics->input_dev->users) {
271 ret = regulator_enable(haptics->regulator);
273 dev_err(dev, "Failed to enable regulator\n");
277 ret = regmap_update_bits(haptics->regmap, DRV2665_CTRL_2,
280 dev_err(dev, "Failed to unset standby mode\n");
281 regulator_disable(haptics->regulator);
288 mutex_unlock(&haptics->input_dev->mutex);
292 static SIMPLE_DEV_PM_OPS(drv2665_pm_ops, drv2665_suspend, drv2665_resume);
294 static const struct i2c_device_id drv2665_id[] = {
298 MODULE_DEVICE_TABLE(i2c, drv2665_id);
301 static const struct of_device_id drv2665_of_match[] = {
302 { .compatible = "ti,drv2665", },
305 MODULE_DEVICE_TABLE(of, drv2665_of_match);
308 static struct i2c_driver drv2665_driver = {
309 .probe = drv2665_probe,
311 .name = "drv2665-haptics",
312 .of_match_table = of_match_ptr(drv2665_of_match),
313 .pm = &drv2665_pm_ops,
315 .id_table = drv2665_id,
317 module_i2c_driver(drv2665_driver);
319 MODULE_DESCRIPTION("TI DRV2665 haptics driver");
320 MODULE_LICENSE("GPL");
321 MODULE_AUTHOR("Dan Murphy <dmurphy@ti.com>");