Additional info and docs are available on the web at
          <https://linuxtv.org>
 
-menu "Types of devices to be supported"
+if MEDIA_SUPPORT
+
+config MEDIA_SUPPORT_FILTER
+       bool "Filter devices by their types"
        depends on MEDIA_SUPPORT
+       help
+          Configuring the media subsystem can be complex, as there are
+          hundreds of drivers and other config options.
+
+          This menu offers option that will help the Kernel's config
+          system to hide drivers that are out of the scope of the
+          user needs, and disabling core support for unused APIs.
+
+          If not selected, all non-optional media core functionality
+          needed to support media drivers will be enabled. Also, all
+          media device drivers should be shown.
+
+menu "Media device types"
+       visible if MEDIA_SUPPORT_FILTER
 
 #
 # Multimedia support - automatically enable V4L2 and DVB core
 #
 config MEDIA_CAMERA_SUPPORT
        bool "Cameras and video grabbers"
+       default y if !MEDIA_SUPPORT_FILTER
        help
          Enable support for webcams and video grabbers.
 
 
 config MEDIA_ANALOG_TV_SUPPORT
        bool "Analog TV"
+       default y if !MEDIA_SUPPORT_FILTER
        help
          Enable analog TV support.
 
 
 config MEDIA_DIGITAL_TV_SUPPORT
        bool "Digital TV"
+       default y if !MEDIA_SUPPORT_FILTER
        help
          Enable digital TV support.
 
 
 config MEDIA_RADIO_SUPPORT
        bool "AM/FM radio receivers/transmitters"
+       default y if !MEDIA_SUPPORT_FILTER
        help
          Enable AM/FM radio support.
 
 
 config MEDIA_SDR_SUPPORT
        bool "Software defined radio"
+       default y if !MEDIA_SUPPORT_FILTER
        help
          Enable software defined radio support.
 
 
 config MEDIA_CEC_SUPPORT
        bool "HDMI CEC"
+       default y if !MEDIA_SUPPORT_FILTER
        help
          Enable support for HDMI CEC (Consumer Electronics Control),
          which is an optional HDMI feature.
 
 config MEDIA_PLATFORM_SUPPORT
        bool "Platform-specific devices"
+       default y if !MEDIA_SUPPORT_FILTER
        help
          Enable support for complex cameras, codecs, and other hardware
          that are integrated at the CPU, GPU or on Image Signalling Processor
 
 config MEDIA_TEST_SUPPORT
        bool "Test drivers"
+       default y if !MEDIA_SUPPORT_FILTER
        help
          Those drivers should not be used on production Kernels, but
          can be useful on debug ones. It enables several dummy drivers
 
          In case of doubts, say N.
          Say Y when you have a software defined radio device.
-endmenu # Types of devices to be supported
-
-if MEDIA_SUPPORT
+endmenu # media device types
 
 comment "Multimedia core features"