Hi Mauro, Here's a pile of more patche sfor 5.15. There's a new driver for the ov13b10 camera sensor, a bunch of fixes and cleanups for the IPU3 CIO2 and ImgU drivers as well as other drivers including gspca (a trivial fix), stm32, ov8856 and imx258 drivers. Also renensas,imr bindings are converted to json-schema. Please pull. The following changes since commit 19e95228c722ad458ef03f4a45e7740a640252f7: media: netup_unidvb: handle interrupt properly according to the firmware (2021-08-18 14:51:30 +0200) are available in the Git repository at: git://linuxtv.org/sailus/media_tree.git tags/for-5.15-3-signed for you to fetch changes up to 7835a2c0059629bd13150ac80cc293335a01d476: media: staging: document that Imgu not output auto-exposure statistics (2021-08-19 11:29:52 +0300) ---------------------------------------------------------------- V4L2 patches for 5.15 ---------------------------------------------------------------- Andy Shevchenko (6): media: ipu3-cio2: Replace open-coded for_each_set_bit() media: ipu3-cio2: Use temporary storage for struct device pointer media: ipu3-cio2: Switch to use media_entity_to_video_device() media: ipu3-cio2: Introduce to_sensor_asd() helper macro media: ipu3-cio2: Introduce to_cio2_buffer() helper macro media: ipu3-cio2: Introduce to_cio2_device() helper macro Arec Kao (1): Add sensor driver support for the ov13b10 camera. Bingbu Cao (1): media: staging: document that Imgu not output auto-exposure statistics David Plowman (2): media: v4l2-ctrls: Add V4L2_CID_NOTIFY_GAINS control media: v4l2-ctrls: Document V4L2_CID_NOTIFY_GAINS control Dmitriy Ulitin (1): stm32: Potential NULL pointer dereference in dcmi_irq_thread() Geert Uytterhoeven (1): dt-bindings: media: renesas,imr: Convert to json-schema Gustavo A. R. Silva (1): media: staging/intel-ipu3: css: Fix wrong size comparison imgu_css_fw_init Hsin-Yi Wang (1): media: ov8856: Set default mbus format but allow caller to alter Nícolas F. R. A. Prado (1): media: ipu3.rst: Improve header formatting on tables Sakari Ailus (1): imx258: Fix getting clock frequency Shaokun Zhang (1): m5602_ov7660: remove the repeated declaration Documentation/admin-guide/media/ipu3.rst | 14 +- .../devicetree/bindings/media/renesas,imr.txt | 31 - .../devicetree/bindings/media/renesas,imr.yaml | 67 + .../media/v4l/ext-ctrls-image-source.rst | 20 + MAINTAINERS | 7 + drivers/media/i2c/Kconfig | 10 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/imx258.c | 12 +- drivers/media/i2c/ov13b10.c | 1491 ++++++++++++++++++++ drivers/media/i2c/ov8856.c | 83 +- drivers/media/pci/intel/ipu3/ipu3-cio2-main.c | 247 ++-- drivers/media/pci/intel/ipu3/ipu3-cio2.h | 4 + drivers/media/platform/stm32/stm32-dcmi.c | 19 +- drivers/media/usb/gspca/m5602/m5602_ov7660.h | 1 - drivers/media/v4l2-core/v4l2-ctrls-defs.c | 1 + .../staging/media/ipu3/include/uapi/intel-ipu3.h | 7 +- drivers/staging/media/ipu3/ipu3-css-fw.c | 7 +- drivers/staging/media/ipu3/ipu3-css-fw.h | 2 +- include/uapi/linux/v4l2-controls.h | 1 + 19 files changed, 1826 insertions(+), 199 deletions(-) delete mode 100644 Documentation/devicetree/bindings/media/renesas,imr.txt create mode 100644 Documentation/devicetree/bindings/media/renesas,imr.yaml create mode 100644 drivers/media/i2c/ov13b10.c -- Sakari Ailus