mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 10:48:51 +00:00
77c3b9cc98
Support print cpu info. the clock function has not been added, it will be added in following patches. Signed-off-by: Peng Fan <peng.fan@nxp.com>
14 lines
256 B
C
14 lines
256 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[];
|
|
|
|
enum bt_mode get_boot_mode(void);
|
|
#endif
|