svn commit: r275093 - in stable/9/sys/dev/cxgbe: . common

Navdeep Parhar np at FreeBSD.org
Wed Nov 26 00:47:37 UTC 2014


Author: np
Date: Wed Nov 26 00:47:36 2014
New Revision: 275093
URL: https://svnweb.freebsd.org/changeset/base/275093

Log:
  MFC r274724:
  cxgbe(4): figure out the max payload size and save it for later.

Modified:
  stable/9/sys/dev/cxgbe/common/common.h
  stable/9/sys/dev/cxgbe/t4_main.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Modified: stable/9/sys/dev/cxgbe/common/common.h
==============================================================================
--- stable/9/sys/dev/cxgbe/common/common.h	Wed Nov 26 00:44:48 2014	(r275092)
+++ stable/9/sys/dev/cxgbe/common/common.h	Wed Nov 26 00:47:36 2014	(r275093)
@@ -238,6 +238,7 @@ struct vpd_params {
 
 struct pci_params {
 	unsigned int vpd_cap_addr;
+	unsigned int mps;
 	unsigned short speed;
 	unsigned short width;
 };

Modified: stable/9/sys/dev/cxgbe/t4_main.c
==============================================================================
--- stable/9/sys/dev/cxgbe/t4_main.c	Wed Nov 26 00:44:48 2014	(r275092)
+++ stable/9/sys/dev/cxgbe/t4_main.c	Wed Nov 26 00:47:36 2014	(r275093)
@@ -568,6 +568,8 @@ t4_attach(device_t dev)
 		v = pci_read_config(dev, i + PCIER_DEVICE_CTL, 2);
 		v |= PCIEM_CTL_RELAXED_ORD_ENABLE;
 		pci_write_config(dev, i + PCIER_DEVICE_CTL, v, 2);
+
+		sc->params.pci.mps = 128 << ((v & PCIEM_CTL_MAX_PAYLOAD) >> 5);
 	}
 
 	snprintf(sc->lockname, sizeof(sc->lockname), "%s",


More information about the svn-src-stable-9 mailing list