mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-04 07:17:17 +00:00
This makes it clear these are only to be used by the R5 builds of SPL. And this will be used to later more cleanly split the two builds. Signed-off-by: Andrew Davis <afd@ti.com>
20 lines
352 B
ArmAsm
20 lines
352 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com/
|
|
* Lokesh Vutla <lokeshvutla@ti.com>
|
|
*/
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
ENTRY(lowlevel_init)
|
|
|
|
mrc p15, 0, r0, c0, c0, 5 @ Read MPIDR
|
|
and r0, #0xff
|
|
cmp r0, #0x0
|
|
bne park_cpu
|
|
bx lr
|
|
park_cpu:
|
|
wfi
|
|
b park_cpu
|
|
|
|
ENDPROC(lowlevel_init)
|