mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 11:33:28 +02:00
VIP stands for Video Input Port. It can be found on devices such as DRA7xx and provides a parallel interface to a video source such as a sensor or TV decoder. Each VIP can support two inputs (slices) and an SoC can be configured with a variable number of VIPs. Each slice can support two ports, each connected to its own sub-device. Signed-off-by: Dale Farnsworth <dale@farnsworth.org> Signed-off-by: Benoit Parrot <bparrot@ti.com> Signed-off-by: Sukrut Bellary <sbellary@baylibre.com> Signed-off-by: Yemike Abhilash Chandra <y-abhilashchandra@ti.com> Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
15 lines
374 B
Makefile
15 lines
374 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_VIDEO_TI_VPE) += ti-vpe.o
|
|
obj-$(CONFIG_VIDEO_TI_VPDMA) += ti-vpdma.o
|
|
obj-$(CONFIG_VIDEO_TI_SC) += ti-sc.o
|
|
obj-$(CONFIG_VIDEO_TI_CSC) += ti-csc.o
|
|
obj-$(CONFIG_VIDEO_TI_VIP) += ti-vip.o
|
|
|
|
ti-vpe-y := vpe.o
|
|
ti-vpdma-y := vpdma.o
|
|
ti-sc-y := sc.o
|
|
ti-csc-y := csc.o
|
|
ti-vip-y := vip.o
|
|
|
|
ccflags-$(CONFIG_VIDEO_TI_VPE_DEBUG) += -DDEBUG
|