You've already forked android_kernel_samsung_ot8
mirror of
https://github.com/gta7lite/android_kernel_samsung_ot8.git
synced 2026-02-08 17:24:41 -08:00
The current DMA coherent pool assumes that there is a kernel mapping at all times for the entire pool. This may not be what we want for the entire times. Add the dma_removed ops to support this use case. Bug: 145617272 Signed-off-by: Laura Abbott <lauraa@codeaurora.org> Signed-off-by: Patrick Daly <pdaly@codeaurora.org> Signed-off-by: Liam Mark <lmark@codeaurora.org> Signed-off-by: Swathi Sridhar <swatsrid@codeaurora.org> [surenb Squashed the following commits: a478a8bf78ad "drivers: Add dma removed ops" 8510985ae320 "dma: removed: Merge dma removed changes from 4.14" and removed-dma-pool driver changes from 9d4b7d641556 "iommu: arm-smmu: Merge for ..."] Signed-off-by: Suren Baghdasaryan <surenb@google.com> Change-Id: Ie4f1e9bdf57b79699fa8fa7e7a6087e6d88ebbfa
12 lines
386 B
Makefile
12 lines
386 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_HAS_DMA) += mapping.o
|
|
obj-$(CONFIG_DMA_CMA) += contiguous.o
|
|
obj-$(CONFIG_HAVE_GENERIC_DMA_COHERENT) += coherent.o removed.o
|
|
obj-$(CONFIG_DMA_DIRECT_OPS) += direct.o
|
|
obj-$(CONFIG_DMA_NONCOHERENT_OPS) += noncoherent.o
|
|
obj-$(CONFIG_DMA_VIRT_OPS) += virt.o
|
|
obj-$(CONFIG_DMA_API_DEBUG) += debug.o
|
|
obj-$(CONFIG_SWIOTLB) += swiotlb.o
|
|
|