diff options
| author | Tom Rini <trini@konsulko.com> | 2020-07-09 09:54:22 -0400 | 
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2020-07-09 09:54:22 -0400 | 
| commit | 506d52308a2f5de48c2b9a08229fee9a0ee2842a (patch) | |
| tree | d0d96d1fac8c0912155941f8b684f8654ce27d50 /arch/x86/lib/fsp2/fsp_meminit.c | |
| parent | d9107930af63d88c2d84560db19e65f1a51c4cbd (diff) | |
| parent | db17e40ccab6526a9db6ffdd071182a37dd888eb (diff) | |
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-x86
- Add two- and three-argument versions of CONFIG_IS_ENABLED in
  linux/kconfig.h
- Adds a new feature which supports copying modified parts of
  the frame buffer to the uncached hardware buffer
- Enable the copy framebuffer on various x86 targets
Diffstat (limited to 'arch/x86/lib/fsp2/fsp_meminit.c')
| -rw-r--r-- | arch/x86/lib/fsp2/fsp_meminit.c | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/arch/x86/lib/fsp2/fsp_meminit.c b/arch/x86/lib/fsp2/fsp_meminit.c index 1a758147b08..faf9c29aef7 100644 --- a/arch/x86/lib/fsp2/fsp_meminit.c +++ b/arch/x86/lib/fsp2/fsp_meminit.c @@ -85,6 +85,7 @@ int fsp_memory_init(bool s3wake, bool use_spi_flash)  	func = (fsp_memory_init_func)(hdr->img_base + hdr->fsp_mem_init);  	ret = func(&upd, &hob);  	bootstage_accum(BOOTSTAGE_ID_ACCUM_FSP_M); +	cpu_reinit_fpu();  	if (ret)  		return log_msg_ret("SDRAM init fail\n", ret); | 
