]> git.dujemihanovic.xyz Git - u-boot.git/commit
sunxi: SPL SPI: Add SPI boot support for the Allwinner R528/T113 SoCs
authorMaksim Kiselev <bigunclemax@gmail.com>
Sat, 11 Nov 2023 13:33:07 +0000 (16:33 +0300)
committerAndre Przywara <andre.przywara@arm.com>
Sun, 21 Apr 2024 23:04:14 +0000 (00:04 +0100)
commit83d5e3c9e912ddd96076a6fccaa2dbf130fc5930
treea873c48d9ef7c0e4df4994e64a1c05898ec7f8f9
parentc08685289171e68afd4bae2eb2e279cdc49a407d
sunxi: SPL SPI: Add SPI boot support for the Allwinner R528/T113 SoCs

R528/T113 SoCs uses the same SPI IP as the H6, also have the same clocks
and reset bits layout, but the CCU base is different. Another difference
is that the new SoCs do not have a clock divider inside. Instead of this
we should configure sample mode depending on input clock rate.

The pin assignment is also different: the H6 uses PC0, the R528/T113 PC4
instead. This makes for a change in spi0_pinmux_setup() routine.

This patch extends the H6/H616 #ifdef guards to also cover the R528/T113,
using the shared CONFIG_SUNXI_GEN_NCAT2 and CONFIG_MACH_SUN8I_R528
symbols. Also use CONFIG_SUNXI_GEN_NCAT2 symbol for the Kconfig
dependency.

Signed-off-by: Maksim Kiselev <bigunclemax@gmail.com>
Tested-by: Sam Edwards <CFSworks@gmail.com>
arch/arm/mach-sunxi/Kconfig
arch/arm/mach-sunxi/spl_spi_sunxi.c