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

Commit 52b1eaf4 authored by Kozlov Sergey's avatar Kozlov Sergey Committed by Mauro Carvalho Chehab
Browse files

[media] netup_unidvb: NetUP Universal DVB-S/S2/T/T2/C PCI-E card driver



Add NetUP Dual Universal CI PCIe board driver.
The board has
    - two CI slots
    - two I2C adapters
    - SPI master bus for accessing flash memory containing
      FPGA firmware

No changes required.

Signed-off-by: default avatarKozlov Sergey <serjk@netup.ru>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent c8946c8d
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -6637,6 +6637,15 @@ T: git git://linuxtv.org/media_tree.git
S:	Supported
F:	drivers/media/dvb-frontends/lnbh25*

MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
M:	Sergey Kozlov <serjk@netup.ru>
L:	linux-media@vger.kernel.org
W:	http://linuxtv.org/
W:	http://netup.tv/
T:	git git://linuxtv.org/media_tree.git
S:	Supported
F:	drivers/media/pci/netup_unidvb/*

MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
M:	Mauro Carvalho Chehab <mchehab@osg.samsung.com>
P:	LinuxTV.org Project
+1 −0
Original line number Diff line number Diff line
@@ -49,6 +49,7 @@ source "drivers/media/pci/mantis/Kconfig"
source "drivers/media/pci/ngene/Kconfig"
source "drivers/media/pci/ddbridge/Kconfig"
source "drivers/media/pci/smipcie/Kconfig"
source "drivers/media/pci/netup_unidvb/Kconfig"
endif

endif #MEDIA_PCI_SUPPORT
+2 −1
Original line number Diff line number Diff line
@@ -12,7 +12,8 @@ obj-y += ttpci/ \
		ngene/		\
		ddbridge/	\
		saa7146/	\
		smipcie/
		smipcie/	\
		netup_unidvb/

obj-$(CONFIG_VIDEO_IVTV) += ivtv/
obj-$(CONFIG_VIDEO_ZORAN) += zoran/
+12 −0
Original line number Diff line number Diff line
config DVB_NETUP_UNIDVB
	tristate "NetUP Universal DVB card support"
	depends on DVB_CORE && VIDEO_DEV && PCI && I2C && SPI_MASTER
    select VIDEOBUF2_DVB
    select VIDEOBUF2_VMALLOC
	select DVB_HORUS3A if MEDIA_SUBDRV_AUTOSELECT
	select DVB_ASCOT2E if MEDIA_SUBDRV_AUTOSELECT
	select DVB_LNBH25 if MEDIA_SUBDRV_AUTOSELECT
	select DVB_CXD2841ER if MEDIA_SUBDRV_AUTOSELECT
	---help---
	  Support for NetUP PCI express Universal DVB card.
+9 −0
Original line number Diff line number Diff line
netup-unidvb-objs += netup_unidvb_core.o
netup-unidvb-objs += netup_unidvb_i2c.o
netup-unidvb-objs += netup_unidvb_ci.o
netup-unidvb-objs += netup_unidvb_spi.o

obj-$(CONFIG_DVB_NETUP_UNIDVB) += netup-unidvb.o

ccflags-y += -Idrivers/media/dvb-core
ccflags-y += -Idrivers/media/dvb-frontends
Loading