mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
spl: Commit MTRRs only in board_init_f_r()
We don't need to commit the SPI-flash MTRR change immediately, since it is now done in the board_init_f_r(). Also this causes chromebook_link64 to hang, presumably since we are still running from CAR (Cache-as-RAM) in SPL. Coral handles this OK, perhaps since it is running from a different memory area, but it has no effect on Coral anyway. Drop the extra mtrr_commit() in the SPL implementation. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
80831b2a42
commit
50574d42cf
1 changed files with 0 additions and 1 deletions
|
@ -147,7 +147,6 @@ static int x86_spl_init(void)
|
|||
debug("%s: SPI cache setup failed (err=%d)\n", __func__, ret);
|
||||
return ret;
|
||||
}
|
||||
mtrr_commit(true);
|
||||
# else
|
||||
ret = syscon_get_by_driver_data(X86_SYSCON_PUNIT, &punit);
|
||||
if (ret)
|
||||
|
|
Loading…
Reference in a new issue