Varun Wadekar | ee25e82 | 2017-06-28 14:38:19 -0700 | [diff] [blame] | 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__ */ |