Commit d74d4e23 authored by Michael Tretter's avatar Michael Tretter Committed by Mauro Carvalho Chehab
Browse files

media: allegro: move driver out of staging



The stateful encoder API was finalized. Nothing is blocking the driver
from being moved out of staging.

Signed-off-by: default avatarMichael Tretter <m.tretter@pengutronix.de>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent ce814ad4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -699,7 +699,7 @@ M: Michael Tretter <m.tretter@pengutronix.de>
R:	Pengutronix Kernel Team <kernel@pengutronix.de>
L:	linux-media@vger.kernel.org
S:	Maintained
F:	drivers/staging/media/allegro-dvt/
F:	drivers/media/platform/allegro-dvt/
ALLWINNER A10 CSI DRIVER
M:	Maxime Ripard <mripard@kernel.org>
+15 −0
Original line number Diff line number Diff line
@@ -199,6 +199,21 @@ menuconfig V4L_MEM2MEM_DRIVERS

if V4L_MEM2MEM_DRIVERS

config VIDEO_ALLEGRO_DVT
	tristate "Allegro DVT Video IP Core"
	depends on VIDEO_DEV && VIDEO_V4L2
	depends on ARCH_ZYNQMP || COMPILE_TEST
	select V4L2_MEM2MEM_DEV
	select VIDEOBUF2_DMA_CONTIG
	select REGMAP_MMIO
	help
	  Support for the encoder video IP core by Allegro DVT. This core is
	  found for example on the Xilinx ZynqMP SoC in the EV family and is
	  called VCU in the reference manual.

	  To compile this driver as a module, choose M here: the module
	  will be called allegro.

config VIDEO_CODA
	tristate "Chips&Media Coda multi-standard codec IP"
	depends on VIDEO_DEV && VIDEO_V4L2 && OF && (ARCH_MXC || COMPILE_TEST)
+1 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
# Makefile for the video capture/playback device drivers.
#

obj-$(CONFIG_VIDEO_ALLEGRO_DVT)		+= allegro-dvt/
obj-$(CONFIG_VIDEO_ASPEED)		+= aspeed-video.o
obj-$(CONFIG_VIDEO_CADENCE)		+= cadence/
obj-$(CONFIG_VIDEO_VIA_CAMERA) += via-camera.o
Loading