mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 22:23:05 +00:00

Newer PowerVR GPUs (such as the BXS-4-64 MC1) use a RISC-V firmware processor instead of the previous MIPS or META. The current version of this patch depends on a patch[1] which exists in drm-misc-fixes, but has not yet made it back to drm-misc-next (the target of this patch). That patch adds the function pvr_vm_unmap_obj() which is used here. [1]: https://lore.kernel.org/r/20250226-hold-drm_gem_gpuva-lock-for-unmap-v2-1-3fdacded227f@imgtec.com Signed-off-by: Sarah Walker <sarah.walker@imgtec.com> Reviewed-by: Frank Binns <frank.binns@imgtec.com> Link: https://lore.kernel.org/r/20250410-sets-bxs-4-64-patch-v1-v6-14-eda620c5865f@imgtec.com Signed-off-by: Matt Coster <matt.coster@imgtec.com>
36 lines
613 B
Makefile
36 lines
613 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only OR MIT
|
|
# Copyright (c) 2023 Imagination Technologies Ltd.
|
|
|
|
powervr-y := \
|
|
pvr_ccb.o \
|
|
pvr_cccb.o \
|
|
pvr_context.o \
|
|
pvr_device.o \
|
|
pvr_device_info.o \
|
|
pvr_drv.o \
|
|
pvr_free_list.o \
|
|
pvr_fw.o \
|
|
pvr_fw_meta.o \
|
|
pvr_fw_mips.o \
|
|
pvr_fw_riscv.o \
|
|
pvr_fw_startstop.o \
|
|
pvr_fw_trace.o \
|
|
pvr_fw_util.o \
|
|
pvr_gem.o \
|
|
pvr_hwrt.o \
|
|
pvr_job.o \
|
|
pvr_mmu.o \
|
|
pvr_params.o \
|
|
pvr_power.o \
|
|
pvr_queue.o \
|
|
pvr_stream.o \
|
|
pvr_stream_defs.o \
|
|
pvr_sync.o \
|
|
pvr_vm.o \
|
|
pvr_vm_mips.o
|
|
|
|
powervr-$(CONFIG_DEBUG_FS) += \
|
|
pvr_debugfs.o
|
|
|
|
obj-$(CONFIG_DRM_POWERVR) += powervr.o
|