summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2023-03-24 22:49:48 +0100
committerFelix Held <felix-coreboot@felixheld.de>2023-03-28 15:13:40 +0000
commit0b03c08223d03515646787b9339c0c5104f020a5 (patch)
tree90892960a9bc54831dc17af16979c3b4efb7e166
parentffc5a1ce301b2feae6f5ee7cc6480dce18db9b81 (diff)
downloadcoreboot-0b03c08223d03515646787b9339c0c5104f020a5.tar.gz
coreboot-0b03c08223d03515646787b9339c0c5104f020a5.tar.bz2
coreboot-0b03c08223d03515646787b9339c0c5104f020a5.zip
soc/amd/stoneyridge/Kconfig: use correct VGA_BIOS_ID
Fix the VGA_BIOS_ID IDs to match the PCI IDs in the VBIOS binaries and the PCI ID Stoneyidge's map_oprom_vendev returns. This fixes the problem that the display wasn't initialized due to not finding the VBIOS file in CBFS. This bug in the Stoneyridge Kconfig was unmasked by commit 42f0396a1028 ("device/pci_rom: rework PCI ID remapping in pci_rom_probe"). TEST=Display in Careena lights up again. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I4d1e6a3a65d7d7b07f49df9ce90620b79d9a2d78 Reviewed-on: https://review.coreboot.org/c/coreboot/+/74019 Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
-rw-r--r--src/soc/amd/stoneyridge/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/amd/stoneyridge/Kconfig b/src/soc/amd/stoneyridge/Kconfig
index 6e1deb1a2cab..8cc67ff8c3ee 100644
--- a/src/soc/amd/stoneyridge/Kconfig
+++ b/src/soc/amd/stoneyridge/Kconfig
@@ -136,8 +136,8 @@ config ECAM_MMCONF_BUS_NUMBER
config VGA_BIOS_ID
string
- default "1002,9874" if AMD_APU_MERLINFALCON
- default "1002,98e4"
+ default "1002,9870" if AMD_APU_MERLINFALCON
+ default "1002,98e0"
help
The default VGA BIOS PCI vendor/device ID should be set to the
result of the map_oprom_vendev() function in northbridge.c.