This series add YAML DT binding and V4L2 sub-device driver for Giantec's GT9768>9769. GT9768>9769 is a 10-bit DAC with 100mA output current sink capability, designed for voice coil motor(VCM) with I2C control bus. This driver supports: - support pm runtime function for suspend/resume - support camera lens focus position by V4L2_CID_FOCUS_ABSOLUTE CMD - used in camera features on ChromeOS application Previous versions of this patch-set can be found here: v2:https://lore.kernel.org/all/20240427012613.6621-1-zhi.mao@xxxxxxxxxxxx/ v1:https://lore.kernel.org/all/20240420011840.23148-1-zhi.mao@xxxxxxxxxxxx/ v0:https://lore.kernel.org/all/20240410104002.1197-1-zhi.mao@xxxxxxxxxxxx/ This series is based on linux-next, tag: next-20240611 Changes in v3: - Add maintainer entry for GT97xx VCM driver Thanks Zhi Mao (3): media: dt-bindings: i2c: add Giantec GT97xx VCM media: i2c: Add GT97xx VCM driver MAINTAINERS: Add entry for GT97xx VCM driver .../bindings/media/i2c/giantec,gt9769.yaml | 55 +++ MAINTAINERS | 8 + drivers/media/i2c/Kconfig | 13 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/gt97xx.c | 436 ++++++++++++++++++ 5 files changed, 513 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/giantec,gt9769.yaml create mode 100644 drivers/media/i2c/gt97xx.c -- 2.25.1