blob: fb5486a8e59dec660cb0e78a5259f60acdfbba4d [file] [log] [blame]
Varun Wadekaree25e822017-06-28 14:38:19 -07001/*
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
12void tegra_gpcdma_memcpy(uint64_t dst_addr, uint64_t src_addr,
13 uint32_t num_bytes);
14void tegra_gpcdma_zeromem(uint64_t dst_addr, uint32_t num_bytes);
15
16#endif /* __GPCDMA_H__ */