Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci Add support for Intel 6 Series Serial ATA Contro...



details:   https://anonhg.NetBSD.org/src/rev/3b57331f5bfa
branches:  trunk
changeset: 777837:3b57331f5bfa
user:      sborrill <sborrill%NetBSD.org@localhost>
date:      Mon Mar 05 16:21:44 2012 +0000

description:
Add support for Intel 6 Series Serial ATA Controller

diffstat:

 sys/dev/pci/piixide.c |  28 ++++++++++++++++++++++++++--
 1 files changed, 26 insertions(+), 2 deletions(-)

diffs (49 lines):

diff -r efa1b87ba39a -r 3b57331f5bfa sys/dev/pci/piixide.c
--- a/sys/dev/pci/piixide.c     Mon Mar 05 16:14:03 2012 +0000
+++ b/sys/dev/pci/piixide.c     Mon Mar 05 16:21:44 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: piixide.c,v 1.57 2011/04/04 20:37:56 dyoung Exp $      */
+/*     $NetBSD: piixide.c,v 1.58 2012/03/05 16:21:44 sborrill Exp $    */
 
 /*
  * Copyright (c) 1999, 2000, 2001 Manuel Bouyer.
@@ -25,7 +25,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: piixide.c,v 1.57 2011/04/04 20:37:56 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: piixide.c,v 1.58 2012/03/05 16:21:44 sborrill Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -331,6 +331,30 @@
          "Intel 3400 Serial ATA Controller",
          piixsata_chip_map,
        },
+       {
+         PCI_PRODUCT_INTEL_6SERIES_SATA_1,
+         0,
+         "Intel 6 Series Serial ATA Controller",
+         piixsata_chip_map,
+       },
+       {
+         PCI_PRODUCT_INTEL_6SERIES_SATA_2,
+         0,
+         "Intel 6 Series Serial ATA Controller",
+         piixsata_chip_map,
+       },
+       {
+         PCI_PRODUCT_INTEL_6SERIES_SATA_3,
+         0,
+         "Intel 6 Series Serial ATA Controller",
+         piixsata_chip_map,
+       },
+       {
+         PCI_PRODUCT_INTEL_6SERIES_SATA_4,
+         0,
+         "Intel 6 Series Serial ATA Controller",
+         piixsata_chip_map,
+       },
        { 0,
          0,
          NULL,



Home | Main Index | Thread Index | Old Index