diff options
author | Shelley Chen <shchen@chromium.org> | 2018-03-07 14:22:28 -0800 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2018-03-08 20:38:19 +0000 |
commit | 467cce4d1c9d366ca0830a9add8c0a02396dab36 (patch) | |
tree | edd1211d6cde07616721254c9bd7125142bcbd78 /src | |
parent | a51e379eaff3652dc64e23bb0d3784222a38723a (diff) | |
download | coreboot-467cce4d1c9d366ca0830a9add8c0a02396dab36.tar.xz |
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>
Reviewed-on: https://review.coreboot.org/25028
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/google/poppy/variants/nami/mainboard.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/mainboard/google/poppy/variants/nami/mainboard.c b/src/mainboard/google/poppy/variants/nami/mainboard.c index 5b3e2ea6a6..e2bc8958a3 100644 --- a/src/mainboard/google/poppy/variants/nami/mainboard.c +++ b/src/mainboard/google/poppy/variants/nami/mainboard.c @@ -13,10 +13,15 @@ * GNU General Public License for more details. */ +#include <arch/cpu.h> +#include <assert.h> +#include <baseboard/variants.h> #include <chip.h> #include <device/device.h> #include <ec/google/chromeec/ec.h> -#include <baseboard/variants.h> +#include <smbios.h> +#include <soc/ramstage.h> +#include <string.h> #define SKU_UNKNOWN 0xFFFF #define SKU_0_NAMI 0x3A7B @@ -49,3 +54,12 @@ void variant_devtree_update(void) break; } } + +const char *smbios_mainboard_sku(void) +{ + static char sku_str[9]; /* sku{0..65535} (basically up to FFFF) */ + + snprintf(sku_str, sizeof(sku_str), "sku%d", board_sku_id()); + + return sku_str; +} |