dma-mapping.h 698 B

1234567891011121314151617181920212223
  1. #ifndef __ASM_SH_DMA_MAPPING_H
  2. #define __ASM_SH_DMA_MAPPING_H
  3. extern const struct dma_map_ops *dma_ops;
  4. extern void no_iommu_init(void);
  5. static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
  6. {
  7. return dma_ops;
  8. }
  9. void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
  10. enum dma_data_direction dir);
  11. /* arch/sh/mm/consistent.c */
  12. extern void *dma_generic_alloc_coherent(struct device *dev, size_t size,
  13. dma_addr_t *dma_addr, gfp_t flag,
  14. unsigned long attrs);
  15. extern void dma_generic_free_coherent(struct device *dev, size_t size,
  16. void *vaddr, dma_addr_t dma_handle,
  17. unsigned long attrs);
  18. #endif /* __ASM_SH_DMA_MAPPING_H */