blob: 3fbce2948fa8a7abd8d81fef4c0088ee5ed65e38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#
# MSM camera configuration
#
comment "QTI MSM Camera And Video & AIS"
menuconfig MSM_CAMERA
bool "QTI MSM camera and video capture support"
depends on ARCH_QCOM && VIDEO_V4L2 && I2C
---help---
Say Y here to enable selecting the video adapters for
QTI msm camera and video capture drivers. enabling this
adds support for the camera driver stack including sensor, isp
and postprocessing drivers for legacy chipsets.
config MSM_CAMERA_DEBUG
bool "QTI MSM camera debugging with printk"
depends on MSM_CAMERA
default n
---help---
Enable printk() debug for msm camera
menuconfig MSMB_CAMERA
bool "QTI MSM camera and video capture 2.0 support"
depends on ARCH_QCOM && VIDEO_V4L2 && I2C
---help---
Say Y here to enable selecting the video adapters for
QTI 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 "QTI MSM camera 2.0 debugging with printk"
depends on MSMB_CAMERA
---help---
Enable printk() debug for msm camera 2.0
if MSMB_CAMERA
source "drivers/media/platform/msm/camera_v2/Kconfig"
endif # MSMB_CAMERA
source "drivers/media/platform/msm/vidc/Kconfig"
source "drivers/media/platform/msm/sde/Kconfig"
source "drivers/media/platform/msm/ais/Kconfig"
source "drivers/media/platform/msm/dvb/Kconfig"
source "drivers/media/platform/msm/broadcast/Kconfig"
|