summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuncan Laurie <dlaurie@chromium.org>2015-07-20 17:05:52 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-07-21 04:50:29 +0000
commit23769544293077e40815ce9f9bd2cf75b8ccf287 (patch)
treeee2cf3839551a11c90e4487060386f4fab97764f
parent5f16cceb3eca2d20b15531234256fd3e788ecbbc (diff)
downloadvboot-23769544293077e40815ce9f9bd2cf75b8ccf287.tar.gz
crossystem: Add skylake platform IDs
Add the skylake-u and skylake-y vendor/device IDs so it can be reported by crossystem. BUG=chrome-os-partner:42560 BRANCH=none TEST=run "crossystem platform_family" on glados Change-Id: I5f9b92d404166e56d77cf8b0cd627a3a0b63bedf Signed-off-by: Duncan Laurie <dlaurie@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/286921 Reviewed-by: Aaron Durbin <adurbin@chromium.org>
-rw-r--r--host/arch/x86/lib/crossystem_arch.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/host/arch/x86/lib/crossystem_arch.c b/host/arch/x86/lib/crossystem_arch.c
index 18d557e5..64f014da 100644
--- a/host/arch/x86/lib/crossystem_arch.c
+++ b/host/arch/x86/lib/crossystem_arch.c
@@ -116,6 +116,8 @@ const PlatformFamily platform_family_array[] = {
{0x8086, 0x0f00, "BayTrail"}, /* mobile */
{0x8086, 0x1604, "Broadwell"}, /* ult */
{0x8086, 0x2280, "Braswell"}, /* ult */
+ {0x8086, 0x1904, "Skylake"}, /* skylake-u */
+ {0x8086, 0x190c, "Skylake"}, /* skylake-y */
/* Terminate with NULL entry */
{0, 0, 0}
};