diff options
author | Nico Huber <nico.huber@secunet.com> | 2017-07-31 14:35:26 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-09-02 15:33:50 +0000 |
commit | 3f43edc351a6bbbffdedbdd7fe1333f9d28b8b5d (patch) | |
tree | 2d304878ab563e30ae6750078ecdd3d1e4c84511 | |
parent | b2a3ac4705a4e0ad63d0699b8ded8991e5979b84 (diff) | |
download | coreboot-3f43edc351a6bbbffdedbdd7fe1333f9d28b8b5d.tar.xz |
libpayload/storage: Add Sunrise Point AHCI PCI id
Change-Id: I9645d76d05014722e4ae0c398d82f7f8e34d6f1c
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/21289
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
-rw-r--r-- | payloads/libpayload/drivers/storage/ahci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/payloads/libpayload/drivers/storage/ahci.c b/payloads/libpayload/drivers/storage/ahci.c index f3882830d2..bb0d37eecb 100644 --- a/payloads/libpayload/drivers/storage/ahci.c +++ b/payloads/libpayload/drivers/storage/ahci.c @@ -223,6 +223,7 @@ static u32 working_controllers[] = { 0x8086 | 0x2929 << 16, /* Mobile ICH9 */ 0x8086 | 0x1c03 << 16, /* Mobile Cougar Point PCH */ 0x8086 | 0x1e03 << 16, /* Mobile Panther Point PCH */ + 0x8086 | 0xa102 << 16, /* Desktop / Mobile-Wks Sunrise Point PCH */ }; #endif static void ahci_init_pci(pcidev_t dev) |