1
2
3
4
5
6
7
8
9
10
11
12
13
14
| /*
| * 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)
|
|