Date: Wed, 26 Nov 2014 00:47:37 +0000 (UTC) From: Navdeep Parhar <np@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r275093 - in stable/9/sys/dev/cxgbe: . common Message-ID: <201411260047.sAQ0lboA090151@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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",
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411260047.sAQ0lboA090151>