hwsw_iommu.c 1.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (c) 2004 Hewlett-Packard Development Company, L.P.
 *   Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
 *
 * This is a pseudo I/O MMU which dispatches to the hardware I/O MMU
 * whenever possible.  We assume that the hardware I/O MMU requires
 * full 32-bit addressability, as is the case, e.g., for HP zx1-based
 * systems (there, the I/O MMU window is mapped at 3-4GB).  If a
 * device doesn't provide full 32-bit addressability, we fall back on
 * the sw I/O TLB.  This is good enough to let us support broken
 * hardware such as soundcards which have a DMA engine that can
 * address only 28 bits.
 */

#include <linux/device.h>
16
#include <linux/dma-mapping.h>
17
#include <linux/swiotlb.h>
L
Linus Torvalds 已提交
18 19
#include <asm/machvec.h>

F
FUJITA Tomonori 已提交
20 21
extern struct dma_mapping_ops sba_dma_ops, swiotlb_dma_ops;

L
Linus Torvalds 已提交
22
/* swiotlb declarations & definitions: */
23
extern int swiotlb_late_init_with_default_size (size_t size);
L
Linus Torvalds 已提交
24 25 26 27 28 29

/*
 * Note: we need to make the determination of whether or not to use
 * the sw I/O TLB based purely on the device structure.  Anything else
 * would be unreliable or would be too intrusive.
 */
F
FUJITA Tomonori 已提交
30
static inline int use_swiotlb(struct device *dev)
L
Linus Torvalds 已提交
31
{
F
FUJITA Tomonori 已提交
32 33
	return dev && dev->dma_mask &&
		!sba_dma_ops.dma_supported_op(dev, *dev->dma_mask);
L
Linus Torvalds 已提交
34 35
}

F
FUJITA Tomonori 已提交
36 37 38 39 40 41 42
struct dma_mapping_ops *hwsw_dma_get_ops(struct device *dev)
{
	if (use_swiotlb(dev))
		return &swiotlb_dma_ops;
	return &sba_dma_ops;
}
EXPORT_SYMBOL(hwsw_dma_get_ops);
F
FUJITA Tomonori 已提交
43

44
void __init
L
Linus Torvalds 已提交
45 46 47
hwsw_init (void)
{
	/* default to a smallish 2MB sw I/O TLB */
48 49 50 51
	if (swiotlb_late_init_with_default_size (2 * (1<<20)) != 0) {
#ifdef CONFIG_IA64_GENERIC
		/* Better to have normal DMA than panic */
		printk(KERN_WARNING "%s: Failed to initialize software I/O TLB,"
52
		       " reverting to hpzx1 platform vector\n", __func__);
53 54 55 56 57
		machvec_init("hpzx1");
#else
		panic("Unable to initialize software I/O TLB services");
#endif
	}
L
Linus Torvalds 已提交
58
}