diff options
author | Mauro Carvalho Chehab <mchehab@kernel.org> | 2022-03-11 14:24:34 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@kernel.org> | 2022-03-14 11:43:00 +0300 |
commit | 52b3a219dd4ab46b2b8ba7af5648f6e1e026f876 (patch) | |
tree | 9e2cc0d35acc9c50f4dc5bf713f6f7c1de278853 /drivers/media/platform/amphion/Kconfig | |
parent | 5a20fabf71d7aa1fe2a72b5f69671ce99f003c0f (diff) | |
download | linux-52b3a219dd4ab46b2b8ba7af5648f6e1e026f876.tar.xz |
media: platform: amphion: move config to its own file
In order to better organize the platform/Kconfig, place
amphion-specific config stuff on a separate Kconfig file.
Reviewed-by: Shijie Qin <shijie.qin@nxp.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'drivers/media/platform/amphion/Kconfig')
-rw-r--r-- | drivers/media/platform/amphion/Kconfig | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/drivers/media/platform/amphion/Kconfig b/drivers/media/platform/amphion/Kconfig new file mode 100644 index 000000000000..13899649f766 --- /dev/null +++ b/drivers/media/platform/amphion/Kconfig @@ -0,0 +1,20 @@ +# SPDX-License-Identifier: GPL-2.0-only +config VIDEO_AMPHION_VPU + tristate "Amphion VPU (Video Processing Unit) Codec IP" + depends on V4L_MEM2MEM_DRIVERS + depends on ARCH_MXC || COMPILE_TEST + depends on MEDIA_SUPPORT + depends on VIDEO_DEV + depends on VIDEO_V4L2 + select MEDIA_CONTROLLER + select V4L2_MEM2MEM_DEV + select VIDEOBUF2_DMA_CONTIG + select VIDEOBUF2_VMALLOC + help + Amphion VPU Codec IP contains two parts: Windsor and Malone. + Windsor is encoder that supports H.264, and Malone is decoder + that supports H.264, HEVC, and other video formats. + This is a V4L2 driver for NXP MXC 8Q video accelerator hardware. + It accelerates encoding and decoding operations on + various NXP SoCs. + To compile this driver as a module choose m here. |