mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-09-03 10:33:11 +02:00

Import M4 SRC call from TF-A Reviewed-by: Richard Zhu <hongxing.zhu@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
18 lines
357 B
C
18 lines
357 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright 2019 NXP
|
|
*/
|
|
|
|
#ifndef __IMX_SIP_H__
|
|
#define __IMX_SIP_H__
|
|
|
|
#define IMX_SIP_GPC 0xC2000000
|
|
#define IMX_SIP_CONFIG_GPC_PM_DOMAIN 0x03
|
|
|
|
#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
|
|
|
|
#endif /* __IMX_SIP_H__ */
|