dma.c 1.19 KB
Newer Older
1 2 3 4 5 6
// SPDX-License-Identifier: GPL-2.0-only
#include <linux/acpi.h>
#include <linux/acpi_iort.h>
#include <linux/device.h>
#include <linux/dma-direct.h>

7
void acpi_arch_dma_setup(struct device *dev)
8 9 10
{
	int ret;
	u64 end, mask;
11
	const struct bus_dma_region *map = NULL;
12 13 14 15 16 17 18 19 20 21 22 23 24

	/*
	 * If @dev is expected to be DMA-capable then the bus code that created
	 * it should have initialised its dma_mask pointer by this point. For
	 * now, we'll continue the legacy behaviour of coercing it to the
	 * coherent mask if not, but we'll no longer do so quietly.
	 */
	if (!dev->dma_mask) {
		dev_warn(dev, "DMA mask not set\n");
		dev->dma_mask = &dev->coherent_dma_mask;
	}

	if (dev->coherent_dma_mask)
25
		end = dev->coherent_dma_mask;
26
	else
27
		end = (1ULL << 32) - 1;
28

29 30
	ret = acpi_dma_get_range(dev, &map);
	if (!ret && map) {
31
		end = dma_range_map_max(map);
32 33 34
		dev->dma_range_map = map;
	}

35
	if (ret == -ENODEV)
36
		ret = iort_dma_get_ranges(dev, &end);
37 38 39 40 41 42 43 44 45 46 47
	if (!ret) {
		/*
		 * Limit coherent and dma mask based on size retrieved from
		 * firmware.
		 */
		mask = DMA_BIT_MASK(ilog2(end) + 1);
		dev->bus_dma_limit = end;
		dev->coherent_dma_mask = min(dev->coherent_dma_mask, mask);
		*dev->dma_mask = min(*dev->dma_mask, mask);
	}
}