14 lines
299 B
ArmAsm
14 lines
299 B
ArmAsm
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
/*
|
||
|
* Copyright (C) 2015 Socionext Inc.
|
||
|
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
#include <linux/linkage.h>
|
||
|
|
||
|
ENTRY(lowlevel_init)
|
||
|
ldr sp, = CONFIG_SYS_INIT_SP_ADDR
|
||
|
b uniphier_cache_disable
|
||
|
ENDPROC(lowlevel_init)
|