Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Nov 2013 21:06:22 +0000 (UTC)
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r257654 - head/sys/dev/cxgbe
Message-ID:  <201311042106.rA4L6MTI040576@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: np
Date: Mon Nov  4 21:06:21 2013
New Revision: 257654
URL: http://svnweb.freebsd.org/changeset/base/257654

Log:
  cxgbe(4): Exclude MPS_RPLC_MAP_CTL (0x11114) from the register dump.  Turns
  out it's a write-only register with strange side effects on read.
  
  Submitted by:	gnn
  MFC after:	3 days

Modified:
  head/sys/dev/cxgbe/t4_main.c

Modified: head/sys/dev/cxgbe/t4_main.c
==============================================================================
--- head/sys/dev/cxgbe/t4_main.c	Mon Nov  4 20:38:32 2013	(r257653)
+++ head/sys/dev/cxgbe/t4_main.c	Mon Nov  4 21:06:21 2013	(r257654)
@@ -3401,7 +3401,8 @@ t4_get_regs(struct adapter *sc, struct t
 		0xd004, 0xd03c,
 		0xdfc0, 0xdfe0,
 		0xe000, 0xea7c,
-		0xf000, 0x11190,
+		0xf000, 0x11110,
+		0x11118, 0x11190,
 		0x19040, 0x1906c,
 		0x19078, 0x19080,
 		0x1908c, 0x19124,
@@ -3607,7 +3608,8 @@ t4_get_regs(struct adapter *sc, struct t
 		0xd004, 0xd03c,
 		0xdfc0, 0xdfe0,
 		0xe000, 0x11088,
-		0x1109c, 0x1117c,
+		0x1109c, 0x11110,
+		0x11118, 0x1117c,
 		0x11190, 0x11204,
 		0x19040, 0x1906c,
 		0x19078, 0x19080,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311042106.rA4L6MTI040576>