linux/drivers/staging/media/atomisp/Kconfig
<<
>>
Prefs
   1# SPDX-License-Identifier: GPL-2.0
   2menuconfig INTEL_ATOMISP
   3        bool "Enable support to Intel Atom ISP camera drivers"
   4        depends on X86 && EFI && PCI && ACPI
   5        depends on COMMON_CLK
   6        select IOSF_MBI
   7        select MEDIA_CONTROLLER
   8        help
   9          Enable support for the Intel ISP2 camera interfaces and MIPI
  10          sensor drivers.
  11
  12config VIDEO_ATOMISP
  13        tristate "Intel Atom Image Signal Processor Driver"
  14        depends on VIDEO_V4L2 && INTEL_ATOMISP
  15        depends on PMIC_OPREGION
  16        select IOSF_MBI
  17        select VIDEOBUF_VMALLOC
  18        select VIDEO_V4L2_SUBDEV_API
  19        help
  20          Say Y here if your platform supports Intel Atom SoC
  21          camera imaging subsystem.
  22          To compile this driver as a module, choose M here: the
  23          module will be called atomisp
  24
  25config VIDEO_ATOMISP_ISP2401
  26        bool "Use Intel Atom ISP on Cherrytail/Anniedale (ISP2401)"
  27        depends on VIDEO_ATOMISP
  28        help
  29          Enable support for Atom ISP2401-based boards.
  30
  31          Select this option for  Anniedale (Merrifield+ / Moorefield)
  32          and Cherrytrail SoCs.
  33
  34          Disabling it enables support for Atom ISP2400-based boards
  35          (Merrifield and Baytrail SoCs).
  36
  37if VIDEO_ATOMISP
  38source "drivers/staging/media/atomisp/i2c/Kconfig"
  39endif
  40