mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 02:38:56 +00:00
5579d66e37
Add functions to check if M33 image is booted and handshake with M33 image via MU. A core notifies M33 to start init by FCR F0, then wait M33 init done signal by checking FSR F0. Reviewed-by: Peng Fan <peng.fan@nxp.com> Signed-off-by: Ye Li <ye.li@nxp.com> Signed-off-by: Biwen Li <biwen.li@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
23 lines
674 B
C
23 lines
674 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2021 NXP
|
|
*/
|
|
|
|
#ifndef __ARCH_IMX8ULP_SYS_PROTO_H
|
|
#define __ARCH_NMX8ULP_SYS_PROTO_H
|
|
|
|
#include <asm/mach-imx/sys_proto.h>
|
|
|
|
extern unsigned long rom_pointer[];
|
|
|
|
ulong spl_romapi_raw_seekable_read(u32 offset, u32 size, void *buf);
|
|
ulong spl_romapi_get_uboot_base(u32 image_offset, u32 rom_bt_dev);
|
|
enum bt_mode get_boot_mode(void);
|
|
int xrdc_config_pdac(u32 bridge, u32 index, u32 dom, u32 perm);
|
|
int xrdc_config_pdac_openacc(u32 bridge, u32 index);
|
|
enum boot_device get_boot_device(void);
|
|
void set_lpav_qos(void);
|
|
void load_lposc_fuse(void);
|
|
bool m33_image_booted(void);
|
|
int m33_image_handshake(ulong timeout_ms);
|
|
#endif
|