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