1# 2# Generic video config states 3# 4 5# Enable the V4L2 core and API 6config VIDEO_V4L2 7 tristate 8 depends on (I2C || I2C=n) && VIDEO_DEV 9 select RATIONAL 10 select VIDEOBUF2_V4L2 if VIDEOBUF2_CORE 11 default (I2C || I2C=n) && VIDEO_DEV 12 13config VIDEO_ADV_DEBUG 14 bool "Enable advanced debug functionality on V4L2 drivers" 15 help 16 Say Y here to enable advanced debugging functionality on some 17 V4L devices. 18 In doubt, say N. 19 20config VIDEO_FIXED_MINOR_RANGES 21 bool "Enable old-style fixed minor ranges on drivers/video devices" 22 help 23 Say Y here to enable the old-style fixed-range minor assignments. 24 Only useful if you rely on the old behavior and use mknod instead of udev. 25 26 When in doubt, say N. 27 28config VIDEO_PCI_SKELETON 29 tristate "Skeleton PCI V4L2 driver" 30 depends on PCI 31 depends on SAMPLES 32 depends on VIDEO_V4L2 && VIDEOBUF2_CORE 33 depends on VIDEOBUF2_MEMOPS && VIDEOBUF2_DMA_CONTIG 34 help 35 Enable build of the skeleton PCI driver, used as a reference 36 when developing new drivers. 37 38# Used by drivers that need tuner.ko 39config VIDEO_TUNER 40 tristate 41 42# Used by drivers that need v4l2-mem2mem.ko 43config V4L2_MEM2MEM_DEV 44 tristate 45 depends on VIDEOBUF2_CORE 46 47# Used by LED subsystem flash drivers 48config V4L2_FLASH_LED_CLASS 49 tristate "V4L2 flash API for LED flash class devices" 50 depends on VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API 51 depends on LEDS_CLASS_FLASH 52 help 53 Say Y here to enable V4L2 flash API support for LED flash 54 class drivers. 55 56 When in doubt, say N. 57 58config V4L2_FWNODE 59 tristate 60 61# Used by drivers that need Videobuf modules 62config VIDEOBUF_GEN 63 tristate 64 65config VIDEOBUF_DMA_SG 66 tristate 67 select VIDEOBUF_GEN 68 69config VIDEOBUF_VMALLOC 70 tristate 71 select VIDEOBUF_GEN 72 73config VIDEOBUF_DMA_CONTIG 74 tristate 75 select VIDEOBUF_GEN 76