diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2023-02-14 23:02:09 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-02-16 16:09:38 +0000 |
commit | e68ddc71ef4b01c746203fd0e72d99917c022244 (patch) | |
tree | 70b8cd07685ff0fb03eb1bcbae1fc8682db0f259 /src | |
parent | 30abfe5f02054d7a1bc36afd5348ec9ccbd9c16d (diff) | |
download | coreboot-e68ddc71ef4b01c746203fd0e72d99917c022244.tar.gz coreboot-e68ddc71ef4b01c746203fd0e72d99917c022244.tar.bz2 coreboot-e68ddc71ef4b01c746203fd0e72d99917c022244.zip |
soc/amd/mendocino/Kconfig: add VGA BIOS ID and file defaults
Add the correct defaults for VGA_BIOS_ID and VGA_BIOS_FILE in
Mendocino'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 Mendocino APU.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I09c537d3801123e7ffc01608171918b0396b7a5f
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73051
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/amd/mendocino/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/soc/amd/mendocino/Kconfig b/src/soc/amd/mendocino/Kconfig index ea3a892fe837..6fc73de102d5 100644 --- a/src/soc/amd/mendocino/Kconfig +++ b/src/soc/amd/mendocino/Kconfig @@ -257,6 +257,16 @@ config MAX_CPUS help Maximum number of threads the platform can have. +config VGA_BIOS_ID + string + default "1002,1506" if SOC_AMD_MENDOCINO + help + The default VGA BIOS PCI vendor/device ID of the GPU and VBIOS. + +config VGA_BIOS_FILE + string + default "3rdparty/amd_blobs/mendocino/MdnGenericVbios.bin" if SOC_AMD_MENDOCINO + config CONSOLE_UART_BASE_ADDRESS depends on CONSOLE_SERIAL && AMD_SOC_CONSOLE_UART hex |