summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuncan Laurie <dlaurie@chromium.org>2014-08-28 14:03:12 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-08-29 16:59:03 +0000
commit631c661be0f08a7e4770b7e767b9d57ddf0ba600 (patch)
tree8dc3cea04905bb12d0ce6125d25d01d815a2dcba
parentb77aff570216cf1a58d687bde1512d88edba519f (diff)
downloadvboot-631c661be0f08a7e4770b7e767b9d57ddf0ba600.tar.gz
Add broadwell PCI ID for platform family lookup table
Currently broadwell systems are returning (error) for this lookup. BUG=chrome-os-partner:28234 BRANCH=none TEST=test crossystem output: > crossystem platform_family Broadwell Change-Id: I204dd47e62683d5e81e16ddb9c3ea96034fb22a5 Signed-off-by: Duncan Laurie <dlaurie@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/214862 Reviewed-by: Aaron Durbin <adurbin@chromium.org>
-rw-r--r--host/arch/x86/lib/crossystem_arch.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/host/arch/x86/lib/crossystem_arch.c b/host/arch/x86/lib/crossystem_arch.c
index 5b207887..e6690512 100644
--- a/host/arch/x86/lib/crossystem_arch.c
+++ b/host/arch/x86/lib/crossystem_arch.c
@@ -109,6 +109,7 @@ const PlatformFamily platform_family_array[] = {
{0x8086, 0x0a04, "Haswell"}, /* ult */
{0x8086, 0x0c04, "Haswell"}, /* mobile */
{0x8086, 0x0f00, "BayTrail"}, /* mobile */
+ {0x8086, 0x1604, "Broadwell"}, /* ult */
/* Terminate with NULL entry */
{0, 0, 0}
};