svn commit: r233812 - in stable/8/sys: i386/conf sparc64/pci
Marius Strobl
marius at FreeBSD.org
Mon Apr 2 20:14:41 UTC 2012
Author: marius
Date: Mon Apr 2 20:14:40 2012
New Revision: 233812
URL: http://svn.freebsd.org/changeset/base/233812
Log:
MFC: r233701
- Remove erroneous trailing semicolon. [1]
- Correctly determine the maximum payload size for setting the TX link
frequent NACK latency and replay timer thresholds.
Submitted by: stefanf [1]
Modified:
stable/8/sys/sparc64/pci/fire.c
stable/8/sys/sparc64/pci/firereg.h
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/boot/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/e1000/ (props changed)
stable/8/sys/i386/conf/XENHVM (props changed)
Modified: stable/8/sys/sparc64/pci/fire.c
==============================================================================
--- stable/8/sys/sparc64/pci/fire.c Mon Apr 2 20:14:32 2012 (r233811)
+++ stable/8/sys/sparc64/pci/fire.c Mon Apr 2 20:14:40 2012 (r233812)
@@ -443,10 +443,11 @@ fire_attach(device_t dev)
lw = 0;
}
mps = (FIRE_PCI_READ_8(sc, FO_PCI_TLU_CTRL) &
- FO_PCI_TLU_CTRL_CFG_MASK) >> FO_PCI_TLU_CTRL_CFG_SHFT;
+ FO_PCI_TLU_CTRL_CFG_MPS_MASK) >>
+ FO_PCI_TLU_CTRL_CFG_MPS_SHFT;
i = sizeof(fire_freq_nak_tmr_thrs) /
sizeof(*fire_freq_nak_tmr_thrs);
- if (mps >= i);
+ if (mps >= i)
mps = i - 1;
FIRE_PCI_SET(sc, FO_PCI_LPU_TXLNK_FREQ_LAT_TMR_THRS,
(fire_freq_nak_tmr_thrs[mps][lw] <<
Modified: stable/8/sys/sparc64/pci/firereg.h
==============================================================================
--- stable/8/sys/sparc64/pci/firereg.h Mon Apr 2 20:14:32 2012 (r233811)
+++ stable/8/sys/sparc64/pci/firereg.h Mon Apr 2 20:14:40 2012 (r233812)
@@ -345,6 +345,13 @@
#define FO_PCI_TLU_CTRL_CFG_MASK 0x000000000000ffffULL
#define FO_PCI_TLU_CTRL_CFG_SHFT 0
#define FO_PCI_TLU_CTRL_CFG_REMAIN_DETECT_QUIET 0x0000000000000100ULL
+#define FO_PCI_TLU_CTRL_CFG_PAD_LOOPBACK_EN 0x0000000000000080ULL
+#define FO_PCI_TLU_CTRL_CFG_EWRAP_LOOPBACK_EN 0x0000000000000040ULL
+#define FO_PCI_TLU_CTRL_CFG_DIGITAL_LOOPBACK_EN 0x0000000000000020ULL
+#define FO_PCI_TLU_CTRL_CFG_MPS_MASK 0x000000000000001cULL
+#define FO_PCI_TLU_CTRL_CFG_MPS_SHFT 2
+#define FO_PCI_TLU_CTRL_CFG_COMMON_CLK_CFG 0x0000000000000002ULL
+#define FO_PCI_TLU_CTRL_CFG_PORT 0x0000000000000001ULL
/*
* PCI TLU other event interrupt enable, interrupt status and status clear
More information about the svn-src-stable-8
mailing list