blob: 463ab0de1bddfe5d19991ea33dce5c097a35a3bf [file] [log] [blame]
Lokesh Vutlaceadc3e2018-11-15 11:04:50 +05301/* SPDX-License-Identifier: GPL-2.0+ */
2/*
Nishanth Menoneaa39c62023-11-01 15:56:03 -05003 * Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com/
Lokesh Vutlaceadc3e2018-11-15 11:04:50 +05304 * Lokesh Vutla <lokeshvutla@ti.com>
5 */
6
7#include <linux/linkage.h>
8
9ENTRY(lowlevel_init)
10
11 mrc p15, 0, r0, c0, c0, 5 @ Read MPIDR
12 and r0, #0xff
13 cmp r0, #0x0
14 bne park_cpu
15 bx lr
16park_cpu:
17 wfi
18 b park_cpu
19
20ENDPROC(lowlevel_init)