Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/pci Print some PCI Capabilities:



details:   https://anonhg.NetBSD.org/src/rev/86be7db490ac
branches:  trunk
changeset: 329446:86be7db490ac
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Sat May 24 18:06:21 2014 +0000

description:
Print some PCI Capabilities:
- Vendor specific (ID:0x09)
- Debugport (ID:0x0a)
- Subsystem (ID:0x0d)
- PCI Advanced Features (ID:0x13)

diffstat:

 sys/dev/pci/pci_subr.c |  88 +++++++++++++++++++++++++++++++++++++++++++------
 sys/dev/pci/pcireg.h   |  21 ++++++++++-
 2 files changed, 96 insertions(+), 13 deletions(-)

diffs (220 lines):

diff -r 6ee92a4866d7 -r 86be7db490ac sys/dev/pci/pci_subr.c
--- a/sys/dev/pci/pci_subr.c    Sat May 24 17:14:02 2014 +0000
+++ b/sys/dev/pci/pci_subr.c    Sat May 24 18:06:21 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pci_subr.c,v 1.117 2014/05/24 15:20:32 msaitoh Exp $   */
+/*     $NetBSD: pci_subr.c,v 1.118 2014/05/24 18:06:21 msaitoh 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.117 2014/05/24 15:20:32 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.118 2014/05/24 18:06:21 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_pci.h"
@@ -1119,10 +1119,48 @@
 /* XXX pci_conf_print_pcix_cap */
 /* XXX pci_conf_print_ldt_cap */
 /* XXX pci_conf_print_vendspec_cap */
-/* XXX pci_conf_print_debugport_cap */
+
+static void
+pci_conf_print_vendspec_cap(const pcireg_t *regs, int capoff)
+{
+       uint16_t caps;
+
+       caps = regs[o2i(capoff)] >> PCI_VENDORSPECIFIC_SHIFT;
+
+       printf("\n  PCI Vendor Specific Capabilities Register\n");
+       printf("    Capabilities length: 0x%02x\n", caps & 0xff);
+}
+
+static void
+pci_conf_print_debugport_cap(const pcireg_t *regs, int capoff)
+{
+       pcireg_t val;
+
+       val = regs[o2i(capoff + PCI_DEBUG_BASER)];
+
+       printf("\n  Debugport Capability Register\n");
+       printf("    Debug base Register: 0x%04x\n",
+           val >> PCI_DEBUG_BASER_SHIFT);
+       printf("      port offset: 0x%04x\n",
+           (val & PCI_DEBUG_PORTOFF_MASK) >> PCI_DEBUG_PORTOFF_SHIFT);
+       printf("      BAR number: %u\n",
+           (val & PCI_DEBUG_BARNUM_MASK) >> PCI_DEBUG_BARNUM_SHIFT);
+}
+
 /* XXX pci_conf_print_cpci_rsrcctl_cap */
 /* XXX pci_conf_print_hotplug_cap */
-/* XXX pci_conf_print_subvendor_cap */
+
+static void
+pci_conf_print_subsystem_cap(const pcireg_t *regs, int capoff)
+{
+       pcireg_t reg;
+
+       reg = regs[o2i(capoff + PCI_CAP_SUBSYS_ID)];
+
+       printf("\n  Subsystem ID Capability Register\n");
+       printf("    Subsystem ID : 0x%08x\n", reg);
+}
+
 /* XXX pci_conf_print_agp8_cap */
 /* XXX pci_conf_print_secure_cap */
 
@@ -1653,7 +1691,26 @@
 
 /* XXX pci_conf_print_msix_cap */
 /* XXX pci_conf_print_sata_cap */
