]> git.baikalelectronics.ru Git - uboot.git/commit
sunxi: Fix old GMAC pinmux setup
authorAndre Przywara <andre.przywara@arm.com>
Tue, 15 Mar 2022 00:00:53 +0000 (00:00 +0000)
committerAndre Przywara <andre.przywara@arm.com>
Sat, 26 Mar 2022 00:16:06 +0000 (00:16 +0000)
commit17b562790c247f1dbdbc2ee27e20b1612616f88e
tree96a2cc9422370651d824e9d7eaae92f199a0178d
parentd8c14fda71d925896f050e5803d1b7fddb4319a1
sunxi: Fix old GMAC pinmux setup

Commit db9a2b7c1a93 ("sunxi: move non-essential code out of s_init()")
moved the call to eth_init_board() from s_init() into board_init_f().
This means it's now only called from the SPL, which makes sense for
most of the other moved low-level functions. However the GMAC pinmux and
clock setup in eth_init_board() was not happy about that, so it broke
the sun7i GMAC.

Since Ethernet is of no use in the SPL anyway, just move the call into
board_init(), which is only run in U-Boot proper.

This fixes Ethernet operation for the A20 SoCs, which broke in
v2022.04-rc1, with the above mentioned commit.

Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Reviewed-by: Jernej Skrabec <jernej.skrabec@gmail.com>
Tested-by: Petr Štetiar <ynezz@true.cz> [a20-olinuxino-lime2]
arch/arm/mach-sunxi/board.c
board/sunxi/board.c