mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-29 16:48:59 +00:00

Having two generations of STM32MPX using the same SMCCC protocol, rework the SVC services setup to put in common what can be put in common and implement platform-specific handlers. Signed-off-by: Gatien Chevallier <gatien.chevallier@foss.st.com> Signed-off-by: Maxime Méré <maxime.mere@foss.st.com> Signed-off-by: Yann Gautier <yann.gautier@st.com> Change-Id: I000573e50d55dc70163c2657c12cc84085416f6b
51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
/*
|
|
* Copyright (c) 2016-2024, STMicroelectronics - All Rights Reserved
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef STM32MP1_SMC_H
|
|
#define STM32MP1_SMC_H
|
|
|
|
/*
|
|
* SMC function IDs for STM32 Service queries
|
|
* STM32 SMC services use the space between 0x82000000 and 0x8200FFFF
|
|
* like this is defined in SMC calling Convention by ARM
|
|
* for SiP (silicon Partner)
|
|
* https://developer.arm.com/docs/den0028/latest
|
|
*/
|
|
|
|
/* Secure Service access from Non-secure */
|
|
|
|
/*
|
|
* STM32_SMC_BSEC call API
|
|
*
|
|
* Argument a0: (input) SMCC ID
|
|
* (output) status return code
|
|
* Argument a1: (input) Service ID (STM32_SMC_BSEC_xxx)
|
|
* Argument a2: (input) OTP index
|
|
* (output) OTP read value, if applicable
|
|
* Argument a3: (input) OTP value if applicable
|
|
*/
|
|
#define STM32_SMC_BSEC 0x82001003
|
|
|
|
/*
|
|
* STM32_SIP_SMC_SCMI_AGENT0
|
|
* STM32_SIP_SMC_SCMI_AGENT1
|
|
* Process SCMI message pending in SCMI shared memory buffer.
|
|
*
|
|
* Argument a0: (input) SMCC ID
|
|
*/
|
|
#define STM32_SIP_SMC_SCMI_AGENT0 0x82002000
|
|
#define STM32_SIP_SMC_SCMI_AGENT1 0x82002001
|
|
|
|
/* Number of STM32 SiP Calls implemented */
|
|
#define STM32_COMMON_SIP_NUM_CALLS 3
|
|
|
|
/* Service for BSEC */
|
|
#define STM32_SMC_READ_SHADOW 0x01
|
|
#define STM32_SMC_PROG_OTP 0x02
|
|
#define STM32_SMC_WRITE_SHADOW 0x03
|
|
#define STM32_SMC_READ_OTP 0x04
|
|
|
|
#endif /* STM32MP1_SMC_H */
|