blob: 48a7c65731d2e0cf08ab2e974adcf922f2dddc58 [file] [log] [blame]
Sam Ravnborga439fe52008-07-27 23:00:59 +02001#ifndef ___ASM_SPARC_DMA_MAPPING_H
2#define ___ASM_SPARC_DMA_MAPPING_H
FUJITA Tomonorid6986412009-05-14 16:23:11 +00003
4#include <linux/scatterlist.h>
5#include <linux/mm.h>
FUJITA Tomonori02f7a182009-08-10 11:53:13 +09006#include <linux/dma-debug.h>
FUJITA Tomonorib9f69f42009-05-14 16:23:08 +00007
8#define DMA_ERROR_CODE (~(dma_addr_t)0x0)
9
10extern int dma_supported(struct device *dev, u64 mask);
FUJITA Tomonorib9f69f42009-05-14 16:23:08 +000011
FUJITA Tomonorib9f69f42009-05-14 16:23:08 +000012#define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
13#define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h)
FUJITA Tomonorib9f69f42009-05-14 16:23:08 +000014
FUJITA Tomonoriee664a92009-08-10 11:53:16 +090015extern struct dma_map_ops *dma_ops, pci32_dma_ops;
16extern struct bus_type pci_bus_type;
FUJITA Tomonori02f7a182009-08-10 11:53:13 +090017
18static inline struct dma_map_ops *get_dma_ops(struct device *dev)
19{
FUJITA Tomonoriee664a92009-08-10 11:53:16 +090020#if defined(CONFIG_SPARC32) && defined(CONFIG_PCI)
21 if (dev->bus == &pci_bus_type)
22 return &pci32_dma_ops;
23#endif
FUJITA Tomonori02f7a182009-08-10 11:53:13 +090024 return dma_ops;
25}
26
27#include <asm-generic/dma-mapping-common.h>
FUJITA Tomonorid6986412009-05-14 16:23:11 +000028
Andrzej Pietrasiewiczc4162582012-03-27 14:56:55 +020029#define dma_alloc_coherent(d,s,h,f) dma_alloc_attrs(d,s,h,f,NULL)
30
31static inline void *dma_alloc_attrs(struct device *dev, size_t size,
32 dma_addr_t *dma_handle, gfp_t flag,
33 struct dma_attrs *attrs)
FUJITA Tomonorid6986412009-05-14 16:23:11 +000034{
FUJITA Tomonori02f7a182009-08-10 11:53:13 +090035 struct dma_map_ops *ops = get_dma_ops(dev);
FUJITA Tomonori451d7402009-08-10 11:53:17 +090036 void *cpu_addr;
FUJITA Tomonori02f7a182009-08-10 11:53:13 +090037
Andrzej Pietrasiewiczc4162582012-03-27 14:56:55 +020038 cpu_addr = ops->alloc(dev, size, dma_handle, flag, attrs);
FUJITA Tomonori451d7402009-08-10 11:53:17 +090039 debug_dma_alloc_coherent(dev, size, *dma_handle, cpu_addr);
40 return cpu_addr;
FUJITA Tomonorid6986412009-05-14 16:23:11 +000041}
42
Andrzej Pietrasiewiczc4162582012-03-27 14:56:55 +020043#define dma_free_coherent(d,s,c,h) dma_free_attrs(d,s,c,h,NULL)
44
45static inline void dma_free_attrs(struct device *dev, size_t size,
46 void *cpu_addr, dma_addr_t dma_handle,
47 struct dma_attrs *attrs)
FUJITA Tomonorid6986412009-05-14 16:23:11 +000048{
FUJITA Tomonori02f7a182009-08-10 11:53:13 +090049 struct dma_map_ops *ops = get_dma_ops(dev);
FUJITA Tomonorid6986412009-05-14 16:23:11 +000050
FUJITA Tomonori451d7402009-08-10 11:53:17 +090051 debug_dma_free_coherent(dev, size, cpu_addr, dma_handle);
Andrzej Pietrasiewiczc4162582012-03-27 14:56:55 +020052 ops->free(dev, size, cpu_addr, dma_handle, attrs);
FUJITA Tomonorid6986412009-05-14 16:23:11 +000053}
54
FUJITA Tomonorid6986412009-05-14 16:23:11 +000055static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
56{
57 return (dma_addr == DMA_ERROR_CODE);
58}
59
FUJITA Tomonori34900422010-03-10 15:23:35 -080060static inline int dma_set_mask(struct device *dev, u64 mask)
61{
62#ifdef CONFIG_PCI
63 if (dev->bus == &pci_bus_type) {
64 if (!dev->dma_mask || !dma_supported(dev, mask))
65 return -EINVAL;
66 *dev->dma_mask = mask;
67 return 0;
68 }
69#endif
70 return -EINVAL;
71}
72
Sam Ravnborga439fe52008-07-27 23:00:59 +020073#endif