blob: 5a8c308e2b5cd58ec52e90507f9667900586e085 [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);
11extern int dma_set_mask(struct device *dev, u64 dma_mask);
12
FUJITA Tomonorib9f69f42009-05-14 16:23:08 +000013#define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
14#define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h)
15#define dma_is_consistent(d, h) (1)
16
FUJITA Tomonoriee664a92009-08-10 11:53:16 +090017extern struct dma_map_ops *dma_ops, pci32_dma_ops;
18extern struct bus_type pci_bus_type;
FUJITA Tomonori02f7a182009-08-10 11:53:13 +090019
20static inline struct dma_map_ops *get_dma_ops(struct device *dev)
21{
FUJITA Tomonoriee664a92009-08-10 11:53:16 +090022#if defined(CONFIG_SPARC32) && defined(CONFIG_PCI)
23 if (dev->bus == &pci_bus_type)
24 return &pci32_dma_ops;
25#endif
FUJITA Tomonori02f7a182009-08-10 11:53:13 +090026 return dma_ops;
27}
28
29#include <asm-generic/dma-mapping-common.h>
FUJITA Tomonorid6986412009-05-14 16:23:11 +000030
31static inline void *dma_alloc_coherent(struct device *dev, size_t size,
32 dma_addr_t *dma_handle, gfp_t flag)
33{
FUJITA Tomonori02f7a182009-08-10 11:53:13 +090034 struct dma_map_ops *ops = get_dma_ops(dev);
FUJITA Tomonori451d7402009-08-10 11:53:17 +090035 void *cpu_addr;
FUJITA Tomonori02f7a182009-08-10 11:53:13 +090036
FUJITA Tomonori451d7402009-08-10 11:53:17 +090037 cpu_addr = ops->alloc_coherent(dev, size, dma_handle, flag);
38 debug_dma_alloc_coherent(dev, size, *dma_handle, cpu_addr);
39 return cpu_addr;
FUJITA Tomonorid6986412009-05-14 16:23:11 +000040}
41
42static inline void dma_free_coherent(struct device *dev, size_t size,
43 void *cpu_addr, dma_addr_t dma_handle)
44{
FUJITA Tomonori02f7a182009-08-10 11:53:13 +090045 struct dma_map_ops *ops = get_dma_ops(dev);
FUJITA Tomonorid6986412009-05-14 16:23:11 +000046
FUJITA Tomonori451d7402009-08-10 11:53:17 +090047 debug_dma_free_coherent(dev, size, cpu_addr, dma_handle);
FUJITA Tomonori02f7a182009-08-10 11:53:13 +090048 ops->free_coherent(dev, size, cpu_addr, dma_handle);
FUJITA Tomonorid6986412009-05-14 16:23:11 +000049}
50
FUJITA Tomonorid6986412009-05-14 16:23:11 +000051static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
52{
53 return (dma_addr == DMA_ERROR_CODE);
54}
55
56static inline int dma_get_cache_alignment(void)
57{
58 /*
59 * no easy way to get cache size on all processors, so return
60 * the maximum possible, to be safe
61 */
62 return (1 << INTERNODE_CACHE_SHIFT);
63}
64
Sam Ravnborga439fe52008-07-27 23:00:59 +020065#endif