Hi Mauro, Here's a bunch of patches for sensor drivers, documentation and DT bindings mostly. Included is a driver for IMX208 sensors, as well as fix for the CCS driver that's cc'd to the stable trees. A lot of the changes in the ov8856 driver are for adapting the driver data structures to work with multiple lane configurations. Please pull. The following changes since commit bb9212fd971035597d264fc6a7cc4df0db9b5fd0: media: ARM: dts: sama5d4: enable Hantro G1 VDEC (2021-05-19 09:51:40 +0200) are available in the Git repository at: git://linuxtv.org/sailus/media_tree.git tags/for-5.14-1-signed for you to fetch changes up to 69577665eb1552b4f739cd3b9a149b0f7972d2f8: media: dt-bindings: media: renesas,vin: Add r8a779a0 support (2021-05-24 18:10:05 +0300) ---------------------------------------------------------------- V4L2 patches for 5.14 ---------------------------------------------------------------- Andy Shevchenko (1): media: ipu3-cio2: Fix reference counting when looping over ACPI devices Bernhard Wimmer (2): media: Documentation: ccs: Fix the op_pll_multiplier address media: ccs: Fix the op_pll_multiplier address Christophe JAILLET (2): media: i2c: ov2659: Fix an error message media: i2c: ov9650: Fix an error message Dillon Min (1): media: i2c: ov2659: Use clk_{prepare_enable,disable_unprepare}() to set xvclk on/off Niklas Söderlund (2): media: dt-bindings: media: renesas,isp: Add bindings for ISP Channel Selector media: dt-bindings: media: renesas,vin: Add r8a779a0 support Paul Kocialkowski (1): media: i2c: ov8865: remove unnecessary NULL check Sakari Ailus (3): v4l: async, fwnode: Improve module organisation staging: ipu3-imgu: Move the UAPI header from include under include/uapi staging: ipu3-imgu: Document pages field Shawn Tu (3): ov8856: Add support for 2 data lanes ov8856: add vflip/hflip control support media: imx208: Add imx208 camera sensor driver Documentation/admin-guide/media/ipu3.rst | 35 +- .../devicetree/bindings/media/renesas,isp.yaml | 196 ++ .../devicetree/bindings/media/renesas,vin.yaml | 26 +- .../driver-api/media/drivers/ccs/ccs-regs.asc | 2 +- .../driver-api/media/drivers/ccs/mk-ccs-regs | 5 +- .../media/v4l/pixfmt-meta-intel-ipu3.rst | 2 +- MAINTAINERS | 8 + drivers/media/i2c/Kconfig | 22 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/ccs/ccs-limits.c | 4 + drivers/media/i2c/ccs/ccs-limits.h | 4 + drivers/media/i2c/ccs/ccs-regs.h | 6 +- drivers/media/i2c/imx208.c | 1087 +++++++++ drivers/media/i2c/ov2659.c | 27 +- drivers/media/i2c/ov8856.c | 2449 +++++++++++++------- drivers/media/i2c/ov8865.c | 2 +- drivers/media/i2c/ov9650.c | 4 +- drivers/media/pci/intel/ipu3/cio2-bridge.c | 10 +- drivers/media/v4l2-core/Kconfig | 5 + drivers/media/v4l2-core/Makefile | 5 +- drivers/media/v4l2-core/v4l2-async.c | 23 +- drivers/media/v4l2-core/v4l2-dev.c | 5 - .../media/ipu3/include/{ => uapi}/intel-ipu3.h | 0 drivers/staging/media/ipu3/ipu3-abi.h | 2 +- drivers/staging/media/ipu3/ipu3-css-pool.h | 1 + 25 files changed, 2981 insertions(+), 950 deletions(-) create mode 100644 Documentation/devicetree/bindings/media/renesas,isp.yaml create mode 100644 drivers/media/i2c/imx208.c rename drivers/staging/media/ipu3/include/{ => uapi}/intel-ipu3.h (100%) -- Sakari Ailus