mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 02:38:56 +00:00
13 lines
282 B
C
13 lines
282 B
C
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
/*
|
||
|
* Copyright 2021 NXP
|
||
|
*/
|
||
|
|
||
|
#ifndef __IMX8ULP_MU_HAL_H__
|
||
|
#define __IMX8ULP_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
|