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 AQC100S and D100.



details:   https://anonhg.NetBSD.org/src/rev/cb2d2b216f93
branches:  trunk
changeset: 971440:cb2d2b216f93
user:      ryo <ryo%NetBSD.org@localhost>
date:      Fri Apr 24 04:34:57 2020 +0000

description:
add support AQC100S and D100.
not tested, but they are probably the same as the AQC100.

diffstat:

 sys/dev/pci/if_aq.c |  12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diffs (40 lines):

diff -r cd98d1f865de -r cb2d2b216f93 sys/dev/pci/if_aq.c
--- a/sys/dev/pci/if_aq.c       Fri Apr 24 03:56:12 2020 +0000
+++ b/sys/dev/pci/if_aq.c       Fri Apr 24 04:34:57 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_aq.c,v 1.14 2020/04/23 06:28:34 ryo Exp $   */
+/*     $NetBSD: if_aq.c,v 1.15 2020/04/24 04:34:57 ryo Exp $   */
 
 /**
  * aQuantia Corporation Network Driver
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_aq.c,v 1.14 2020/04/23 06:28:34 ryo Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_aq.c,v 1.15 2020/04/24 04:34:57 ryo Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_if_aq.h"
@@ -1166,6 +1166,10 @@
          "Aquantia AQC112 2.5 Gigabit Network Adapter",
          AQ_MEDIA_TYPE_TP, AQ_LINK_100M | AQ_LINK_1G | AQ_LINK_2G5
        },
+       { PCI_VENDOR_AQUANTIA, PCI_PRODUCT_AQUANTIA_AQC100S,
+         "Aquantia AQC100 10 Gigabit Network Adapter",
+         AQ_MEDIA_TYPE_FIBRE, AQ_LINK_ALL
+       },
        { PCI_VENDOR_AQUANTIA, PCI_PRODUCT_AQUANTIA_AQC107S,
          "Aquantia AQC107S 10 Gigabit Network Adapter",
          AQ_MEDIA_TYPE_TP, AQ_LINK_ALL
@@ -1186,6 +1190,10 @@
          "Aquantia AQC112S 2.5 Gigabit Network Adapter",
          AQ_MEDIA_TYPE_TP, AQ_LINK_100M | AQ_LINK_1G | AQ_LINK_2G5
        },
+       { PCI_VENDOR_AQUANTIA, PCI_PRODUCT_AQUANTIA_D100,
+         "Aquantia D100 10 Gigabit Network Adapter",
+         AQ_MEDIA_TYPE_FIBRE, AQ_LINK_ALL
+       },
        { PCI_VENDOR_AQUANTIA, PCI_PRODUCT_AQUANTIA_D107,
          "Aquantia D107 10 Gigabit Network Adapter",
          AQ_MEDIA_TYPE_TP, AQ_LINK_ALL



Home | Main Index | Thread Index | Old Index