Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1467612
| From | Stanimir Varbanov <stanimir.varbanov@linaro.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 7/8] media: vidc: add Makefiles and Kconfig files |
| Date | 2016-08-22 15:20 +0200 |
| Message-ID | <s8XiV-6LP-5@gated-at.bofh.it> (permalink) |
| References | <s8XiV-6LP-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Makefile and Kconfig files to build the video codec driver. Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org> --- drivers/media/platform/qcom/Kconfig | 8 ++++++++ drivers/media/platform/qcom/Makefile | 6 ++++++ drivers/media/platform/qcom/vidc/Makefile | 19 +++++++++++++++++++ 3 files changed, 33 insertions(+) create mode 100644 drivers/media/platform/qcom/Kconfig create mode 100644 drivers/media/platform/qcom/Makefile create mode 100644 drivers/media/platform/qcom/vidc/Makefile diff --git a/drivers/media/platform/qcom/Kconfig b/drivers/media/platform/qcom/Kconfig new file mode 100644 index 000000000000..4bad5c0f68e4 --- /dev/null +++ b/drivers/media/platform/qcom/Kconfig @@ -0,0 +1,8 @@ +comment "Qualcomm V4L2 drivers" + +menuconfig QCOM_VIDC + tristate "Qualcomm V4L2 encoder/decoder driver" + depends on ARCH_QCOM && VIDEO_V4L2 + depends on IOMMU_DMA + depends on QCOM_VENUS_PIL + select VIDEOBUF2_DMA_SG diff --git a/drivers/media/platform/qcom/Makefile b/drivers/media/platform/qcom/Makefile new file mode 100644 index 000000000000..150892f6533b --- /dev/null +++ b/drivers/media/platform/qcom/Makefile @@ -0,0 +1,6 @@ +# +# Makefile for the QCOM spcific video device drivers +# based on V4L2. +# + +obj-$(CONFIG_QCOM_VIDC) += vidc/ diff --git a/drivers/media/platform/qcom/vidc/Makefile b/drivers/media/platform/qcom/vidc/Makefile new file mode 100644 index 000000000000..56f5c3924855 --- /dev/null +++ b/drivers/media/platform/qcom/vidc/Makefile @@ -0,0 +1,19 @@ +# Makefile for Qualcomm vidc driver + +vidc-objs += \ + core.o \ + int_bufs.o \ + helpers.o \ + vdec.o \ + vdec_ctrls.o \ + venc.o \ + venc_ctrls.o \ + mem.o \ + resources.o \ + load.o \ + hfi_venus.o \ + hfi_msgs.o \ + hfi_cmds.o \ + hfi.o \ + +obj-$(CONFIG_QCOM_VIDC) += vidc.o -- 2.7.4
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 7/8] media: vidc: add Makefiles and Kconfig files Stanimir Varbanov <stanimir.varbanov@linaro.org> - 2016-08-22 15:20 +0200
csiph-web