diff options
author | Nico Huber <nico.huber@secunet.com> | 2013-05-21 12:26:47 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-06-04 21:14:32 +0200 |
commit | 5d1edf627665cb8792533d8360ed1a154fce70a0 (patch) | |
tree | a49cd93ecfb70bd958caea4246c274c0605004d2 /payloads | |
parent | ce809b9c3aabdfbfd818c29f95074a0f7443001e (diff) |
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>
Diffstat (limited to 'payloads')
-rw-r--r-- | payloads/libpayload/drivers/storage/ahci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/payloads/libpayload/drivers/storage/ahci.c b/payloads/libpayload/drivers/storage/ahci.c index b33cc708b6..72acd0b799 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) |