summaryrefslogtreecommitdiffstats
path: root/src/soc/amd/common/fsp
diff options
context:
space:
mode:
authorMartin Roth <gaumless@gmail.com>2022-10-29 16:00:57 -0600
committerFelix Held <felix-coreboot@felixheld.de>2022-11-04 01:00:22 +0000
commitb6877e401a8686ac6dfcebb1184ebdfabad6f3e6 (patch)
tree4406901ff3bad50166907a1467883a167765f297 /src/soc/amd/common/fsp
parentf2503fce3fbfa33fbb50b37a99234d96a83c6156 (diff)
downloadcoreboot-b6877e401a8686ac6dfcebb1184ebdfabad6f3e6.tar.gz
coreboot-b6877e401a8686ac6dfcebb1184ebdfabad6f3e6.tar.bz2
coreboot-b6877e401a8686ac6dfcebb1184ebdfabad6f3e6.zip
soc/amd/common: Only call into enabled memory types
Don't call into disabled memory type code, it won't work. Signed-off-by: Martin Roth <gaumless@gmail.com> Change-Id: Ie239039b3dd2b5d0a6f8e9230fd3466bb8309761 Reviewed-on: https://review.coreboot.org/c/coreboot/+/68993 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Sean Rhodes <sean@starlabs.systems> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/soc/amd/common/fsp')
-rw-r--r--src/soc/amd/common/fsp/dmi.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/soc/amd/common/fsp/dmi.c b/src/soc/amd/common/fsp/dmi.c
index b443fe253384..fd2a8e40645e 100644
--- a/src/soc/amd/common/fsp/dmi.c
+++ b/src/soc/amd/common/fsp/dmi.c
@@ -23,18 +23,17 @@
*/
static uint16_t ddr_speed_mhz_to_reported_mts(uint16_t ddr_type, uint16_t speed)
{
- switch (ddr_type) {
- case MEMORY_TYPE_DDR4:
+
+ if (CONFIG(USE_DDR4) && ddr_type == MEMORY_TYPE_DDR4)
return ddr4_speed_mhz_to_reported_mts(speed);
- case MEMORY_TYPE_LPDDR4:
+ else if (CONFIG(USE_LPDDR4) && ddr_type == MEMORY_TYPE_LPDDR4)
return lpddr4_speed_mhz_to_reported_mts(speed);
- case MEMORY_TYPE_DDR5:
- case MEMORY_TYPE_LPDDR5:
+ else if (CONFIG(USE_DDR5) && (ddr_type == MEMORY_TYPE_DDR5 ||
+ ddr_type == MEMORY_TYPE_LPDDR5))
return ddr5_speed_mhz_to_reported_mts(speed);
- default:
- printk(BIOS_ERR, "Unknown memory type %x\n", ddr_type);
- return 0;
- }
+
+ printk(BIOS_ERR, "Unknown memory type %x\n", ddr_type);
+ return 0;
}
/**