diff options
author | Peng Fan | 2023-06-15 18:09:18 +0800 |
---|---|---|
committer | Stefano Babic | 2023-07-13 11:29:40 +0200 |
commit | 9395eb05ee816fd8e5082e10e84391e5a621d9f0 (patch) | |
tree | f54718d3072d62aafed95352f6de4b13e947f983 /include/imx_sip.h | |
parent | 455ebf8f455d4bd78237884aaf948c54fb6639b6 (diff) |
imx: bootaux: change names of MACROs used to boot MCU on iMX devices
The current bootaux supports i.MX8M and i.MX93, but the name "_M4_"
implies that the SoCs have Cortex-M4. Actually i.MX8MM/Q use Cortex-M4,
i.MX8MN/P use Cortex-M7, i.MX93 use Cortex-M33, so use "_MCU_" in place
of "_M4_" to simplify the naming.
Signed-off-by: faqiang.zhu <faqiang.zhu@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'include/imx_sip.h')
-rw-r--r-- | include/imx_sip.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/imx_sip.h b/include/imx_sip.h index ebbb3a16d7e..8a5ca34f393 100644 --- a/include/imx_sip.h +++ b/include/imx_sip.h @@ -13,8 +13,8 @@ #define IMX_SIP_BUILDINFO_GET_COMMITHASH 0x00 #define IMX_SIP_SRC 0xC2000005 -#define IMX_SIP_SRC_M4_START 0x00 -#define IMX_SIP_SRC_M4_STARTED 0x01 -#define IMX_SIP_SRC_M4_STOP 0x02 +#define IMX_SIP_SRC_MCU_START 0x00 +#define IMX_SIP_SRC_MCU_STARTED 0x01 +#define IMX_SIP_SRC_MCU_STOP 0x02 #endif |