xref: /rk3399_ARM-atf/include/services/arm_arch_svc.h (revision 09d40e0e08283a249e7dce0e106c07c5141f9b7e)
1 /*
2  * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef ARM_ARCH_SVC_H
8 #define ARM_ARCH_SVC_H
9 
10 #define SMCCC_VERSION			U(0x80000000)
11 #define SMCCC_ARCH_FEATURES		U(0x80000001)
12 #define SMCCC_ARCH_WORKAROUND_1		U(0x80008000)
13 #define SMCCC_ARCH_WORKAROUND_2		U(0x80007FFF)
14 
15 #define SMCCC_ARCH_NOT_REQUIRED		-2
16 
17 #endif /* ARM_ARCH_SVC_H */
18