arm_arch_svc.h 497 Bytes
Newer Older
1
/*
2
 * Copyright (c) 2018-2020, ARM Limited and Contributors. All rights reserved.
3
4
5
6
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

7
8
#ifndef ARM_ARCH_SVC_H
#define ARM_ARCH_SVC_H
9
10
11

#define SMCCC_VERSION			U(0x80000000)
#define SMCCC_ARCH_FEATURES		U(0x80000001)
12
#define SMCCC_ARCH_SOC_ID		U(0x80000002)
13
#define SMCCC_ARCH_WORKAROUND_1		U(0x80008000)
14
15
#define SMCCC_ARCH_WORKAROUND_2		U(0x80007FFF)

16
17
18
#define SMCCC_GET_SOC_VERSION		U(0)
#define SMCCC_GET_SOC_REVISION		U(1)

19
#endif /* ARM_ARCH_SVC_H */