Module Name:    src
Committed By:   msaitoh
Date:           Fri Nov 30 09:05:35 UTC 2018

Modified Files:
        src/sys/dev/pci: pci_subr.c pcireg.h

Log Message:
 Add new macro PCIE_HAS_ROOTREGS(pcie_devtype) and use it. No functional
change.


To generate a diff of this commit:
cvs rdiff -u -r1.208 -r1.209 src/sys/dev/pci/pci_subr.c
cvs rdiff -u -r1.144 -r1.145 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.208 src/sys/dev/pci/pci_subr.c:1.209
--- src/sys/dev/pci/pci_subr.c:1.208	Fri Nov 30 08:19:45 2018
+++ src/sys/dev/pci/pci_subr.c	Fri Nov 30 09:05:35 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: pci_subr.c,v 1.208 2018/11/30 08:19:45 msaitoh Exp $	*/
+/*	$NetBSD: pci_subr.c,v 1.209 2018/11/30 09:05:35 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.208 2018/11/30 08:19:45 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.209 2018/11/30 09:05:35 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_pci.h"
@@ -1758,7 +1758,7 @@ pci_conf_print_pcie_cap(const pcireg_t *
 	pcireg_t val; /* for each bitfield */
 	bool check_link = true;
 	bool check_slot = false;
-	bool check_rootport = false;
+	unsigned int pcie_devtype;
 	bool check_upstreamport = false;
 	unsigned int pciever;
 	unsigned int i;
@@ -1770,7 +1770,8 @@ pci_conf_print_pcie_cap(const pcireg_t *
 	pciever = (unsigned int)(PCIE_XCAP_VER(reg));
 	printf("      Capability version: %u\n", pciever);
 	printf("      Device type: ");
-	switch (PCIE_XCAP_TYPE(reg)) {
+	pcie_devtype = PCIE_XCAP_TYPE(reg);
+	switch (pcie_devtype) {
 	case PCIE_XCAP_TYPE_PCIE_DEV:	/* 0x0 */
 		printf("PCI Express Endpoint device\n");
 		check_upstreamport = true;
@@ -1782,7 +1783,6 @@ pci_conf_print_pcie_cap(const pcireg_t *
 	case PCIE_XCAP_TYPE_ROOT:	/* 0x4 */
 		printf("Root Port of PCI Express Root Complex\n");
 		check_slot = true;
-		check_rootport = true;
 		break;
 	case PCIE_XCAP_TYPE_UP:		/* 0x5 */
 		printf("Upstream Port of PCI Express Switch\n");
@@ -1808,7 +1808,6 @@ pci_conf_print_pcie_cap(const pcireg_t *
 	case PCIE_XCAP_TYPE_ROOT_EVNTC:	/* 0xa */
 		printf("Root Complex Event Collector\n");
 		check_link = false;
-		check_rootport = true;
 		break;
 	default:
 		printf("unknown\n");
@@ -2081,7 +2080,7 @@ pci_conf_print_pcie_cap(const pcireg_t *
 		onoff("Data Link Layer State Changed", reg, PCIE_SLCSR_LACS);
 	}
 
-	if (check_rootport == true) {
+	if (PCIE_HAS_ROOTREGS(pcie_devtype)) {
 		/* Root Control Register */
 		reg = regs[o2i(capoff + PCIE_RCR)];
 		printf("    Root Control Register: 0x%04x\n", reg & 0xffff);

Index: src/sys/dev/pci/pcireg.h
diff -u src/sys/dev/pci/pcireg.h:1.144 src/sys/dev/pci/pcireg.h:1.145
--- src/sys/dev/pci/pcireg.h:1.144	Wed Nov 28 08:26:07 2018
+++ src/sys/dev/pci/pcireg.h	Fri Nov 30 09:05:35 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: pcireg.h,v 1.144 2018/11/28 08:26:07 msaitoh Exp $	*/
+/*	$NetBSD: pcireg.h,v 1.145 2018/11/30 09:05:35 msaitoh Exp $	*/
 
 /*
  * Copyright (c) 1995, 1996, 1999, 2000
@@ -1153,6 +1153,11 @@ typedef u_int8_t pci_revision_t;
 #define PCIE_SLCAP2	0x34	/* Slot Capabilities 2 Register */
 #define PCIE_SLCSR2	0x38	/* Slot Control & Status 2 Register */
 
+/* Only root port and root complex event collector have PCIE_RCR & PCIE_RSR */
+#define PCIE_HAS_ROOTREGS(type) (((type) == PCIE_XCAP_TYPE_ROOT) || \
+	    ((type) == PCIE_XCAP_TYPE_ROOT_EVNTC))
+
+
 /*
  * Capability ID: 0x11
  * MSIX

Reply via email to