123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #
- # MSM camera configuration
- #
- comment "Qualcomm MSM Camera And Video"
- menuconfig MSM_CAMERA
- bool "Qualcomm MSM camera and video capture support"
- depends on ARCH_MSM && VIDEO_V4L2 && I2C
- default y
- help
- Say Y here to enable selecting the video adapters for
- Qualcomm msm camera and video encoding
- config MSM_CAMERA_DEBUG
- bool "Qualcomm MSM camera debugging with printk"
- depends on MSM_CAMERA
- default n
- help
- Enable printk() debug for msm camera
- menuconfig MSMB_CAMERA
- bool "Qualcomm MSM camera and video capture 2.0 support"
- depends on ARCH_MSM && VIDEO_V4L2 && I2C
- ---help---
- Say Y here to enable selecting the video adapters for
- Qualcomm msm camera and video capture 2.0, enabling this
- adds support for the camera driver stack including sensor, isp
- and postprocessing drivers.
- config MSMB_CAMERA_DEBUG
- bool "Qualcomm MSM camera 2.0 debugging with printk"
- depends on MSMB_CAMERA
- ---help---
- Enable printk() debug for msm camera 2.0
- menuconfig MSMB_CAMERA_LL
- bool "Qualcomm MSM camera and video capture 2.0 support compatible with LL userspace libs"
- select MSMB_CAMERA
- default n
- ---help---
- Say Y here to enable selecting the video adapters for
- Qualcomm msm camera and video capture 2.0, enabling this
- adds support for the camera driver stack including sensor, isp
- and postprocessing drivers.
- menuconfig MSMB_CAMERA_MM
- bool "Qualcomm MSM camera and video capture 2.0 support compatible with MM userspace libs"
- select MSMB_CAMERA
- default n
- ---help---
- Say Y here to enable selecting the video adapters for
- Qualcomm msm camera and video capture 2.0, enabling this
- adds support for the camera driver stack including sensor, isp
- and postprocessing drivers.
- if MSMB_CAMERA_LL
- source "drivers/media/platform/msm/camera_ll/Kconfig"
- endif # MSMB_CAMERA_LL
- if MSMB_CAMERA_MM
- source "drivers/media/platform/msm/camera_v2/Kconfig"
- endif # MSMB_CAMERA_MM
- source "drivers/media/platform/msm/vidc/Kconfig"
- source "drivers/media/platform/msm/wfd/Kconfig"
- source "drivers/media/platform/msm/dvb/Kconfig"
- source "drivers/media/platform/msm/vcap/Kconfig"
|