diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2023-02-14 22:39:29 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-02-16 16:09:18 +0000 |
commit | 30abfe5f02054d7a1bc36afd5348ec9ccbd9c16d (patch) | |
tree | a57d3e829f8bee65bc3cbd9a3408d43bc08b1a59 /src/soc/amd | |
parent | ff01442fc3a8dc926ba4f1d436a63a68ea88cd60 (diff) |
soc/amd/cezanne/Kconfig: add VGA BIOS ID and file defaults
Add the correct defaults for VGA_BIOS_ID and VGA_BIOS_FILE in Cezanne's
Kconfig instead of relying on the board's .config files providing the
correct settings. Those settings are per-SoC and not per-board, so this
is valid for all boards using the Cezanne APU.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I67101d518c6b873ad89932ae39c2deb2ed6a4c29
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73050
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Diffstat (limited to 'src/soc/amd')
-rw-r--r-- | src/soc/amd/cezanne/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/soc/amd/cezanne/Kconfig b/src/soc/amd/cezanne/Kconfig index e1ab7b855d..c73467a0ea 100644 --- a/src/soc/amd/cezanne/Kconfig +++ b/src/soc/amd/cezanne/Kconfig @@ -251,6 +251,17 @@ config MAX_CPUS help Maximum number of threads the platform can have. +config VGA_BIOS_ID + string + default "1002,1638" + help + The default VGA BIOS PCI vendor/device ID should be set to the + result of the map_oprom_vendev() function in grapthics.c. + +config VGA_BIOS_FILE + string + default "3rdparty/amd_blobs/cezanne/CezanneGenericVbios.bin" + config CONSOLE_UART_BASE_ADDRESS depends on CONSOLE_SERIAL && AMD_SOC_CONSOLE_UART hex |