dma-nommu.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * DMA mapping support for platforms lacking IOMMUs.
  3. *
  4. * Copyright (C) 2009 Paul Mundt
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. */
  10. #include <linux/dma-mapping.h>
  11. #include <linux/io.h>
  12. static dma_addr_t nommu_map_page(struct device *dev, struct page *page,
  13. unsigned long offset, size_t size,
  14. enum dma_data_direction dir,
  15. struct dma_attrs *attrs)
  16. {
  17. dma_addr_t addr = page_to_phys(page) + offset;
  18. WARN_ON(size == 0);
  19. dma_cache_sync(dev, page_address(page) + offset, size, dir);
  20. return addr;
  21. }
  22. static int nommu_map_sg(struct device *dev, struct scatterlist *sg,
  23. int nents, enum dma_data_direction dir,
  24. struct dma_attrs *attrs)
  25. {
  26. struct scatterlist *s;
  27. int i;
  28. WARN_ON(nents == 0 || sg[0].length == 0);
  29. for_each_sg(sg, s, nents, i) {
  30. BUG_ON(!sg_page(s));
  31. dma_cache_sync(dev, sg_virt(s), s->length, dir);
  32. s->dma_address = sg_phys(s);
  33. s->dma_length = s->length;
  34. }
  35. return nents;
  36. }
  37. static void nommu_sync_single(struct device *dev, dma_addr_t addr,
  38. size_t size, enum dma_data_direction dir)
  39. {
  40. dma_cache_sync(dev, phys_to_virt(addr), size, dir);
  41. }
  42. static void nommu_sync_sg(struct device *dev, struct scatterlist *sg,
  43. int nelems, enum dma_data_direction dir)
  44. {
  45. struct scatterlist *s;
  46. int i;
  47. for_each_sg(sg, s, nelems, i)
  48. dma_cache_sync(dev, sg_virt(s), s->length, dir);
  49. }
  50. struct dma_map_ops nommu_dma_ops = {
  51. .alloc_coherent = dma_generic_alloc_coherent,
  52. .free_coherent = dma_generic_free_coherent,
  53. .map_page = nommu_map_page,
  54. .map_sg = nommu_map_sg,
  55. .sync_single_for_device = nommu_sync_single,
  56. .sync_sg_for_device = nommu_sync_sg,
  57. .is_phys = 1,
  58. };
  59. void __init no_iommu_init(void)
  60. {
  61. if (dma_ops)
  62. return;
  63. dma_ops = &nommu_dma_ops;
  64. }