mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-18 17:38:00 +00:00
We will include a new job submission type, the CPU job submission. For readability and maintability, separate the job submission IOCTLs and related operations from v3d_gem.c. Minor fix in the CSD submission kernel doc: CSD (texture formatting) -> CSD (compute shader). Signed-off-by: Melissa Wen <mwen@igalia.com> Signed-off-by: Maíra Canal <mcanal@igalia.com> Reviewed-by: Iago Toral Quiroga <itoral@igalia.com> Link: https://patchwork.freedesktop.org/patch/msgid/20231130164420.932823-5-mcanal@igalia.com
23 lines
386 B
Makefile
23 lines
386 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Please keep these build lists sorted!
|
|
|
|
# core driver code
|
|
v3d-y := \
|
|
v3d_bo.o \
|
|
v3d_drv.o \
|
|
v3d_fence.o \
|
|
v3d_gem.o \
|
|
v3d_irq.o \
|
|
v3d_mmu.o \
|
|
v3d_perfmon.o \
|
|
v3d_trace_points.o \
|
|
v3d_sched.o \
|
|
v3d_sysfs.o \
|
|
v3d_submit.o
|
|
|
|
v3d-$(CONFIG_DEBUG_FS) += v3d_debugfs.o
|
|
|
|
obj-$(CONFIG_DRM_V3D) += v3d.o
|
|
|
|
CFLAGS_v3d_trace_points.o := -I$(src)
|