Commit 8bd4aaf4 authored by Dmitry Osipenko's avatar Dmitry Osipenko Committed by Mauro Carvalho Chehab
Browse files

media: staging: tegra-vde: De-stage driver



The TODO of tegra-vde driver has been completed, driver now supports
V4L2 stateless video decoding API. Relocate driver to drivers/media.

Signed-off-by: default avatarDmitry Osipenko <digetx@gmail.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent a097abd4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11947,7 +11947,7 @@ L: linux-tegra@vger.kernel.org
S:	Maintained
T:	git git://linuxtv.org/media_tree.git
F:	Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
F:	drivers/staging/media/tegra-vde/
F:	drivers/media/platform/tegra/vde/
MEDIA DRIVERS FOR RENESAS - CEU
M:	Jacopo Mondi <jacopo@jmondi.org>
+17 −0
Original line number Diff line number Diff line
@@ -630,6 +630,23 @@ config VIDEO_SUN8I_ROTATE
	   Support for the Allwinner DE2 rotation unit.
	   To compile this driver as a module choose m here.

config VIDEO_TEGRA_VDE
	tristate "NVIDIA Tegra Video Decoder Engine driver"
	depends on ARCH_TEGRA || COMPILE_TEST
	depends on VIDEO_DEV && VIDEO_V4L2
	select DMA_SHARED_BUFFER
	select IOMMU_IOVA
	select MEDIA_CONTROLLER
	select MEDIA_CONTROLLER_REQUEST_API
	select SRAM
	select VIDEOBUF2_DMA_CONTIG
	select VIDEOBUF2_DMA_SG
	select V4L2_H264
	select V4L2_MEM2MEM_DEV
	help
	   Support for the NVIDIA Tegra video decoder unit.
	   To compile this driver as a module choose m here.

endif # V4L_MEM2MEM_DRIVERS

# TI VIDEO PORT Helper Modules
+2 −0
Original line number Diff line number Diff line
@@ -89,3 +89,5 @@ obj-$(CONFIG_VIDEO_QCOM_VENUS) += qcom/venus/
obj-y					+= sunxi/

obj-$(CONFIG_VIDEO_MESON_GE2D)		+= meson/ge2d/

obj-$(CONFIG_VIDEO_TEGRA_VDE)		+= tegra/vde/
+1 −1
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
tegra-vde-y := vde.o iommu.o dmabuf-cache.o h264.o v4l2.o
obj-$(CONFIG_TEGRA_VDE)	+= tegra-vde.o
obj-$(CONFIG_VIDEO_TEGRA_VDE)	+= tegra-vde.o
Loading