pci-nommu.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. // SPDX-License-Identifier: GPL-2.0
  2. /* Fallback functions when the main IOMMU code is not compiled in. This
  3. code is roughly equivalent to i386. */
  4. #include <linux/dma-direct.h>
  5. #include <linux/scatterlist.h>
  6. #include <linux/string.h>
  7. #include <linux/gfp.h>
  8. #include <linux/pci.h>
  9. #include <linux/mm.h>
  10. #include <asm/processor.h>
  11. #include <asm/iommu.h>
  12. #include <asm/dma.h>
  13. #define NOMMU_MAPPING_ERROR 0
  14. static int
  15. check_addr(char *name, struct device *hwdev, dma_addr_t bus, size_t size)
  16. {
  17. if (hwdev && !dma_capable(hwdev, bus, size)) {
  18. if (*hwdev->dma_mask >= DMA_BIT_MASK(32))
  19. printk(KERN_ERR
  20. "nommu_%s: overflow %Lx+%zu of device mask %Lx\n",
  21. name, (long long)bus, size,
  22. (long long)*hwdev->dma_mask);
  23. return 0;
  24. }
  25. return 1;
  26. }
  27. static dma_addr_t nommu_map_page(struct device *dev, struct page *page,
  28. unsigned long offset, size_t size,
  29. enum dma_data_direction dir,
  30. unsigned long attrs)
  31. {
  32. dma_addr_t bus = phys_to_dma(dev, page_to_phys(page)) + offset;
  33. WARN_ON(size == 0);
  34. if (!check_addr("map_single", dev, bus, size))
  35. return NOMMU_MAPPING_ERROR;
  36. flush_write_buffers();
  37. return bus;
  38. }
  39. /* Map a set of buffers described by scatterlist in streaming
  40. * mode for DMA. This is the scatter-gather version of the
  41. * above pci_map_single interface. Here the scatter gather list
  42. * elements are each tagged with the appropriate dma address
  43. * and length. They are obtained via sg_dma_{address,length}(SG).
  44. *
  45. * NOTE: An implementation may be able to use a smaller number of
  46. * DMA address/length pairs than there are SG table elements.
  47. * (for example via virtual mapping capabilities)
  48. * The routine returns the number of addr/length pairs actually
  49. * used, at most nents.
  50. *
  51. * Device ownership issues as mentioned above for pci_map_single are
  52. * the same here.
  53. */
  54. static int nommu_map_sg(struct device *hwdev, struct scatterlist *sg,
  55. int nents, enum dma_data_direction dir,
  56. unsigned long attrs)
  57. {
  58. struct scatterlist *s;
  59. int i;
  60. WARN_ON(nents == 0 || sg[0].length == 0);
  61. for_each_sg(sg, s, nents, i) {
  62. BUG_ON(!sg_page(s));
  63. s->dma_address = sg_phys(s);
  64. if (!check_addr("map_sg", hwdev, s->dma_address, s->length))
  65. return 0;
  66. s->dma_length = s->length;
  67. }
  68. flush_write_buffers();
  69. return nents;
  70. }
  71. static void nommu_sync_single_for_device(struct device *dev,
  72. dma_addr_t addr, size_t size,
  73. enum dma_data_direction dir)
  74. {
  75. flush_write_buffers();
  76. }
  77. static void nommu_sync_sg_for_device(struct device *dev,
  78. struct scatterlist *sg, int nelems,
  79. enum dma_data_direction dir)
  80. {
  81. flush_write_buffers();
  82. }
  83. static int nommu_mapping_error(struct device *dev, dma_addr_t dma_addr)
  84. {
  85. return dma_addr == NOMMU_MAPPING_ERROR;
  86. }
  87. const struct dma_map_ops nommu_dma_ops = {
  88. .alloc = dma_generic_alloc_coherent,
  89. .free = dma_generic_free_coherent,
  90. .map_sg = nommu_map_sg,
  91. .map_page = nommu_map_page,
  92. .sync_single_for_device = nommu_sync_single_for_device,
  93. .sync_sg_for_device = nommu_sync_sg_for_device,
  94. .is_phys = 1,
  95. .mapping_error = nommu_mapping_error,
  96. .dma_supported = x86_dma_supported,
  97. };