From 5d1edf627665cb8792533d8360ed1a154fce70a0 Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Tue, 21 May 2013 12:26:47 +0200 Subject: libpayload: Whitelist Mobile Panther Point AHCI controller Add the Mobile Panther Point (PPT) AHCI controller (DEVID 0x1e03) to the list of tested controllers. Also comment the only other listed controller (Mobile ICH9). The PPT AHCI controller was tested with a QM77 chipset on a Kontron KTQM77 board. Change-Id: Ia396761411f4f9289af11ec8e1b144512b2fc126 Signed-off-by: Nico Huber Reviewed-on: http://review.coreboot.org/3361 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Stefan Reinauer --- payloads/libpayload/drivers/storage/ahci.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'payloads') diff --git a/payloads/libpayload/drivers/storage/ahci.c b/payloads/libpayload/drivers/storage/ahci.c index b33cc70..72acd0b 100644 --- a/payloads/libpayload/drivers/storage/ahci.c +++ b/payloads/libpayload/drivers/storage/ahci.c @@ -471,7 +471,8 @@ static void ahci_port_probe(hba_ctrl_t *const ctrl, #ifdef CONFIG_STORAGE_AHCI_ONLY_TESTED static u32 working_controllers[] = { - 0x8086 | 0x2929 << 16, + 0x8086 | 0x2929 << 16, /* Mobile ICH9 */ + 0x8086 | 0x1e03 << 16, /* Mobile Panther Point PCH */ }; #endif static void ahci_init_pci(pcidev_t dev) -- cgit v1.1