devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Ansuel Smith <ansuelsmth@gmail.com>, Andrew Lunn <andrew@lunn.ch>,
	Vivien Didelot <vivien.didelot@gmail.com>,
	Florian Fainelli <f.fainelli@gmail.com>,
	Vladimir Oltean <olteanv@gmail.com>,
	"David S. Miller" <davem@davemloft.net>,
	Jakub Kicinski <kuba@kernel.org>,
	Rob Herring <robh+dt@kernel.org>,
	Russell King <linux@armlinux.org.uk>,
	devicetree@vger.kernel.org
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org, netdev@vger.kernel.org
Subject: Re: [net-next PATCH v3 02/13] net: dsa: qca8k: add support for sgmii falling edge
Date: Sun, 10 Oct 2021 14:12:09 +0800	[thread overview]
Message-ID: <202110101441.A4MpG1W0-lkp@intel.com> (raw)
In-Reply-To: <20211010015603.24483-3-ansuelsmth@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 7362 bytes --]

Hi Ansuel,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on net-next/master]

url:    https://github.com/0day-ci/linux/commits/Ansuel-Smith/Multiple-improvement-for-qca8337-switch/20211010-095850
base:   https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git 7932d53162dc6550fc56b013da32c0975784647c
config: x86_64-randconfig-a012-20211010 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 903b30fea21f99d8f48fde4defcc838970e30ee1)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/0day-ci/linux/commit/b46afc1d065f0d5add5ea33eae1bf90247ae64c3
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Ansuel-Smith/Multiple-improvement-for-qca8337-switch/20211010-095850
        git checkout b46afc1d065f0d5add5ea33eae1bf90247ae64c3
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

