| 
									
										
										
										
											2008-07-17 21:55:51 -07:00
										 |  |  | #ifndef ___ASM_SPARC_DMA_MAPPING_H
 | 
					
						
							|  |  |  | #define ___ASM_SPARC_DMA_MAPPING_H
 | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <linux/scatterlist.h>
 | 
					
						
							|  |  |  | #include <linux/mm.h>
 | 
					
						
							| 
									
										
										
										
											2009-08-10 11:53:13 +09:00
										 |  |  | #include <linux/dma-debug.h>
 | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define DMA_ERROR_CODE	(~(dma_addr_t)0x0)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern int dma_supported(struct device *dev, u64 mask); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:11 +00:00
										 |  |  | #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
 | 
					
						
							|  |  |  | #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-26 15:56:03 +02:00
										 |  |  | extern struct dma_map_ops *dma_ops; | 
					
						
							|  |  |  | extern struct dma_map_ops *leon_dma_ops; | 
					
						
							|  |  |  | extern struct dma_map_ops pci32_dma_ops; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-10 11:53:16 +09:00
										 |  |  | extern struct bus_type pci_bus_type; | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-10 11:53:13 +09:00
										 |  |  | static inline struct dma_map_ops *get_dma_ops(struct device *dev) | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-10 11:53:16 +09:00
										 |  |  | #if defined(CONFIG_SPARC32) && defined(CONFIG_PCI)
 | 
					
						
							| 
									
										
										
										
											2012-05-26 15:56:03 +02:00
										 |  |  | 	if (sparc_cpu_model == sparc_leon) | 
					
						
							|  |  |  | 		return leon_dma_ops; | 
					
						
							|  |  |  | 	else if (dev->bus == &pci_bus_type) | 
					
						
							| 
									
										
										
										
											2009-08-10 11:53:16 +09:00
										 |  |  | 		return &pci32_dma_ops; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-08-10 11:53:13 +09:00
										 |  |  | 	return dma_ops; | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:11 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-10 11:53:13 +09:00
										 |  |  | #include <asm-generic/dma-mapping-common.h>
 | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-27 14:56:55 +02:00
										 |  |  | #define dma_alloc_coherent(d,s,h,f)	dma_alloc_attrs(d,s,h,f,NULL)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void *dma_alloc_attrs(struct device *dev, size_t size, | 
					
						
							|  |  |  | 				    dma_addr_t *dma_handle, gfp_t flag, | 
					
						
							|  |  |  | 				    struct dma_attrs *attrs) | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-10 11:53:13 +09:00
										 |  |  | 	struct dma_map_ops *ops = get_dma_ops(dev); | 
					
						
							| 
									
										
										
										
											2009-08-10 11:53:17 +09:00
										 |  |  | 	void *cpu_addr; | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-27 14:56:55 +02:00
										 |  |  | 	cpu_addr = ops->alloc(dev, size, dma_handle, flag, attrs); | 
					
						
							| 
									
										
										
										
											2009-08-10 11:53:17 +09:00
										 |  |  | 	debug_dma_alloc_coherent(dev, size, *dma_handle, cpu_addr); | 
					
						
							|  |  |  | 	return cpu_addr; | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:11 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-27 14:56:55 +02:00
										 |  |  | #define dma_free_coherent(d,s,c,h) dma_free_attrs(d,s,c,h,NULL)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void dma_free_attrs(struct device *dev, size_t size, | 
					
						
							|  |  |  | 				  void *cpu_addr, dma_addr_t dma_handle, | 
					
						
							|  |  |  | 				  struct dma_attrs *attrs) | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-10 11:53:13 +09:00
										 |  |  | 	struct dma_map_ops *ops = get_dma_ops(dev); | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-10 11:53:17 +09:00
										 |  |  | 	debug_dma_free_coherent(dev, size, cpu_addr, dma_handle); | 
					
						
							| 
									
										
										
										
											2012-03-27 14:56:55 +02:00
										 |  |  | 	ops->free(dev, size, cpu_addr, dma_handle, attrs); | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:08 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:11 +00:00
										 |  |  | static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-10-25 18:31:42 -06:00
										 |  |  | 	debug_dma_mapping_error(dev, dma_addr); | 
					
						
							| 
									
										
										
										
											2009-05-14 16:23:11 +00:00
										 |  |  | 	return (dma_addr == DMA_ERROR_CODE); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-10 15:23:35 -08:00
										 |  |  | static inline int dma_set_mask(struct device *dev, u64 mask) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef CONFIG_PCI
 | 
					
						
							|  |  |  | 	if (dev->bus == &pci_bus_type) { | 
					
						
							|  |  |  | 		if (!dev->dma_mask || !dma_supported(dev, mask)) | 
					
						
							|  |  |  | 			return -EINVAL; | 
					
						
							|  |  |  | 		*dev->dma_mask = mask; | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	return -EINVAL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-17 21:55:51 -07:00
										 |  |  | #endif
 |