[coreboot-gerrit] New patch to review for coreboot: 6013e49 libpayload: Whitelist Mobile Panther Point AHCI controller

Patrick Georgi (patrick@georgi-clan.de) gerrit at coreboot.org
Tue Jun 4 13:51:56 CEST 2013


Patrick Georgi (patrick at georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3361

-gerrit

commit 6013e490d73bd5e06277c62b12e25bc97bc7d05b
Author: Nico Huber <nico.huber at secunet.com>
Date:   Tue May 21 12:26:47 2013 +0200

    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 at secunet.com>
---
 payloads/libpayload/drivers/storage/ahci.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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)



More information about the coreboot-gerrit mailing list