Hello, This patch series adds a driver for the OV10633 and OV10635 camera sensors, along with corresponding DT bindings. As detailed in the commit message of patch 2/2, the driver originates from a submission from Phil Edworthy 8 and a half years ago. It went through the TI kernel tree, and is now a candidate for mainline again. Large parts of the driver have been rewritten compared to the version present in the TI kernel, to bring the code to the latest kernel APIs, fix issues and apply various cleanups. There are known issues, listed in TODO comments in the driver, and some of them will require access to more documentation in order to develop fixes (I only have a leaked OV10633 datasheet). The code is functional, and has been tested successfully with multiple resolutions, with a TI AM572x EVM and the TI VIP capture driver. Please see individual patches for details changelogs. Benoit Parrot (1): dt-bindings: media: Add bindings for OmniVision OV1063x sensors Laurent Pinchart (1): media: i2c: Add OV1063x sensor driver .../bindings/media/i2c/ovti,ov1063x.yaml | 97 + MAINTAINERS | 9 + drivers/media/i2c/Kconfig | 12 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/ov1063x.c | 1716 +++++++++++++++++ drivers/media/i2c/ov1063x_regs.h | 627 ++++++ 6 files changed, 2462 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/ovti,ov1063x.yaml create mode 100644 drivers/media/i2c/ov1063x.c create mode 100644 drivers/media/i2c/ov1063x_regs.h base-commit: 1f1517fafda598839a02e39968c5063ddcfa51fc -- Regards, Laurent Pinchart