summaryrefslogtreecommitdiffstats
path: root/chipset_enable.c
diff options
context:
space:
mode:
authorNico Huber <nico.huber@secunet.com>2017-03-20 14:25:09 +0100
committerNico Huber <nico.h@gmx.de>2018-06-04 10:28:53 +0000
commita50b8fde67fa52984980159127de789cf9a1c688 (patch)
treecb7230f818fd01fd47e22de2258e1d6914528b74 /chipset_enable.c
parent291c101c66adcb1c3435934f3f49fa7f24f7c249 (diff)
downloadflashrom-a50b8fde67fa52984980159127de789cf9a1c688.tar.gz
flashrom-a50b8fde67fa52984980159127de789cf9a1c688.tar.bz2
flashrom-a50b8fde67fa52984980159127de789cf9a1c688.zip
chipset_enable: Add PCI IDs for discrete Kaby Lake PCHs
The Kaby Lake "200 Series" PCHs [1,2] share the register layout of their Skylake "100 Series" siblings. [1] Intel® 200 Series (including X299) and Intel® Z370 Series Chipset Families Platform Controller Hub (PCH) Datasheet - Volume 1 of 2 Revision 003 Document Number 335192 [2] Intel® 200 Series (including X299) Chipset Family Platform Controller Hub (PCH) Datasheet - Volume 2 of 2 Revision 003 Document Number 335193 Change-Id: Ida545d69ec998a5d3ae4dc88e76adbb13952bceb Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/26232 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: David Hendricks <david.hendricks@gmail.com>
Diffstat (limited to 'chipset_enable.c')
-rw-r--r--chipset_enable.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/chipset_enable.c b/chipset_enable.c
index 15b760ba4..5c874f592 100644
--- a/chipset_enable.c
+++ b/chipset_enable.c
@@ -1945,6 +1945,13 @@ const struct penable chipset_enables[] = {
{0x8086, 0xa245, NT, "Intel", "C627 Series Chipset Supersku", enable_flash_c620},
{0x8086, 0xa246, NT, "Intel", "C628 Series Chipset Supersku", enable_flash_c620},
{0x8086, 0xa247, NT, "Intel", "C620 Series Chipset Supersku", enable_flash_c620},
+ {0x8086, 0xa2c4, NT, "Intel", "H270", enable_flash_pch100},
+ {0x8086, 0xa2c5, NT, "Intel", "Z270", enable_flash_pch100},
+ {0x8086, 0xa2c6, NT, "Intel", "Q270", enable_flash_pch100},
+ {0x8086, 0xa2c7, NT, "Intel", "Q250", enable_flash_pch100},
+ {0x8086, 0xa2c8, NT, "Intel", "B250", enable_flash_pch100},
+ {0x8086, 0xa2c9, NT, "Intel", "Z370", enable_flash_pch100},
+ {0x8086, 0xa2d2, NT, "Intel", "X299", enable_flash_pch100},
#endif
{0},
};