cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Kconfig (2104B)


      1# SPDX-License-Identifier: GPL-2.0-only
      2
      3if PCI
      4
      5menuconfig MEDIA_PCI_SUPPORT
      6	bool "Media PCI Adapters"
      7	help
      8	  Enable media drivers for PCI/PCIe bus.
      9	  If you have such devices, say Y.
     10
     11if MEDIA_PCI_SUPPORT
     12
     13if MEDIA_CAMERA_SUPPORT
     14	comment "Media capture support"
     15
     16source "drivers/media/pci/meye/Kconfig"
     17source "drivers/media/pci/solo6x10/Kconfig"
     18source "drivers/media/pci/sta2x11/Kconfig"
     19source "drivers/media/pci/tw5864/Kconfig"
     20source "drivers/media/pci/tw68/Kconfig"
     21source "drivers/media/pci/tw686x/Kconfig"
     22
     23endif
     24
     25if MEDIA_ANALOG_TV_SUPPORT
     26	comment "Media capture/analog TV support"
     27
     28source "drivers/media/pci/dt3155/Kconfig"
     29source "drivers/media/pci/ivtv/Kconfig"
     30source "drivers/media/pci/saa7146/Kconfig"
     31
     32endif
     33
     34if MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT
     35	comment "Media capture/analog/hybrid TV support"
     36
     37source "drivers/media/pci/bt8xx/Kconfig"
     38source "drivers/media/pci/cobalt/Kconfig"
     39source "drivers/media/pci/cx18/Kconfig"
     40source "drivers/media/pci/cx23885/Kconfig"
     41source "drivers/media/pci/cx25821/Kconfig"
     42source "drivers/media/pci/cx88/Kconfig"
     43source "drivers/media/pci/saa7134/Kconfig"
     44source "drivers/media/pci/saa7164/Kconfig"
     45
     46endif
     47
     48if MEDIA_DIGITAL_TV_SUPPORT
     49	comment "Media digital TV PCI Adapters"
     50
     51source "drivers/media/pci/b2c2/Kconfig"
     52source "drivers/media/pci/ddbridge/Kconfig"
     53source "drivers/media/pci/dm1105/Kconfig"
     54source "drivers/media/pci/mantis/Kconfig"
     55source "drivers/media/pci/netup_unidvb/Kconfig"
     56source "drivers/media/pci/ngene/Kconfig"
     57source "drivers/media/pci/pluto2/Kconfig"
     58source "drivers/media/pci/pt1/Kconfig"
     59source "drivers/media/pci/pt3/Kconfig"
     60source "drivers/media/pci/smipcie/Kconfig"
     61source "drivers/media/pci/ttpci/Kconfig"
     62
     63endif
     64
     65config VIDEO_PCI_SKELETON
     66	tristate "Skeleton PCI V4L2 driver"
     67	depends on SAMPLES
     68	depends on MEDIA_TEST_SUPPORT
     69	depends on PCI && VIDEO_DEV
     70	select VIDEOBUF2_MEMOPS
     71	select VIDEOBUF2_DMA_CONTIG
     72	help
     73	  Enable build of the skeleton PCI driver, used as a reference
     74	  when developing new drivers.
     75
     76source "drivers/media/pci/intel/ipu3/Kconfig"
     77
     78endif #MEDIA_PCI_SUPPORT
     79endif #PCI