mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
331d40d701
Add i.MX8ULP cpu type and helpers. Signed-off-by: Peng Fan <peng.fan@nxp.com>
11 lines
174 B
C
11 lines
174 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2021 NXP
|
|
*/
|
|
|
|
#include <asm/arch/sys_proto.h>
|
|
|
|
u32 get_cpu_rev(void)
|
|
{
|
|
return (MXC_CPU_IMX8ULP << 12) | CHIP_REV_1_0;
|
|
}
|