mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-17 00:33:06 +00:00
f3272355cd
In both SPL and u-boot, after probing the S400 MU, get the chip revision, lifecycle and UID from Sentinel. Update get_cpu_rev to use the chip revision not hard coded it for A0 Signed-off-by: Ye Li <ye.li@nxp.com> Reviewed-by: Peng Fan <peng.fan@nxp.com>
19 lines
493 B
C
19 lines
493 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>
|
|
|
|
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);
|
|
void set_lpav_qos(void);
|
|
void load_lposc_fuse(void);
|
|
bool m33_image_booted(void);
|
|
int m33_image_handshake(ulong timeout_ms);
|
|
int imx8ulp_dm_post_init(void);
|
|
#endif
|