Module Name: src
Committed By: msaitoh
Date: Tue May 27 16:26:15 UTC 2014
Modified Files:
src/sys/dev/pci: pci_subr.c pcireg.h
Log Message:
- Add some register definition for MSI and MSI-X
- print MSI-X capability
To generate a diff of this commit:
cvs rdiff -u -r1.119 -r1.120 src/sys/dev/pci/pci_subr.c
cvs rdiff -u -r1.92 -r1.93 src/sys/dev/pci/pcireg.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/pci/pci_subr.c
diff -u src/sys/dev/pci/pci_subr.c:1.119 src/sys/dev/pci/pci_subr.c:1.120
--- src/sys/dev/pci/pci_subr.c:1.119 Sun May 25 14:56:46 2014
+++ src/sys/dev/pci/pci_subr.c Tue May 27 16:26:15 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: pci_subr.c,v 1.119 2014/05/25 14:56:46 njoly Exp $ */
+/* $NetBSD: pci_subr.c,v 1.120 2014/05/27 16:26:15 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.119 2014/05/25 14:56:46 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.120 2014/05/27 16:26:15 msaitoh Exp $");
#ifdef _KERNEL_OPT
#include "opt_pci.h"
@@ -1690,7 +1690,30 @@ pci_conf_print_pcie_cap(const pcireg_t *
/* Slot Status 2 */
}
-/* XXX pci_conf_print_msix_cap */
+static void
+pci_conf_print_msix_cap(const pcireg_t *regs, int capoff)
+{
+ pcireg_t reg;
+
+ printf("\n MSI-X Capability Register\n");
+
+ reg = regs[o2i(capoff + PCI_MSIX_CTL)];
+ printf(" Message Control register: 0x%04x\n",
+ (reg >> 16) & 0xff);
+ printf(" Table Size: %d\n",PCI_MSIX_CTL_TBLSIZE(reg));
+ onoff("Function Mask", reg, PCI_MSIX_CTL_FUNCMASK);
+ onoff("MSI-X Enable", reg, PCI_MSIX_CTL_ENABLE);
+ reg = regs[o2i(capoff + PCI_MSIX_TBLOFFSET)];
+ printf(" Table offset register: 0x%08x\n", reg);
+ printf(" Table offset: %08x\n", reg & PCI_MSIX_TBLOFFSET_MASK);
+ printf(" BIR: 0x%x\n", reg & PCI_MSIX_TBLBIR_MASK);
+ reg = regs[o2i(capoff + PCI_MSIX_PBAOFFSET)];
+ printf(" Pending bit array register: 0x%08x\n", reg);
+ printf(" Pending bit array offset: %08x\n",
+ reg & PCI_MSIX_PBAOFFSET_MASK);
+ printf(" BIR: 0x%x\n", reg & PCI_MSIX_PBABIR_MASK);
+}
+
/* XXX pci_conf_print_sata_cap */
static void
pci_conf_print_pciaf_cap(const pcireg_t *regs, int capoff)
@@ -1723,6 +1746,7 @@ pci_conf_print_caplist(
int off;
pcireg_t rval;
int pcie_off = -1, pcipm_off = -1, msi_off = -1, vendspec_off = -1;
+ int msix_off = -1;
int debugport_off = -1, subsystem_off = -1, pciaf_off = -1;
for (off = PCI_CAPLIST_PTR(regs[o2i(capoff)]);
@@ -1795,6 +1819,7 @@ pci_conf_print_caplist(
break;
case PCI_CAP_MSIX:
printf("MSI-X");
+ msix_off = off;
break;
case PCI_CAP_SATA:
printf("SATA");
@@ -1830,7 +1855,8 @@ pci_conf_print_caplist(
/* XXX SECURE */
if (pcie_off != -1)
pci_conf_print_pcie_cap(regs, pcie_off);
- /* XXX MSIX */
+ if (msix_off != -1)
+ pci_conf_print_msix_cap(regs, msix_off);
/* XXX SATA */
if (pciaf_off != -1)
pci_conf_print_pciaf_cap(regs, pciaf_off);
Index: src/sys/dev/pci/pcireg.h
diff -u src/sys/dev/pci/pcireg.h:1.92 src/sys/dev/pci/pcireg.h:1.93
--- src/sys/dev/pci/pcireg.h:1.92 Tue May 27 16:10:33 2014
+++ src/sys/dev/pci/pcireg.h Tue May 27 16:26:15 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: pcireg.h,v 1.92 2014/05/27 16:10:33 msaitoh Exp $ */
+/* $NetBSD: pcireg.h,v 1.93 2014/05/27 16:26:15 msaitoh Exp $ */
/*
* Copyright (c) 1995, 1996, 1999, 2000
@@ -618,6 +618,8 @@ typedef u_int8_t pci_revision_t;
#define PCI_MSI_MDATA64 0xC /* 64-bit Message Data Register
* offset
*/
+#define PCI_MSI_MASK 0x10 /* Vector Mask register */
+#define PCI_MSI_PENDING 0x14 /* Vector Pending register */
#define PCI_MSI_CTL_MASK __BITS(31, 16)
#define PCI_MSI_CTL_PERVEC_MASK __SHIFTIN(__BIT(8), PCI_MSI_CTL_MASK)
@@ -940,6 +942,7 @@ typedef u_int8_t pci_revision_t;
* MSIX
*/
+#define PCI_MSIX_CTL 0x00
#define PCI_MSIX_CTL_ENABLE 0x80000000
#define PCI_MSIX_CTL_FUNCMASK 0x40000000
#define PCI_MSIX_CTL_TBLSIZE_MASK 0x07ff0000
@@ -949,11 +952,13 @@ typedef u_int8_t pci_revision_t;
/*
* 2nd DWORD is the Table Offset
*/
+#define PCI_MSIX_TBLOFFSET 0x04
#define PCI_MSIX_TBLOFFSET_MASK 0xfffffff8
#define PCI_MSIX_TBLBIR_MASK 0x00000007
/*
* 3rd DWORD is the Pending Bitmap Array Offset
*/
+#define PCI_MSIX_PBAOFFSET 0x08
#define PCI_MSIX_PBAOFFSET_MASK 0xfffffff8
#define PCI_MSIX_PBABIR_MASK 0x00000007