blob: 04f501e97120ec202863bad14f9f791af883e868 [file] [log] [blame]
Govindraj Rajadd8025c2024-03-14 09:47:24 -05001/*
2 * Copyright (c) 2024, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef VEN_EL3_SVC_H
8#define VEN_EL3_SVC_H
9
10/*
11 * Definitions related to the Vendor-Specific El3 as per the SMC Calling Convention.
12 */
13
14/* VEN_EL3_SMC_32 0x87000000U */
15/* VEN_EL3_SMC_64 0xC7000000U */
16
17#define VEN_EL3_SVC_UID 0x8700ff01
18/* 0x8700ff02 is reserved */
19#define VEN_EL3_SVC_VERSION 0x8700ff03
20
21#define VEN_EL3_SVC_VERSION_MAJOR 1
Govindraj Rajaf44772a2025-05-28 00:39:17 -050022#define VEN_EL3_SVC_VERSION_MINOR 1
Govindraj Rajadd8025c2024-03-14 09:47:24 -050023
24#endif /* VEN_EL3_SVC_H */