blob: ef0eb675cb2c37e18720c49288c6c2c959c4f85b [file] [log] [blame]
Amit Nagalf7ecba32023-02-15 18:43:55 +05301/*
2 * Copyright (c) 2022-2023, Advanced Micro Devices Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6#ifndef CUSTOM_SVC_H
7#define CUSTOM_SVC_H
8
9#define ZYNQMP_SIP_SVC_CUSTOM U(0x82002000)
10#define ZYNQMP_SIP_SVC64_CUSTOM U(0xC2002000)
11
12uint64_t custom_smc_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2,
13 uint64_t x3, uint64_t x4, void *cookie,
14 void *handle, uint64_t flags);
15
Amit Nagal71e1ffc2023-02-23 21:37:23 +053016void custom_early_setup(void);
17void custom_mmap_add(void);
18
Amit Nagalf7ecba32023-02-15 18:43:55 +053019#endif /* CUSTOM_SVC_H */