dma-mapping.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. /* coherent mem. is cheap */
  10. static inline void *
  11. dma_alloc_noncoherent(struct device *dev, size_t size, dma_addr_t *dma_handle,
  12. gfp_t flag)
  13. {
  14. return dma_alloc_coherent(dev, size, dma_handle, flag);
  15. }
  16. #define dma_free_coherent platform_dma_free_coherent
  17. static inline void
  18. dma_free_noncoherent(struct device *dev, size_t size, void *cpu_addr,
  19. dma_addr_t dma_handle)
  20. {
  21. dma_free_coherent(dev, size, cpu_addr, dma_handle);
  22. }
  23. #define dma_map_single platform_dma_map_single
  24. #define dma_map_sg platform_dma_map_sg
  25. #define dma_unmap_single platform_dma_unmap_single
  26. #define dma_unmap_sg platform_dma_unmap_sg
  27. #define dma_sync_single_for_cpu platform_dma_sync_single_for_cpu
  28. #define dma_sync_sg_for_cpu platform_dma_sync_sg_for_cpu
  29. #define dma_sync_single_for_device platform_dma_sync_single_for_device
  30. #define dma_sync_sg_for_device platform_dma_sync_sg_for_device
  31. #define dma_mapping_error platform_dma_mapping_error
  32. #define dma_map_page(dev, pg, off, size, dir) \
  33. dma_map_single(dev, page_address(pg) + (off), (size), (dir))
  34. #define dma_unmap_page(dev, dma_addr, size, dir) \
  35. dma_unmap_single(dev, dma_addr, size, dir)
  36. /*
  37. * Rest of this file is part of the "Advanced DMA API". Use at your own risk.
  38. * See Documentation/DMA-API.txt for details.
  39. */
  40. #define dma_sync_single_range_for_cpu(dev, dma_handle, offset, size, dir) \
  41. dma_sync_single_for_cpu(dev, dma_handle, size, dir)
  42. #define dma_sync_single_range_for_device(dev, dma_handle, offset, size, dir) \
  43. dma_sync_single_for_device(dev, dma_handle, size, dir)
  44. #define dma_supported platform_dma_supported
  45. static inline int
  46. dma_set_mask (struct device *dev, u64 mask)
  47. {
  48. if (!dev->dma_mask || !dma_supported(dev, mask))
  49. return -EIO;
  50. *dev->dma_mask = mask;
  51. return 0;
  52. }
  53. extern int dma_get_cache_alignment(void);
  54. static inline void
  55. dma_cache_sync (struct device *dev, void *vaddr, size_t size,
  56. enum dma_data_direction dir)
  57. {
  58. /*
  59. * IA-64 is cache-coherent, so this is mostly a no-op. However, we do need to
  60. * ensure that dma_cache_sync() enforces order, hence the mb().
  61. */
  62. mb();
  63. }
  64. #define dma_is_consistent(d, h) (1) /* all we do is coherent memory... */
  65. #endif /* _ASM_IA64_DMA_MAPPING_H */