diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2019-05-27 02:09:24 -0500 |
---|---|---|
committer | Matt DeVillier <matt.devillier@gmail.com> | 2019-06-02 22:26:34 +0000 |
commit | 0da3a8a91bdfa97f658286717c9e6af0fcd69fe6 (patch) | |
tree | 6fb1c3d15b58e19610d5c5c8f9c966f00af220da /src/soc/intel/baytrail/Kconfig | |
parent | a82f991122b199bcdaf51eb93dcdcd81825de2bf (diff) |
soc/intel/baytrail: set default VBIOS filename and PCI ID
All Baytrail boards have the same GPU PCI ID, so set it
here to avoid having to set it in each board's config.
Move the VGA_BIOS_FILE config from google/rambi into soc/baytrail
since it likewise applies to all Baytrail boards.
Change-Id: Id1e0580b55e3590d868cb839987f06c49bb07cf5
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33026
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/baytrail/Kconfig')
-rw-r--r-- | src/soc/intel/baytrail/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/soc/intel/baytrail/Kconfig b/src/soc/intel/baytrail/Kconfig index 03ad31d41f..43c2906f15 100644 --- a/src/soc/intel/baytrail/Kconfig +++ b/src/soc/intel/baytrail/Kconfig @@ -168,4 +168,14 @@ config REFCODE_BLOB_FILE endif # HAVE_REFCODE_BLOB +config VGA_BIOS_ID + string + depends on VGA_BIOS + default "8086,0f31" + +config VGA_BIOS_FILE + string + depends on VGA_BIOS + default "pci8086,0f31.rom" + endif |