Shelley Chen has uploaded this change for review. ( https://review.coreboot.org/25028
Change subject: mb/google/poppy/variants/nami: Define smbios_mainboard_sku to return SKU IDs ......................................................................
mb/google/poppy/variants/nami: Define smbios_mainboard_sku to return SKU IDs
Return proper SKU IDs so that mosys can return the proper variant.
BUG=b:74059798 BRANCH=None TEST=./util/abuild/abuild -p none -t google/poppy -x -a
Change-Id: I665fa491de6e277fea5cc071b1f04a21317bccba Signed-off-by: Shelley Chen shchen@chromium.org --- M src/mainboard/google/poppy/variants/nami/mainboard.c 1 file changed, 13 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/28/25028/1
diff --git a/src/mainboard/google/poppy/variants/nami/mainboard.c b/src/mainboard/google/poppy/variants/nami/mainboard.c index 0f2dc9b..44b952f 100644 --- a/src/mainboard/google/poppy/variants/nami/mainboard.c +++ b/src/mainboard/google/poppy/variants/nami/mainboard.c @@ -14,12 +14,14 @@ */
#include <arch/cpu.h> +#include <assert.h> +#include <baseboard/variants.h> #include <chip.h> #include <device/device.h> -#include <assert.h> #include <ec/google/chromeec/ec.h> +#include <smbios.h> #include <soc/ramstage.h> -#include <baseboard/variants.h> +#include <string.h>
#define SKU_0_Nami 0x3A7B #define SKU_1_Vayne 0x3A63 @@ -64,3 +66,12 @@ break; } } + +const char *smbios_mainboard_sku(void) +{ + static char sku_str[8]; /* sku{0..65535} (basically up to FFFF) */ + + snprintf(sku_str, sizeof(sku_str), "sku%d", board_sku_id()); + + return sku_str; +}