blob: 84776c526239934226c28fb9ec41b0b6aba8329d [file]
/** @file
Header file for Management Mode Interface via SMC.
This header file is used in normal world only.
Copyright (c) 2016-2024, Arm Limited. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
@par Glossary:
- MM - MM Management mode.
@par Reference(s):
- ARM Management Mode Interface Specification
[https://developer.arm.com/documentation/den0060/latest/]
**/
#pragma once
#define MM_MAJOR_VER_MASK 0xEFFF0000
#define MM_MINOR_VER_MASK 0x0000FFFF
#define MM_MAJOR_VER_SHIFT 16
#define MM_MAJOR_VER(x) (((x) & MM_MAJOR_VER_MASK) >> MM_MAJOR_VER_SHIFT)
#define MM_MINOR_VER(x) ((x) & MM_MINOR_VER_MASK)
#define MM_CALLER_MAJOR_VER 0x1UL
#define MM_CALLER_MINOR_VER 0x0