mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-13 16:37:30 +00:00
107b3fb484
These headers are only included locally in arch/arm/mach-uniphier/. There is no reason to export them by putting in the mach/ directory. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
18 lines
332 B
ArmAsm
18 lines
332 B
ArmAsm
/*
|
|
* Copyright (C) 2015 Socionext Inc.
|
|
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include "ssc-regs.h"
|
|
|
|
ENTRY(lowlevel_init)
|
|
ldr r1, = SSCC
|
|
ldr r0, [r1]
|
|
bic r0, r0, #SSCC_ON @ L2 disable
|
|
str r0, [r1]
|
|
mov pc, lr
|
|
ENDPROC(lowlevel_init)
|