[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20220624162956.vn4b3va5cz2agvrb@mercury.elektranox.org>
Date: Fri, 24 Jun 2022 18:29:56 +0200
From: Sebastian Reichel <sebastian.reichel@...labora.com>
To: Andrew Lunn <andrew@...n.ch>
Cc: Giuseppe Cavallaro <peppe.cavallaro@...com>,
Alexandre Torgue <alexandre.torgue@...s.st.com>,
Jose Abreu <joabreu@...opsys.com>,
"David S. Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>,
Paolo Abeni <pabeni@...hat.com>,
Rob Herring <robh+dt@...nel.org>,
Krzysztof Kozlowski <krzk+dt@...nel.org>,
netdev@...r.kernel.org, linux-rockchip@...ts.infradead.org,
linux-arm-kernel@...ts.infradead.org, devicetree@...r.kernel.org,
David Wu <david.wu@...k-chips.com>, kernel@...labora.com
Subject: Re: [PATCH 1/3] net: ethernet: stmmac: dwmac-rk: Disable delayline
if it is invalid
Hi,
On Fri, Jun 24, 2022 at 01:18:53PM +0200, Andrew Lunn wrote:
> > @@ -1422,7 +1420,7 @@ static struct rk_priv_data *rk_gmac_setup(struct platform_device *pdev,
> >
> > ret = of_property_read_u32(dev->of_node, "tx_delay", &value);
> > if (ret) {
> > - bsp_priv->tx_delay = 0x30;
> > + bsp_priv->tx_delay = -1;
> > dev_err(dev, "Can not read property: tx_delay.");
> > dev_err(dev, "set tx_delay to 0x%x\n",
> > bsp_priv->tx_delay);
> > @@ -1433,7 +1431,7 @@ static struct rk_priv_data *rk_gmac_setup(struct platform_device *pdev,
> >
> > ret = of_property_read_u32(dev->of_node, "rx_delay", &value);
> > if (ret) {
> > - bsp_priv->rx_delay = 0x10;
> > + bsp_priv->rx_delay = -1;
> > dev_err(dev, "Can not read property: rx_delay.");
> > dev_err(dev, "set rx_delay to 0x%x\n",
> > bsp_priv->rx_delay);
>
> rockchip-dwmac.yaml says:
>
> tx_delay:
> description: Delay value for TXD timing. Range value is 0~0x7F, 0x30 as default.
> $ref: /schemas/types.yaml#/definitions/uint32
>
> rx_delay:
> description: Delay value for RXD timing. Range value is 0~0x7F, 0x10 as default.
> $ref: /schemas/types.yaml#/definitions/uint32
>
> So it seems to me you are changing the documented default. You cannot
> do that, this is ABI.
Right. I suppose we either need a disable value or an extra property. I
can add support for supplying (-1) from DT. Does that sounds ok to
everyone?
-- Sebastian
Download attachment "signature.asc" of type "application/pgp-signature" (834 bytes)
Powered by blists - more mailing lists