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-23 16:36:44 +0000
commit71f398218da7294a2781e92d910dfda0e7e0e778 (patch)
treeee2cf3839551a11c90e4487060386f4fab97764f
parente659db50d9bfb27eb4370faf244a576abf5a6189 (diff)
downloadvboot-71f398218da7294a2781e92d910dfda0e7e0e778.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> Reviewed-on: https://chromium-review.googlesource.com/287616 Trybot-Ready: Furquan Shaikh <furquan@chromium.org> Tested-by: Furquan Shaikh <furquan@chromium.org> Reviewed-by: Furquan Shaikh <furquan@chromium.org> Commit-Queue: Furquan Shaikh <furquan@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}
};