blob: a59df37e3f5050387a556eb51a5d353417456987 [file] [log] [blame]
Varun Wadekaree25e822017-06-28 14:38:19 -07001/*
2 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
Varun Wadekar2909fa32020-01-09 08:52:10 -08003 * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
Varun Wadekaree25e822017-06-28 14:38:19 -07004 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
Varun Wadekar2909fa32020-01-09 08:52:10 -08008#ifndef GPCDMA_H
9#define GPCDMA_H
Varun Wadekaree25e822017-06-28 14:38:19 -070010
11#include <stdint.h>
12
13void tegra_gpcdma_memcpy(uint64_t dst_addr, uint64_t src_addr,
14 uint32_t num_bytes);
15void tegra_gpcdma_zeromem(uint64_t dst_addr, uint32_t num_bytes);
16
Varun Wadekar2909fa32020-01-09 08:52:10 -080017#endif /* GPCDMA_H */