1 /*
2  * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
3  * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef GPCDMA_H
9 #define GPCDMA_H
10 
11 #include <stdint.h>
12 
13 void tegra_gpcdma_memcpy(uint64_t dst_addr, uint64_t src_addr,
14 			    uint32_t num_bytes);
15 void tegra_gpcdma_zeromem(uint64_t dst_addr, uint32_t num_bytes);
16 
17 #endif /* GPCDMA_H */
18