summaryrefslogtreecommitdiffstats
path: root/payloads
diff options
context:
space:
mode:
authorNico Huber <nico.huber@secunet.com>2016-10-23 02:26:57 +0200
committerNico Huber <nico.h@gmx.de>2016-12-08 01:36:01 +0100
commitd1e2edf7084f7d61b758a3e0d31cefffcb1cc9f6 (patch)
treea2a49ff0ac1c2f749f871a9a3dac0a74cbdc06ca /payloads
parentbd202bcdf35ee7fab0b17d9cc49a465a4a90e829 (diff)
downloadcoreboot-d1e2edf7084f7d61b758a3e0d31cefffcb1cc9f6.tar.gz
coreboot-d1e2edf7084f7d61b758a3e0d31cefffcb1cc9f6.tar.bz2
coreboot-d1e2edf7084f7d61b758a3e0d31cefffcb1cc9f6.zip
libpayload: Add Cougar Point PCH's AHCI to whitelist
Change-Id: Ie8ca342a32323be4c26c236a5209052ec724317f Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/17353 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'payloads')
-rw-r--r--payloads/libpayload/drivers/storage/ahci.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/payloads/libpayload/drivers/storage/ahci.c b/payloads/libpayload/drivers/storage/ahci.c
index deae9e2471a7..0e7fd7d8e004 100644
--- a/payloads/libpayload/drivers/storage/ahci.c
+++ b/payloads/libpayload/drivers/storage/ahci.c
@@ -220,6 +220,7 @@ static void ahci_port_probe(hba_ctrl_t *const ctrl,
#if IS_ENABLED(CONFIG_LP_STORAGE_AHCI_ONLY_TESTED)
static u32 working_controllers[] = {
0x8086 | 0x2929 << 16, /* Mobile ICH9 */
+ 0x8086 | 0x1c03 << 16, /* Mobile Cougar Point PCH */
0x8086 | 0x1e03 << 16, /* Mobile Panther Point PCH */
};
#endif