xref: /rk3399_ARM-atf/plat/nvidia/tegra/include/drivers/gpcdma.h (revision 17e1335c893bce16883c8e76b251e1013c6ec001)
1 /*
2  * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef __GPCDMA_H__
8 #define __GPCDMA_H__
9 
10 #include <stdint.h>
11 
12 void tegra_gpcdma_memcpy(uint64_t dst_addr, uint64_t src_addr,
13 			    uint32_t num_bytes);
14 void tegra_gpcdma_zeromem(uint64_t dst_addr, uint32_t num_bytes);
15 
16 #endif /* __GPCDMA_H__ */
17