Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / drivers / input / misc / drv2665.c
blob46842cb8ddd78875b7fd19ec6e99604a678e96fd
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * DRV2665 haptics driver family
5 * Author: Dan Murphy <dmurphy@ti.com>
7 * Copyright: (C) 2015 Texas Instruments, Inc.
8 */
10 #include <linux/i2c.h>
11 #include <linux/input.h>
12 #include <linux/module.h>
13 #include <linux/regmap.h>
14 #include <linux/slab.h>
15 #include <linux/delay.h>
16 #include <linux/regulator/consumer.h>
18 /* Control registers */
19 #define DRV2665_STATUS 0x00
20 #define DRV2665_CTRL_1 0x01
21 #define DRV2665_CTRL_2 0x02
22 #define DRV2665_FIFO 0x0b
24 /* Status Register */
25 #define DRV2665_FIFO_FULL BIT(0)
26 #define DRV2665_FIFO_EMPTY BIT(1)
28 /* Control 1 Register */
29 #define DRV2665_25_VPP_GAIN 0x00
30 #define DRV2665_50_VPP_GAIN 0x01
31 #define DRV2665_75_VPP_GAIN 0x02
32 #define DRV2665_100_VPP_GAIN 0x03
33 #define DRV2665_DIGITAL_IN 0xfc
34 #define DRV2665_ANALOG_IN BIT(2)
36 /* Control 2 Register */
37 #define DRV2665_BOOST_EN BIT(1)
38 #define DRV2665_STANDBY BIT(6)
39 #define DRV2665_DEV_RST BIT(7)
40 #define DRV2665_5_MS_IDLE_TOUT 0x00
41 #define DRV2665_10_MS_IDLE_TOUT 0x04
42 #define DRV2665_15_MS_IDLE_TOUT 0x08
43 #define DRV2665_20_MS_IDLE_TOUT 0x0c
45 /**
46 * struct drv2665_data -
47 * @input_dev: Pointer to the input device
48 * @client: Pointer to the I2C client
49 * @regmap: Register map of the device
50 * @work: Work item used to off load the enable/disable of the vibration
51 * @regulator: Pointer to the regulator for the IC
53 struct drv2665_data {
54 struct input_dev *input_dev;
55 struct i2c_client *client;
56 struct regmap *regmap;
57 struct work_struct work;
58 struct regulator *regulator;
61 /* 8kHz Sine wave to stream to the FIFO */
62 static const u8 drv2665_sine_wave_form[] = {
63 0x00, 0x10, 0x20, 0x2e, 0x3c, 0x48, 0x53, 0x5b, 0x61, 0x65, 0x66,
64 0x65, 0x61, 0x5b, 0x53, 0x48, 0x3c, 0x2e, 0x20, 0x10,
65 0x00, 0xf0, 0xe0, 0xd2, 0xc4, 0xb8, 0xad, 0xa5, 0x9f, 0x9b, 0x9a,
66 0x9b, 0x9f, 0xa5, 0xad, 0xb8, 0xc4, 0xd2, 0xe0, 0xf0, 0x00,
69 static const struct reg_default drv2665_reg_defs[] = {
70 { DRV2665_STATUS, 0x02 },
71 { DRV2665_CTRL_1, 0x28 },
72 { DRV2665_CTRL_2, 0x40 },
73 { DRV2665_FIFO, 0x00 },
76 static void drv2665_worker(struct work_struct *work)
78 struct drv2665_data *haptics =
79 container_of(work, struct drv2665_data, work);
80 unsigned int read_buf;
81 int error;
83 error = regmap_read(haptics->regmap, DRV2665_STATUS, &read_buf);
84 if (error) {
85 dev_err(&haptics->client->dev,
86 "Failed to read status: %d\n", error);
87 return;
90 if (read_buf & DRV2665_FIFO_EMPTY) {
91 error = regmap_bulk_write(haptics->regmap,
92 DRV2665_FIFO,
93 drv2665_sine_wave_form,
94 ARRAY_SIZE(drv2665_sine_wave_form));
95 if (error) {
96 dev_err(&haptics->client->dev,
97 "Failed to write FIFO: %d\n", error);
98 return;
103 static int drv2665_haptics_play(struct input_dev *input, void *data,
104 struct ff_effect *effect)
106 struct drv2665_data *haptics = input_get_drvdata(input);
108 schedule_work(&haptics->work);
110 return 0;
113 static void drv2665_close(struct input_dev *input)
115 struct drv2665_data *haptics = input_get_drvdata(input);
116 int error;
118 cancel_work_sync(&haptics->work);
120 error = regmap_update_bits(haptics->regmap, DRV2665_CTRL_2,
121 DRV2665_STANDBY, DRV2665_STANDBY);
122 if (error)
123 dev_err(&haptics->client->dev,
124 "Failed to enter standby mode: %d\n", error);
127 static const struct reg_sequence drv2665_init_regs[] = {
128 { DRV2665_CTRL_2, 0 | DRV2665_10_MS_IDLE_TOUT },
129 { DRV2665_CTRL_1, DRV2665_25_VPP_GAIN },
132 static int drv2665_init(struct drv2665_data *haptics)
134 int error;
136 error = regmap_register_patch(haptics->regmap,
137 drv2665_init_regs,
138 ARRAY_SIZE(drv2665_init_regs));
139 if (error) {
140 dev_err(&haptics->client->dev,
141 "Failed to write init registers: %d\n",
142 error);
143 return error;
146 return 0;
149 static const struct regmap_config drv2665_regmap_config = {
150 .reg_bits = 8,
151 .val_bits = 8,
153 .max_register = DRV2665_FIFO,
154 .reg_defaults = drv2665_reg_defs,
155 .num_reg_defaults = ARRAY_SIZE(drv2665_reg_defs),
156 .cache_type = REGCACHE_NONE,
159 static int drv2665_probe(struct i2c_client *client)
161 struct drv2665_data *haptics;
162 int error;
164 haptics = devm_kzalloc(&client->dev, sizeof(*haptics), GFP_KERNEL);
165 if (!haptics)
166 return -ENOMEM;
168 haptics->regulator = devm_regulator_get(&client->dev, "vbat");
169 if (IS_ERR(haptics->regulator)) {
170 error = PTR_ERR(haptics->regulator);
171 dev_err(&client->dev,
172 "unable to get regulator, error: %d\n", error);
173 return error;
176 haptics->input_dev = devm_input_allocate_device(&client->dev);
177 if (!haptics->input_dev) {
178 dev_err(&client->dev, "Failed to allocate input device\n");
179 return -ENOMEM;
182 haptics->input_dev->name = "drv2665:haptics";
183 haptics->input_dev->dev.parent = client->dev.parent;
184 haptics->input_dev->close = drv2665_close;
185 input_set_drvdata(haptics->input_dev, haptics);
186 input_set_capability(haptics->input_dev, EV_FF, FF_RUMBLE);
188 error = input_ff_create_memless(haptics->input_dev, NULL,
189 drv2665_haptics_play);
190 if (error) {
191 dev_err(&client->dev, "input_ff_create() failed: %d\n",
192 error);
193 return error;
196 INIT_WORK(&haptics->work, drv2665_worker);
198 haptics->client = client;
199 i2c_set_clientdata(client, haptics);
201 haptics->regmap = devm_regmap_init_i2c(client, &drv2665_regmap_config);
202 if (IS_ERR(haptics->regmap)) {
203 error = PTR_ERR(haptics->regmap);
204 dev_err(&client->dev, "Failed to allocate register map: %d\n",
205 error);
206 return error;
209 error = drv2665_init(haptics);
210 if (error) {
211 dev_err(&client->dev, "Device init failed: %d\n", error);
212 return error;
215 error = input_register_device(haptics->input_dev);
216 if (error) {
217 dev_err(&client->dev, "couldn't register input device: %d\n",
218 error);
219 return error;
222 return 0;
225 static int drv2665_suspend(struct device *dev)
227 struct drv2665_data *haptics = dev_get_drvdata(dev);
228 int error;
230 guard(mutex)(&haptics->input_dev->mutex);
232 if (input_device_enabled(haptics->input_dev)) {
233 error = regmap_update_bits(haptics->regmap, DRV2665_CTRL_2,
234 DRV2665_STANDBY, DRV2665_STANDBY);
235 if (error) {
236 dev_err(dev, "Failed to set standby mode\n");
237 regulator_disable(haptics->regulator);
238 return error;
241 error = regulator_disable(haptics->regulator);
242 if (error) {
243 dev_err(dev, "Failed to disable regulator\n");
244 regmap_update_bits(haptics->regmap,
245 DRV2665_CTRL_2,
246 DRV2665_STANDBY, 0);
247 return error;
251 return 0;
254 static int drv2665_resume(struct device *dev)
256 struct drv2665_data *haptics = dev_get_drvdata(dev);
257 int error;
259 guard(mutex)(&haptics->input_dev->mutex);
261 if (input_device_enabled(haptics->input_dev)) {
262 error = regulator_enable(haptics->regulator);
263 if (error) {
264 dev_err(dev, "Failed to enable regulator\n");
265 return error;
268 error = regmap_update_bits(haptics->regmap, DRV2665_CTRL_2,
269 DRV2665_STANDBY, 0);
270 if (error) {
271 dev_err(dev, "Failed to unset standby mode\n");
272 regulator_disable(haptics->regulator);
273 return error;
278 return 0;
281 static DEFINE_SIMPLE_DEV_PM_OPS(drv2665_pm_ops, drv2665_suspend, drv2665_resume);
283 static const struct i2c_device_id drv2665_id[] = {
284 { "drv2665" },
287 MODULE_DEVICE_TABLE(i2c, drv2665_id);
289 #ifdef CONFIG_OF
290 static const struct of_device_id drv2665_of_match[] = {
291 { .compatible = "ti,drv2665", },
294 MODULE_DEVICE_TABLE(of, drv2665_of_match);
295 #endif
297 static struct i2c_driver drv2665_driver = {
298 .probe = drv2665_probe,
299 .driver = {
300 .name = "drv2665-haptics",
301 .of_match_table = of_match_ptr(drv2665_of_match),
302 .pm = pm_sleep_ptr(&drv2665_pm_ops),
304 .id_table = drv2665_id,
306 module_i2c_driver(drv2665_driver);
308 MODULE_DESCRIPTION("TI DRV2665 haptics driver");
309 MODULE_LICENSE("GPL");
310 MODULE_AUTHOR("Dan Murphy <dmurphy@ti.com>");