mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
13 lines
289 B
ArmAsm
13 lines
289 B
ArmAsm
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
|
||
|
#include <config.h>
|
||
|
#include <linux/linkage.h>
|
||
|
|
||
|
ENTRY(arch_very_early_init)
|
||
|
/* Move internal registers from KW_OFFSET_REG to KW_REGS_PHY_BASE */
|
||
|
ldr r0, =KW_REGS_PHY_BASE
|
||
|
ldr r1, =KW_OFFSET_REG
|
||
|
str r0, [r1]
|
||
|
bx lr
|
||
|
ENDPROC(arch_very_early_init)
|