Anup Patel | 70b8562 | 2019-02-25 08:14:17 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright (c) 2018 Western Digital Corporation or its affiliates. |
| 4 | * |
| 5 | * Authors: |
| 6 | * Anup Patel <anup.patel@wdc.com> |
| 7 | */ |
| 8 | |
| 9 | #ifndef __ASM_RISCV_DMA_MAPPING_H |
| 10 | #define __ASM_RISCV_DMA_MAPPING_H |
| 11 | |
Vignesh Raghavendra | c0a5a81 | 2020-01-16 14:23:45 +0530 | [diff] [blame] | 12 | #include <common.h> |
Masahiro Yamada | c22c0db | 2020-02-14 16:40:17 +0900 | [diff] [blame] | 13 | #include <linux/types.h> |
Vignesh Raghavendra | c0a5a81 | 2020-01-16 14:23:45 +0530 | [diff] [blame] | 14 | #include <asm/cache.h> |
| 15 | #include <cpu_func.h> |
Anup Patel | 70b8562 | 2019-02-25 08:14:17 +0000 | [diff] [blame] | 16 | #include <linux/dma-direction.h> |
Vignesh Raghavendra | c0a5a81 | 2020-01-16 14:23:45 +0530 | [diff] [blame] | 17 | #include <malloc.h> |
Anup Patel | 70b8562 | 2019-02-25 08:14:17 +0000 | [diff] [blame] | 18 | |
Anup Patel | 70b8562 | 2019-02-25 08:14:17 +0000 | [diff] [blame] | 19 | static inline void *dma_alloc_coherent(size_t len, unsigned long *handle) |
| 20 | { |
| 21 | *handle = (unsigned long)memalign(ARCH_DMA_MINALIGN, len); |
| 22 | return (void *)*handle; |
| 23 | } |
| 24 | |
| 25 | static inline void dma_free_coherent(void *addr) |
| 26 | { |
| 27 | free(addr); |
| 28 | } |
| 29 | |
Anup Patel | 70b8562 | 2019-02-25 08:14:17 +0000 | [diff] [blame] | 30 | #endif /* __ASM_RISCV_DMA_MAPPING_H */ |