dma-mapping.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 2003 - 2005 Tensilica Inc.
  7. * Copyright (C) 2015 Cadence Design Systems Inc.
  8. */
  9. #ifndef _XTENSA_DMA_MAPPING_H
  10. #define _XTENSA_DMA_MAPPING_H
  11. #include <asm/cache.h>
  12. #include <asm/io.h>
  13. #include <linux/mm.h>
  14. #include <linux/scatterlist.h>
  15. #define DMA_ERROR_CODE (~(dma_addr_t)0x0)
  16. extern struct dma_map_ops xtensa_dma_map_ops;
  17. static inline struct dma_map_ops *get_dma_ops(struct device *dev)
  18. {
  19. if (dev && dev->archdata.dma_ops)
  20. return dev->archdata.dma_ops;
  21. else
  22. return &xtensa_dma_map_ops;
  23. }
  24. void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
  25. enum dma_data_direction direction);
  26. static inline dma_addr_t phys_to_dma(struct device *dev, phys_addr_t paddr)
  27. {
  28. return (dma_addr_t)paddr;
  29. }
  30. static inline phys_addr_t dma_to_phys(struct device *dev, dma_addr_t daddr)
  31. {
  32. return (phys_addr_t)daddr;
  33. }
  34. #endif /* _XTENSA_DMA_MAPPING_H */