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 <nico.huber@secunet.com>
Reviewed-on: http://review.coreboot.org/3361
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
Nico Huber 2013-05-21 12:26:47 +02:00 committed by Stefan Reinauer
parent ce809b9c3a
commit 5d1edf6276
1 changed files with 2 additions and 1 deletions

View File

@ -471,7 +471,8 @@ static void ahci_port_probe(hba_ctrl_t *const ctrl,
#ifdef CONFIG_STORAGE_AHCI_ONLY_TESTED #ifdef CONFIG_STORAGE_AHCI_ONLY_TESTED
static u32 working_controllers[] = { static u32 working_controllers[] = {
0x8086 | 0x2929 << 16, 0x8086 | 0x2929 << 16, /* Mobile ICH9 */
0x8086 | 0x1e03 << 16, /* Mobile Panther Point PCH */
}; };
#endif #endif
static void ahci_init_pci(pcidev_t dev) static void ahci_init_pci(pcidev_t dev)