]> git.baikalelectronics.ru Git - uboot.git/commit
powerpc/mpc8xx: Zero boot_flags arg for calling board_init_f()
authorChristophe Leroy <christophe.leroy@csgroup.eu>
Sat, 28 Jan 2023 12:53:10 +0000 (13:53 +0100)
committerChristophe Leroy <christophe.leroy@csgroup.eu>
Fri, 10 Feb 2023 18:31:36 +0000 (19:31 +0100)
commit7e4c096cb4599f448d8f16fcc4b5a5eb73a43002
treebe2ce9fc805feb143b45a374d0d3648922b10162
parent8592fe758c3b204944089a2d50bade44dbd27e79
powerpc/mpc8xx: Zero boot_flags arg for calling board_init_f()

Copied from e83a7e94532 ("powerpc/mpc83xx: Zero boot_flags arg for
calling board_init_f()")

The argument boot_flags of board_init_f() is not used at all in the
powerpc specific board.c init sequence. Now with the generic init
sequence, this boot_flags arg is used by board_init_f().

This patch sets the r3 register that is used to pass the boot_flags
argument from the start.S board_init_f() call to 0 prior to the function
call to avoid unknown content to end up in gd->flags.

Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Fixes: 09f3ca3dd53 ("arm, powerpc: select SYS_GENERIC_BOARD")
arch/powerpc/cpu/mpc8xx/start.S