Hello, This series adds support for the Sony IMX296 camera sensor driver, with DT bindings in patch 1/2 and a driver in patch 2/2. The DT bindings originate from a series posted by Manivannan ([1]). They have been updated, see patch 1/2 for a detailed changelog. The most notable changes compared to v2 ([1]) are - Support for color/monochrome model identification through separate compatible strings - Usage of the V4L2 active subdev state Other small fixes and improvements are detailed in the changelog of each patch. Most review comments frmo v2 have been taken into account. The only exception is the merge of the imx296_power_on() function with imx296_runtime_resume() function (and similarly for power off and runtime suspend) as requested by Sakari. I gave it a try, and it conflicts with grouping all V4L2 subdev initialization in imx296_subdev_init(). I really think keeping the functions separate produces cleaner code, without any drawback. [1] https://lore.kernel.org/all/20211219220948.28953-1-laurent.pinchart@xxxxxxxxxxxxxxxx Laurent Pinchart (1): media: i2c: IMX296 camera sensor driver Manivannan Sadhasivam (1): dt-bindings: media: i2c: Add IMX296 CMOS sensor binding .../bindings/media/i2c/sony,imx296.yaml | 106 ++ MAINTAINERS | 9 + drivers/media/i2c/Kconfig | 13 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/imx296.c | 1174 +++++++++++++++++ 5 files changed, 1303 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/sony,imx296.yaml create mode 100644 drivers/media/i2c/imx296.c -- Regards, Laurent Pinchart