blob: f4e5cbbbd1cc719aecd5ae5f26800f3a30e1265f [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Masahiro Yamada8603a302017-05-12 22:49:02 +09002/*
3 * Copyright (C) 2017 Socionext Inc.
Masahiro Yamada8603a302017-05-12 22:49:02 +09004 */
5
6#include <linux/linkage.h>
7
8ENTRY(lowlevel_init)
9 /* LD20 needs the following code to boot. I do not know why. */
10 mrs x0, sctlr_el1
11 msr sctlr_el1, x0
12 ret
13ENDPROC(lowlevel_init)