xref: /rk3399_ARM-atf/plat/intel/soc/common/include/socfpga_sip_svc.h (revision 326150b9862c7ee359dd5c189c8c6e10622551d6)
1 /*
2  * Copyright (c) 2019, Intel Corporation. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef SOCFPGA_SIP_SVC_H
8 #define SOCFPGA_SIP_SVC_H
9 
10 
11 /* SiP status response */
12 #define INTEL_SIP_SMC_STATUS_OK				0
13 #define INTEL_SIP_SMC_STATUS_ERROR			0x4
14 #define INTEL_SIP_SMC_STATUS_BUSY			0x1
15 #define INTEL_SIP_SMC_STATUS_REJECTED			0x2
16 
17 /* SMC SiP service function identifier */
18 #define INTEL_SIP_SMC_FPGA_CONFIG_START			0xC2000001
19 #define INTEL_SIP_SMC_FPGA_CONFIG_WRITE			0x42000002
20 #define INTEL_SIP_SMC_FPGA_CONFIG_COMPLETED_WRITE	0xC2000003
21 #define INTEL_SIP_SMC_FPGA_CONFIG_ISDONE		0xC2000004
22 #define INTEL_SIP_SMC_FPGA_CONFIG_GET_MEM		0xC2000005
23 #define INTEL_SIP_SMC_REG_READ				0xC2000007
24 #define INTEL_SIP_SMC_REG_WRITE				0xC2000008
25 #define INTEL_SIP_SMC_REG_UPDATE			0xC2000009
26 #define INTEL_SIP_SMC_RSU_STATUS			0xC200000B
27 #define INTEL_SIP_SMC_RSU_UPDATE			0xC200000C
28 #define INTEL_SIP_LEGACY_SMC_ECC_DBE			0xC200000D
29 #define INTEL_SIP_SMC_RSU_NOTIFY			0xC200000E
30 #define INTEL_SIP_SMC_RSU_RETRY_COUNTER			0xC200000F
31 #define INTEL_SIP_SMC_MBOX_SEND_CMD			0xC200001E
32 
33 /* FPGA config helpers */
34 #define INTEL_SIP_SMC_FPGA_CONFIG_ADDR			0x400000
35 #define INTEL_SIP_SMC_FPGA_CONFIG_SIZE			16777216
36 
37 /* SMC function IDs for SiP Service queries */
38 #define SIP_SVC_CALL_COUNT	0x8200ff00
39 #define SIP_SVC_UID		0x8200ff01
40 #define SIP_SVC_VERSION		0x8200ff03
41 
42 /* SiP Service Calls version numbers */
43 #define SIP_SVC_VERSION_MAJOR	0
44 #define SIP_SVC_VERSION_MINOR	1
45 
46 #endif /* SOCFPGA_SIP_SVC_H */
47