mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-12 06:12:58 +00:00
03fcf96651
Since iMX9 uses S401 which shares the API with iMX8ULP. So move S400 MU driver and API to a common place and selected by CONFIG_IMX_SENTINEL Signed-off-by: Ye Li <ye.li@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
12 lines
274 B
C
12 lines
274 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2021 NXP
|
|
*/
|
|
|
|
#ifndef __SNT_MU_HAL_H__
|
|
#define __SNT_MU_HAL_H__
|
|
|
|
void mu_hal_init(ulong base);
|
|
int mu_hal_sendmsg(ulong base, u32 reg_index, u32 msg);
|
|
int mu_hal_receivemsg(ulong base, u32 reg_index, u32 *msg);
|
|
#endif
|