diff options
author | Vadim Bendebury <vbendeb@chromium.org> | 2011-11-29 10:16:14 -0800 |
---|---|---|
committer | Vadim Bendebury <vbendeb@chromium.org> | 2011-12-08 11:27:22 -0800 |
commit | 9e3469de88449c1ca3af5f33a885890e9e931235 (patch) | |
tree | ea3c67e6f0eff4b08535f36f91134e295d5b8207 /include/configs | |
parent | 04ed7a4e7f5e5fb60aead7855e7870068c0d6f23 (diff) |
Make u-boot use the new PCH
New device ID range is included to allow the SPI driver to use the
Panther Point based controller and a new device ID is checked when
attaching the AHCI controller.
BUG=chrome-os-partner:7112
TEST=manual
After this change the top of the tree ChromeOS can be booted on IVB
reworked Stumpy platforms.
Change-Id: Ia41c17b58337cde2d041990b3d1c9da37c0cd92c
Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/12606
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/coreboot.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/configs/coreboot.h b/include/configs/coreboot.h index c5bf9b72084..8baca6b3684 100644 --- a/include/configs/coreboot.h +++ b/include/configs/coreboot.h @@ -55,9 +55,11 @@ #ifdef CONFIG_SCSI_AHCI #define CONFIG_SATA_INTEL 1 #define CONFIG_SCSI_DEV_LIST {PCI_VENDOR_ID_INTEL, \ - PCI_DEVICE_ID_INTEL_NM10_AHCI}, \ - {PCI_VENDOR_ID_INTEL, \ - PCI_DEVICE_ID_INTEL_COUGARPOINT_AHCI_MOBILE} + PCI_DEVICE_ID_INTEL_NM10_AHCI}, \ + {PCI_VENDOR_ID_INTEL, \ + PCI_DEVICE_ID_INTEL_COUGARPOINT_AHCI_MOBILE}, \ + {PCI_VENDOR_ID_INTEL, \ + PCI_DEVICE_ID_INTEL_PANTHERPOINT_AHCI_MOBILE} #define CONFIG_SYS_SCSI_MAX_SCSI_ID 1 |