summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2021-11-01 13:40:14 -0600
committerRaul Rangel <rrangel@chromium.org>2021-11-15 16:16:02 +0000
commita3811fe5e74575cc6173f8e2fc153c6f9884f89c (patch)
tree20d4e580ec6e35202a54af1431b64cd75fed20fb /src/include
parentb5811c0b487ac6e5a12b69c5c2db7c6839f48fc0 (diff)
downloadcoreboot-a3811fe5e74575cc6173f8e2fc153c6f9884f89c.tar.gz
coreboot-a3811fe5e74575cc6173f8e2fc153c6f9884f89c.tar.bz2
coreboot-a3811fe5e74575cc6173f8e2fc153c6f9884f89c.zip
device/pci_rom: Add vga_oprom_preload
This method will allow preloading the VGA_BIOS_FILE. By preloading the file, into cbfs_cache we reduce boot time. In the future we can also add support for loading the second VGA_BIOS_FILE and the DGPU VGA_BIOS_FILE. BUG=b:179699789 TEST=Boot guybrush to OS and verify 12 ms reduction in boot time Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: Icb54fe3a942e9507ff6f1173ba5620a8f4ce6549 Reviewed-on: https://review.coreboot.org/c/coreboot/+/56581 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Rob Barnes <robbarnes@google.com>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/device/pci_rom.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/device/pci_rom.h b/src/include/device/pci_rom.h
index 8b04d0998718..25bca4003aca 100644
--- a/src/include/device/pci_rom.h
+++ b/src/include/device/pci_rom.h
@@ -35,6 +35,7 @@ struct pci_data {
uint16_t reserved_2;
};
+void vga_oprom_preload(void);
struct rom_header *pci_rom_probe(const struct device *dev);
struct rom_header *pci_rom_load(struct device *dev,
struct rom_header *rom_header);