Re: [U-Boot] [PATCH v2] arm: socfpga: gen5: don't zero bss in board_init_f()

2019-08-14 Thread Marek Vasut
On 8/14/19 8:56 PM, Simon Goldschmidt wrote: > Marek, > > Am 12.07.2019 um 20:03 schrieb Simon Goldschmidt: >> The socfpga gen5 SPL manually zeroed bss in board_init_f(). Now that the >> DDR driver does not use bss any more, bss is not used before >> board_init_r() >> and we can remove this hack.

Re: [U-Boot] [PATCH v2] arm: socfpga: gen5: don't zero bss in board_init_f()

2019-08-14 Thread Simon Goldschmidt
Marek, Am 12.07.2019 um 20:03 schrieb Simon Goldschmidt: The socfpga gen5 SPL manually zeroed bss in board_init_f(). Now that the DDR driver does not use bss any more, bss is not used before board_init_r() and we can remove this hack. bss is normally zeroed by crt0.S, but after board_init_f(),

[U-Boot] [PATCH v2] arm: socfpga: gen5: don't zero bss in board_init_f()

2019-07-12 Thread Simon Goldschmidt
The socfpga gen5 SPL manually zeroed bss in board_init_f(). Now that the DDR driver does not use bss any more, bss is not used before board_init_r() and we can remove this hack. bss is normally zeroed by crt0.S, but after board_init_f(), before board_init_r(). socfpga just had this double-zeroing