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