Kconfig 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #
  2. # MSM camera configuration
  3. #
  4. comment "Qualcomm MSM Camera And Video"
  5. menuconfig MSM_CAMERA
  6. bool "Qualcomm MSM camera and video capture support"
  7. depends on ARCH_MSM && VIDEO_V4L2 && I2C
  8. default y
  9. help
  10. Say Y here to enable selecting the video adapters for
  11. Qualcomm msm camera and video encoding
  12. config MSM_CAMERA_DEBUG
  13. bool "Qualcomm MSM camera debugging with printk"
  14. depends on MSM_CAMERA
  15. default n
  16. help
  17. Enable printk() debug for msm camera
  18. menuconfig MSMB_CAMERA
  19. bool "Qualcomm MSM camera and video capture 2.0 support"
  20. depends on ARCH_MSM && VIDEO_V4L2 && I2C
  21. ---help---
  22. Say Y here to enable selecting the video adapters for
  23. Qualcomm msm camera and video capture 2.0, enabling this
  24. adds support for the camera driver stack including sensor, isp
  25. and postprocessing drivers.
  26. config MSMB_CAMERA_DEBUG
  27. bool "Qualcomm MSM camera 2.0 debugging with printk"
  28. depends on MSMB_CAMERA
  29. ---help---
  30. Enable printk() debug for msm camera 2.0
  31. menuconfig MSMB_CAMERA_LL
  32. bool "Qualcomm MSM camera and video capture 2.0 support compatible with LL userspace libs"
  33. select MSMB_CAMERA
  34. default n
  35. ---help---
  36. Say Y here to enable selecting the video adapters for
  37. Qualcomm msm camera and video capture 2.0, enabling this
  38. adds support for the camera driver stack including sensor, isp
  39. and postprocessing drivers.
  40. menuconfig MSMB_CAMERA_MM
  41. bool "Qualcomm MSM camera and video capture 2.0 support compatible with MM userspace libs"
  42. select MSMB_CAMERA
  43. default n
  44. ---help---
  45. Say Y here to enable selecting the video adapters for
  46. Qualcomm msm camera and video capture 2.0, enabling this
  47. adds support for the camera driver stack including sensor, isp
  48. and postprocessing drivers.
  49. if MSMB_CAMERA_LL
  50. source "drivers/media/platform/msm/camera_ll/Kconfig"
  51. endif # MSMB_CAMERA_LL
  52. if MSMB_CAMERA_MM
  53. source "drivers/media/platform/msm/camera_v2/Kconfig"
  54. endif # MSMB_CAMERA_MM
  55. source "drivers/media/platform/msm/vidc/Kconfig"
  56. source "drivers/media/platform/msm/wfd/Kconfig"
  57. source "drivers/media/platform/msm/dvb/Kconfig"
  58. source "drivers/media/platform/msm/vcap/Kconfig"