summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@no-log.org>2015-10-23 18:00:04 +0200
committerPatrick Georgi <pgeorgi@google.com>2015-10-25 07:33:24 +0100
commit8eb63fa06381ae42712d77da7e09a7aa1365ef69 (patch)
treed95de5bc3d9635fc8c7443151039f9037dd1a1c3 /src
parent5c68bbc7d6952e66966f909f2a87db119e0661d2 (diff)
downloadcoreboot-8eb63fa06381ae42712d77da7e09a7aa1365ef69.tar.gz
coreboot-8eb63fa06381ae42712d77da7e09a7aa1365ef69.tar.bz2
coreboot-8eb63fa06381ae42712d77da7e09a7aa1365ef69.zip
Add support for the Silicon Image "Ultra ATA-133 Host Controller"
This patch was tested with the following card: IDE interface: Silicon Image, Inc. PCI0680 Ultra ATA-133 Host Controller [1095:0680] (rev 02) Change-Id: I988b73684b54942d8ee6e44a9319dcc54086fca7 Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> Reviewed-on: http://review.coreboot.org/12171 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src')
-rw-r--r--src/drivers/sil/3114/sil_sata.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/drivers/sil/3114/sil_sata.c b/src/drivers/sil/3114/sil_sata.c
index 1285726ec191..8a1da2812b62 100644
--- a/src/drivers/sil/3114/sil_sata.c
+++ b/src/drivers/sil/3114/sil_sata.c
@@ -45,3 +45,9 @@ static const struct pci_driver si_sata_driver __pci_driver = {
.vendor = 0x1095,
.device = 0x3114,
};
+
+static const struct pci_driver si_sata_driver_2 __pci_driver = {
+ .ops = &si_sata_ops,
+ .vendor = 0x1095,
+ .device = 0x0680,
+};