Path: blob/master/arch/ia64/hp/common/hwsw_iommu.c
15126 views
/*1* Copyright (c) 2004 Hewlett-Packard Development Company, L.P.2* Contributed by David Mosberger-Tang <[email protected]>3*4* This is a pseudo I/O MMU which dispatches to the hardware I/O MMU5* whenever possible. We assume that the hardware I/O MMU requires6* full 32-bit addressability, as is the case, e.g., for HP zx1-based7* systems (there, the I/O MMU window is mapped at 3-4GB). If a8* device doesn't provide full 32-bit addressability, we fall back on9* the sw I/O TLB. This is good enough to let us support broken10* hardware such as soundcards which have a DMA engine that can11* address only 28 bits.12*/1314#include <linux/device.h>15#include <linux/dma-mapping.h>16#include <linux/swiotlb.h>17#include <asm/machvec.h>1819extern struct dma_map_ops sba_dma_ops, swiotlb_dma_ops;2021/* swiotlb declarations & definitions: */22extern int swiotlb_late_init_with_default_size (size_t size);2324/*25* Note: we need to make the determination of whether or not to use26* the sw I/O TLB based purely on the device structure. Anything else27* would be unreliable or would be too intrusive.28*/29static inline int use_swiotlb(struct device *dev)30{31return dev && dev->dma_mask &&32!sba_dma_ops.dma_supported(dev, *dev->dma_mask);33}3435struct dma_map_ops *hwsw_dma_get_ops(struct device *dev)36{37if (use_swiotlb(dev))38return &swiotlb_dma_ops;39return &sba_dma_ops;40}41EXPORT_SYMBOL(hwsw_dma_get_ops);4243void __init44hwsw_init (void)45{46/* default to a smallish 2MB sw I/O TLB */47if (swiotlb_late_init_with_default_size (2 * (1<<20)) != 0) {48#ifdef CONFIG_IA64_GENERIC49/* Better to have normal DMA than panic */50printk(KERN_WARNING "%s: Failed to initialize software I/O TLB,"51" reverting to hpzx1 platform vector\n", __func__);52machvec_init("hpzx1");53#else54panic("Unable to initialize software I/O TLB services");55#endif56}57}585960