forked from Minki/linux
b670908384
Using the IOMMU API to manage the internal GPU MMU has been an historical accident and it keeps getting in the way, as well as entangling the driver with the inner workings of the IOMMU subsystem. Clean this up by removing the usage of iommu_domain, which is the last piece linking etnaviv to the IOMMU subsystem. Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
23 lines
663 B
Plaintext
23 lines
663 B
Plaintext
|
|
config DRM_ETNAVIV
|
|
tristate "ETNAVIV (DRM support for Vivante GPU IP cores)"
|
|
depends on DRM
|
|
depends on ARCH_MXC || ARCH_DOVE || (ARM && COMPILE_TEST)
|
|
depends on MMU
|
|
select SHMEM
|
|
select SYNC_FILE
|
|
select TMPFS
|
|
select WANT_DEV_COREDUMP
|
|
select CMA if HAVE_DMA_CONTIGUOUS
|
|
select DMA_CMA if HAVE_DMA_CONTIGUOUS
|
|
help
|
|
DRM driver for Vivante GPUs.
|
|
|
|
config DRM_ETNAVIV_REGISTER_LOGGING
|
|
bool "enable ETNAVIV register logging"
|
|
depends on DRM_ETNAVIV
|
|
help
|
|
Compile in support for logging register reads/writes in a format
|
|
that can be parsed by envytools demsm tool. If enabled, register
|
|
logging can be switched on via etnaviv.reglog=y module param.
|