mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-15 17:07:04 +02:00
Moved SMCCC defines from plat_arm.h to new <smccc_def.h> header and include this header in all ARM platforms. Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com> Change-Id: I4cbc69c7b9307461de87b7c7bf200dd9b810e485
16 lines
409 B
C
16 lines
409 B
C
/*
|
|
* Copyright (c) 2020, 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)
|
|
#define ARM_SOC_CONTINUATION_SHIFT U(24)
|
|
#define ARM_SOC_IDENTIFICATION_SHIFT U(16)
|
|
|
|
#endif /* SMCCC_DEF_H */
|