Release 4.14 arch/ia64/hp/common/hwsw_iommu.c
// SPDX-License-Identifier: GPL-2.0
/*
* 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>
#include <linux/dma-mapping.h>
#include <linux/swiotlb.h>
#include <linux/export.h>
#include <asm/machvec.h>
extern const struct dma_map_ops sba_dma_ops, swiotlb_dma_ops;
/* swiotlb declarations & definitions: */
extern int swiotlb_late_init_with_default_size (size_t size);
/*
* 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.
*/
static inline int use_swiotlb(struct device *dev)
{
return dev && dev->dma_mask &&
!sba_dma_ops.dma_supported(dev, *dev->dma_mask);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Mosberger-Tang | 29 | 90.62% | 1 | 33.33% |
FUJITA Tomonori | 3 | 9.38% | 2 | 66.67% |
Total | 32 | 100.00% | 3 | 100.00% |
const struct dma_map_ops *hwsw_dma_get_ops(struct device *dev)
{
if (use_swiotlb(dev))
return &swiotlb_dma_ops;
return &sba_dma_ops;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
FUJITA Tomonori | 27 | 96.43% | 3 | 75.00% |
Bart Van Assche | 1 | 3.57% | 1 | 25.00% |
Total | 28 | 100.00% | 4 | 100.00% |
EXPORT_SYMBOL(hwsw_dma_get_ops);
void __init
hwsw_init (void)
{
/* default to a smallish 2MB sw I/O TLB */
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,"
" reverting to hpzx1 platform vector\n", __func__);
machvec_init("hpzx1");
#else
panic("Unable to initialize software I/O TLB services");
#endif
}
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alex Williamson | 33 | 62.26% | 1 | 25.00% |
David Mosberger-Tang | 18 | 33.96% | 1 | 25.00% |
Tony Luck | 1 | 1.89% | 1 | 25.00% |
Harvey Harrison | 1 | 1.89% | 1 | 25.00% |
Total | 53 | 100.00% | 4 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Mosberger-Tang | 62 | 40.52% | 1 | 8.33% |
FUJITA Tomonori | 45 | 29.41% | 4 | 33.33% |
Alex Williamson | 35 | 22.88% | 1 | 8.33% |
Joerg Roedel | 3 | 1.96% | 1 | 8.33% |
Paul Gortmaker | 3 | 1.96% | 1 | 8.33% |
Bart Van Assche | 2 | 1.31% | 1 | 8.33% |
Greg Kroah-Hartman | 1 | 0.65% | 1 | 8.33% |
Harvey Harrison | 1 | 0.65% | 1 | 8.33% |
Tony Luck | 1 | 0.65% | 1 | 8.33% |
Total | 153 | 100.00% | 12 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.