dma-mapping.h 638 B

1234567891011121314151617181920212223242526
  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. extern const struct dma_map_ops xtensa_dma_map_ops;
  16. static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
  17. {
  18. return &xtensa_dma_map_ops;
  19. }
  20. #endif /* _XTENSA_DMA_MAPPING_H */