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: 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-20240424 Changes in v2: - dts-binding files: -- remove "|-" after description node, and remove a blank line Thanks Zhi Mao (2): media: dt-bindings: i2c: add Giantec GT97xx VCM media: i2c: Add GT97xx VCM driver .../bindings/media/i2c/giantec,gt9769.yaml | 55 +++ drivers/media/i2c/Kconfig | 13 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/gt97xx.c | 436 ++++++++++++++++++ 4 files changed, 505 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/giantec,gt9769.yaml create mode 100644 drivers/media/i2c/gt97xx.c -- 2.25.1