mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-03 09:37:17 +00:00

Add support for VSPX, a specialized version of the VSP2 that transfers data to the ISP. The VSPX is composed of two RPF units to read data from external memory and an IIF instance that performs transfer towards the ISP. The VSPX is supported through a newly introduced vsp1_vspx.c file that exposes two interfaces: vsp1_vspx interface, declared in vsp1_vspx.h for the vsp1 core to initialize and cleanup the VSPX, and a vsp1_isp interface, declared in include/media/vsp1.h for the ISP driver to control the VSPX operations. Tested-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Signed-off-by: Jacopo Mondi <jacopo.mondi+renesas@ideasonboard.com> Link: https://lore.kernel.org/r/20250617-b4-vspx-v13-1-9f4054c1c9af@ideasonboard.com Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
12 lines
443 B
Makefile
12 lines
443 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
vsp1-y := vsp1_drv.o vsp1_entity.o vsp1_pipe.o
|
|
vsp1-y += vsp1_dl.o vsp1_drm.o vsp1_video.o
|
|
vsp1-y += vsp1_rpf.o vsp1_rwpf.o vsp1_wpf.o
|
|
vsp1-y += vsp1_clu.o vsp1_hsit.o vsp1_lut.o
|
|
vsp1-y += vsp1_brx.o vsp1_sru.o vsp1_uds.o
|
|
vsp1-y += vsp1_hgo.o vsp1_hgt.o vsp1_histo.o
|
|
vsp1-y += vsp1_iif.o vsp1_lif.o vsp1_uif.o
|
|
vsp1-y += vsp1_vspx.o
|
|
|
|
obj-$(CONFIG_VIDEO_RENESAS_VSP1) += vsp1.o
|