diff options
author | Simon Glass <sjg@chromium.org> | 2020-07-07 21:32:25 -0600 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2020-07-17 14:32:24 +0800 |
commit | eb2ebbcf56ec127f0e1b05b7bb22b63ee4af9dff (patch) | |
tree | 5f59c5ebf2a04df62647ddfb9c832751998a7c38 /arch/x86/lib/fsp2 | |
parent | 31b410a68c706a12b36773d025a649c23cdfdb72 (diff) |
x86: apl: Use memory-mapped access for VBT
Use the new binman memory-mapping function to access the VBT, to simplify
the code.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/lib/fsp2')
-rw-r--r-- | arch/x86/lib/fsp2/fsp_silicon_init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/lib/fsp2/fsp_silicon_init.c b/arch/x86/lib/fsp2/fsp_silicon_init.c index 45c0c7d90b..0f221a864f 100644 --- a/arch/x86/lib/fsp2/fsp_silicon_init.c +++ b/arch/x86/lib/fsp2/fsp_silicon_init.c @@ -32,6 +32,7 @@ int fsp_silicon_init(bool s3wake, bool use_spi_flash) &rom_offset); if (ret) return log_msg_ret("locate FSP", ret); + binman_set_rom_offset(rom_offset); gd->arch.fsp_s_hdr = hdr; /* Copy over the default config */ |