hwsw_iommu.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2004 Hewlett-Packard Development Company, L.P.
  4. * Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
  5. *
  6. * This is a pseudo I/O MMU which dispatches to the hardware I/O MMU
  7. * whenever possible. We assume that the hardware I/O MMU requires
  8. * full 32-bit addressability, as is the case, e.g., for HP zx1-based
  9. * systems (there, the I/O MMU window is mapped at 3-4GB). If a
  10. * device doesn't provide full 32-bit addressability, we fall back on
  11. * the sw I/O TLB. This is good enough to let us support broken
  12. * hardware such as soundcards which have a DMA engine that can
  13. * address only 28 bits.
  14. */
  15. #include <linux/device.h>
  16. #include <linux/dma-mapping.h>
  17. #include <linux/swiotlb.h>
  18. #include <linux/export.h>
  19. #include <asm/machvec.h>
  20. extern const struct dma_map_ops sba_dma_ops;
  21. /* swiotlb declarations & definitions: */
  22. extern int swiotlb_late_init_with_default_size (size_t size);
  23. /*
  24. * Note: we need to make the determination of whether or not to use
  25. * the sw I/O TLB based purely on the device structure. Anything else
  26. * would be unreliable or would be too intrusive.
  27. */
  28. static inline int use_swiotlb(struct device *dev)
  29. {
  30. return dev && dev->dma_mask &&
  31. !sba_dma_ops.dma_supported(dev, *dev->dma_mask);
  32. }
  33. const struct dma_map_ops *hwsw_dma_get_ops(struct device *dev)
  34. {
  35. if (use_swiotlb(dev))
  36. return &swiotlb_dma_ops;
  37. return &sba_dma_ops;
  38. }
  39. EXPORT_SYMBOL(hwsw_dma_get_ops);
  40. void __init
  41. hwsw_init (void)
  42. {
  43. /* default to a smallish 2MB sw I/O TLB */
  44. if (swiotlb_late_init_with_default_size (2 * (1<<20)) != 0) {
  45. #ifdef CONFIG_IA64_GENERIC
  46. /* Better to have normal DMA than panic */
  47. printk(KERN_WARNING "%s: Failed to initialize software I/O TLB,"
  48. " reverting to hpzx1 platform vector\n", __func__);
  49. machvec_init("hpzx1");
  50. #else
  51. panic("Unable to initialize software I/O TLB services");
  52. #endif
  53. }
  54. }