diff options
author | Duncan Laurie <dlaurie@chromium.org> | 2013-05-21 11:20:18 -0700 |
---|---|---|
committer | ChromeBot <chrome-bot@google.com> | 2013-05-23 10:02:24 -0700 |
commit | 7e3f8601ba7240c86581f9bcfb6cb4c38f2ebb44 (patch) | |
tree | df6bf1e5151ab29094c4e84a90edfdf4f7ac3e38 | |
parent | 01bc003cff03ea1e720ef25c4276ee65d5dce5fd (diff) | |
download | vboot-7e3f8601ba7240c86581f9bcfb6cb4c38f2ebb44.tar.gz |
crossystem: Add device IDs for haswell
0x8086,0x0a04 is Haswell ULT
0x8086,0x0c04 is Haswell Mobile
BUG=chrome-os-partner:19263
BRANCH=none
TEST=manual test on slippy hardware:
$ crossystem platform_family
Haswell
Change-Id: Ia885d0c8f0be2fb626257ca513f581df50259173
Signed-off-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/56075
Reviewed-by: Bill Richardson <wfrichar@chromium.org>
-rw-r--r-- | host/arch/x86/lib/crossystem_arch.c | 2 |
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 675a9cdc..9398a35a 100644 --- a/host/arch/x86/lib/crossystem_arch.c +++ b/host/arch/x86/lib/crossystem_arch.c @@ -105,6 +105,8 @@ const PlatformFamily platform_family_array[] = { {0x8086, 0x0100, "SandyBridge"}, /* desktop */ {0x8086, 0x0154, "IvyBridge"}, /* mobile */ {0x8086, 0x0150, "IvyBridge"}, /* desktop */ + {0x8086, 0x0a04, "Haswell"}, /* ult */ + {0x8086, 0x0c04, "Haswell"}, /* mobile */ /* Terminate with NULL entry */ {0, 0, 0} }; |