Hi Mauro, Please pull the vimc next update for Linux 6.20-rc1. Adds RGB/YUV input entity implementation support for V4L2_FIELD_ALTERNATE in vimc-sensor support for multiple RGB formats in vimc-debayer support custom bytesperline values in vimc-capture document RGB/YUV input entity diff is attached. thanks, -- Shuah ---------------------------------------------------------------- The following changes since commit 8f0b4cce4481fb22653697cced8d0d04027cb1e8: Linux 6.19-rc1 (2025-12-14 16:05:07 +1200) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux tags/linux-vimc-6.20-rc1 for you to fetch changes up to c3a017646b770b76f0f08c96aa74fbc4404ef674: docs: media: vimc: document RGB/YUV input entity (2025-12-15 12:43:25 -0700) ---------------------------------------------------------------- linux-vimc-6.20-rc1 Adds RGB/YUV input entity implementation support for V4L2_FIELD_ALTERNATE in vimc-sensor support for multiple RGB formats in vimc-debayer support custom bytesperline values in vimc-capture document RGB/YUV input entity ---------------------------------------------------------------- Pavan Bobba (5): media: vimc: add RGB/YUV input entity implementation media: vimc: add support for V4L2_FIELD_ALTERNATE in vimc-sensor media: vimc: debayer: add support for multiple RGB formats media: vimc: capture: support custom bytesperline values docs: media: vimc: document RGB/YUV input entity Documentation/admin-guide/media/vimc.rst | 39 +++-- drivers/media/test-drivers/vimc/Makefile | 3 +- drivers/media/test-drivers/vimc/vimc-capture.c | 15 +- drivers/media/test-drivers/vimc/vimc-common.h | 1 + drivers/media/test-drivers/vimc/vimc-core.c | 3 +- drivers/media/test-drivers/vimc/vimc-debayer.c | 113 ++++++++++--- drivers/media/test-drivers/vimc/vimc-input.c | 210 +++++++++++++++++++++++++ drivers/media/test-drivers/vimc/vimc-sensor.c | 9 +- 8 files changed, 352 insertions(+), 41 deletions(-) create mode 100644 drivers/media/test-drivers/vimc/vimc-input.c ----------------------------------------------------------------