mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 12:08:19 +00:00 
			
		
		
		
	Added dma_free_coherent corresponding to the dma_alloc_coherent in dma-mapping.h in order to free memory allocated using dma_alloc_coherent. This API is used in dwc3 driver. Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com> Reviewed-by: Lukasz Majewski <l.majewski@samsung.com>
		
			
				
	
	
		
			42 lines
		
	
	
		
			869 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			869 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * (C) Copyright 2007
 | |
|  * Stelian Pop <stelian@popies.net>
 | |
|  * Lead Tech Design <www.leadtechdesign.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier:	GPL-2.0+
 | |
|  */
 | |
| #ifndef __ASM_ARM_DMA_MAPPING_H
 | |
| #define __ASM_ARM_DMA_MAPPING_H
 | |
| 
 | |
| #define	dma_mapping_error(x, y)	0
 | |
| 
 | |
| enum dma_data_direction {
 | |
| 	DMA_BIDIRECTIONAL	= 0,
 | |
| 	DMA_TO_DEVICE		= 1,
 | |
| 	DMA_FROM_DEVICE		= 2,
 | |
| };
 | |
| 
 | |
| static inline void *dma_alloc_coherent(size_t len, unsigned long *handle)
 | |
| {
 | |
| 	*handle = (unsigned long)memalign(ARCH_DMA_MINALIGN, len);
 | |
| 	return (void *)*handle;
 | |
| }
 | |
| 
 | |
| static inline void dma_free_coherent(void *addr)
 | |
| {
 | |
| 	free(addr);
 | |
| }
 | |
| 
 | |
| static inline unsigned long dma_map_single(volatile void *vaddr, size_t len,
 | |
| 					   enum dma_data_direction dir)
 | |
| {
 | |
| 	return (unsigned long)vaddr;
 | |
| }
 | |
| 
 | |
| static inline void dma_unmap_single(volatile void *vaddr, size_t len,
 | |
| 				    unsigned long paddr)
 | |
| {
 | |
| }
 | |
| 
 | |
| #endif /* __ASM_ARM_DMA_MAPPING_H */
 |