mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 04:48:14 +00:00

Use the macros that are now defined in include/lib/smccc.h. Signed-off-by: Yann Gautier <yann.gautier@foss.st.com> Change-Id: I688a76277b729672835d51fafb68d1d6205b6ae4
13 lines
330 B
C
13 lines
330 B
C
/*
|
|
* Copyright (c) 2020-2021, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#ifndef SMCCC_DEF_H
|
|
#define SMCCC_DEF_H
|
|
|
|
/* Defines used to retrieve ARM SOC revision */
|
|
#define ARM_SOC_CONTINUATION_CODE U(0x4)
|
|
#define ARM_SOC_IDENTIFICATION_CODE U(0x3B)
|
|
|
|
#endif /* SMCCC_DEF_H */
|