]> git.baikalelectronics.ru Git - uboot.git/commit
mips: mt76xx: Implement new d-cache fix in last_stage_init()
authorStefan Roese <sr@denx.de>
Tue, 28 May 2019 06:11:37 +0000 (08:11 +0200)
committerDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
Fri, 5 Jul 2019 15:12:27 +0000 (17:12 +0200)
commit4d58aa94b4af21e53650def4ec8a0b88ae177ac6
tree67ac32550bfaea1ba4534e6e3dd4634eed8abe24
parente9efd9e269c7546d693264a94a8983d38c31fbca
mips: mt76xx: Implement new d-cache fix in last_stage_init()

With commit 6644dfa93f24 ("watchdog: Implement generic watchdog_reset()
version") the init sequence has changed in arch_misc_init(), resulting
in a re-appearance of the d-cache issue on MT7688 boards (e.g. gardena).
When this happens, the first (or sometimes later ones as well) TFTP
command hangs and does not complete correctly. This leads to the
assumption that the d-cache is not in a clean state once the ethernet
driver is called (d-cache is used here for the buffers). The old work-
around with the cache flush somehow does not work any more now with
the new code change.

Unfortunately adding CONFIG_SYS_MALLOC_CLEAR_ON_INIT also did not fix
this issue. With v2019.07-rc3 it shows again. The time of accessing
the data seems to be very important here. It needs to be "very late"
in the boot process.

Testing has shown, that copying a 64KiB area in DDR at a very late
bootup time, directly before calling into the prompt, fixes this issue.
Flushing of the complete d-cache does not seem to necessary, as this
copy alone seems to fix this problem.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
arch/mips/Kconfig
arch/mips/mach-mtmips/cpu.c