提交 22456b97 编写于 作者: G Glauber Costa 提交者: Ingo Molnar

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: NGlauber Costa <gcosta@redhat.com>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
上级 6f536635
...@@ -26,6 +26,7 @@ obj-y += pci-dma_$(BITS).o bootflag.o e820_$(BITS).o ...@@ -26,6 +26,7 @@ obj-y += pci-dma_$(BITS).o bootflag.o e820_$(BITS).o
obj-y += quirks.o i8237.o topology.o kdebugfs.o obj-y += quirks.o i8237.o topology.o kdebugfs.o
obj-y += alternative.o i8253.o obj-y += alternative.o i8253.o
obj-$(CONFIG_X86_64) += pci-nommu_64.o bugs_64.o obj-$(CONFIG_X86_64) += pci-nommu_64.o bugs_64.o
obj-$(CONFIG_X86_32) += pci-base_32.o
obj-y += tsc_$(BITS).o io_delay.o rtc.o obj-y += tsc_$(BITS).o io_delay.o rtc.o
obj-$(CONFIG_X86_TRAMPOLINE) += trampoline.o obj-$(CONFIG_X86_TRAMPOLINE) += trampoline.o
......
#include <linux/mm.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/dma-mapping.h>
#include <asm/dma-mapping.h>
static dma_addr_t pci32_map_single(struct device *dev, void *ptr,
size_t size, int direction)
{
WARN_ON(size == 0);
flush_write_buffers();
return virt_to_phys(ptr);
}
static const struct dma_mapping_ops pci32_dma_ops = {
.map_single = pci32_map_single,
};
const struct dma_mapping_ops *dma_ops = &pci32_dma_ops;
EXPORT_SYMBOL(dma_ops);
...@@ -50,10 +50,20 @@ struct dma_mapping_ops { ...@@ -50,10 +50,20 @@ struct dma_mapping_ops {
int is_phys; int is_phys;
}; };
extern const struct dma_mapping_ops *dma_ops;
#ifdef CONFIG_X86_32 #ifdef CONFIG_X86_32
# include "dma-mapping_32.h" # include "dma-mapping_32.h"
#else #else
# include "dma-mapping_64.h" # include "dma-mapping_64.h"
#endif #endif
static inline dma_addr_t
dma_map_single(struct device *hwdev, void *ptr, size_t size,
int direction)
{
BUG_ON(!valid_dma_direction(direction));
return dma_ops->map_single(hwdev, ptr, size, direction);
}
#endif #endif
...@@ -17,16 +17,6 @@ void *dma_alloc_coherent(struct device *dev, size_t size, ...@@ -17,16 +17,6 @@ void *dma_alloc_coherent(struct device *dev, size_t size,
void dma_free_coherent(struct device *dev, size_t size, void dma_free_coherent(struct device *dev, size_t size,
void *vaddr, dma_addr_t dma_handle); void *vaddr, dma_addr_t dma_handle);
static inline dma_addr_t
dma_map_single(struct device *dev, void *ptr, size_t size,
enum dma_data_direction direction)
{
BUG_ON(!valid_dma_direction(direction));
WARN_ON(size == 0);
flush_write_buffers();
return virt_to_phys(ptr);
}
static inline void static inline void
dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size, dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size,
enum dma_data_direction direction) enum dma_data_direction direction)
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
#define _X8664_DMA_MAPPING_H 1 #define _X8664_DMA_MAPPING_H 1
extern dma_addr_t bad_dma_address; extern dma_addr_t bad_dma_address;
extern const struct dma_mapping_ops* dma_ops;
extern int iommu_merge; extern int iommu_merge;
static inline int dma_mapping_error(dma_addr_t dma_addr) 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,14 +23,6 @@ extern void *dma_alloc_coherent(struct device *dev, size_t size,
extern void dma_free_coherent(struct device *dev, size_t size, void *vaddr, extern void dma_free_coherent(struct device *dev, size_t size, void *vaddr,
dma_addr_t dma_handle); dma_addr_t dma_handle);
static inline dma_addr_t
dma_map_single(struct device *hwdev, void *ptr, size_t size,
int direction)
{
BUG_ON(!valid_dma_direction(direction));
return dma_ops->map_single(hwdev, ptr, size, direction);
}
static inline void static inline void
dma_unmap_single(struct device *dev, dma_addr_t addr,size_t size, dma_unmap_single(struct device *dev, dma_addr_t addr,size_t size,
int direction) int direction)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册