Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / drivers / media / i2c / dw9768.c
blob3a4d100b9199f3dfab2c9750789a62938662f054
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (c) 2020 MediaTek Inc.
4 #include <linux/delay.h>
5 #include <linux/i2c.h>
6 #include <linux/module.h>
7 #include <linux/pm_runtime.h>
8 #include <linux/regulator/consumer.h>
9 #include <media/v4l2-async.h>
10 #include <media/v4l2-ctrls.h>
11 #include <media/v4l2-device.h>
12 #include <media/v4l2-fwnode.h>
13 #include <media/v4l2-subdev.h>
15 #define DW9768_NAME "dw9768"
16 #define DW9768_MAX_FOCUS_POS (1024 - 1)
18 * This sets the minimum granularity for the focus positions.
19 * A value of 1 gives maximum accuracy for a desired focus position
21 #define DW9768_FOCUS_STEPS 1
24 * Ring control and Power control register
25 * Bit[1] RING_EN
26 * 0: Direct mode
27 * 1: AAC mode (ringing control mode)
28 * Bit[0] PD
29 * 0: Normal operation mode
30 * 1: Power down mode
31 * DW9768 requires waiting time of Topr after PD reset takes place.
33 #define DW9768_RING_PD_CONTROL_REG 0x02
34 #define DW9768_PD_MODE_OFF 0x00
35 #define DW9768_PD_MODE_EN BIT(0)
36 #define DW9768_AAC_MODE_EN BIT(1)
39 * DW9768 separates two registers to control the VCM position.
40 * One for MSB value, another is LSB value.
41 * DAC_MSB: D[9:8] (ADD: 0x03)
42 * DAC_LSB: D[7:0] (ADD: 0x04)
43 * D[9:0] DAC data input: positive output current = D[9:0] / 1023 * 100[mA]
45 #define DW9768_MSB_ADDR 0x03
46 #define DW9768_LSB_ADDR 0x04
47 #define DW9768_STATUS_ADDR 0x05
50 * AAC mode control & prescale register
51 * Bit[7:5] Namely AC[2:0], decide the VCM mode and operation time.
52 * 001 AAC2 0.48 x Tvib
53 * 010 AAC3 0.70 x Tvib
54 * 011 AAC4 0.75 x Tvib
55 * 101 AAC8 1.13 x Tvib
56 * Bit[2:0] Namely PRESC[2:0], set the internal clock dividing rate as follow.
57 * 000 2
58 * 001 1
59 * 010 1/2
60 * 011 1/4
61 * 100 8
62 * 101 4
64 #define DW9768_AAC_PRESC_REG 0x06
65 #define DW9768_AAC_MODE_SEL_MASK GENMASK(7, 5)
66 #define DW9768_CLOCK_PRE_SCALE_SEL_MASK GENMASK(2, 0)
69 * VCM period of vibration register
70 * Bit[5:0] Defined as VCM rising periodic time (Tvib) together with PRESC[2:0]
71 * Tvib = (6.3ms + AACT[5:0] * 0.1ms) * Dividing Rate
72 * Dividing Rate is the internal clock dividing rate that is defined at
73 * PRESCALE register (ADD: 0x06)
75 #define DW9768_AAC_TIME_REG 0x07
78 * DW9768 requires waiting time (delay time) of t_OPR after power-up,
79 * or in the case of PD reset taking place.
81 #define DW9768_T_OPR_US 1000
82 #define DW9768_TVIB_MS_BASE10 (64 - 1)
83 #define DW9768_AAC_MODE_DEFAULT 2
84 #define DW9768_AAC_TIME_DEFAULT 0x20
85 #define DW9768_CLOCK_PRE_SCALE_DEFAULT 1
88 * This acts as the minimum granularity of lens movement.
89 * Keep this value power of 2, so the control steps can be
90 * uniformly adjusted for gradual lens movement, with desired
91 * number of control steps.
93 #define DW9768_MOVE_STEPS 16
95 static const char * const dw9768_supply_names[] = {
96 "vin", /* Digital I/O power */
97 "vdd", /* Digital core power */
100 /* dw9768 device structure */
101 struct dw9768 {
102 struct regulator_bulk_data supplies[ARRAY_SIZE(dw9768_supply_names)];
103 struct v4l2_ctrl_handler ctrls;
104 struct v4l2_ctrl *focus;
105 struct v4l2_subdev sd;
107 u32 aac_mode;
108 u32 aac_timing;
109 u32 clock_presc;
110 u32 move_delay_us;
113 static inline struct dw9768 *sd_to_dw9768(struct v4l2_subdev *subdev)
115 return container_of(subdev, struct dw9768, sd);
118 struct dw9768_aac_mode_ot_multi {
119 u32 aac_mode_enum;
120 u32 ot_multi_base100;
123 struct dw9768_clk_presc_dividing_rate {
124 u32 clk_presc_enum;
125 u32 dividing_rate_base100;
128 static const struct dw9768_aac_mode_ot_multi aac_mode_ot_multi[] = {
129 {1, 48},
130 {2, 70},
131 {3, 75},
132 {5, 113},
135 static const struct dw9768_clk_presc_dividing_rate presc_dividing_rate[] = {
136 {0, 200},
137 {1, 100},
138 {2, 50},
139 {3, 25},
140 {4, 800},
141 {5, 400},
144 static u32 dw9768_find_ot_multi(u32 aac_mode_param)
146 u32 cur_ot_multi_base100 = 70;
147 unsigned int i;
149 for (i = 0; i < ARRAY_SIZE(aac_mode_ot_multi); i++) {
150 if (aac_mode_ot_multi[i].aac_mode_enum == aac_mode_param) {
151 cur_ot_multi_base100 =
152 aac_mode_ot_multi[i].ot_multi_base100;
156 return cur_ot_multi_base100;
159 static u32 dw9768_find_dividing_rate(u32 presc_param)
161 u32 cur_clk_dividing_rate_base100 = 100;
162 unsigned int i;
164 for (i = 0; i < ARRAY_SIZE(presc_dividing_rate); i++) {
165 if (presc_dividing_rate[i].clk_presc_enum == presc_param) {
166 cur_clk_dividing_rate_base100 =
167 presc_dividing_rate[i].dividing_rate_base100;
171 return cur_clk_dividing_rate_base100;
175 * DW9768_AAC_PRESC_REG & DW9768_AAC_TIME_REG determine VCM operation time.
176 * For current VCM mode: AAC3, Operation Time would be 0.70 x Tvib.
177 * Tvib = (6.3ms + AACT[5:0] * 0.1MS) * Dividing Rate.
178 * Below is calculation of the operation delay for each step.
180 static inline u32 dw9768_cal_move_delay(u32 aac_mode_param, u32 presc_param,
181 u32 aac_timing_param)
183 u32 Tvib_us;
184 u32 ot_multi_base100;
185 u32 clk_dividing_rate_base100;
187 ot_multi_base100 = dw9768_find_ot_multi(aac_mode_param);
189 clk_dividing_rate_base100 = dw9768_find_dividing_rate(presc_param);
191 Tvib_us = (DW9768_TVIB_MS_BASE10 + aac_timing_param) *
192 clk_dividing_rate_base100;
194 return Tvib_us * ot_multi_base100 / 100;
197 static int dw9768_mod_reg(struct dw9768 *dw9768, u8 reg, u8 mask, u8 val)
199 struct i2c_client *client = v4l2_get_subdevdata(&dw9768->sd);
200 int ret;
202 ret = i2c_smbus_read_byte_data(client, reg);
203 if (ret < 0)
204 return ret;
206 val = ((unsigned char)ret & ~mask) | (val & mask);
208 return i2c_smbus_write_byte_data(client, reg, val);
211 static int dw9768_set_dac(struct dw9768 *dw9768, u16 val)
213 struct i2c_client *client = v4l2_get_subdevdata(&dw9768->sd);
215 /* Write VCM position to registers */
216 return i2c_smbus_write_word_swapped(client, DW9768_MSB_ADDR, val);
219 static int dw9768_init(struct dw9768 *dw9768)
221 struct i2c_client *client = v4l2_get_subdevdata(&dw9768->sd);
222 int ret, val;
224 /* Reset DW9768_RING_PD_CONTROL_REG to default status 0x00 */
225 ret = i2c_smbus_write_byte_data(client, DW9768_RING_PD_CONTROL_REG,
226 DW9768_PD_MODE_OFF);
227 if (ret < 0)
228 return ret;
231 * DW9769 requires waiting delay time of t_OPR
232 * after PD reset takes place.
234 usleep_range(DW9768_T_OPR_US, DW9768_T_OPR_US + 100);
236 /* Set DW9768_RING_PD_CONTROL_REG to DW9768_AAC_MODE_EN(0x01) */
237 ret = i2c_smbus_write_byte_data(client, DW9768_RING_PD_CONTROL_REG,
238 DW9768_AAC_MODE_EN);
239 if (ret < 0)
240 return ret;
242 /* Set AAC mode */
243 ret = dw9768_mod_reg(dw9768, DW9768_AAC_PRESC_REG,
244 DW9768_AAC_MODE_SEL_MASK,
245 dw9768->aac_mode << 5);
246 if (ret < 0)
247 return ret;
249 /* Set clock presc */
250 if (dw9768->clock_presc != DW9768_CLOCK_PRE_SCALE_DEFAULT) {
251 ret = dw9768_mod_reg(dw9768, DW9768_AAC_PRESC_REG,
252 DW9768_CLOCK_PRE_SCALE_SEL_MASK,
253 dw9768->clock_presc);
254 if (ret < 0)
255 return ret;
258 /* Set AAC Timing */
259 if (dw9768->aac_timing != DW9768_AAC_TIME_DEFAULT) {
260 ret = i2c_smbus_write_byte_data(client, DW9768_AAC_TIME_REG,
261 dw9768->aac_timing);
262 if (ret < 0)
263 return ret;
266 for (val = dw9768->focus->val % DW9768_MOVE_STEPS;
267 val <= dw9768->focus->val;
268 val += DW9768_MOVE_STEPS) {
269 ret = dw9768_set_dac(dw9768, val);
270 if (ret) {
271 dev_err(&client->dev, "I2C failure: %d", ret);
272 return ret;
274 usleep_range(dw9768->move_delay_us,
275 dw9768->move_delay_us + 1000);
278 return 0;
281 static int dw9768_release(struct dw9768 *dw9768)
283 struct i2c_client *client = v4l2_get_subdevdata(&dw9768->sd);
284 int ret, val;
286 val = round_down(dw9768->focus->val, DW9768_MOVE_STEPS);
287 for ( ; val >= 0; val -= DW9768_MOVE_STEPS) {
288 ret = dw9768_set_dac(dw9768, val);
289 if (ret) {
290 dev_err(&client->dev, "I2C write fail: %d", ret);
291 return ret;
293 usleep_range(dw9768->move_delay_us,
294 dw9768->move_delay_us + 1000);
297 ret = i2c_smbus_write_byte_data(client, DW9768_RING_PD_CONTROL_REG,
298 DW9768_PD_MODE_EN);
299 if (ret < 0)
300 return ret;
303 * DW9769 requires waiting delay time of t_OPR
304 * after PD reset takes place.
306 usleep_range(DW9768_T_OPR_US, DW9768_T_OPR_US + 100);
308 return 0;
311 static int dw9768_runtime_suspend(struct device *dev)
313 struct v4l2_subdev *sd = dev_get_drvdata(dev);
314 struct dw9768 *dw9768 = sd_to_dw9768(sd);
316 dw9768_release(dw9768);
317 regulator_bulk_disable(ARRAY_SIZE(dw9768_supply_names),
318 dw9768->supplies);
320 return 0;
323 static int dw9768_runtime_resume(struct device *dev)
325 struct v4l2_subdev *sd = dev_get_drvdata(dev);
326 struct dw9768 *dw9768 = sd_to_dw9768(sd);
327 int ret;
329 ret = regulator_bulk_enable(ARRAY_SIZE(dw9768_supply_names),
330 dw9768->supplies);
331 if (ret < 0) {
332 dev_err(dev, "failed to enable regulators\n");
333 return ret;
337 * The datasheet refers to t_OPR that needs to be waited before sending
338 * I2C commands after power-up.
340 usleep_range(DW9768_T_OPR_US, DW9768_T_OPR_US + 100);
342 ret = dw9768_init(dw9768);
343 if (ret < 0)
344 goto disable_regulator;
346 return 0;
348 disable_regulator:
349 regulator_bulk_disable(ARRAY_SIZE(dw9768_supply_names),
350 dw9768->supplies);
352 return ret;
355 static int dw9768_set_ctrl(struct v4l2_ctrl *ctrl)
357 struct dw9768 *dw9768 = container_of(ctrl->handler,
358 struct dw9768, ctrls);
360 if (ctrl->id == V4L2_CID_FOCUS_ABSOLUTE)
361 return dw9768_set_dac(dw9768, ctrl->val);
363 return 0;
366 static const struct v4l2_ctrl_ops dw9768_ctrl_ops = {
367 .s_ctrl = dw9768_set_ctrl,
370 static int dw9768_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
372 return pm_runtime_resume_and_get(sd->dev);
375 static int dw9768_close(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
377 pm_runtime_mark_last_busy(sd->dev);
378 pm_runtime_put_autosuspend(sd->dev);
380 return 0;
383 static const struct v4l2_subdev_internal_ops dw9768_int_ops = {
384 .open = dw9768_open,
385 .close = dw9768_close,
388 static const struct v4l2_subdev_ops dw9768_ops = { };
390 static int dw9768_init_controls(struct dw9768 *dw9768)
392 struct v4l2_ctrl_handler *hdl = &dw9768->ctrls;
393 const struct v4l2_ctrl_ops *ops = &dw9768_ctrl_ops;
395 v4l2_ctrl_handler_init(hdl, 1);
397 dw9768->focus = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_FOCUS_ABSOLUTE, 0,
398 DW9768_MAX_FOCUS_POS,
399 DW9768_FOCUS_STEPS, 0);
401 if (hdl->error)
402 return hdl->error;
404 dw9768->sd.ctrl_handler = hdl;
406 return 0;
409 static int dw9768_probe(struct i2c_client *client)
411 struct device *dev = &client->dev;
412 struct dw9768 *dw9768;
413 bool full_power;
414 unsigned int i;
415 int ret;
417 dw9768 = devm_kzalloc(dev, sizeof(*dw9768), GFP_KERNEL);
418 if (!dw9768)
419 return -ENOMEM;
421 /* Initialize subdev */
422 v4l2_i2c_subdev_init(&dw9768->sd, client, &dw9768_ops);
424 dw9768->aac_mode = DW9768_AAC_MODE_DEFAULT;
425 dw9768->aac_timing = DW9768_AAC_TIME_DEFAULT;
426 dw9768->clock_presc = DW9768_CLOCK_PRE_SCALE_DEFAULT;
428 /* Optional indication of AAC mode select */
429 fwnode_property_read_u32(dev_fwnode(dev), "dongwoon,aac-mode",
430 &dw9768->aac_mode);
432 /* Optional indication of clock pre-scale select */
433 fwnode_property_read_u32(dev_fwnode(dev), "dongwoon,clock-presc",
434 &dw9768->clock_presc);
436 /* Optional indication of AAC Timing */
437 fwnode_property_read_u32(dev_fwnode(dev), "dongwoon,aac-timing",
438 &dw9768->aac_timing);
440 dw9768->move_delay_us = dw9768_cal_move_delay(dw9768->aac_mode,
441 dw9768->clock_presc,
442 dw9768->aac_timing);
444 for (i = 0; i < ARRAY_SIZE(dw9768_supply_names); i++)
445 dw9768->supplies[i].supply = dw9768_supply_names[i];
447 ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(dw9768_supply_names),
448 dw9768->supplies);
449 if (ret) {
450 dev_err(dev, "failed to get regulators\n");
451 return ret;
454 /* Initialize controls */
455 ret = dw9768_init_controls(dw9768);
456 if (ret)
457 goto err_free_handler;
459 /* Initialize subdev */
460 dw9768->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
461 dw9768->sd.internal_ops = &dw9768_int_ops;
463 ret = media_entity_pads_init(&dw9768->sd.entity, 0, NULL);
464 if (ret < 0)
465 goto err_free_handler;
467 dw9768->sd.entity.function = MEDIA_ENT_F_LENS;
470 * Figure out whether we're going to power up the device here. Generally
471 * this is done if CONFIG_PM is disabled in a DT system or the device is
472 * to be powered on in an ACPI system. Similarly for power off in
473 * remove.
475 full_power = (is_acpi_node(dev_fwnode(dev)) &&
476 acpi_dev_state_d0(dev)) ||
477 (is_of_node(dev_fwnode(dev)) && !IS_ENABLED(CONFIG_PM));
478 if (full_power) {
479 ret = dw9768_runtime_resume(dev);
480 if (ret < 0) {
481 dev_err(dev, "failed to power on: %d\n", ret);
482 goto err_clean_entity;
484 pm_runtime_set_active(dev);
487 pm_runtime_enable(dev);
488 ret = v4l2_async_register_subdev(&dw9768->sd);
489 if (ret < 0) {
490 dev_err(dev, "failed to register V4L2 subdev: %d", ret);
491 goto err_power_off;
494 pm_runtime_set_autosuspend_delay(dev, 1000);
495 pm_runtime_use_autosuspend(dev);
496 pm_runtime_idle(dev);
498 return 0;
500 err_power_off:
501 pm_runtime_disable(dev);
502 if (full_power) {
503 dw9768_runtime_suspend(dev);
504 pm_runtime_set_suspended(dev);
506 err_clean_entity:
507 media_entity_cleanup(&dw9768->sd.entity);
508 err_free_handler:
509 v4l2_ctrl_handler_free(&dw9768->ctrls);
511 return ret;
514 static void dw9768_remove(struct i2c_client *client)
516 struct v4l2_subdev *sd = i2c_get_clientdata(client);
517 struct dw9768 *dw9768 = sd_to_dw9768(sd);
518 struct device *dev = &client->dev;
520 v4l2_async_unregister_subdev(&dw9768->sd);
521 v4l2_ctrl_handler_free(&dw9768->ctrls);
522 media_entity_cleanup(&dw9768->sd.entity);
523 pm_runtime_disable(dev);
524 if ((is_acpi_node(dev_fwnode(dev)) && acpi_dev_state_d0(dev)) ||
525 (is_of_node(dev_fwnode(dev)) && !IS_ENABLED(CONFIG_PM))) {
526 dw9768_runtime_suspend(dev);
527 pm_runtime_set_suspended(dev);
531 static const struct of_device_id dw9768_of_table[] = {
532 { .compatible = "dongwoon,dw9768" },
533 { .compatible = "giantec,gt9769" },
536 MODULE_DEVICE_TABLE(of, dw9768_of_table);
538 static const struct dev_pm_ops dw9768_pm_ops = {
539 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
540 pm_runtime_force_resume)
541 SET_RUNTIME_PM_OPS(dw9768_runtime_suspend, dw9768_runtime_resume, NULL)
544 static struct i2c_driver dw9768_i2c_driver = {
545 .driver = {
546 .name = DW9768_NAME,
547 .pm = &dw9768_pm_ops,
548 .of_match_table = dw9768_of_table,
550 .probe = dw9768_probe,
551 .remove = dw9768_remove,
553 module_i2c_driver(dw9768_i2c_driver);
555 MODULE_AUTHOR("Dongchun Zhu <dongchun.zhu@mediatek.com>");
556 MODULE_DESCRIPTION("DW9768 VCM driver");
557 MODULE_LICENSE("GPL v2");