pci-base_32.c 1.3 KB
Newer Older
1 2 3 4 5 6
#include <linux/mm.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/dma-mapping.h>
#include <asm/dma-mapping.h>

I
Ingo Molnar 已提交
7
static dma_addr_t pci32_map_single(struct device *dev, phys_addr_t ptr,
8 9 10 11
				   size_t size, int direction)
{
	WARN_ON(size == 0);
	flush_write_buffers();
I
Ingo Molnar 已提交
12
	return ptr;
13 14
}

15 16 17 18 19 20 21 22 23 24 25 26
static int pci32_dma_map_sg(struct device *dev, struct scatterlist *sglist,
			    int nents, int direction)
{
	struct scatterlist *sg;
	int i;

	WARN_ON(nents == 0 || sglist[0].length == 0);

	for_each_sg(sglist, sg, nents, i) {
		BUG_ON(!sg_page(sg));

		sg->dma_address = sg_phys(sg);
G
Glauber Costa 已提交
27
		sg->dma_length = sg->length;
28 29 30 31 32 33
	}

	flush_write_buffers();
	return nents;
}

G
Glauber Costa 已提交
34 35 36 37 38 39
/* Make sure we keep the same behaviour */
static int pci32_map_error(dma_addr_t dma_addr)
{
	return 0;
}

40
const struct dma_mapping_ops pci32_dma_ops = {
41
	.map_single = pci32_map_single,
42
	.unmap_single = NULL,
43
	.map_sg = pci32_dma_map_sg,
44
	.unmap_sg = NULL,
45
	.sync_single_for_cpu = NULL,
46
	.sync_single_for_device = NULL,
47
	.sync_single_range_for_cpu = NULL,
48
	.sync_single_range_for_device = NULL,
49
	.sync_sg_for_cpu = NULL,
50
	.sync_sg_for_device = NULL,
G
Glauber Costa 已提交
51
	.mapping_error = pci32_map_error,
52 53
};

54 55 56 57 58 59 60
/* this is temporary */
int __init no_iommu_init(void)
{
	dma_ops = &pci32_dma_ops;
	return 0;
}
fs_initcall(no_iommu_init);