Hi Mauro, This adds the Tegra video input driver. It currently only supports the test pattern generator, the next phase will add sensor support. Sowjanya, thank you for all your hard work on this driver! Regards, Hans PS: The dt-bindings patch https://patchwork.linuxtv.org/patch/63331 will go through Thierry, together with other non-media patches. The bindings for this device are a bit unusual since they are under bindings/display due to the HW design. The following changes since commit 4bdbff4da40584ec2225bb429b7c66ad54d19cda: media: tuners: Kconfig: add some missing VIDEO_V4L2 dependencies (2020-04-23 07:57:27 +0200) are available in the Git repository at: git://linuxtv.org/hverkuil/media_tree.git tags/br-tegra for you to fetch changes up to 81ac3132ed589757063d65928b13148bb32b0f08: MAINTAINERS: Add Tegra Video driver section (2020-04-24 13:15:18 +0200) ---------------------------------------------------------------- Tag branch ---------------------------------------------------------------- Sowjanya Komatineni (2): media: tegra: Add Tegra210 Video input driver MAINTAINERS: Add Tegra Video driver section MAINTAINERS | 10 + drivers/staging/media/Kconfig | 2 + drivers/staging/media/Makefile | 1 + drivers/staging/media/tegra/Kconfig | 12 + drivers/staging/media/tegra/Makefile | 8 + drivers/staging/media/tegra/TODO | 10 + drivers/staging/media/tegra/common.h | 259 ++++++++++++++ drivers/staging/media/tegra/csi.c | 604 +++++++++++++++++++++++++++++++++ drivers/staging/media/tegra/csi.h | 144 ++++++++ drivers/staging/media/tegra/tegra210.c | 708 ++++++++++++++++++++++++++++++++++++++ drivers/staging/media/tegra/tegra210.h | 190 +++++++++++ drivers/staging/media/tegra/vi.c | 1127 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ drivers/staging/media/tegra/vi.h | 72 ++++ drivers/staging/media/tegra/video.c | 153 +++++++++ drivers/staging/media/tegra/video.h | 29 ++ 15 files changed, 3329 insertions(+) create mode 100644 drivers/staging/media/tegra/Kconfig create mode 100644 drivers/staging/media/tegra/Makefile create mode 100644 drivers/staging/media/tegra/TODO create mode 100644 drivers/staging/media/tegra/common.h create mode 100644 drivers/staging/media/tegra/csi.c create mode 100644 drivers/staging/media/tegra/csi.h create mode 100644 drivers/staging/media/tegra/tegra210.c create mode 100644 drivers/staging/media/tegra/tegra210.h create mode 100644 drivers/staging/media/tegra/vi.c create mode 100644 drivers/staging/media/tegra/vi.h create mode 100644 drivers/staging/media/tegra/video.c create mode 100644 drivers/staging/media/tegra/video.h