dma-mapping.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #ifndef _ASM_IA64_DMA_MAPPING_H
  2. #define _ASM_IA64_DMA_MAPPING_H
  3. /*
  4. * Copyright (C) 2003-2004 Hewlett-Packard Co
  5. * David Mosberger-Tang <davidm@hpl.hp.com>
  6. */
  7. #include <asm/machvec.h>
  8. #define dma_alloc_coherent platform_dma_alloc_coherent
  9. #define dma_alloc_noncoherent platform_dma_alloc_coherent /* coherent mem. is cheap */
  10. #define dma_free_coherent platform_dma_free_coherent
  11. #define dma_free_noncoherent platform_dma_free_coherent
  12. #define dma_map_single platform_dma_map_single
  13. #define dma_map_sg platform_dma_map_sg
  14. #define dma_unmap_single platform_dma_unmap_single
  15. #define dma_unmap_sg platform_dma_unmap_sg
  16. #define dma_sync_single_for_cpu platform_dma_sync_single_for_cpu
  17. #define dma_sync_sg_for_cpu platform_dma_sync_sg_for_cpu
  18. #define dma_sync_single_for_device platform_dma_sync_single_for_device
  19. #define dma_sync_sg_for_device platform_dma_sync_sg_for_device
  20. #define dma_mapping_error platform_dma_mapping_error
  21. #define dma_map_page(dev, pg, off, size, dir) \
  22. dma_map_single(dev, page_address(pg) + (off), (size), (dir))
  23. #define dma_unmap_page(dev, dma_addr, size, dir) \
  24. dma_unmap_single(dev, dma_addr, size, dir)
  25. /*
  26. * Rest of this file is part of the "Advanced DMA API". Use at your own risk.
  27. * See Documentation/DMA-API.txt for details.
  28. */
  29. #define dma_sync_single_range_for_cpu(dev, dma_handle, offset, size, dir) \
  30. dma_sync_single_for_cpu(dev, dma_handle, size, dir)
  31. #define dma_sync_single_range_for_device(dev, dma_handle, offset, size, dir) \
  32. dma_sync_single_for_device(dev, dma_handle, size, dir)
  33. #define dma_supported platform_dma_supported
  34. static inline int
  35. dma_set_mask (struct device *dev, u64 mask)
  36. {
  37. if (!dev->dma_mask || !dma_supported(dev, mask))
  38. return -EIO;
  39. *dev->dma_mask = mask;
  40. return 0;
  41. }
  42. extern int dma_get_cache_alignment(void);
  43. static inline void
  44. dma_cache_sync (void *vaddr, size_t size, enum dma_data_direction dir)
  45. {
  46. /*
  47. * IA-64 is cache-coherent, so this is mostly a no-op. However, we do need to
  48. * ensure that dma_cache_sync() enforces order, hence the mb().
  49. */
  50. mb();
  51. }
  52. #define dma_is_consistent(dma_handle) (1) /* all we do is coherent memory... */
  53. #endif /* _ASM_IA64_DMA_MAPPING_H */