Achin Gupta | 86f2353 | 2019-10-11 15:41:16 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2020, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #ifndef SPMD_SVC_H |
| 8 | #define SPMD_SVC_H |
| 9 | |
| 10 | #ifndef __ASSEMBLER__ |
| 11 | #include <services/spci_svc.h> |
| 12 | #include <stdint.h> |
| 13 | |
Max Shvetsov | 745889c | 2020-02-27 14:54:21 +0000 | [diff] [blame] | 14 | int spmd_setup(void); |
Achin Gupta | 86f2353 | 2019-10-11 15:41:16 +0100 | [diff] [blame] | 15 | uint64_t spmd_smc_handler(uint32_t smc_fid, |
| 16 | uint64_t x1, |
| 17 | uint64_t x2, |
| 18 | uint64_t x3, |
| 19 | uint64_t x4, |
| 20 | void *cookie, |
| 21 | void *handle, |
| 22 | uint64_t flags); |
| 23 | #endif /* __ASSEMBLER__ */ |
| 24 | |
| 25 | #endif /* SPMD_SVC_H */ |