mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
c21fadfe17
The DRAM is available at this point, so setup the temporary stack and call the C function to reduce the code duplication a bit. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
14 lines
299 B
ArmAsm
14 lines
299 B
ArmAsm
/*
|
|
* Copyright (C) 2015 Socionext Inc.
|
|
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <linux/linkage.h>
|
|
|
|
ENTRY(lowlevel_init)
|
|
ldr sp, = CONFIG_SYS_INIT_SP_ADDR
|
|
b uniphier_cache_disable
|
|
ENDPROC(lowlevel_init)
|