summaryrefslogtreecommitdiffstats
path: root/src/mainboard
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2022-09-01 14:41:09 +0200
committerPaul Fagerburg <pfagerburg@chromium.org>2022-09-19 14:53:01 +0000
commitd6695626631a86d9613ea7c34ff0e898fbfa443c (patch)
tree3d6243b3fafc6132604041aa4e951e88c2e44abc /src/mainboard
parent1075fef4459c96375c1a0b7e5f63e47fee11d509 (diff)
downloadcoreboot-d6695626631a86d9613ea7c34ff0e898fbfa443c.tar.gz
coreboot-d6695626631a86d9613ea7c34ff0e898fbfa443c.tar.bz2
coreboot-d6695626631a86d9613ea7c34ff0e898fbfa443c.zip
mb/prodrive/hermes: Add part numbers to SMBIOS
Adjust the EEPROM layout to account for two new fields: board part number and product part number. In addition, put them in a Type 11 SMBIOS table (OEM Strings). TODO: This currently stores the "raw" part numbers, should we add a prefix to the SMBIOS strings? Change-Id: I85fb9dc75f231004ccce2a55ebd9d7a4867fcb93 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/67276 Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard')
-rw-r--r--src/mainboard/prodrive/hermes/eeprom.h5
-rw-r--r--src/mainboard/prodrive/hermes/mainboard.c7
2 files changed, 11 insertions, 1 deletions
diff --git a/src/mainboard/prodrive/hermes/eeprom.h b/src/mainboard/prodrive/hermes/eeprom.h
index 2f7eac7253d9..ac127806bf86 100644
--- a/src/mainboard/prodrive/hermes/eeprom.h
+++ b/src/mainboard/prodrive/hermes/eeprom.h
@@ -86,7 +86,10 @@ struct __packed eeprom_layout {
};
char system_serial_number[HERMES_SERIAL_NUMBER_LENGTH];
char board_serial_number[HERMES_SERIAL_NUMBER_LENGTH];
- uint8_t boot_order[0x8c0];
+ uint8_t boot_order[0x200];
+ char board_part_number[HERMES_SERIAL_NUMBER_LENGTH];
+ char product_part_number[HERMES_SERIAL_NUMBER_LENGTH];
+ uint8_t unused[0x680];
union {
uint8_t raw_board_settings[0xf8];
struct eeprom_board_settings board_settings;
diff --git a/src/mainboard/prodrive/hermes/mainboard.c b/src/mainboard/prodrive/hermes/mainboard.c
index 2f0de618438c..bf568abf54c7 100644
--- a/src/mainboard/prodrive/hermes/mainboard.c
+++ b/src/mainboard/prodrive/hermes/mainboard.c
@@ -174,6 +174,12 @@ static void mainboard_final(struct device *dev)
pmc_soc_set_afterg3_en(on);
}
+static void mainboard_smbios_strings(struct device *dev, struct smbios_type11 *t)
+{
+ t->count = smbios_add_string(t->eos, eeprom_read_serial(board_part_number, "N/A"));
+ t->count = smbios_add_string(t->eos, eeprom_read_serial(product_part_number, "N/A"));
+}
+
#if CONFIG(HAVE_ACPI_TABLES)
static void mainboard_acpi_fill_ssdt(const struct device *dev)
{
@@ -219,6 +225,7 @@ static void mainboard_enable(struct device *dev)
mb_usb2_fp2_pwr_enable(1);
dev->ops->final = mainboard_final;
+ dev->ops->get_smbios_strings = mainboard_smbios_strings;
#if CONFIG(HAVE_ACPI_TABLES)
dev->ops->acpi_fill_ssdt = mainboard_acpi_fill_ssdt;