mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 10:48:51 +00:00
6f3858d732
i.MX8ULP support using ROM API to load container image, it use same ROM API as i.MX8MN/MP, and use same container format as i.MX8QM/QXP. Signed-off-by: Ye Li <ye.li@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
16 lines
392 B
C
16 lines
392 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);
|
|
#endif
|