]> www.infradead.org Git - users/hch/block.git/commit
dma-mapping: introduce DMA range map, supplanting dma_pfn_offset dma-ranges.3
authorJim Quinlan <james.quinlan@broadcom.com>
Thu, 10 Sep 2020 16:04:10 +0000 (18:04 +0200)
committerChristoph Hellwig <hch@lst.de>
Thu, 10 Sep 2020 16:10:56 +0000 (18:10 +0200)
commitcbf6ef97bdb2a2ccc73ba09d2f6a744fe5423a52
treeaec159f872142d10527a8ee29c0bdb6364cf9aa5
parent3be909734ccf5211353c6d8f7ccd1c8f5d1fb256
dma-mapping: introduce DMA range map, supplanting dma_pfn_offset

The new field 'dma_range_map' in struct device is used to facilitate the
use of single or multiple offsets between mapping regions of cpu addrs and
dma addrs.  It subsumes the role of "dev->dma_pfn_offset" which was only
capable of holding a single uniform offset and had no region bounds
checking.

The function of_dma_get_range() has been modified so that it takes a single
argument -- the device node -- and returns a map, NULL, or an error code.
The map is an array that holds the information regarding the DMA regions.
Each range entry contains the address offset, the cpu_start address, the
dma_start address, and the size of the region.

of_dma_configure() is the typical manner to set range offsets but there are
a number of ad hoc assignments to "dev->dma_pfn_offset" in the kernel
driver code.  These cases now invoke the function
dma_attach_offset_range(dev, cpu_addr, dma_addr, size).

Signed-off-by: Jim Quinlan <james.quinlan@broadcom.com>
[hch: various interface cleanups]
Signed-off-by: Christoph Hellwig <hch@lst.de>
Tested-by: Nathan Chancellor <natechancellor@gmail.com>
21 files changed:
arch/arm/include/asm/dma-direct.h
arch/arm/mach-keystone/keystone.c
arch/sh/drivers/pci/pcie-sh7786.c
arch/x86/pci/sta2x11-fixup.c
drivers/acpi/arm64/iort.c
drivers/base/core.c
drivers/gpu/drm/sun4i/sun4i_backend.c
drivers/iommu/io-pgtable-arm.c
drivers/media/platform/sunxi/sun4i-csi/sun4i_csi.c
drivers/media/platform/sunxi/sun6i-csi/sun6i_csi.c
drivers/of/address.c
drivers/of/device.c
drivers/of/of_private.h
drivers/of/unittest.c
drivers/remoteproc/remoteproc_core.c
drivers/staging/media/sunxi/cedrus/cedrus_hw.c
include/linux/device.h
include/linux/dma-direct.h
include/linux/dma-mapping.h
kernel/dma/coherent.c
kernel/dma/direct.c