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 (2712B)


      1# SPDX-License-Identifier: GPL-2.0-only
      2#
      3# Platform drivers
      4#	Most drivers here are currently for webcam support
      5
      6menuconfig MEDIA_PLATFORM_DRIVERS
      7	bool "Media platform devices"
      8	default "y"
      9	help
     10	  Say Y here to enable support for platform-specific media drivers.
     11
     12if MEDIA_PLATFORM_DRIVERS
     13
     14config V4L_PLATFORM_DRIVERS
     15	bool "V4L platform devices"
     16	help
     17	  Say Y here to enable support for platform-specific V4L drivers.
     18
     19config SDR_PLATFORM_DRIVERS
     20	bool "SDR platform devices"
     21	depends on MEDIA_SDR_SUPPORT
     22	help
     23	  Say Y here to enable support for platform-specific SDR Drivers.
     24
     25config DVB_PLATFORM_DRIVERS
     26	bool "DVB platform devices"
     27	depends on MEDIA_DIGITAL_TV_SUPPORT
     28	help
     29	  Say Y here to enable support for platform-specific Digital TV drivers.
     30
     31config V4L_MEM2MEM_DRIVERS
     32	bool "Memory-to-memory multimedia devices"
     33	depends on VIDEO_DEV
     34	help
     35	  Say Y here to enable selecting drivers for V4L devices that
     36	  use system memory for both source and destination buffers, as opposed
     37	  to capture and output drivers, which use memory buffers for just
     38	  one of those.
     39
     40# Ancillary drivers
     41
     42config VIDEO_MEM2MEM_DEINTERLACE
     43	tristate "Deinterlace support"
     44	depends on V4L_MEM2MEM_DRIVERS
     45	depends on VIDEO_DEV
     46	depends on HAS_DMA
     47	select VIDEOBUF2_DMA_CONTIG
     48	select V4L2_MEM2MEM_DEV
     49	help
     50	    Generic deinterlacing V4L2 driver.
     51
     52config VIDEO_MUX
     53	tristate "Video Multiplexer"
     54	depends on V4L_PLATFORM_DRIVERS
     55	select MULTIPLEXER
     56	depends on VIDEO_DEV && OF
     57	select MEDIA_CONTROLLER
     58	select VIDEO_V4L2_SUBDEV_API
     59	select REGMAP
     60	select V4L2_FWNODE
     61	help
     62	  This driver provides support for N:1 video bus multiplexers.
     63
     64# Platform drivers - Please keep it alphabetically sorted
     65source "drivers/media/platform/allegro-dvt/Kconfig"
     66source "drivers/media/platform/amlogic/Kconfig"
     67source "drivers/media/platform/amphion/Kconfig"
     68source "drivers/media/platform/aspeed/Kconfig"
     69source "drivers/media/platform/atmel/Kconfig"
     70source "drivers/media/platform/cadence/Kconfig"
     71source "drivers/media/platform/chips-media/Kconfig"
     72source "drivers/media/platform/intel/Kconfig"
     73source "drivers/media/platform/marvell/Kconfig"
     74source "drivers/media/platform/mediatek/Kconfig"
     75source "drivers/media/platform/nvidia/Kconfig"
     76source "drivers/media/platform/nxp/Kconfig"
     77source "drivers/media/platform/qcom/Kconfig"
     78source "drivers/media/platform/renesas/Kconfig"
     79source "drivers/media/platform/rockchip/Kconfig"
     80source "drivers/media/platform/samsung/Kconfig"
     81source "drivers/media/platform/st/Kconfig"
     82source "drivers/media/platform/sunxi/Kconfig"
     83source "drivers/media/platform/ti/Kconfig"
     84source "drivers/media/platform/via/Kconfig"
     85source "drivers/media/platform/xilinx/Kconfig"
     86
     87endif # MEDIA_PLATFORM_DRIVERS