]> git.dujemihanovic.xyz Git - u-boot.git/commit
rockchip: rk3399-roc-pc: Fix SPL max size and SPI flash payload offset
authorJonas Karlman <jonas@kwiboo.se>
Fri, 28 Jul 2023 11:38:38 +0000 (11:38 +0000)
committerKever Yang <kever.yang@rock-chips.com>
Mon, 31 Jul 2023 09:34:43 +0000 (17:34 +0800)
commitee75f168680669180b1e2eb14de71b8c6e3f7973
treea7b8959352fdf58aad58f44cb151a58bacf99025
parent263f81d3a509e09289c3eba2f7cd0b49eb9f5145
rockchip: rk3399-roc-pc: Fix SPL max size and SPI flash payload offset

TPL max size is limited to 184 KB, SPL is loaded to 0x0 and TF-A is
loaded to 0x40000, this limit SPL max size to 256 KB. With BootRom only
reading first 2 KB per 4 KB page of SPI flash, 880 KB may be needed for
TPL+SPL in a worst-case scenario. (184 KB + 256 KB) x 2 = 880 KB

Use 0xE0000 (896 KB) as the payload offset in SPI flash, this allows
for a payload of 3168 KB before env offset start to overlap.

Also add CONFIG_ROCKCHIP_SPI_IMAGE=y to build a bootable SPI flash
image, u-boot-rockchip-spi.bin.

Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Reviewed-by: Quentin Schulz <foss+u-boot@0leil.net>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
arch/arm/dts/rk3399-roc-pc-u-boot.dtsi
configs/roc-pc-mezzanine-rk3399_defconfig
configs/roc-pc-rk3399_defconfig