From: Vladimir Oltean <olteanv@gmail.com>
To: Ansuel Smith <ansuelsmth@gmail.com>
Cc: Andrew Lunn <andrew@lunn.ch>,
Vivien Didelot <vivien.didelot@gmail.com>,
Florian Fainelli <f.fainelli@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>,
netdev@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [net-next PATCH v4 06/13] net: dsa: qca8k: move rgmii delay detection to phylink mac_config
Date: Sun, 10 Oct 2021 15:47:32 +0300 [thread overview]
Message-ID: <20211010124732.fageoraoweqqfoew@skbuf> (raw)
In-Reply-To: <20211010111556.30447-7-ansuelsmth@gmail.com>
On Sun, Oct 10, 2021 at 01:15:49PM +0200, Ansuel Smith wrote:
> Future proof commit. This switch have 2 CPU port and one valid
> configuration is first CPU port set to sgmii and second CPU port set to
> regmii-id. The current implementation detects delay only for CPU port
> zero set to rgmii and doesn't count any delay set in a secondary CPU
> port. Drop the current delay scan function and move it to the phylink
> mac_config to generilize and implicitly add support for secondary CPU
> port set to rgmii-id.
>
> Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
> ---
> drivers/net/dsa/qca8k.c | 121 +++++++++++++++-------------------------
> drivers/net/dsa/qca8k.h | 2 -
> 2 files changed, 44 insertions(+), 79 deletions(-)
>
> diff --git a/drivers/net/dsa/qca8k.c b/drivers/net/dsa/qca8k.c
> index df0a622acdd7..126f20b0b94c 100644
> --- a/drivers/net/dsa/qca8k.c
> +++ b/drivers/net/dsa/qca8k.c
> @@ -888,68 +888,6 @@ qca8k_setup_mdio_bus(struct qca8k_priv *priv)
> return 0;
> }
>
> -static int
> -qca8k_setup_of_rgmii_delay(struct qca8k_priv *priv)
I was actually going to say that since RGMII delays are runtime
invariants, you should move their entire programming to probe time, now
you move device tree parsing to runtime :-/
> -{
> - struct device_node *port_dn;
> - phy_interface_t mode;
> - struct dsa_port *dp;
> - u32 val;
> -
> - /* CPU port is already checked */
> - dp = dsa_to_port(priv->ds, 0);
> -
> - port_dn = dp->dn;
> -
> - /* Check if port 0 is set to the correct type */
> - of_get_phy_mode(port_dn, &mode);
> - if (mode != PHY_INTERFACE_MODE_RGMII_ID &&
> - mode != PHY_INTERFACE_MODE_RGMII_RXID &&
> - mode != PHY_INTERFACE_MODE_RGMII_TXID) {
> - return 0;
> - }
> -
> - switch (mode) {
> - case PHY_INTERFACE_MODE_RGMII_ID:
> - case PHY_INTERFACE_MODE_RGMII_RXID:
Also, since you touch this area.
There have been tons of discussions on this topic, but I believe that
your interpretation of the RGMII delays is wrong.
Basically a MAC should not apply delays based on the phy-mode string (so
it should treat "rgmii" same as "rgmii-id"), but based on the value of
"rx-internal-delay-ps" and "tx-internal-delay-ps".
The phy-mode is for a PHY to use.
> - if (of_property_read_u32(port_dn, "rx-internal-delay-ps", &val))
> - val = 2;
> - else
> - /* Switch regs accept value in ns, convert ps to ns */
> - val = val / 1000;
> -
> - if (val > QCA8K_MAX_DELAY) {
> - dev_err(priv->dev, "rgmii rx delay is limited to a max value of 3ns, setting to the max value");
> - val = 3;
> - }
> -
> - priv->rgmii_rx_delay = val;
> - /* Stop here if we need to check only for rx delay */
> - if (mode != PHY_INTERFACE_MODE_RGMII_ID)
> - break;
> -
> - fallthrough;
> - case PHY_INTERFACE_MODE_RGMII_TXID:
> - if (of_property_read_u32(port_dn, "tx-internal-delay-ps", &val))
> - val = 1;
> - else
> - /* Switch regs accept value in ns, convert ps to ns */
> - val = val / 1000;
> -
> - if (val > QCA8K_MAX_DELAY) {
> - dev_err(priv->dev, "rgmii tx delay is limited to a max value of 3ns, setting to the max value");
> - val = 3;
> - }
> -
> - priv->rgmii_tx_delay = val;
> - break;
> - default:
> - return 0;
> - }
> -
> - return 0;
> -}
> -
> static int
> qca8k_setup_mac_pwr_sel(struct qca8k_priv *priv)
> {
> @@ -1019,10 +957,6 @@ qca8k_setup(struct dsa_switch *ds)
> if (ret)
> return ret;
>
> - ret = qca8k_setup_of_rgmii_delay(priv);
> - if (ret)
> - return ret;
> -
> ret = qca8k_setup_mac_pwr_sel(priv);
> if (ret)
> return ret;
> @@ -1190,7 +1124,7 @@ qca8k_phylink_mac_config(struct dsa_switch *ds, int port, unsigned int mode,
> {
> struct qca8k_priv *priv = ds->priv;
> struct dsa_port *dp;
> - u32 reg, val;
> + u32 reg, val, delay;
> int ret;
>
> switch (port) {
> @@ -1241,17 +1175,50 @@ qca8k_phylink_mac_config(struct dsa_switch *ds, int port, unsigned int mode,
> case PHY_INTERFACE_MODE_RGMII_ID:
> case PHY_INTERFACE_MODE_RGMII_TXID:
> case PHY_INTERFACE_MODE_RGMII_RXID:
> - /* RGMII_ID needs internal delay. This is enabled through
> - * PORT5_PAD_CTRL for all ports, rather than individual port
> - * registers
> + dp = dsa_to_port(ds, port);
> + val = QCA8K_PORT_PAD_RGMII_EN;
> +
> + if (state->interface == PHY_INTERFACE_MODE_RGMII_ID ||
> + state->interface == PHY_INTERFACE_MODE_RGMII_TXID) {
> + if (of_property_read_u32(dp->dn, "tx-internal-delay-ps", &delay))
> + delay = 1;
> + else
> + /* Switch regs accept value in ns, convert ps to ns */
> + delay = delay / 1000;
> +
> + if (delay > QCA8K_MAX_DELAY) {
> + dev_err(priv->dev, "rgmii tx delay is limited to a max value of 3ns, setting to the max value");
> + delay = 3;
> + }
> +
> + val |= QCA8K_PORT_PAD_RGMII_TX_DELAY(delay) |
> + QCA8K_PORT_PAD_RGMII_TX_DELAY_EN;
> + }
> +
> + if (state->interface == PHY_INTERFACE_MODE_RGMII_ID ||
> + state->interface == PHY_INTERFACE_MODE_RGMII_RXID) {
> + if (of_property_read_u32(dp->dn, "rx-internal-delay-ps", &delay))
> + delay = 2;
> + else
> + /* Switch regs accept value in ns, convert ps to ns */
> + delay = delay / 1000;
> +
> + if (delay > QCA8K_MAX_DELAY) {
> + dev_err(priv->dev, "rgmii rx delay is limited to a max value of 3ns, setting to the max value");
> + delay = 3;
> + }
> +
> + val |= QCA8K_PORT_PAD_RGMII_RX_DELAY(delay) |
> + QCA8K_PORT_PAD_RGMII_RX_DELAY_EN;
> + }
> +
> + /* Set RGMII delay based on the selected values */
> + qca8k_write(priv, reg, val);
> +
> + /* QCA8337 requires to set rgmii rx delay for all ports.
> + * This is enabled through PORT5_PAD_CTRL for all ports,
> + * rather than individual port registers.
> */
> - qca8k_write(priv, reg,
> - QCA8K_PORT_PAD_RGMII_EN |
> - QCA8K_PORT_PAD_RGMII_TX_DELAY(priv->rgmii_tx_delay) |
> - QCA8K_PORT_PAD_RGMII_RX_DELAY(priv->rgmii_rx_delay) |
> - QCA8K_PORT_PAD_RGMII_TX_DELAY_EN |
> - QCA8K_PORT_PAD_RGMII_RX_DELAY_EN);
> - /* QCA8337 requires to set rgmii rx delay */
> if (priv->switch_id == QCA8K_ID_QCA8337)
> qca8k_write(priv, QCA8K_REG_PORT5_PAD_CTRL,
> QCA8K_PORT_PAD_RGMII_RX_DELAY_EN);
> diff --git a/drivers/net/dsa/qca8k.h b/drivers/net/dsa/qca8k.h
> index 5df0f0ef6526..a790b27bc310 100644
> --- a/drivers/net/dsa/qca8k.h
> +++ b/drivers/net/dsa/qca8k.h
> @@ -259,8 +259,6 @@ struct qca8k_match_data {
> struct qca8k_priv {
> u8 switch_id;
> u8 switch_revision;
> - u8 rgmii_tx_delay;
> - u8 rgmii_rx_delay;
> bool legacy_phy_port_mapping;
> struct regmap *regmap;
> struct mii_bus *bus;
> --
> 2.32.0
>
next prev parent reply other threads:[~2021-10-10 12:47 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-10 11:15 [net-next PATCH v4 00/13] Multiple improvement for qca8337 switch Ansuel Smith
2021-10-10 11:15 ` [net-next PATCH v4 01/13] net: dsa: qca8k: add mac_power_sel support Ansuel Smith
2021-10-10 19:42 ` Vladimir Oltean
2021-10-10 11:15 ` [net-next PATCH v4 02/13] net: dsa: qca8k: add support for sgmii falling edge Ansuel Smith
2021-10-10 12:05 ` Vladimir Oltean
2021-10-10 12:10 ` Ansuel Smith
2021-10-10 12:50 ` Vladimir Oltean
2021-10-10 11:15 ` [net-next PATCH v4 03/13] dt-bindings: net: dsa: qca8k: Add MAC swap and clock phase properties Ansuel Smith
2021-10-10 12:07 ` Vladimir Oltean
2021-10-10 12:11 ` Ansuel Smith
2021-10-10 11:15 ` [net-next PATCH v4 04/13] drivers: net: dsa: qca8k: add support for cpu port 6 Ansuel Smith
2021-10-10 12:42 ` Vladimir Oltean
2021-10-10 13:22 ` Ansuel Smith
2021-10-11 8:17 ` Jonathan McDowell
2021-10-10 11:15 ` [net-next PATCH v4 05/13] dt-bindings: net: dsa: qca8k: Document support for CPU " Ansuel Smith
2021-10-10 11:15 ` [net-next PATCH v4 06/13] net: dsa: qca8k: move rgmii delay detection to phylink mac_config Ansuel Smith
2021-10-10 12:47 ` Vladimir Oltean [this message]
2021-10-10 13:28 ` Ansuel Smith
2021-10-10 18:11 ` Vladimir Oltean
2021-10-10 18:18 ` Ansuel Smith
2021-10-10 15:18 ` Andrew Lunn
2021-10-10 15:53 ` Vladimir Oltean
2021-10-10 11:15 ` [net-next PATCH v4 07/13] net: dsa: qca8k: add explicit SGMII PLL enable Ansuel Smith
2021-10-10 11:15 ` [net-next PATCH v4 08/13] dt-bindings: net: dsa: qca8k: Document qca,sgmii-enable-pll Ansuel Smith
2021-10-10 11:15 ` [net-next PATCH v4 09/13] drivers: net: dsa: qca8k: add support for pws config reg Ansuel Smith
2021-10-10 11:15 ` [net-next PATCH v4 10/13] dt-bindings: net: dsa: qca8k: document open drain binding Ansuel Smith
2021-10-10 12:54 ` Vladimir Oltean
2021-10-10 11:15 ` [net-next PATCH v4 11/13] drivers: net: dsa: qca8k: add support for QCA8328 Ansuel Smith
2021-10-10 11:15 ` [net-next PATCH v4 12/13] dt-bindings: net: dsa: qca8k: document support for qca8328 Ansuel Smith
2021-10-10 11:15 ` [net-next PATCH v4 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=20211010124732.fageoraoweqqfoew@skbuf \
--to=olteanv@gmail.com \
--cc=andrew@lunn.ch \
--cc=ansuelsmth@gmail.com \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=f.fainelli@gmail.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=netdev@vger.kernel.org \
--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).