blob: 0310078a95f8a8a78bf360cc7aa7d0f6680a11a0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004 Hewlett-Packard Development Company, L.P.
3 * Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
4 *
5 * This is a pseudo I/O MMU which dispatches to the hardware I/O MMU
6 * whenever possible. We assume that the hardware I/O MMU requires
7 * full 32-bit addressability, as is the case, e.g., for HP zx1-based
8 * systems (there, the I/O MMU window is mapped at 3-4GB). If a
9 * device doesn't provide full 32-bit addressability, we fall back on
10 * the sw I/O TLB. This is good enough to let us support broken
11 * hardware such as soundcards which have a DMA engine that can
12 * address only 28 bits.
13 */
14
15#include <linux/device.h>
FUJITA Tomonori917f69b2009-01-05 23:36:08 +090016#include <linux/dma-mapping.h>
Joerg Roedel9979aa72008-10-29 14:17:59 -070017#include <linux/swiotlb.h>
Paul Gortmakerbd3ff192011-07-31 18:33:21 -040018#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/machvec.h>
20
Bart Van Assche52997092017-01-20 13:04:01 -080021extern const struct dma_map_ops sba_dma_ops, swiotlb_dma_ops;
FUJITA Tomonoric7b3aee2009-01-05 23:36:17 +090022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/* swiotlb declarations & definitions: */
Alex Williamson0b9afed2005-09-06 11:20:49 -060024extern int swiotlb_late_init_with_default_size (size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/*
27 * Note: we need to make the determination of whether or not to use
28 * the sw I/O TLB based purely on the device structure. Anything else
29 * would be unreliable or would be too intrusive.
30 */
FUJITA Tomonoric7b3aee2009-01-05 23:36:17 +090031static inline int use_swiotlb(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032{
FUJITA Tomonoric7b3aee2009-01-05 23:36:17 +090033 return dev && dev->dma_mask &&
FUJITA Tomonori160c1d82009-01-05 23:59:02 +090034 !sba_dma_ops.dma_supported(dev, *dev->dma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36
Bart Van Assche52997092017-01-20 13:04:01 -080037const struct dma_map_ops *hwsw_dma_get_ops(struct device *dev)
FUJITA Tomonoric7b3aee2009-01-05 23:36:17 +090038{
39 if (use_swiotlb(dev))
40 return &swiotlb_dma_ops;
41 return &sba_dma_ops;
42}
43EXPORT_SYMBOL(hwsw_dma_get_ops);
FUJITA Tomonori4d9b9772009-01-05 23:36:12 +090044
Tony Luck9a86bbb2007-05-10 11:57:58 -070045void __init
Linus Torvalds1da177e2005-04-16 15:20:36 -070046hwsw_init (void)
47{
48 /* default to a smallish 2MB sw I/O TLB */
Alex Williamson0b9afed2005-09-06 11:20:49 -060049 if (swiotlb_late_init_with_default_size (2 * (1<<20)) != 0) {
50#ifdef CONFIG_IA64_GENERIC
51 /* Better to have normal DMA than panic */
52 printk(KERN_WARNING "%s: Failed to initialize software I/O TLB,"
Harvey Harrisond4ed8082008-03-04 15:15:00 -080053 " reverting to hpzx1 platform vector\n", __func__);
Alex Williamson0b9afed2005-09-06 11:20:49 -060054 machvec_init("hpzx1");
55#else
56 panic("Unable to initialize software I/O TLB services");
57#endif
58 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}