-/* XXX pci_conf_print_pciaf_cap */
+static void
+pci_conf_print_pciaf_cap(const pcireg_t *regs, int capoff)
+{
+       pcireg_t reg;
+
+       printf("\n  Advanced Features Capability Register\n");
+
+       reg = regs[o2i(capoff + PCI_AFCAPR)];
+       printf("    AF Capabilities register: 0x%02x\n", (reg >> 24) & 0xff);
+       onoff("Transaction Pending", reg, PCI_AF_TP_CAP);
+       onoff("Function Level Reset", reg, PCI_AF_FLR_CAP);
+       reg = regs[o2i(capoff + PCI_AFCSR)];
+       printf("    AF Control register: 0x%02x\n", reg & 0xff);
+       /*
+        * Only PCI_AFCR_INITIATE_FLR is a member of the AF control register
+        * and it's always 0 on read
+        */
+       printf("    AF Status register: 0x%02x\n", (reg >> 8) & 0xff);
+       onoff("Transaction Pending", reg, PCI_AFSR_TP);
+}
 
 static void
 pci_conf_print_caplist(
@@ -1664,7 +1721,8 @@
 {
        int off;
        pcireg_t rval;
-       int pcie_off = -1, pcipm_off = -1, msi_off = -1;
+       int pcie_off = -1, pcipm_off = -1, msi_off = -1, vendspec_off = -1;
+       int debugport_off = -1, subsystem_off = -1, pciaf_off = -1;
 
        for (off = PCI_CAPLIST_PTR(regs[o2i(capoff)]);
             off != 0;
@@ -1707,10 +1765,12 @@
                        printf("LDT");
                        break;
                case PCI_CAP_VENDSPEC:
+                       vendspec_off = off;
                        printf("Vendor-specific");
                        break;
                case PCI_CAP_DEBUGPORT:
                        printf("Debug Port");
+                       debugport_off = off;
                        break;
                case PCI_CAP_CPCI_RSRCCTL:
                        printf("CompactPCI Resource Control");
@@ -1719,7 +1779,8 @@
                        printf("Hot-Plug");
                        break;
                case PCI_CAP_SUBVENDOR:
-                       printf("Sub Vendor ID");
+                       printf("Subsystem ID");
+                       subsystem_off = off;
                        break;
                case PCI_CAP_AGP8:
                        printf("AGP 8x");
@@ -1739,6 +1800,7 @@
                        break;
                case PCI_CAP_PCIAF:
                        printf("Advanced Features");
+                       pciaf_off = off;
                        break;
                default:
                        printf("unknown");
@@ -1755,18 +1817,22 @@
        /* XXX CPCI_HOTSWAP */
        /* XXX PCIX */
        /* XXX LDT */
-       /* XXX VENDSPEC */
-       /* XXX DEBUGPORT */
+       if (vendspec_off != -1)
+               pci_conf_print_vendspec_cap(regs, vendspec_off);
+       if (debugport_off != -1)
+               pci_conf_print_debugport_cap(regs, debugport_off);
        /* XXX CPCI_RSRCCTL */
        /* XXX HOTPLUG */
-       /* XXX SUBVENDOR */
+       if (subsystem_off != -1)
+               pci_conf_print_subsystem_cap(regs, subsystem_off);
        /* XXX AGP8 */
        /* XXX SECURE */
        if (pcie_off != -1)
                pci_conf_print_pcie_cap(regs, pcie_off);
        /* XXX MSIX */
        /* XXX SATA */
-       /* XXX PCIAF */
+       if (pciaf_off != -1)
+               pci_conf_print_pciaf_cap(regs, pciaf_off);
 }
 
 /* Print the Secondary Status Register. */
diff -r 6ee92a4866d7 -r 86be7db490ac sys/dev/pci/pcireg.h
--- a/sys/dev/pci/pcireg.h      Sat May 24 17:14:02 2014 +0000
+++ b/sys/dev/pci/pcireg.h      Sat May 24 18:06:21 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pcireg.h,v 1.90 2014/05/24 15:20:32 msaitoh Exp $      */
+/*     $NetBSD: pcireg.h,v 1.91 2014/05/24 18:06:21 msaitoh Exp $      */
 
 /*
  * Copyright (c) 1995, 1996, 1999, 2000
@@ -715,11 +715,19 @@
  * Capability ID: 0x09
  * Vendor Specific
  */
+#define PCI_VENDORSPECIFIC_SHIFT       16
+#define PCI_VENDORSPECIFIC             0x02
 
 /*
  * Capability ID: 0x0a
  * Debug Port
  */
+#define PCI_DEBUG_BASER                0x00    /* Debug Base Register */
+#define PCI_DEBUG_BASER_SHIFT  16
+#define PCI_DEBUG_PORTOFF_SHIFT        16
+#define        PCI_DEBUG_PORTOFF_MASK  0x1fff0000      /* Debug port offset */
+#define PCI_DEBUG_BARNUM_SHIFT 29
+#define        PCI_DEBUG_BARNUM_MASK   0xe0000000      /* BAR number */
 
 /*
  * Capability ID: 0x0b
@@ -733,8 +741,10 @@
 
 /*
  * Capability ID: 0x0d
- * Subvendor
+ * Subsystem
  */
+#define PCI_CAP_SUBSYS_ID 0x04
+/* bit field layout is the same as PCI_SUBSYS_ID_REG's one */
 
 /*
  * Capability ID: 0x0e
@@ -964,6 +974,13 @@
  * Capability ID: 0x13
  * Advanced Feature
  */
+#define PCI_AFCAPR             0x00    /* Capabilities */
+#define        PCI_AFCAPR_MASK         __BITS(31, 24)
+#define        PCI_AF_TP_CAP           __BIT(24)       /* Transaction Pending */
+#define        PCI_AF_FLR_CAP          __BIT(25)       /* Function Level Reset */
+#define PCI_AFCSR              0x04    /* Control & Status register */
+#define PCI_AFCR_INITIATE_FLR  __BIT(0)        /* Initiate Function LVL RST */
+#define PCI_AFSR_TP            __BIT(8)        /* Transaction Pending */
 
 
 /*



Home | Main Index | Thread Index | Old Index