The current MMU code assumes a binary state - either there is a IOMMU or there isn't. This precludes other memory models and makes for a lot of inherent IOMMU knowledge in the generic MMU code and the rest of the driver. Reorganize and cleanup the MMU and IOMMU code: * Add a Kconfig boolean dependent on ARM and/or MSM SMMU support. * Make "nommu" mode an actual MMU subtype and figure out available MMU subtypes at probe time. * Move IOMMU device tree parsing to the IOMMU code. * Move the MMU subtype private structures into struct kgsl_mmu. * Move adreno_iommu specific functions out of other generic adreno code. * Move A4XX specific preemption code out of the ringbuffer code. CRs-Fixed: 970264 Change-Id: Ic0dedbad1293a1d129b7c4ed1105d684ca84d97f Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
ccflags-y := -Idrivers/staging/android
|
|
|
|
msm_kgsl_core-y = \
|
|
kgsl.o \
|
|
kgsl_trace.o \
|
|
kgsl_cmdbatch.o \
|
|
kgsl_ioctl.o \
|
|
kgsl_sharedmem.o \
|
|
kgsl_pwrctrl.o \
|
|
kgsl_pwrscale.o \
|
|
kgsl_mmu.o \
|
|
kgsl_snapshot.o \
|
|
kgsl_events.o
|
|
|
|
msm_kgsl_core-$(CONFIG_MSM_KGSL_IOMMU) += kgsl_iommu.o
|
|
msm_kgsl_core-$(CONFIG_DEBUG_FS) += kgsl_debugfs.o
|
|
msm_kgsl_core-$(CONFIG_QCOM_KGSL_CFF_DUMP) += kgsl_cffdump.o
|
|
msm_kgsl_core-$(CONFIG_SYNC) += kgsl_sync.o
|
|
msm_kgsl_core-$(CONFIG_COMPAT) += kgsl_compat.o
|
|
|
|
msm_adreno-y += \
|
|
adreno_ioctl.o \
|
|
adreno_ringbuffer.o \
|
|
adreno_drawctxt.o \
|
|
adreno_dispatch.o \
|
|
adreno_snapshot.o \
|
|
adreno_coresight.o \
|
|
adreno_trace.o \
|
|
adreno_a3xx.o \
|
|
adreno_a4xx.o \
|
|
adreno_a5xx.o \
|
|
adreno_a3xx_snapshot.o \
|
|
adreno_a4xx_snapshot.o \
|
|
adreno_a5xx_snapshot.o \
|
|
adreno_sysfs.o \
|
|
adreno.o \
|
|
adreno_cp_parser.o \
|
|
adreno_perfcounter.o
|
|
|
|
msm_adreno-$(CONFIG_MSM_KGSL_IOMMU) += adreno_iommu.o
|
|
msm_adreno-$(CONFIG_DEBUG_FS) += adreno_debugfs.o adreno_profile.o
|
|
msm_adreno-$(CONFIG_COMPAT) += adreno_compat.o
|
|
|
|
msm_kgsl_core-objs = $(msm_kgsl_core-y)
|
|
msm_adreno-objs = $(msm_adreno-y)
|
|
|
|
obj-$(CONFIG_QCOM_KGSL) += msm_kgsl_core.o
|
|
obj-$(CONFIG_QCOM_KGSL) += msm_adreno.o
|