- 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 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJbt0FOAAoJECaAFcEOcohNZmcH/A1mKO0/R4tHCqFP2j0I+OuP PClkA1HUZuD5phvPMaxdHQBwsq7sAa8AljK1oPCNkslP7mFxToUUBx7xc0vB89P/ D+XsI4uce89hIyTULR2FdhR22MOk41zaLVeNicpQ1keCNbzCwsHsHTA+B4XN/xNe tdPpu6wN2D+g88DAv+/ebVYgjmxRvFD4qpL9bbZpOqqA8XCcD31ukCR2E4fsESgn mzwKaKcX6SeYgTVCT8Q15SLTNI1WRUY1Y1laj1WKl4abY+HsTt4Whm9imM2l3K5W ODj6vnFlwEC9rgdxmtXGcmBfwtyXubSfuZDrMGFAiOlyIUgpPXWZI7i8LYQbZ7s= =NdBl -----END PGP SIGNATURE----- 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>lime2-spi
commit
a4b38fca7e
@ -0,0 +1,50 @@ |
||||
/* |
||||
* Copyright (C) 2017 Rockchip Electronic Co.,Ltd |
||||
* |
||||
* Simple U-boot fit source file containing U-Boot, dtb and optee |
||||
*/ |
||||
|
||||
/dts-v1/; |
||||
|
||||
/ { |
||||
description = "Simple image with OP-TEE support"; |
||||
#address-cells = <1>; |
||||
|
||||
images { |
||||
uboot@1 { |
||||
description = "U-Boot"; |
||||
data = /incbin/("../../../u-boot-nodtb.bin"); |
||||
type = "standalone"; |
||||
os = "U-Boot"; |
||||
arch = "arm"; |
||||
compression = "none"; |
||||
load = <0x61000000>; |
||||
}; |
||||
optee@1 { |
||||
description = "OP-TEE"; |
||||
data = /incbin/("../../../tee.bin"); |
||||
type = "firmware"; |
||||
arch = "arm"; |
||||
os = "tee"; |
||||
compression = "none"; |
||||
load = <0x68400000>; |
||||
entry = <0x68400000>; |
||||
}; |
||||
fdt@1 { |
||||
description = "dtb"; |
||||
data = /incbin/("../../../u-boot.dtb"); |
||||
type = "flat_dt"; |
||||
compression = "none"; |
||||
}; |
||||
}; |
||||
|
||||
configurations { |
||||
default = "conf@1"; |
||||
conf@1 { |
||||
description = "Rockchip armv7 with OP-TEE"; |
||||
firmware = "optee@1"; |
||||
loadables = "uboot@1"; |
||||
fdt = "fdt@1"; |
||||
}; |
||||
}; |
||||
}; |
@ -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) |
Loading…
Reference in new issue