1 /* 2 * Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef HISI_SIP_SVC_H 8 #define HISI_SIP_SVC_H 9 10 /* SMC function IDs for SiP Service queries */ 11 12 #define HISI_SIP_SVC_CALL_COUNT 0x8200ff00 13 #define HISI_SIP_SVC_UID 0x8200ff01 14 /* 0x8200ff02 is reserved */ 15 #define HISI_SIP_SVC_VERSION 0x8200ff03 16 17 /* HISI SiP Service Calls version numbers */ 18 #define HISI_SIP_SVC_VERSION_MAJOR 0x0 19 #define HISI_SIP_SVC_VERSION_MINOR 0x1 20 21 #endif /* HISI_SIP_SVC_H */ 22