blob: f1735a22d0ea28cd08ce5be1413c78cd1e397061 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_IA64_DMA_MAPPING_H
2#define _ASM_IA64_DMA_MAPPING_H
3
4/*
5 * Copyright (C) 2003-2004 Hewlett-Packard Co
6 * David Mosberger-Tang <davidm@hpl.hp.com>
7 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <asm/machvec.h>
Jens Axboe9b6eccf2007-10-16 11:27:26 +02009#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#define dma_alloc_coherent platform_dma_alloc_coherent
Roland Dreierb7de8e72007-02-14 00:32:53 -080012/* coherent mem. is cheap */
13static inline void *
14dma_alloc_noncoherent(struct device *dev, size_t size, dma_addr_t *dma_handle,
15 gfp_t flag)
16{
17 return dma_alloc_coherent(dev, size, dma_handle, flag);
18}
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#define dma_free_coherent platform_dma_free_coherent
Roland Dreierb7de8e72007-02-14 00:32:53 -080020static inline void
21dma_free_noncoherent(struct device *dev, size_t size, void *cpu_addr,
22 dma_addr_t dma_handle)
23{
24 dma_free_coherent(dev, size, cpu_addr, dma_handle);
25}
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#define dma_map_single platform_dma_map_single
27#define dma_map_sg platform_dma_map_sg
28#define dma_unmap_single platform_dma_unmap_single
29#define dma_unmap_sg platform_dma_unmap_sg
30#define dma_sync_single_for_cpu platform_dma_sync_single_for_cpu
31#define dma_sync_sg_for_cpu platform_dma_sync_sg_for_cpu
32#define dma_sync_single_for_device platform_dma_sync_single_for_device
33#define dma_sync_sg_for_device platform_dma_sync_sg_for_device
34#define dma_mapping_error platform_dma_mapping_error
35
36#define dma_map_page(dev, pg, off, size, dir) \
37 dma_map_single(dev, page_address(pg) + (off), (size), (dir))
38#define dma_unmap_page(dev, dma_addr, size, dir) \
39 dma_unmap_single(dev, dma_addr, size, dir)
40
41/*
42 * Rest of this file is part of the "Advanced DMA API". Use at your own risk.
43 * See Documentation/DMA-API.txt for details.
44 */
45
46#define dma_sync_single_range_for_cpu(dev, dma_handle, offset, size, dir) \
47 dma_sync_single_for_cpu(dev, dma_handle, size, dir)
48#define dma_sync_single_range_for_device(dev, dma_handle, offset, size, dir) \
49 dma_sync_single_for_device(dev, dma_handle, size, dir)
50
51#define dma_supported platform_dma_supported
52
53static inline int
54dma_set_mask (struct device *dev, u64 mask)
55{
56 if (!dev->dma_mask || !dma_supported(dev, mask))
57 return -EIO;
58 *dev->dma_mask = mask;
59 return 0;
60}
61
John W. Linvillee1531b42005-11-07 00:57:54 -080062extern int dma_get_cache_alignment(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64static inline void
Ralf Baechled3fa72e2006-12-06 20:38:56 -080065dma_cache_sync (struct device *dev, void *vaddr, size_t size,
66 enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 /*
69 * IA-64 is cache-coherent, so this is mostly a no-op. However, we do need to
70 * ensure that dma_cache_sync() enforces order, hence the mb().
71 */
72 mb();
73}
74
Ralf Baechlef67637e2006-12-06 20:38:54 -080075#define dma_is_consistent(d, h) (1) /* all we do is coherent memory... */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#endif /* _ASM_IA64_DMA_MAPPING_H */