Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9322fe0f authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

[media] timblogiw: move to staging in preparation for removal

The Timberdale FPGA video driver has not seen any real development
since 2011 (and very little before that).

One of the problems with the timblogiw driver is that it uses videobuf
instead of the newer vb2 framework. The long term goal is to either
convert or remove any driver still using videobuf. Since none of the
core v4l developers has the hardware, we cannot convert it ourselves.

As far as I can tell it was only used in an Intel demo board in 2009
using Meego:

http://www.chinait.com/intelcontent/intelprc/admin/PDFFile/20106411545.pdf



which has since been superseded.

Moving this driver to staging is the first step towards removal. After 2 or
3 kernel cycles it will be removed altogether unless someone steps up to
clean up this driver.

Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Acked-by: default avatarRichard Röjfors <richard@puffinpack.se>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent b339a72e
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -54,15 +54,6 @@ config VIDEO_VIU
	  Say Y here if you want to enable VIU device on MPC5121e Rev2+.
	  In doubt, say N.

config VIDEO_TIMBERDALE
	tristate "Support for timberdale Video In/LogiWIN"
	depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API && HAS_DMA
	depends on (MFD_TIMBERDALE && TIMB_DMA) || COMPILE_TEST
	select VIDEO_ADV7180
	select VIDEOBUF_DMA_CONTIG
	---help---
	  Add support for the Video In peripherial of the timberdale FPGA.

config VIDEO_M32R_AR
	tristate "AR devices"
	depends on VIDEO_V4L2
+0 −1
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
# Makefile for the video capture/playback device drivers.
#

obj-$(CONFIG_VIDEO_TIMBERDALE)	+= timblogiw.o
obj-$(CONFIG_VIDEO_M32R_AR_M64278) += arv.o

obj-$(CONFIG_VIDEO_VIA_CAMERA) += via-camera.o
+2 −0
Original line number Diff line number Diff line
@@ -31,6 +31,8 @@ source "drivers/staging/media/mn88473/Kconfig"

source "drivers/staging/media/omap4iss/Kconfig"

source "drivers/staging/media/timb/Kconfig"

# Keep LIRC at the end, as it has sub-menus
source "drivers/staging/media/lirc/Kconfig"

+1 −0
Original line number Diff line number Diff line
@@ -5,3 +5,4 @@ obj-$(CONFIG_VIDEO_DM365_VPFE) += davinci_vpfe/
obj-$(CONFIG_VIDEO_OMAP4)	+= omap4iss/
obj-$(CONFIG_DVB_MN88472)       += mn88472/
obj-$(CONFIG_DVB_MN88473)       += mn88473/
obj-$(CONFIG_VIDEO_TIMBERDALE)  += timb/
+11 −0
Original line number Diff line number Diff line
config VIDEO_TIMBERDALE
	tristate "Support for timberdale Video In/LogiWIN"
	depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API && HAS_DMA
	depends on (MFD_TIMBERDALE && TIMB_DMA) || COMPILE_TEST
	select VIDEO_ADV7180
	select VIDEOBUF_DMA_CONTIG
	---help---
	  Add support for the Video In peripherial of the timberdale FPGA.

	  This driver is deprecated and will be removed soon unless someone
	  will start the work to convert this driver to the vb2 framework.
Loading