]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/mach-uniphier/arm32/late_lowlevel_init.S
splash: Introduce default_splash_locations
[people/ms/u-boot.git] / arch / arm / mach-uniphier / arm32 / late_lowlevel_init.S
1 /*
2 * Copyright (C) 2015 Socionext Inc.
3 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8 #include <linux/linkage.h>
9
10 #include "ssc-regs.h"
11
12 ENTRY(lowlevel_init)
13 ldr r1, = SSCC
14 ldr r0, [r1]
15 bic r0, r0, #SSCC_ON @ L2 disable
16 str r0, [r1]
17 mov pc, lr
18 ENDPROC(lowlevel_init)