>> drivers/net/dsa/qca8k.c:1285:23: warning: result of comparison of constant 5099574 with expression of type 'u8' (aka 'unsigned char') is always false [-Wtautological-constant-out-of-range-compare]
                       priv->switch_id == PHY_ID_QCA8337)
                       ~~~~~~~~~~~~~~~ ^  ~~~~~~~~~~~~~~
   drivers/net/dsa/qca8k.c:1284:23: warning: result of comparison of constant 5099572 with expression of type 'u8' (aka 'unsigned char') is always false [-Wtautological-constant-out-of-range-compare]
                   if (priv->switch_id == PHY_ID_QCA8327 ||
                       ~~~~~~~~~~~~~~~ ^  ~~~~~~~~~~~~~~
   2 warnings generated.


vim +1285 drivers/net/dsa/qca8k.c

  1169	
  1170	static void
  1171	qca8k_phylink_mac_config(struct dsa_switch *ds, int port, unsigned int mode,
  1172				 const struct phylink_link_state *state)
  1173	{
  1174		struct qca8k_priv *priv = ds->priv;
  1175		struct dsa_port *dp;
  1176		u32 reg, val;
  1177		int ret;
  1178	
  1179		switch (port) {
  1180		case 0: /* 1st CPU port */
  1181			if (state->interface != PHY_INTERFACE_MODE_RGMII &&
  1182			    state->interface != PHY_INTERFACE_MODE_RGMII_ID &&
  1183			    state->interface != PHY_INTERFACE_MODE_RGMII_TXID &&
  1184			    state->interface != PHY_INTERFACE_MODE_RGMII_RXID &&
  1185			    state->interface != PHY_INTERFACE_MODE_SGMII)
  1186				return;
  1187	
  1188			reg = QCA8K_REG_PORT0_PAD_CTRL;
  1189			break;
  1190		case 1:
  1191		case 2:
  1192		case 3:
  1193		case 4:
  1194		case 5:
  1195			/* Internal PHY, nothing to do */
  1196			return;
  1197		case 6: /* 2nd CPU port / external PHY */
  1198			if (state->interface != PHY_INTERFACE_MODE_RGMII &&
  1199			    state->interface != PHY_INTERFACE_MODE_RGMII_ID &&
  1200			    state->interface != PHY_INTERFACE_MODE_RGMII_TXID &&
  1201			    state->interface != PHY_INTERFACE_MODE_RGMII_RXID &&
  1202			    state->interface != PHY_INTERFACE_MODE_SGMII &&
  1203			    state->interface != PHY_INTERFACE_MODE_1000BASEX)
  1204				return;
  1205	
  1206			reg = QCA8K_REG_PORT6_PAD_CTRL;
  1207			break;
  1208		default:
  1209			dev_err(ds->dev, "%s: unsupported port: %i\n", __func__, port);
  1210			return;
  1211		}
  1212	
  1213		if (port != 6 && phylink_autoneg_inband(mode)) {
  1214			dev_err(ds->dev, "%s: in-band negotiation unsupported\n",
  1215				__func__);
  1216			return;
  1217		}
  1218	
  1219		switch (state->interface) {
  1220		case PHY_INTERFACE_MODE_RGMII:
  1221			/* RGMII mode means no delay so don't enable the delay */
  1222			qca8k_write(priv, reg, QCA8K_PORT_PAD_RGMII_EN);
  1223			break;
  1224		case PHY_INTERFACE_MODE_RGMII_ID:
  1225		case PHY_INTERFACE_MODE_RGMII_TXID:
  1226		case PHY_INTERFACE_MODE_RGMII_RXID:
  1227			/* RGMII_ID needs internal delay. This is enabled through
  1228			 * PORT5_PAD_CTRL for all ports, rather than individual port
  1229			 * registers
  1230			 */
  1231			qca8k_write(priv, reg,
  1232				    QCA8K_PORT_PAD_RGMII_EN |
  1233				    QCA8K_PORT_PAD_RGMII_TX_DELAY(priv->rgmii_tx_delay) |
  1234				    QCA8K_PORT_PAD_RGMII_RX_DELAY(priv->rgmii_rx_delay) |
  1235				    QCA8K_PORT_PAD_RGMII_TX_DELAY_EN |
  1236				    QCA8K_PORT_PAD_RGMII_RX_DELAY_EN);
  1237			/* QCA8337 requires to set rgmii rx delay */
  1238			if (priv->switch_id == QCA8K_ID_QCA8337)
  1239				qca8k_write(priv, QCA8K_REG_PORT5_PAD_CTRL,
  1240					    QCA8K_PORT_PAD_RGMII_RX_DELAY_EN);
  1241			break;
  1242		case PHY_INTERFACE_MODE_SGMII:
  1243		case PHY_INTERFACE_MODE_1000BASEX:
  1244			dp = dsa_to_port(ds, port);
  1245	
  1246			/* Enable SGMII on the port */
  1247			qca8k_write(priv, reg, QCA8K_PORT_PAD_SGMII_EN);
  1248	
  1249			/* Enable/disable SerDes auto-negotiation as necessary */
  1250			ret = qca8k_read(priv, QCA8K_REG_PWS, &val);
  1251			if (ret)
  1252				return;
  1253			if (phylink_autoneg_inband(mode))
  1254				val &= ~QCA8K_PWS_SERDES_AEN_DIS;
  1255			else
  1256				val |= QCA8K_PWS_SERDES_AEN_DIS;
  1257			qca8k_write(priv, QCA8K_REG_PWS, val);
  1258	
  1259			/* Configure the SGMII parameters */
  1260			ret = qca8k_read(priv, QCA8K_REG_SGMII_CTRL, &val);
  1261			if (ret)
  1262				return;
  1263	
  1264			val |= QCA8K_SGMII_EN_PLL | QCA8K_SGMII_EN_RX |
  1265				QCA8K_SGMII_EN_TX | QCA8K_SGMII_EN_SD;
  1266	
  1267			if (dsa_is_cpu_port(ds, port)) {
  1268				/* CPU port, we're talking to the CPU MAC, be a PHY */
  1269				val &= ~QCA8K_SGMII_MODE_CTRL_MASK;
  1270				val |= QCA8K_SGMII_MODE_CTRL_PHY;
  1271			} else if (state->interface == PHY_INTERFACE_MODE_SGMII) {
  1272				val &= ~QCA8K_SGMII_MODE_CTRL_MASK;
  1273				val |= QCA8K_SGMII_MODE_CTRL_MAC;
  1274			} else if (state->interface == PHY_INTERFACE_MODE_1000BASEX) {
  1275				val &= ~QCA8K_SGMII_MODE_CTRL_MASK;
  1276				val |= QCA8K_SGMII_MODE_CTRL_BASEX;
  1277			}
  1278	
  1279			qca8k_write(priv, QCA8K_REG_SGMII_CTRL, val);
  1280	
  1281			/* For qca8327/qca8328/qca8334/qca8338 sgmii is unique and
  1282			 * falling edge is set writing in the PORT0 PAD reg
  1283			 */
  1284			if (priv->switch_id == PHY_ID_QCA8327 ||
> 1285			    priv->switch_id == PHY_ID_QCA8337)
  1286				reg = QCA8K_REG_PORT0_PAD_CTRL;
  1287	
  1288			val = 0;
  1289	
  1290			/* SGMII Clock phase configuration */
  1291			if (of_property_read_bool(dp->dn, "qca,sgmii-rxclk-falling-edge"))
  1292				val |= QCA8K_PORT0_PAD_SGMII_RXCLK_FALLING_EDGE;
  1293	
  1294			if (of_property_read_bool(dp->dn, "qca,sgmii-txclk-falling-edge"))
  1295				val |= QCA8K_PORT0_PAD_SGMII_TXCLK_FALLING_EDGE;
  1296	
  1297			if (val)
  1298				ret = qca8k_rmw(priv, reg,
  1299						QCA8K_PORT0_PAD_SGMII_RXCLK_FALLING_EDGE |
  1300						QCA8K_PORT0_PAD_SGMII_TXCLK_FALLING_EDGE,
  1301						val);
  1302			break;
  1303		default:
  1304			dev_err(ds->dev, "xMII mode %s not supported for port %d\n",
  1305				phy_modes(state->interface), port);
  1306			return;
  1307		}
  1308	}
  1309	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 33844 bytes --]

  reply	other threads:[~2021-10-10  6:13 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-10  1:55 [net-next PATCH v3 00/13] Multiple improvement for qca8337 switch Ansuel Smith
2021-10-10  1:55 ` [net-next PATCH v3 01/13] net: dsa: qca8k: add mac_power_sel support Ansuel Smith
2021-10-10  1:55 ` [net-next PATCH v3 02/13] net: dsa: qca8k: add support for sgmii falling edge Ansuel Smith
2021-10-10  6:12   ` kernel test robot [this message]
2021-10-10  1:55 ` [net-next PATCH v3 03/13] dt-bindings: net: dsa: qca8k: Add MAC swap and clock phase properties Ansuel Smith
2021-10-10  1:55 ` [net-next PATCH v3 04/13] drivers: net: dsa: qca8k: add support for cpu port 6 Ansuel Smith
2021-10-10  1:55 ` [net-next PATCH v3 05/13] dt-bindings: net: dsa: qca8k: Document support for CPU " Ansuel Smith
2021-10-10  1:55 ` [net-next PATCH v3 06/13] net: dsa: qca8k: move rgmii delay detection to phylink mac_config Ansuel Smith
2021-10-10  1:55 ` [net-next PATCH v3 07/13] net: dsa: qca8k: add explicit SGMII PLL enable Ansuel Smith
2021-10-10  1:55 ` [net-next PATCH v3 08/13] dt-bindings: net: dsa: qca8k: Document qca,sgmii-enable-pll Ansuel Smith
2021-10-10  1:55 ` [net-next PATCH v3 09/13] drivers: net: dsa: qca8k: add support for pws config reg Ansuel Smith
2021-10-10  1:56 ` [net-next PATCH v3 10/13] dt-bindings: net: dsa: qca8k: document open drain binding Ansuel Smith
2021-10-10  1:56 ` [net-next PATCH v3 11/13] drivers: net: dsa: qca8k: add support for QCA8328 Ansuel Smith
2021-10-10  1:56 ` [net-next PATCH v3 12/13] dt-bindings: net: dsa: qca8k: document support for qca8328 Ansuel Smith
2021-10-10  1:56 ` [net-next PATCH v3 13/13] drivers: net: dsa: qca8k: set internal delay also for sgmii Ansuel Smith

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202110101441.A4MpG1W0-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=andrew@lunn.ch \
    --cc=ansuelsmth@gmail.com \
    --cc=davem@davemloft.net \
    --cc=devicetree@vger.kernel.org \
    --cc=f.fainelli@gmail.com \
    --cc=kbuild-all@lists.01.org \
    --cc=kuba@kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=llvm@lists.linux.dev \
    --cc=netdev@vger.kernel.org \
    --cc=olteanv@gmail.com \
    --cc=robh+dt@kernel.org \
    --cc=vivien.didelot@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).