Attention is currently required from: Anjaneya "Reddy" Chagam, Jonathan Zhang, Morgan Jang. Johnny Lin has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/49894 )
Change subject: mb/ocp/deltalake: Override maximum memory capacity and device number ......................................................................
mb/ocp/deltalake: Override maximum memory capacity and device number
Tested=On OCP Delta Lake, dmidecode -t 16 to verify.
Change-Id: I44d9a2a2036c16ac5a006e400a2c4e6e58e09982 Signed-off-by: Johnny Lin johnny_lin@wiwynn.com --- M src/mainboard/ocp/deltalake/romstage.c 1 file changed, 10 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/94/49894/1
diff --git a/src/mainboard/ocp/deltalake/romstage.c b/src/mainboard/ocp/deltalake/romstage.c index 9b182a21..712d0da 100644 --- a/src/mainboard/ocp/deltalake/romstage.c +++ b/src/mainboard/ocp/deltalake/romstage.c @@ -12,6 +12,16 @@ #include "ipmi.h" #include "vpd.h"
+uint32_t mainboard_memory_max_capacity_mib(void) +{ + return 1.12 * MiB; /* According to Dear Customer Letter it's 1.12 TB */ +} + +uint16_t mainboard_memory_max_number_of_devices(void) +{ + return 6; +} + /* * Search from VPD_RW first then VPD_RO for UPD config variables, * overwrites them from VPD if it's found.