All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL FOR v5.8] Add Tegra210 Video input driver
@ 2020-05-05  8:33 Hans Verkuil
  2020-05-05  8:42 ` [GIT PULL FOR v5.8] Add Tegra210 Video input driver (#63596) Jenkins
  2020-05-05 12:17 ` [GIT PULL FOR v5.8] Add Tegra210 Video input driver Mauro Carvalho Chehab
  0 siblings, 2 replies; 9+ messages in thread
From: Hans Verkuil @ 2020-05-05  8:33 UTC (permalink / raw)
  To: Linux Media Mailing List; +Cc: Sowjanya Komatineni

The following changes since commit e51759f56d314d28c25be7606b03791f048e44c7:

  media: v4l2-ctrls.h: clarify the p_def argument of v4l2_ctrl_new_std_compound (2020-04-29 12:04:58 +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 0bba0154ded02babccd59e21c6a27c5ad7d50faf:

  MAINTAINERS: Add Tegra Video driver section (2020-05-05 10:26:05 +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-video/Kconfig    |   12 +
 drivers/staging/media/tegra-video/Makefile   |    8 +
 drivers/staging/media/tegra-video/TODO       |   11 +
 drivers/staging/media/tegra-video/csi.c      |  539 ++++++++++++++++++++++++++++
 drivers/staging/media/tegra-video/csi.h      |  147 ++++++++
 drivers/staging/media/tegra-video/tegra210.c |  978 ++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/staging/media/tegra-video/vi.c       | 1074 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/staging/media/tegra-video/vi.h       |  257 +++++++++++++
 drivers/staging/media/tegra-video/video.c    |  155 ++++++++
 drivers/staging/media/tegra-video/video.h    |   29 ++
 13 files changed, 3223 insertions(+)
 create mode 100644 drivers/staging/media/tegra-video/Kconfig
 create mode 100644 drivers/staging/media/tegra-video/Makefile
 create mode 100644 drivers/staging/media/tegra-video/TODO
 create mode 100644 drivers/staging/media/tegra-video/csi.c
 create mode 100644 drivers/staging/media/tegra-video/csi.h
 create mode 100644 drivers/staging/media/tegra-video/tegra210.c
 create mode 100644 drivers/staging/media/tegra-video/vi.c
 create mode 100644 drivers/staging/media/tegra-video/vi.h
 create mode 100644 drivers/staging/media/tegra-video/video.c
 create mode 100644 drivers/staging/media/tegra-video/video.h

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [GIT PULL FOR v5.8] Add Tegra210 Video input driver
@ 2020-04-24 12:00 Hans Verkuil
  0 siblings, 0 replies; 9+ messages in thread
From: Hans Verkuil @ 2020-04-24 12:00 UTC (permalink / raw)
  To: Linux Media Mailing List; +Cc: Sowjanya Komatineni, Thierry Reding

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

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2020-05-05 20:39 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-05  8:33 [GIT PULL FOR v5.8] Add Tegra210 Video input driver Hans Verkuil
2020-05-05  8:42 ` [GIT PULL FOR v5.8] Add Tegra210 Video input driver (#63596) Jenkins
2020-05-05 12:17 ` [GIT PULL FOR v5.8] Add Tegra210 Video input driver Mauro Carvalho Chehab
2020-05-05 12:24   ` Hans Verkuil
2020-05-05 14:15     ` Mauro Carvalho Chehab
2020-05-05 14:26       ` Hans Verkuil
2020-05-05 20:22         ` Thierry Reding
2020-05-05 20:39           ` Mauro Carvalho Chehab
  -- strict thread matches above, loose matches on Subject: below --
2020-04-24 12:00 Hans Verkuil

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.