From: Thomas Kaiser Date: Sun, 18 Feb 2024 23:16:54 +0000 (+0100) Subject: Add Microsoft as vendor and Cobalt 100 core X-Git-Tag: v2.42-start~528^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7712004e1306fdd0f6931ac110f5238fd3bf86f5;p=thirdparty%2Futil-linux.git Add Microsoft as vendor and Cobalt 100 core https://lore.kernel.org/linux-arm-kernel/b99a7196-011e-4f08-83ec-e63a690ab919@linux.microsoft.com/T/ --- diff --git a/sys-utils/lscpu-arm.c b/sys-utils/lscpu-arm.c index 24bbeb23d..511ab281c 100644 --- a/sys-utils/lscpu-arm.c +++ b/sys-utils/lscpu-arm.c @@ -273,6 +273,11 @@ static const struct id_part ft_part[] = { { -1, "unknown" }, }; +static const struct id_part ms_part[] = { + { 0xd49, "Azure-Cobalt-100" }, + { -1, "unknown" }, +}; + static const struct id_part unknown_part[] = { { -1, "unknown" }, }; @@ -300,6 +305,7 @@ static const struct hw_impl hw_implementer[] = { { 0x61, apple_part, "Apple" }, { 0x66, faraday_part, "Faraday" }, { 0x69, intel_part, "Intel" }, + { 0x6d, ms_part, "Microsoft" }, { 0x70, ft_part, "Phytium" }, { 0xc0, ampere_part, "Ampere" }, { -1, unknown_part, "unknown" },