-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[media] media: venus: enable building of Venus video driver
This adds Venus driver Makefile and changes v4l2 platform Makefile/Kconfig in order to enable building of the driver. Note that in this initial version the COMPILE_TEST-ing is not supported because the drivers specific to ARM builds are still in process of enabling the aforementioned compile testing. Once that disadvantage is fixed the Venus driver compile testing will be possible with follow-up changes. Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
- Loading branch information
Stanimir Varbanov
authored and
Mauro Carvalho Chehab
committed
Jun 20, 2017
1 parent
d96d3f3
commit 7035280
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Makefile for Qualcomm Venus driver | ||
|
||
venus-core-objs += core.o helpers.o firmware.o \ | ||
hfi_venus.o hfi_msgs.o hfi_cmds.o hfi.o | ||
|
||
venus-dec-objs += vdec.o vdec_ctrls.o | ||
venus-enc-objs += venc.o venc_ctrls.o | ||
|
||
obj-$(CONFIG_VIDEO_QCOM_VENUS) += venus-core.o | ||
obj-$(CONFIG_VIDEO_QCOM_VENUS) += venus-dec.o | ||
obj-$(CONFIG_VIDEO_QCOM_VENUS) += venus-enc.o |