Source-Changes-HG archive

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

[src/netbsd-8]: src/sys/dev/pci Pull up following revision(s) (requested by m...



details:   https://anonhg.NetBSD.org/src/rev/4164e669cd76
branches:  netbsd-8
changeset: 435267:4164e669cd76
user:      martin <martin%NetBSD.org@localhost>
date:      Sun Sep 23 17:40:37 2018 +0000

description:
Pull up following revision(s) (requested by msaitoh in ticket #1028):

        sys/dev/pci/pci_subr.c: revision 1.203
        sys/dev/pci/pcireg.h: revision 1.140

  Add ATS Relaxed Ordering supported bit described in Address Translation
Relaxed Ordering ECN.

diffstat:

 sys/dev/pci/pci_subr.c |  5 +++--
 sys/dev/pci/pcireg.h   |  3 ++-
 2 files changed, 5 insertions(+), 3 deletions(-)

diffs (43 lines):

diff -r fe7ca89d6919 -r 4164e669cd76 sys/dev/pci/pci_subr.c
--- a/sys/dev/pci/pci_subr.c    Sun Sep 23 17:39:02 2018 +0000
+++ b/sys/dev/pci/pci_subr.c    Sun Sep 23 17:40:37 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pci_subr.c,v 1.183.2.6 2018/07/26 23:11:59 snj Exp $   */
+/*     $NetBSD: pci_subr.c,v 1.183.2.7 2018/09/23 17:40:37 martin Exp $        */
 
 /*
  * Copyright (c) 1997 Zubin D. Dittia.  All rights reserved.
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.183.2.6 2018/07/26 23:11:59 snj Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.183.2.7 2018/09/23 17:40:37 martin Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_pci.h"
@@ -3152,6 +3152,7 @@
        printf("      Invalidate Queue Depth: %u\n", num);
        onoff("Page Aligned Request", reg, PCI_ATS_CAP_PALIGNREQ);
        onoff("Global Invalidate", reg, PCI_ATS_CAP_GLOBALINVL);
+       onoff("Relaxed Ordering", reg, PCI_ATS_CAP_RELAXORD);
 
        printf("    Control register: 0x%04x\n", ctl);
        printf("      Smallest Translation Unit: %u\n",
diff -r fe7ca89d6919 -r 4164e669cd76 sys/dev/pci/pcireg.h
--- a/sys/dev/pci/pcireg.h      Sun Sep 23 17:39:02 2018 +0000
+++ b/sys/dev/pci/pcireg.h      Sun Sep 23 17:40:37 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pcireg.h,v 1.130.2.5 2018/07/26 23:11:59 snj Exp $     */
+/*     $NetBSD: pcireg.h,v 1.130.2.6 2018/09/23 17:40:37 martin Exp $  */
 
 /*
  * Copyright (c) 1995, 1996, 1999, 2000
@@ -1770,6 +1770,7 @@
 #define        PCI_ATS_CAP_INVQDEPTH   __BITS(4, 0)    /* Invalidate Queue Depth */
 #define        PCI_ATS_CAP_PALIGNREQ   __BIT(5)        /* Page Aligned Request */
 #define        PCI_ATS_CAP_GLOBALINVL  __BIT(6)        /* Global Invalidate Support */
+#define        PCI_ATS_CAP_RELAXORD    __BIT(7)        /* Relaxed Ordering */
 #define        PCI_ATS_CTL     0x04    /* Control Register */
 #define        PCI_ATS_CTL_STU         __BITS(20, 16)  /* Smallest Translation Unit */
 #define        PCI_ATS_CTL_EN          __BIT(31)       /* Enable */



Home | Main Index | Thread Index | Old Index