Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Andy Shevchenko | b7026b0 | 2017-07-06 14:41:51 +0300 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2007 |
| 4 | * Stelian Pop <stelian@popies.net> |
| 5 | * Lead Tech Design <www.leadtechdesign.com> |
Andy Shevchenko | b7026b0 | 2017-07-06 14:41:51 +0300 | [diff] [blame] | 6 | */ |
| 7 | #ifndef __ASM_X86_DMA_MAPPING_H |
| 8 | #define __ASM_X86_DMA_MAPPING_H |
| 9 | |
Vignesh Raghavendra | c0a5a81 | 2020-01-16 14:23:45 +0530 | [diff] [blame] | 10 | #include <common.h> |
| 11 | #include <asm/cache.h> |
| 12 | #include <cpu_func.h> |
Masahiro Yamada | b27af39 | 2017-08-26 00:50:17 +0900 | [diff] [blame] | 13 | #include <linux/dma-direction.h> |
Masahiro Yamada | c22c0db | 2020-02-14 16:40:17 +0900 | [diff] [blame] | 14 | #include <linux/types.h> |
Vignesh Raghavendra | c0a5a81 | 2020-01-16 14:23:45 +0530 | [diff] [blame] | 15 | #include <malloc.h> |
Andy Shevchenko | b7026b0 | 2017-07-06 14:41:51 +0300 | [diff] [blame] | 16 | |
Andy Shevchenko | b7026b0 | 2017-07-06 14:41:51 +0300 | [diff] [blame] | 17 | static inline void *dma_alloc_coherent(size_t len, unsigned long *handle) |
| 18 | { |
| 19 | *handle = (unsigned long)memalign(ARCH_DMA_MINALIGN, len); |
| 20 | return (void *)*handle; |
| 21 | } |
| 22 | |
| 23 | static inline void dma_free_coherent(void *addr) |
| 24 | { |
| 25 | free(addr); |
| 26 | } |
| 27 | |
Andy Shevchenko | b7026b0 | 2017-07-06 14:41:51 +0300 | [diff] [blame] | 28 | #endif /* __ASM_X86_DMA_MAPPING_H */ |