diff options
author | Glauber Costa <gcosta@redhat.com> | 2008-03-25 17:36:21 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-19 13:19:56 -0400 |
commit | 22456b97148be300e25e9cb97244656775972475 (patch) | |
tree | d85225c64c776f61c9485a5ca1b06f32c53cc5fe /include/asm-x86 | |
parent | 6f5366354bf86f8d2c1cf241c9bbf44b2d350e30 (diff) |
x86: implement dma_map_single through dma_ops
That's already the name of the game for x86_64. For i386,
we add a pci-base_32.c, that will hold the default operations.
The function call itself goes through dma-mapping.h , the common
header
Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86')
-rw-r--r-- | include/asm-x86/dma-mapping.h | 10 | ||||
-rw-r--r-- | include/asm-x86/dma-mapping_32.h | 10 | ||||
-rw-r--r-- | include/asm-x86/dma-mapping_64.h | 9 |
3 files changed, 10 insertions, 19 deletions
diff --git a/include/asm-x86/dma-mapping.h b/include/asm-x86/dma-mapping.h index aebd178a19ac..d320244db8af 100644 --- a/include/asm-x86/dma-mapping.h +++ b/include/asm-x86/dma-mapping.h | |||
@@ -50,10 +50,20 @@ struct dma_mapping_ops { | |||
50 | int is_phys; | 50 | int is_phys; |
51 | }; | 51 | }; |
52 | 52 | ||
53 | extern const struct dma_mapping_ops *dma_ops; | ||
54 | |||
53 | #ifdef CONFIG_X86_32 | 55 | #ifdef CONFIG_X86_32 |
54 | # include "dma-mapping_32.h" | 56 | # include "dma-mapping_32.h" |
55 | #else | 57 | #else |
56 | # include "dma-mapping_64.h" | 58 | # include "dma-mapping_64.h" |
57 | #endif | 59 | #endif |
58 | 60 | ||
61 | static inline dma_addr_t | ||
62 | dma_map_single(struct device *hwdev, void *ptr, size_t size, | ||
63 | int direction) | ||
64 | { | ||
65 | BUG_ON(!valid_dma_direction(direction)); | ||
66 | return dma_ops->map_single(hwdev, ptr, size, direction); | ||
67 | } | ||
68 | |||
59 | #endif | 69 | #endif |
diff --git a/include/asm-x86/dma-mapping_32.h b/include/asm-x86/dma-mapping_32.h index 55f01bd9e556..b496306d5e98 100644 --- a/include/asm-x86/dma-mapping_32.h +++ b/include/asm-x86/dma-mapping_32.h | |||
@@ -17,16 +17,6 @@ void *dma_alloc_coherent(struct device *dev, size_t size, | |||
17 | void dma_free_coherent(struct device *dev, size_t size, | 17 | void dma_free_coherent(struct device *dev, size_t size, |
18 | void *vaddr, dma_addr_t dma_handle); | 18 | void *vaddr, dma_addr_t dma_handle); |
19 | 19 | ||
20 | static inline dma_addr_t | ||
21 | dma_map_single(struct device *dev, void *ptr, size_t size, | ||
22 | enum dma_data_direction direction) | ||
23 | { | ||
24 | BUG_ON(!valid_dma_direction(direction)); | ||
25 | WARN_ON(size == 0); | ||
26 | flush_write_buffers(); | ||
27 | return virt_to_phys(ptr); | ||
28 | } | ||
29 | |||
30 | static inline void | 20 | static inline void |
31 | dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size, | 21 | dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size, |
32 | enum dma_data_direction direction) | 22 | enum dma_data_direction direction) |
diff --git a/include/asm-x86/dma-mapping_64.h b/include/asm-x86/dma-mapping_64.h index 369188a348f4..969a7da0cf97 100644 --- a/include/asm-x86/dma-mapping_64.h +++ b/include/asm-x86/dma-mapping_64.h | |||
@@ -2,7 +2,6 @@ | |||
2 | #define _X8664_DMA_MAPPING_H 1 | 2 | #define _X8664_DMA_MAPPING_H 1 |
3 | 3 | ||
4 | extern dma_addr_t bad_dma_address; | 4 | extern dma_addr_t bad_dma_address; |
5 | extern const struct dma_mapping_ops* dma_ops; | ||
6 | extern int iommu_merge; | 5 | extern int iommu_merge; |
7 | 6 | ||
8 | static inline int dma_mapping_error(dma_addr_t dma_addr) | 7 | static inline int dma_mapping_error(dma_addr_t dma_addr) |
@@ -24,14 +23,6 @@ extern void *dma_alloc_coherent(struct device *dev, size_t size, | |||
24 | extern void dma_free_coherent(struct device *dev, size_t size, void *vaddr, | 23 | extern void dma_free_coherent(struct device *dev, size_t size, void *vaddr, |
25 | dma_addr_t dma_handle); | 24 | dma_addr_t dma_handle); |
26 | 25 | ||
27 | static inline dma_addr_t | ||
28 | dma_map_single(struct device *hwdev, void *ptr, size_t size, | ||
29 | int direction) | ||
30 | { | ||
31 | BUG_ON(!valid_dma_direction(direction)); | ||
32 | return dma_ops->map_single(hwdev, ptr, size, direction); | ||
33 | } | ||
34 | |||
35 | static inline void | 26 | static inline void |
36 | dma_unmap_single(struct device *dev, dma_addr_t addr,size_t size, | 27 | dma_unmap_single(struct device *dev, dma_addr_t addr,size_t size, |
37 | int direction) | 28 | int direction) |