Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/976
-gerrit
commit eb370e842d0d89d58875d13a5610d796c5055a73 Author: Duncan Laurie dlaurie@chromium.org Date: Tue Apr 24 10:00:41 2012 -0700
PantherPoint: Add additional PCI device IDs for SATA This includes IDs for the controller in normal mode and the desktop SKU IDs.
Change-Id: I94c9d8d19a7a2ad9a0e560fa554c566b17c5d5ed Signed-off-by: Duncan Laurie dlaurie@chromium.org --- src/southbridge/intel/bd82x6x/sata.c | 22 +++++++++++++++++++++- 1 files changed, 21 insertions(+), 1 deletions(-)
diff --git a/src/southbridge/intel/bd82x6x/sata.c b/src/southbridge/intel/bd82x6x/sata.c index 057b882..ce5aea9 100644 --- a/src/southbridge/intel/bd82x6x/sata.c +++ b/src/southbridge/intel/bd82x6x/sata.c @@ -238,7 +238,27 @@ static const struct pci_driver pch_sata_mobile_ahci_driver __pci_driver = { .vendor = PCI_VENDOR_ID_INTEL, .device = 0x1c03, }; -static const struct pci_driver pch_sata_mobile_ahci_driver_a __pci_driver = { + +/* PantherPoint */ +static const struct pci_driver ppt_sata_desktop_normal_driver __pci_driver = { + .ops = &sata_ops, + .vendor = PCI_VENDOR_ID_INTEL, + .device = 0x1e00, +}; + +static const struct pci_driver ppt_sata_mobile_normal_driver __pci_driver = { + .ops = &sata_ops, + .vendor = PCI_VENDOR_ID_INTEL, + .device = 0x1e01, +}; + +static const struct pci_driver ppt_sata_desktop_ahci_driver __pci_driver = { + .ops = &sata_ops, + .vendor = PCI_VENDOR_ID_INTEL, + .device = 0x1e02, +}; + +static const struct pci_driver ppt_sata_mobile_ahci_driver __pci_driver = { .ops = &sata_ops, .vendor = PCI_VENDOR_ID_INTEL, .device = 0x1e03,