Gregory CLEMENT | af05ee5 | 2018-12-14 16:16:47 +0100 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */ |
2 | /* | ||||
3 | * Copyright (c) 2018 Microsemi Corporation | ||||
4 | */ | ||||
5 | |||||
6 | #include <asm/asm.h> | ||||
7 | #include <asm/regdef.h> | ||||
8 | |||||
9 | .set noreorder | ||||
10 | .extern vcoreiii_tlb_init | ||||
11 | |||||
12 | LEAF(lowlevel_init) | ||||
13 | /* | ||||
14 | * As we have no stack yet, we can assume the restricted | ||||
15 | * luxury of the sX-registers without saving them | ||||
16 | */ | ||||
17 | move s0,ra | ||||
18 | |||||
19 | jal vcoreiii_tlb_init | ||||
20 | nop | ||||
21 | jr s0 | ||||
22 | nop | ||||
23 | END(lowlevel_init) |