* [PATCH v5 0/3] media: i2c: lc898217xc: initial driver
@ 2026-04-11 13:13 Vasiliy Doylov via B4 Relay
2026-04-11 13:13 ` [PATCH v5 1/3] media: dt-bindings: Add LC898217XC documentation Vasiliy Doylov via B4 Relay
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Vasiliy Doylov via B4 Relay @ 2026-04-11 13:13 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, david
Cc: linux-media, devicetree, linux-kernel, phone-devel,
Vitalii Skorkin, Antonio Rische, Vasiliy Doylov,
Krzysztof Kozlowski
LX898217XC is a 11 bit DAC, designed for linear control
of voice coil motor. This driver creates a V4L2 subdevice
and provides control to set the desired focus.
Tested on Oneplus 6 (oneplus-enchilada)
Co-developed-by: Vitalii Skorkin <nikroks@mainlining.org>
Signed-off-by: Vitalii Skorkin <nikroks@mainlining.org>
Co-developed-by: Antonio Rische <nt8r@protonmail.com>
Signed-off-by: Antonio Rische <nt8r@protonmail.com>
Signed-off-by: Vasiliy Doylov <nekocwd@mainlining.org>
---
Changes in v5:
- Add Reviewed-by tag (Krzysztof)
- Link to v4: https://lore.kernel.org/r/20260325-media-i2c-lc898217xc-initial-driver-v4-0-6ad6fd74915e@mainlining.org
Changes in v4:
- Removed unused focus ctrl (Dave)
- Added ctrl state restore on runtime_resume (Dave)
- Removed subscribe/unsubscribe event handlers (Dave)
- Removed V4L2_SUBDEV_FL_HAS_EVENTS flag (Dave)
- Changed supplies from vcc to vdd + vana
- Fixed free and PM issues on probe fail
- Fixed typo in devicetree documentation
- Link to v3: https://lore.kernel.org/r/20251201-media-i2c-lc898217xc-initial-driver-v3-0-46e23897e921@mainlining.org
Changes in v3:
- Fixed MAINTAINERS (Krzysztof)
- Reordered commits (Krzysztof)
- Removed blank line from device-tree documentation (Krzysztof)
- Refactored to use CCI regmap
- Refactored to use dev_err_probe in probe
- Link to v2: https://lore.kernel.org/all/20250304-media-i2c-lc898217xc-initial-driver-v2-0-6a463cef3ea8@mainlining.org/
Changes in v2:
- PM functions annotated as __maybe_unused.
- Fixed dt bindings documentation commit message
- Added v4l2 events (now v4l2-compliance shows no failed tests)
- Link to v1: https://lore.kernel.org/r/20250304-media-i2c-lc898217xc-initial-driver-v1-0-e2ffd2b2fd5e@mainlining.org
---
Vasiliy Doylov (3):
media: dt-bindings: Add LC898217XC documentation
media: i2c: Add driver for LC898217XC VCM
MAINTAINERS: Add entry for Onsemi LC898217XC lens voice coil driver
.../bindings/media/i2c/onnn,lc898217xc.yaml | 59 +++++
MAINTAINERS | 7 +
drivers/media/i2c/Kconfig | 9 +
drivers/media/i2c/Makefile | 1 +
drivers/media/i2c/lc898217xc.c | 289 +++++++++++++++++++++
5 files changed, 365 insertions(+)
---
base-commit: 66672af7a095d89f082c5327f3b15bc2f93d558e
change-id: 20250227-media-i2c-lc898217xc-initial-driver-d7b50a135ce5
Best regards,
--
Vasiliy Doylov <nekocwd@mainlining.org>
^ permalink raw reply [flat|nested] 6+ messages in thread* [PATCH v5 1/3] media: dt-bindings: Add LC898217XC documentation 2026-04-11 13:13 [PATCH v5 0/3] media: i2c: lc898217xc: initial driver Vasiliy Doylov via B4 Relay @ 2026-04-11 13:13 ` Vasiliy Doylov via B4 Relay 2026-04-11 13:13 ` [PATCH v5 2/3] media: i2c: Add driver for LC898217XC VCM Vasiliy Doylov via B4 Relay 2026-04-11 13:13 ` [PATCH v5 3/3] MAINTAINERS: Add entry for Onsemi LC898217XC lens voice coil driver Vasiliy Doylov via B4 Relay 2 siblings, 0 replies; 6+ messages in thread From: Vasiliy Doylov via B4 Relay @ 2026-04-11 13:13 UTC (permalink / raw) To: Mauro Carvalho Chehab, Rob Herring, Krzysztof Kozlowski, Conor Dooley, david Cc: linux-media, devicetree, linux-kernel, phone-devel, Vitalii Skorkin, Antonio Rische, Vasiliy Doylov, Krzysztof Kozlowski From: Vasiliy Doylov <nekocwd@mainlining.org> Add device tree bindings documentation for ON Semiconductor LC898217XC voice coil motor. Signed-off-by: Vasiliy Doylov <nekocwd@mainlining.org> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> --- .../bindings/media/i2c/onnn,lc898217xc.yaml | 59 ++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/Documentation/devicetree/bindings/media/i2c/onnn,lc898217xc.yaml b/Documentation/devicetree/bindings/media/i2c/onnn,lc898217xc.yaml new file mode 100644 index 000000000000..3dd137d4c67c --- /dev/null +++ b/Documentation/devicetree/bindings/media/i2c/onnn,lc898217xc.yaml @@ -0,0 +1,59 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +# Copyright 2025 Vasiliy Doylov <nekocwd@mainlining.org> +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/media/i2c/onnn,lc898217xc.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: ON Semiconductor LC898217XC Voice Coil Motor (VCM) Lens + +maintainers: + - Vasiliy Doylov <nekocwd@mainlining.org> + +description: + The LC898217XC is a 11-bit digital-to-analog (DAC) converter. + VCM current is controlled with a linear mode driver.The DAC is controlled + via a 2-wire (I2C-compatible) serial interface that operates at clock + rates up to 1MHz. This chip integrates Advanced Actuator Control (AAC) + technology and is intended for driving voice coil lenses in camera modules. + +properties: + compatible: + enum: + - onnn,lc898217xc + + reg: + maxItems: 1 + + vana-supply: + description: + Definition of the regulator used as motor voltage supply. + + vdd-supply: + description: + Definition of the regulator used as digital core voltage supply. + +required: + - compatible + - reg + - vana-supply + - vdd-supply + +additionalProperties: false + +examples: + - | + i2c { + #address-cells = <1>; + #size-cells = <0>; + + camera-lens@74 { + compatible = "onnn,lc898217xc"; + reg = <0x74>; + + vana-supply = <&mt6358_vaf_reg>; + vdd-supply = <&mt6358_vcamio_reg>; + }; + }; + +... -- 2.50.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v5 2/3] media: i2c: Add driver for LC898217XC VCM 2026-04-11 13:13 [PATCH v5 0/3] media: i2c: lc898217xc: initial driver Vasiliy Doylov via B4 Relay 2026-04-11 13:13 ` [PATCH v5 1/3] media: dt-bindings: Add LC898217XC documentation Vasiliy Doylov via B4 Relay @ 2026-04-11 13:13 ` Vasiliy Doylov via B4 Relay 2026-04-21 20:19 ` Sakari Ailus 2026-04-11 13:13 ` [PATCH v5 3/3] MAINTAINERS: Add entry for Onsemi LC898217XC lens voice coil driver Vasiliy Doylov via B4 Relay 2 siblings, 1 reply; 6+ messages in thread From: Vasiliy Doylov via B4 Relay @ 2026-04-11 13:13 UTC (permalink / raw) To: Mauro Carvalho Chehab, Rob Herring, Krzysztof Kozlowski, Conor Dooley, david Cc: linux-media, devicetree, linux-kernel, phone-devel, Vitalii Skorkin, Antonio Rische, Vasiliy Doylov From: Vasiliy Doylov <nekocwd@mainlining.org> LC898217XC is a 11 bit DAC, designed for linear control of voice coil motor. This driver creates a V4L2 subdevice and provides control to set the desired focus. Tested on Oneplus 6 (oneplus-enchilada) Signed-off-by: Vasiliy Doylov <nekocwd@mainlining.org> --- drivers/media/i2c/Kconfig | 9 ++ drivers/media/i2c/Makefile | 1 + drivers/media/i2c/lc898217xc.c | 289 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 299 insertions(+) diff --git a/drivers/media/i2c/Kconfig b/drivers/media/i2c/Kconfig index 8f2ba4121586..346dd4a14105 100644 --- a/drivers/media/i2c/Kconfig +++ b/drivers/media/i2c/Kconfig @@ -926,6 +926,15 @@ config VIDEO_DW9807_VCM capability. This is designed for linear control of voice coil motors, controlled via I2C serial interface. +config VIDEO_LC898217XC + tristate "LC898217XC lens voice coil support" + select V4L2_CCI_I2C + help + This is a driver for the LC898217XC camera lens voice coil. + LC898217XC is a 11 bit DAC with 110mA output current sink + capability. This is designed for linear control of + voice coil motors, controlled via I2C serial interface. + endif menu "Flash devices" diff --git a/drivers/media/i2c/Makefile b/drivers/media/i2c/Makefile index 90b276a7417a..f55c44feca53 100644 --- a/drivers/media/i2c/Makefile +++ b/drivers/media/i2c/Makefile @@ -64,6 +64,7 @@ obj-$(CONFIG_VIDEO_IMX415) += imx415.o obj-$(CONFIG_VIDEO_IR_I2C) += ir-kbd-i2c.o obj-$(CONFIG_VIDEO_ISL7998X) += isl7998x.o obj-$(CONFIG_VIDEO_KS0127) += ks0127.o +obj-$(CONFIG_VIDEO_LC898217XC) += lc898217xc.o obj-$(CONFIG_VIDEO_LM3560) += lm3560.o obj-$(CONFIG_VIDEO_LM3646) += lm3646.o obj-$(CONFIG_VIDEO_LT6911UXE) += lt6911uxe.o diff --git a/drivers/media/i2c/lc898217xc.c b/drivers/media/i2c/lc898217xc.c new file mode 100644 index 000000000000..cfac7e7ce3d6 --- /dev/null +++ b/drivers/media/i2c/lc898217xc.c @@ -0,0 +1,289 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +// Copyright (c) 2025 Vasiliy Doylov <nekocwd@mainlining.org> + +#include <linux/delay.h> +#include <linux/i2c.h> +#include <linux/module.h> +#include <linux/pm_runtime.h> +#include <linux/regmap.h> +#include <linux/regulator/consumer.h> +#include <media/v4l2-async.h> +#include <media/v4l2-cci.h> +#include <media/v4l2-ctrls.h> +#include <media/v4l2-device.h> +#include <media/v4l2-fwnode.h> +#include <media/v4l2-subdev.h> +#include <media/v4l2-event.h> + +#define LC898217XC_NAME "lc898217xc" +/* Actuator has 11 bit resolution */ +#define LC898217XC_MAX_FOCUS_POS (2048 - 1) +#define LC898217XC_MIN_FOCUS_POS 0 +#define LC898217XC_FOCUS_STEPS 1 +#define LC898217XC_DAC_ADDR CCI_REG16(0x84) + +static const char *const lc898217xc_supply_names[] = { + "vdd", + "vana", +}; + +struct lc898217xc { + struct regulator_bulk_data supplies[ARRAY_SIZE(lc898217xc_supply_names)]; + struct v4l2_ctrl_handler ctrls; + struct v4l2_subdev sd; + struct regmap *regmap; +}; + +static inline struct lc898217xc *sd_to_lc898217xc(struct v4l2_subdev *subdev) +{ + return container_of(subdev, struct lc898217xc, sd); +} + +static int lc898217xc_set_dac(struct lc898217xc *lc898217xc, u16 val) +{ + struct i2c_client *client = v4l2_get_subdevdata(&lc898217xc->sd); + int ret; + + ret = cci_write(lc898217xc->regmap, LC898217XC_DAC_ADDR, val, NULL); + if (ret) + dev_err(&client->dev, "failed to set DAC: %d\n", ret); + + return ret; +} + +static int lc898217xc_power_on(struct lc898217xc *lc898217xc) +{ + int ret; + + ret = regulator_bulk_enable(ARRAY_SIZE(lc898217xc_supply_names), + lc898217xc->supplies); + if (ret < 0) + return ret; + + usleep_range(8000, 10000); + return 0; +} + +static int lc898217xc_power_off(struct lc898217xc *lc898217xc) +{ + regulator_bulk_disable(ARRAY_SIZE(lc898217xc_supply_names), + lc898217xc->supplies); + return 0; +} + +static int __maybe_unused lc898217xc_runtime_suspend(struct device *dev) +{ + struct v4l2_subdev *sd = dev_get_drvdata(dev); + struct lc898217xc *lc898217xc = sd_to_lc898217xc(sd); + + lc898217xc_power_off(lc898217xc); + return 0; +} + +static int __maybe_unused lc898217xc_runtime_resume(struct device *dev) +{ + struct v4l2_subdev *sd = dev_get_drvdata(dev); + struct lc898217xc *lc898217xc = sd_to_lc898217xc(sd); + int ret; + + ret = lc898217xc_power_on(lc898217xc); + if (ret < 0) { + dev_err(dev, "failed to enable regulators\n"); + return ret; + } + + __v4l2_ctrl_handler_setup(&lc898217xc->ctrls); + + return ret; +} + +static int lc898217xc_set_ctrl(struct v4l2_ctrl *ctrl) +{ + struct lc898217xc *lc898217xc = container_of(ctrl->handler, + struct lc898217xc, ctrls); + + if (ctrl->id == V4L2_CID_FOCUS_ABSOLUTE) + return lc898217xc_set_dac(lc898217xc, ctrl->val); + + return 0; +} + +static const struct v4l2_ctrl_ops lc898217xc_ctrl_ops = { + .s_ctrl = lc898217xc_set_ctrl, +}; + +static int lc898217xc_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh) +{ + return pm_runtime_resume_and_get(sd->dev); +} + +static int lc898217xc_close(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh) +{ + pm_runtime_put_autosuspend(sd->dev); + + return 0; +} + +static const struct v4l2_subdev_internal_ops lc898217xc_int_ops = { + .open = lc898217xc_open, + .close = lc898217xc_close, +}; + +static const struct v4l2_subdev_core_ops lc898217xc_core_ops = { + .log_status = v4l2_ctrl_subdev_log_status, +}; + +static const struct v4l2_subdev_ops lc898217xc_ops = { + .core = &lc898217xc_core_ops, +}; + +static int lc898217xc_init_controls(struct lc898217xc *lc898217xc) +{ + struct v4l2_ctrl_handler *hdl = &lc898217xc->ctrls; + const struct v4l2_ctrl_ops *ops = &lc898217xc_ctrl_ops; + + v4l2_ctrl_handler_init(hdl, 1); + + v4l2_ctrl_new_std(hdl, ops, V4L2_CID_FOCUS_ABSOLUTE, + LC898217XC_MIN_FOCUS_POS, + LC898217XC_MAX_FOCUS_POS, + LC898217XC_FOCUS_STEPS, 0); + + if (hdl->error) + return hdl->error; + + lc898217xc->sd.ctrl_handler = hdl; + + return 0; +} + +static int lc898217xc_probe(struct i2c_client *client) +{ + struct device *dev = &client->dev; + struct lc898217xc *lc898217xc; + unsigned int i; + int ret; + + lc898217xc = devm_kzalloc(dev, sizeof(*lc898217xc), GFP_KERNEL); + if (!lc898217xc) + return -ENOMEM; + + lc898217xc->regmap = devm_cci_regmap_init_i2c(client, 8); + if (IS_ERR(lc898217xc->regmap)) + return dev_err_probe(dev, PTR_ERR(lc898217xc->regmap), + "failed to initialize CCI\n"); + + /* Initialize subdev */ + v4l2_i2c_subdev_init(&lc898217xc->sd, client, &lc898217xc_ops); + + for (i = 0; i < ARRAY_SIZE(lc898217xc_supply_names); i++) + lc898217xc->supplies[i].supply = lc898217xc_supply_names[i]; + + ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(lc898217xc_supply_names), + lc898217xc->supplies); + if (ret) + return dev_err_probe(dev, ret, "failed to get regulators\n"); + + ret = lc898217xc_power_on(lc898217xc); + if (ret) + return dev_err_probe(dev, ret, "failed to enable regulators\n"); + + ret = lc898217xc_init_controls(lc898217xc); + if (ret) { + dev_err_probe(dev, ret, "failed to init v4l2 controls\n"); + goto err_power_off; + } + + /* Initialize subdev */ + lc898217xc->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE; + lc898217xc->sd.internal_ops = &lc898217xc_int_ops; + + ret = media_entity_pads_init(&lc898217xc->sd.entity, 0, NULL); + if (ret < 0) { + dev_err_probe(dev, ret, "failed to init media entity pads"); + goto err_free_handler; + } + + lc898217xc->sd.entity.function = MEDIA_ENT_F_LENS; + + /* + * Enable runtime PM. As the device has been powered manually, mark it + * as active, and increase the usage count without resuming the device. + */ + pm_runtime_set_active(dev); + pm_runtime_get_noresume(dev); + pm_runtime_enable(dev); + + ret = v4l2_async_register_subdev(&lc898217xc->sd); + if (ret < 0) { + dev_err_probe(dev, ret, "failed to register V4L2 subdev\n"); + goto err_pm; + } + + /* + * Finally, enable autosuspend and decrease the usage count. The device + * will get suspended after the autosuspend delay, turning the power + * off. + */ + pm_runtime_set_autosuspend_delay(dev, 1000); + pm_runtime_use_autosuspend(dev); + pm_runtime_put_autosuspend(dev); + + return 0; + +err_pm: + pm_runtime_disable(dev); + pm_runtime_put_noidle(dev); + media_entity_cleanup(&lc898217xc->sd.entity); +err_free_handler: + v4l2_ctrl_handler_free(&lc898217xc->ctrls); +err_power_off: + lc898217xc_power_off(lc898217xc); + return ret; +} + +static void lc898217xc_remove(struct i2c_client *client) +{ + struct v4l2_subdev *sd = i2c_get_clientdata(client); + struct lc898217xc *lc898217xc = sd_to_lc898217xc(sd); + struct device *dev = &client->dev; + + v4l2_async_unregister_subdev(&lc898217xc->sd); + v4l2_ctrl_handler_free(&lc898217xc->ctrls); + media_entity_cleanup(&lc898217xc->sd.entity); + + /* + * Disable runtime PM. In case runtime PM is disabled in the kernel, + * make sure to turn power off manually. + */ + pm_runtime_disable(dev); + if (!pm_runtime_status_suspended(dev)) + lc898217xc_power_off(lc898217xc); + pm_runtime_set_suspended(dev); +} + +static const struct of_device_id lc898217xc_of_table[] = { + { .compatible = "onnn,lc898217xc" }, + { /* sentinel */ } +}; +MODULE_DEVICE_TABLE(of, lc898217xc_of_table); + +static const struct dev_pm_ops lc898217xc_pm_ops = { + SET_RUNTIME_PM_OPS(lc898217xc_runtime_suspend, + lc898217xc_runtime_resume, NULL) +}; + +static struct i2c_driver lc898217xc_i2c_driver = { + .driver = { + .name = LC898217XC_NAME, + .pm = &lc898217xc_pm_ops, + .of_match_table = lc898217xc_of_table, + }, + .probe = lc898217xc_probe, + .remove = lc898217xc_remove, +}; +module_i2c_driver(lc898217xc_i2c_driver); + +MODULE_AUTHOR("Vasiliy Doylov <nekocwd@mainlining.org>"); +MODULE_DESCRIPTION("Onsemi LC898217XC VCM driver"); +MODULE_LICENSE("GPL"); -- 2.50.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v5 2/3] media: i2c: Add driver for LC898217XC VCM 2026-04-11 13:13 ` [PATCH v5 2/3] media: i2c: Add driver for LC898217XC VCM Vasiliy Doylov via B4 Relay @ 2026-04-21 20:19 ` Sakari Ailus 0 siblings, 0 replies; 6+ messages in thread From: Sakari Ailus @ 2026-04-21 20:19 UTC (permalink / raw) To: nekocwd Cc: Mauro Carvalho Chehab, Rob Herring, Krzysztof Kozlowski, Conor Dooley, david, linux-media, devicetree, linux-kernel, phone-devel, Vitalii Skorkin, Antonio Rische Hi Vasiliy, Thanks for the set. On Sat, Apr 11, 2026 at 04:13:09PM +0300, Vasiliy Doylov via B4 Relay wrote: > From: Vasiliy Doylov <nekocwd@mainlining.org> > > LC898217XC is a 11 bit DAC, designed for linear control > of voice coil motor. This driver creates a V4L2 subdevice > and provides control to set the desired focus. > > Tested on Oneplus 6 (oneplus-enchilada) Missing period. > > Signed-off-by: Vasiliy Doylov <nekocwd@mainlining.org> > --- > drivers/media/i2c/Kconfig | 9 ++ > drivers/media/i2c/Makefile | 1 + > drivers/media/i2c/lc898217xc.c | 289 +++++++++++++++++++++++++++++++++++++++++ > 3 files changed, 299 insertions(+) > > diff --git a/drivers/media/i2c/Kconfig b/drivers/media/i2c/Kconfig > index 8f2ba4121586..346dd4a14105 100644 > --- a/drivers/media/i2c/Kconfig > +++ b/drivers/media/i2c/Kconfig > @@ -926,6 +926,15 @@ config VIDEO_DW9807_VCM > capability. This is designed for linear control of > voice coil motors, controlled via I2C serial interface. > > +config VIDEO_LC898217XC > + tristate "LC898217XC lens voice coil support" > + select V4L2_CCI_I2C > + help > + This is a driver for the LC898217XC camera lens voice coil. > + LC898217XC is a 11 bit DAC with 110mA output current sink > + capability. This is designed for linear control of > + voice coil motors, controlled via I2C serial interface. > + > endif > > menu "Flash devices" > diff --git a/drivers/media/i2c/Makefile b/drivers/media/i2c/Makefile > index 90b276a7417a..f55c44feca53 100644 > --- a/drivers/media/i2c/Makefile > +++ b/drivers/media/i2c/Makefile > @@ -64,6 +64,7 @@ obj-$(CONFIG_VIDEO_IMX415) += imx415.o > obj-$(CONFIG_VIDEO_IR_I2C) += ir-kbd-i2c.o > obj-$(CONFIG_VIDEO_ISL7998X) += isl7998x.o > obj-$(CONFIG_VIDEO_KS0127) += ks0127.o > +obj-$(CONFIG_VIDEO_LC898217XC) += lc898217xc.o > obj-$(CONFIG_VIDEO_LM3560) += lm3560.o > obj-$(CONFIG_VIDEO_LM3646) += lm3646.o > obj-$(CONFIG_VIDEO_LT6911UXE) += lt6911uxe.o > diff --git a/drivers/media/i2c/lc898217xc.c b/drivers/media/i2c/lc898217xc.c > new file mode 100644 > index 000000000000..cfac7e7ce3d6 > --- /dev/null > +++ b/drivers/media/i2c/lc898217xc.c > @@ -0,0 +1,289 @@ > +// SPDX-License-Identifier: GPL-2.0-or-later > +// Copyright (c) 2025 Vasiliy Doylov <nekocwd@mainlining.org> > + > +#include <linux/delay.h> > +#include <linux/i2c.h> > +#include <linux/module.h> > +#include <linux/pm_runtime.h> > +#include <linux/regmap.h> > +#include <linux/regulator/consumer.h> > +#include <media/v4l2-async.h> > +#include <media/v4l2-cci.h> > +#include <media/v4l2-ctrls.h> > +#include <media/v4l2-device.h> > +#include <media/v4l2-fwnode.h> Do you need this? > +#include <media/v4l2-subdev.h> > +#include <media/v4l2-event.h> Alphabetical order, please. > + > +#define LC898217XC_NAME "lc898217xc" > +/* Actuator has 11 bit resolution */ > +#define LC898217XC_MAX_FOCUS_POS (2048 - 1) > +#define LC898217XC_MIN_FOCUS_POS 0 > +#define LC898217XC_FOCUS_STEPS 1 > +#define LC898217XC_DAC_ADDR CCI_REG16(0x84) > + > +static const char *const lc898217xc_supply_names[] = { > + "vdd", > + "vana", > +}; > + > +struct lc898217xc { > + struct regulator_bulk_data supplies[ARRAY_SIZE(lc898217xc_supply_names)]; > + struct v4l2_ctrl_handler ctrls; > + struct v4l2_subdev sd; > + struct regmap *regmap; > +}; > + > +static inline struct lc898217xc *sd_to_lc898217xc(struct v4l2_subdev *subdev) > +{ > + return container_of(subdev, struct lc898217xc, sd); > +} > + > +static int lc898217xc_set_dac(struct lc898217xc *lc898217xc, u16 val) > +{ > + struct i2c_client *client = v4l2_get_subdevdata(&lc898217xc->sd); Please instead do: struct i2c_client *client = to_i2c_client(lc898217->sd.dev); as in the long run we should get rid of v4l2_get_subdevdata(). > + int ret; > + > + ret = cci_write(lc898217xc->regmap, LC898217XC_DAC_ADDR, val, NULL); > + if (ret) > + dev_err(&client->dev, "failed to set DAC: %d\n", ret); > + > + return ret; > +} > + > +static int lc898217xc_power_on(struct lc898217xc *lc898217xc) > +{ > + int ret; > + > + ret = regulator_bulk_enable(ARRAY_SIZE(lc898217xc_supply_names), > + lc898217xc->supplies); > + if (ret < 0) > + return ret; > + > + usleep_range(8000, 10000); > + return 0; > +} > + > +static int lc898217xc_power_off(struct lc898217xc *lc898217xc) > +{ > + regulator_bulk_disable(ARRAY_SIZE(lc898217xc_supply_names), > + lc898217xc->supplies); > + return 0; > +} > + > +static int __maybe_unused lc898217xc_runtime_suspend(struct device *dev) > +{ > + struct v4l2_subdev *sd = dev_get_drvdata(dev); > + struct lc898217xc *lc898217xc = sd_to_lc898217xc(sd); > + > + lc898217xc_power_off(lc898217xc); > + return 0; > +} > + > +static int __maybe_unused lc898217xc_runtime_resume(struct device *dev) > +{ > + struct v4l2_subdev *sd = dev_get_drvdata(dev); > + struct lc898217xc *lc898217xc = sd_to_lc898217xc(sd); > + int ret; > + > + ret = lc898217xc_power_on(lc898217xc); > + if (ret < 0) { > + dev_err(dev, "failed to enable regulators\n"); > + return ret; > + } > + > + __v4l2_ctrl_handler_setup(&lc898217xc->ctrls); > + > + return ret; > +} > + > +static int lc898217xc_set_ctrl(struct v4l2_ctrl *ctrl) > +{ > + struct lc898217xc *lc898217xc = container_of(ctrl->handler, > + struct lc898217xc, ctrls); > + > + if (ctrl->id == V4L2_CID_FOCUS_ABSOLUTE) > + return lc898217xc_set_dac(lc898217xc, ctrl->val); > + > + return 0; > +} > + > +static const struct v4l2_ctrl_ops lc898217xc_ctrl_ops = { > + .s_ctrl = lc898217xc_set_ctrl, > +}; > + > +static int lc898217xc_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh) > +{ > + return pm_runtime_resume_and_get(sd->dev); > +} > + > +static int lc898217xc_close(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh) > +{ > + pm_runtime_put_autosuspend(sd->dev); > + > + return 0; > +} > + > +static const struct v4l2_subdev_internal_ops lc898217xc_int_ops = { > + .open = lc898217xc_open, > + .close = lc898217xc_close, > +}; > + > +static const struct v4l2_subdev_core_ops lc898217xc_core_ops = { > + .log_status = v4l2_ctrl_subdev_log_status, > +}; > + > +static const struct v4l2_subdev_ops lc898217xc_ops = { > + .core = &lc898217xc_core_ops, > +}; > + > +static int lc898217xc_init_controls(struct lc898217xc *lc898217xc) > +{ > + struct v4l2_ctrl_handler *hdl = &lc898217xc->ctrls; > + const struct v4l2_ctrl_ops *ops = &lc898217xc_ctrl_ops; > + > + v4l2_ctrl_handler_init(hdl, 1); > + > + v4l2_ctrl_new_std(hdl, ops, V4L2_CID_FOCUS_ABSOLUTE, > + LC898217XC_MIN_FOCUS_POS, > + LC898217XC_MAX_FOCUS_POS, > + LC898217XC_FOCUS_STEPS, 0); > + > + if (hdl->error) > + return hdl->error; > + > + lc898217xc->sd.ctrl_handler = hdl; > + > + return 0; > +} > + > +static int lc898217xc_probe(struct i2c_client *client) > +{ > + struct device *dev = &client->dev; > + struct lc898217xc *lc898217xc; > + unsigned int i; > + int ret; > + > + lc898217xc = devm_kzalloc(dev, sizeof(*lc898217xc), GFP_KERNEL); > + if (!lc898217xc) > + return -ENOMEM; > + > + lc898217xc->regmap = devm_cci_regmap_init_i2c(client, 8); > + if (IS_ERR(lc898217xc->regmap)) > + return dev_err_probe(dev, PTR_ERR(lc898217xc->regmap), > + "failed to initialize CCI\n"); > + > + /* Initialize subdev */ > + v4l2_i2c_subdev_init(&lc898217xc->sd, client, &lc898217xc_ops); > + > + for (i = 0; i < ARRAY_SIZE(lc898217xc_supply_names); i++) > + lc898217xc->supplies[i].supply = lc898217xc_supply_names[i]; > + > + ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(lc898217xc_supply_names), > + lc898217xc->supplies); > + if (ret) > + return dev_err_probe(dev, ret, "failed to get regulators\n"); > + > + ret = lc898217xc_power_on(lc898217xc); > + if (ret) > + return dev_err_probe(dev, ret, "failed to enable regulators\n"); > + > + ret = lc898217xc_init_controls(lc898217xc); > + if (ret) { > + dev_err_probe(dev, ret, "failed to init v4l2 controls\n"); > + goto err_power_off; > + } > + > + /* Initialize subdev */ > + lc898217xc->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE; > + lc898217xc->sd.internal_ops = &lc898217xc_int_ops; > + > + ret = media_entity_pads_init(&lc898217xc->sd.entity, 0, NULL); > + if (ret < 0) { > + dev_err_probe(dev, ret, "failed to init media entity pads"); > + goto err_free_handler; > + } > + > + lc898217xc->sd.entity.function = MEDIA_ENT_F_LENS; > + > + /* > + * Enable runtime PM. As the device has been powered manually, mark it > + * as active, and increase the usage count without resuming the device. > + */ > + pm_runtime_set_active(dev); > + pm_runtime_get_noresume(dev); You can drop this... > + pm_runtime_enable(dev); > + > + ret = v4l2_async_register_subdev(&lc898217xc->sd); > + if (ret < 0) { > + dev_err_probe(dev, ret, "failed to register V4L2 subdev\n"); > + goto err_pm; > + } > + > + /* > + * Finally, enable autosuspend and decrease the usage count. The device > + * will get suspended after the autosuspend delay, turning the power > + * off. > + */ > + pm_runtime_set_autosuspend_delay(dev, 1000); > + pm_runtime_use_autosuspend(dev); > + pm_runtime_put_autosuspend(dev); and use pm_runtime_idle(); here to achieve the same. > + > + return 0; > + > +err_pm: > + pm_runtime_disable(dev); > + pm_runtime_put_noidle(dev); This can be then also dropped. > + media_entity_cleanup(&lc898217xc->sd.entity); > +err_free_handler: > + v4l2_ctrl_handler_free(&lc898217xc->ctrls); > +err_power_off: > + lc898217xc_power_off(lc898217xc); A newline would be nice here, as would be empty lines above before labels. > + return ret; > +} > + > +static void lc898217xc_remove(struct i2c_client *client) > +{ > + struct v4l2_subdev *sd = i2c_get_clientdata(client); > + struct lc898217xc *lc898217xc = sd_to_lc898217xc(sd); > + struct device *dev = &client->dev; > + > + v4l2_async_unregister_subdev(&lc898217xc->sd); > + v4l2_ctrl_handler_free(&lc898217xc->ctrls); > + media_entity_cleanup(&lc898217xc->sd.entity); > + > + /* > + * Disable runtime PM. In case runtime PM is disabled in the kernel, > + * make sure to turn power off manually. > + */ > + pm_runtime_disable(dev); > + if (!pm_runtime_status_suspended(dev)) > + lc898217xc_power_off(lc898217xc); > + pm_runtime_set_suspended(dev); > +} > + > +static const struct of_device_id lc898217xc_of_table[] = { > + { .compatible = "onnn,lc898217xc" }, > + { /* sentinel */ } > +}; > +MODULE_DEVICE_TABLE(of, lc898217xc_of_table); > + > +static const struct dev_pm_ops lc898217xc_pm_ops = { > + SET_RUNTIME_PM_OPS(lc898217xc_runtime_suspend, > + lc898217xc_runtime_resume, NULL) > +}; > + > +static struct i2c_driver lc898217xc_i2c_driver = { > + .driver = { > + .name = LC898217XC_NAME, > + .pm = &lc898217xc_pm_ops, > + .of_match_table = lc898217xc_of_table, > + }, > + .probe = lc898217xc_probe, > + .remove = lc898217xc_remove, > +}; > +module_i2c_driver(lc898217xc_i2c_driver); > + > +MODULE_AUTHOR("Vasiliy Doylov <nekocwd@mainlining.org>"); > +MODULE_DESCRIPTION("Onsemi LC898217XC VCM driver"); > +MODULE_LICENSE("GPL"); > -- Kind regards, Sakari Ailus ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v5 3/3] MAINTAINERS: Add entry for Onsemi LC898217XC lens voice coil driver 2026-04-11 13:13 [PATCH v5 0/3] media: i2c: lc898217xc: initial driver Vasiliy Doylov via B4 Relay 2026-04-11 13:13 ` [PATCH v5 1/3] media: dt-bindings: Add LC898217XC documentation Vasiliy Doylov via B4 Relay 2026-04-11 13:13 ` [PATCH v5 2/3] media: i2c: Add driver for LC898217XC VCM Vasiliy Doylov via B4 Relay @ 2026-04-11 13:13 ` Vasiliy Doylov via B4 Relay 2026-04-21 20:20 ` Sakari Ailus 2 siblings, 1 reply; 6+ messages in thread From: Vasiliy Doylov via B4 Relay @ 2026-04-11 13:13 UTC (permalink / raw) To: Mauro Carvalho Chehab, Rob Herring, Krzysztof Kozlowski, Conor Dooley, david Cc: linux-media, devicetree, linux-kernel, phone-devel, Vitalii Skorkin, Antonio Rische, Vasiliy Doylov From: Vasiliy Doylov <nekocwd@mainlining.org> Add entry for Onsemi LC898217XC lens voice coil driver Signed-off-by: Vasiliy Doylov <nekocwd@mainlining.org> --- MAINTAINERS | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index d4b396dccfe9..a87c03ad740b 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -19938,6 +19938,13 @@ S: Supported W: http://www.onsemi.com F: drivers/net/phy/ncn* +ONSEMI LC898217XC LENS VOICE COIL DRIVER +M: Vasiliy Doylov <nekocwd@mainlining.org> +L: linux-media@vger.kernel.org +S: Maintained +F: Documentation/devicetree/bindings/media/i2c/onnn,lc898217xc.yaml +F: drivers/media/i2c/lc898217xc.c + OP-TEE DRIVER M: Jens Wiklander <jens.wiklander@linaro.org> L: op-tee@lists.trustedfirmware.org (moderated for non-subscribers) -- 2.50.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v5 3/3] MAINTAINERS: Add entry for Onsemi LC898217XC lens voice coil driver 2026-04-11 13:13 ` [PATCH v5 3/3] MAINTAINERS: Add entry for Onsemi LC898217XC lens voice coil driver Vasiliy Doylov via B4 Relay @ 2026-04-21 20:20 ` Sakari Ailus 0 siblings, 0 replies; 6+ messages in thread From: Sakari Ailus @ 2026-04-21 20:20 UTC (permalink / raw) To: nekocwd Cc: Mauro Carvalho Chehab, Rob Herring, Krzysztof Kozlowski, Conor Dooley, david, linux-media, devicetree, linux-kernel, phone-devel, Vitalii Skorkin, Antonio Rische Hi Vasiliy, On Sat, Apr 11, 2026 at 04:13:10PM +0300, Vasiliy Doylov via B4 Relay wrote: > From: Vasiliy Doylov <nekocwd@mainlining.org> > > Add entry for Onsemi LC898217XC lens voice coil driver > > Signed-off-by: Vasiliy Doylov <nekocwd@mainlining.org> > --- > MAINTAINERS | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/MAINTAINERS b/MAINTAINERS > index d4b396dccfe9..a87c03ad740b 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -19938,6 +19938,13 @@ S: Supported > W: http://www.onsemi.com > F: drivers/net/phy/ncn* > > +ONSEMI LC898217XC LENS VOICE COIL DRIVER > +M: Vasiliy Doylov <nekocwd@mainlining.org> > +L: linux-media@vger.kernel.org > +S: Maintained > +F: Documentation/devicetree/bindings/media/i2c/onnn,lc898217xc.yaml > +F: drivers/media/i2c/lc898217xc.c This should be squashed to the previous two patches. Please add the F: lines with the respective files. > + > OP-TEE DRIVER > M: Jens Wiklander <jens.wiklander@linaro.org> > L: op-tee@lists.trustedfirmware.org (moderated for non-subscribers) > -- Kind regards, Sakari Ailus ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-04-21 20:20 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-04-11 13:13 [PATCH v5 0/3] media: i2c: lc898217xc: initial driver Vasiliy Doylov via B4 Relay 2026-04-11 13:13 ` [PATCH v5 1/3] media: dt-bindings: Add LC898217XC documentation Vasiliy Doylov via B4 Relay 2026-04-11 13:13 ` [PATCH v5 2/3] media: i2c: Add driver for LC898217XC VCM Vasiliy Doylov via B4 Relay 2026-04-21 20:19 ` Sakari Ailus 2026-04-11 13:13 ` [PATCH v5 3/3] MAINTAINERS: Add entry for Onsemi LC898217XC lens voice coil driver Vasiliy Doylov via B4 Relay 2026-04-21 20:20 ` Sakari Ailus
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox