aboutsummaryrefslogtreecommitdiff
path: root/common/spl/spl_optee.S
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2018-10-05 10:16:46 -0400
committerTom Rini <trini@konsulko.com>2018-10-05 13:40:42 -0400
commita4b38fca7e83f0556c0afc96492741e4464444df (patch)
tree9be8746db8e6a1e9488b40aa347381684175025a /common/spl/spl_optee.S
parent46031b3aa08814f797a379356750aa5fb94cd3f7 (diff)
parentf25c1755a715d0d1794bd0827549367c20182501 (diff)
downloadu-boot-a4b38fca7e83f0556c0afc96492741e4464444df.zip
u-boot-a4b38fca7e83f0556c0afc96492741e4464444df.tar.gz
u-boot-a4b38fca7e83f0556c0afc96492741e4464444df.tar.bz2
Merge tag 'rockchip-for-v2018.11-rc2' of git://git.denx.de/u-boot-rockchip
Rockchip-focused changes for v2018.11-rc2: - fixes to rkimage for SPL boot via USB - fixes to make_fit_atf.py, incl. entry-point calculation and python3 compatibility - OP-TEE support for ARMv7-based SoCs - fixes to RGMII/GMII selection on the RK3328 Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common/spl/spl_optee.S')
-rw-r--r--common/spl/spl_optee.S12
1 files changed, 12 insertions, 0 deletions
diff --git a/common/spl/spl_optee.S b/common/spl/spl_optee.S
new file mode 100644
index 0000000..8bd1949
--- /dev/null
+++ b/common/spl/spl_optee.S
@@ -0,0 +1,12 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Copyright (C) 2017 Rockchip Electronic Co.,Ltd
+ */
+
+#include <linux/linkage.h>
+#include <asm/assembler.h>
+
+ENTRY(spl_optee_entry)
+ ldr lr, =CONFIG_SYS_TEXT_BASE
+ mov pc, r3
+ENDPROC(spl_optee_entry)