diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-07-16 20:51:08 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-07-17 21:32:59 +0000 |
commit | d5b51beb797700f83f6d894e83679739280d8f11 (patch) | |
tree | 9671ba734218f26227355c477b3204ff34ea1727 /src/soc/amd/cezanne/include | |
parent | 81d367feee138798f57ec1217209cb1c28244daa (diff) |
soc/amd/cezanne/graphics: add VBIOS ID remapping for Barcelo
Barcelo uses the same VBIOS image as Cezanne, but uses a different PCI
ID, so we need to implement map_oprom_vendev for the SoC.
BUG=b:193888172
Change-Id: I2eed43705f497245bd953659844b3fb461aa0b3b
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56392
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Nikolai Vyssotski <nikolai.vyssotski@amd.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/cezanne/include')
-rw-r--r-- | src/soc/amd/cezanne/include/soc/cpu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/amd/cezanne/include/soc/cpu.h b/src/soc/amd/cezanne/include/soc/cpu.h index 27647adbd1..926fd05de7 100644 --- a/src/soc/amd/cezanne/include/soc/cpu.h +++ b/src/soc/amd/cezanne/include/soc/cpu.h @@ -5,4 +5,7 @@ #define CEZANNE_A0_CPUID 0x00a50f00 +#define CEZANNE_VBIOS_VID_DID 0x10021638 +#define BARCELO_VBIOS_VID_DID 0x100215e7 + #endif /* AMD_CEZANNE_CPU_H */ |