mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 12:47:02 +07:00
681c19c8bf
New versions of the Vivante kernel driver don't trust the hardware feature bits anymore, but use an internal hardware database. This also includes more feature fields than are available in hardware. As we can't trust the hardware feature bits to be correct anymore, we need to replicate the HWDB in etanviv. For now only the GC7000L as found on the i.MX8M is supported. Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
20 lines
384 B
Makefile
20 lines
384 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
etnaviv-y := \
|
|
etnaviv_buffer.o \
|
|
etnaviv_cmd_parser.o \
|
|
etnaviv_cmdbuf.o \
|
|
etnaviv_drv.o \
|
|
etnaviv_dump.o \
|
|
etnaviv_gem_prime.o \
|
|
etnaviv_gem_submit.o \
|
|
etnaviv_gem.o \
|
|
etnaviv_gpu.o \
|
|
etnaviv_hwdb.o \
|
|
etnaviv_iommu_v2.o \
|
|
etnaviv_iommu.o \
|
|
etnaviv_mmu.o \
|
|
etnaviv_perfmon.o \
|
|
etnaviv_sched.o
|
|
|
|
obj-$(CONFIG_DRM_ETNAVIV) += etnaviv.o
|