pci-nommu.c 2.6 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2 3
/* Fallback functions when the main IOMMU code is not compiled in. This
   code is roughly equivalent to i386. */
4
#include <linux/dma-direct.h>
J
Jens Axboe 已提交
5
#include <linux/scatterlist.h>
6
#include <linux/string.h>
7
#include <linux/gfp.h>
8 9
#include <linux/pci.h>
#include <linux/mm.h>
10

L
Linus Torvalds 已提交
11
#include <asm/processor.h>
12
#include <asm/iommu.h>
13
#include <asm/dma.h>
L
Linus Torvalds 已提交
14

15 16
#define NOMMU_MAPPING_ERROR		0

17 18
static int
check_addr(char *name, struct device *hwdev, dma_addr_t bus, size_t size)
L
Linus Torvalds 已提交
19
{
20
	if (hwdev && !dma_capable(hwdev, bus, size)) {
21
		if (*hwdev->dma_mask >= DMA_BIT_MASK(32))
22
			printk(KERN_ERR
23 24 25
			    "nommu_%s: overflow %Lx+%zu of device mask %Lx\n",
				name, (long long)bus, size,
				(long long)*hwdev->dma_mask);
26
		return 0;
L
Linus Torvalds 已提交
27
	}
28 29
	return 1;
}
L
Linus Torvalds 已提交
30

F
FUJITA Tomonori 已提交
31 32 33
static dma_addr_t nommu_map_page(struct device *dev, struct page *page,
				 unsigned long offset, size_t size,
				 enum dma_data_direction dir,
34
				 unsigned long attrs)
35
{
36
	dma_addr_t bus = phys_to_dma(dev, page_to_phys(page)) + offset;
37
	WARN_ON(size == 0);
F
FUJITA Tomonori 已提交
38
	if (!check_addr("map_single", dev, bus, size))
39
		return NOMMU_MAPPING_ERROR;
40
	return bus;
L
Linus Torvalds 已提交
41 42
}

43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
/* Map a set of buffers described by scatterlist in streaming
 * mode for DMA.  This is the scatter-gather version of the
 * above pci_map_single interface.  Here the scatter gather list
 * elements are each tagged with the appropriate dma address
 * and length.  They are obtained via sg_dma_{address,length}(SG).
 *
 * NOTE: An implementation may be able to use a smaller number of
 *       DMA address/length pairs than there are SG table elements.
 *       (for example via virtual mapping capabilities)
 *       The routine returns the number of addr/length pairs actually
 *       used, at most nents.
 *
 * Device ownership issues as mentioned above for pci_map_single are
 * the same here.
 */
58
static int nommu_map_sg(struct device *hwdev, struct scatterlist *sg,
59
			int nents, enum dma_data_direction dir,
60
			unsigned long attrs)
L
Linus Torvalds 已提交
61
{
J
Jens Axboe 已提交
62
	struct scatterlist *s;
63
	int i;
L
Linus Torvalds 已提交
64

65 66
	WARN_ON(nents == 0 || sg[0].length == 0);

J
Jens Axboe 已提交
67
	for_each_sg(sg, s, nents, i) {
J
Jens Axboe 已提交
68
		BUG_ON(!sg_page(s));
G
Glauber Costa 已提交
69
		s->dma_address = sg_phys(s);
70 71 72 73 74 75
		if (!check_addr("map_sg", hwdev, s->dma_address, s->length))
			return 0;
		s->dma_length = s->length;
	}
	return nents;
}
L
Linus Torvalds 已提交
76

77 78 79 80 81
static int nommu_mapping_error(struct device *dev, dma_addr_t dma_addr)
{
	return dma_addr == NOMMU_MAPPING_ERROR;
}

82
const struct dma_map_ops nommu_dma_ops = {
83
	.alloc			= dma_generic_alloc_coherent,
84
	.free			= dma_generic_free_coherent,
85 86 87
	.map_sg			= nommu_map_sg,
	.map_page		= nommu_map_page,
	.is_phys		= 1,
88
	.mapping_error		= nommu_mapping_error,
89
	.dma_supported		= x86_dma_supported,
90
};