hwsw_iommu.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  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. #include <linux/device.h>
  15. #include <linux/dma-mapping.h>
  16. #include <linux/swiotlb.h>
  17. #include <linux/export.h>
  18. #include <asm/machvec.h>
  19. extern struct dma_map_ops sba_dma_ops, swiotlb_dma_ops;
  20. /* swiotlb declarations & definitions: */
  21. extern int swiotlb_late_init_with_default_size (size_t size);
  22. /*
  23. * Note: we need to make the determination of whether or not to use
  24. * the sw I/O TLB based purely on the device structure. Anything else
  25. * would be unreliable or would be too intrusive.
  26. */
  27. static inline int use_swiotlb(struct device *dev)
  28. {
  29. return dev && dev->dma_mask &&
  30. !sba_dma_ops.dma_supported(dev, *dev->dma_mask);
  31. }
  32. struct dma_map_ops *hwsw_dma_get_ops(struct device *dev)
  33. {
  34. if (use_swiotlb(dev))
  35. return &swiotlb_dma_ops;
  36. return &sba_dma_ops;
  37. }
  38. EXPORT_SYMBOL(hwsw_dma_get_ops);
  39. void __init
  40. hwsw_init (void)
  41. {
  42. /* default to a smallish 2MB sw I/O TLB */
  43. if (swiotlb_late_init_with_default_size (2 * (1<<20)) != 0) {
  44. #ifdef CONFIG_IA64_GENERIC
  45. /* Better to have normal DMA than panic */
  46. printk(KERN_WARNING "%s: Failed to initialize software I/O TLB,"
  47. " reverting to hpzx1 platform vector\n", __func__);
  48. machvec_init("hpzx1");
  49. #else
  50. panic("Unable to initialize software I/O TLB services");
  51. #endif
  52. }
  53. }