From 7e3f8601ba7240c86581f9bcfb6cb4c38f2ebb44 Mon Sep 17 00:00:00 2001 From: Duncan Laurie Date: Tue, 21 May 2013 11:20:18 -0700 Subject: [PATCH] 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 Reviewed-on: https://gerrit.chromium.org/gerrit/56075 Reviewed-by: Bill Richardson --- host/arch/x86/lib/crossystem_arch.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/host/arch/x86/lib/crossystem_arch.c b/host/arch/x86/lib/crossystem_arch.c index 675a9cdc72..9398a35ad5 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} };