LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Andrew Lunn <andrew@lunn.ch>
To: Luo Jie <luoj@codeaurora.org>
Cc: hkallweit1@gmail.com, davem@davemloft.net, kuba@kernel.org,
p.zabel@pengutronix.de, agross@kernel.org,
bjorn.andersson@linaro.org, robh+dt@kernel.org,
robert.marko@sartura.hr, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org,
devicetree@vger.kernel.org, sricharan@codeaurora.org
Subject: Re: [PATCH 1/3] net: mdio-ipq4019: Add mdio reset function
Date: Thu, 29 Jul 2021 15:26:54 +0200 [thread overview]
Message-ID: <YQKsnqWCfoTpTuxI@lunn.ch> (raw)
In-Reply-To: <20210729125358.5227-1-luoj@codeaurora.org>
Hi Luo
For a patchset, netdev wants to see a patch 0/X which describes the
big picture. What is the patchset as a whole doing.
> +static int ipq_mdio_reset(struct mii_bus *bus)
> +{
> + struct ipq4019_mdio_data *priv = bus->priv;
> + struct device *dev = bus->parent;
> + struct gpio_desc *reset_gpio;
> + u32 val;
> + int i, ret;
> +
> + /* To indicate CMN_PLL that ethernet_ldo has been ready if needed */
> + if (!IS_ERR(priv->eth_ldo_rdy)) {
> + val = readl(priv->eth_ldo_rdy);
> + val |= BIT(0);
> + writel(val, priv->eth_ldo_rdy);
> + fsleep(QCA_PHY_SET_DELAY_US);
> + }
> +
> + /* Reset GEPHY if need */
> + if (!IS_ERR(priv->reset_ctrl)) {
> + reset_control_assert(priv->reset_ctrl);
> + fsleep(QCA_PHY_SET_DELAY_US);
> + reset_control_deassert(priv->reset_ctrl);
> + fsleep(QCA_PHY_SET_DELAY_US);
> + }
What exactly is being reset here? Which is GEPHY?
The MDIO bus master driver should not be touching any Ethernet
PHYs. All it provides is a bus, nothing more.
> +
> + /* Configure MDIO clock frequency */
> + if (!IS_ERR(priv->mdio_clk)) {
> + ret = clk_set_rate(priv->mdio_clk, QCA_MDIO_CLK_RATE);
> + if (ret)
> + return ret;
> +
> + ret = clk_prepare_enable(priv->mdio_clk);
> + if (ret)
> + return ret;
> + }
> +
> + /* Reset PHYs by gpio pins */
> + for (i = 0; i < gpiod_count(dev, "phy-reset"); i++) {
> + reset_gpio = gpiod_get_index_optional(dev, "phy-reset", i, GPIOD_OUT_HIGH);
> + if (IS_ERR(reset_gpio))
> + continue;
> + gpiod_set_value_cansleep(reset_gpio, 0);
> + fsleep(QCA_PHY_SET_DELAY_US);
> + gpiod_set_value_cansleep(reset_gpio, 1);
> + fsleep(QCA_PHY_SET_DELAY_US);
> + gpiod_put(reset_gpio);
> + }
No, there is common code in phylib to do that.
> static int ipq4019_mdio_probe(struct platform_device *pdev)
> {
> struct ipq4019_mdio_data *priv;
> struct mii_bus *bus;
> + struct resource *res;
> int ret;
>
> bus = devm_mdiobus_alloc_size(&pdev->dev, sizeof(*priv));
> @@ -182,14 +244,23 @@ static int ipq4019_mdio_probe(struct platform_device *pdev)
> return -ENOMEM;
>
> priv = bus->priv;
> + priv->eth_ldo_rdy = IOMEM_ERR_PTR(-EINVAL);
>
> priv->membase = devm_platform_ioremap_resource(pdev, 0);
> if (IS_ERR(priv->membase))
> return PTR_ERR(priv->membase);
>
> + res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
> + if (res)
> + priv->eth_ldo_rdy = devm_ioremap_resource(&pdev->dev, res);
> +
> + priv->reset_ctrl = devm_reset_control_get_exclusive(&pdev->dev, "gephy_mdc_rst");
> + priv->mdio_clk = devm_clk_get(&pdev->dev, "gcc_mdio_ahb_clk");
You probably want to use devm_clk_get_optional().
Andrew
next prev parent reply other threads:[~2021-07-29 13:27 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-29 12:53 Luo Jie
2021-07-29 12:53 ` [PATCH 2/3] net: mdio-ipq4019: rename mdio_ipq4019 to mdio_ipq Luo Jie
2021-07-29 13:15 ` Andrew Lunn
2021-08-02 5:56 ` luoj
2021-07-29 12:53 ` [PATCH 3/3] dt-bindings: net: rename Qualcomm IPQ MDIO bindings Luo Jie
2021-07-29 13:17 ` Andrew Lunn
2021-08-02 6:02 ` luoj
2021-07-29 13:57 ` Rob Herring
2021-07-29 17:29 ` Rob Herring
2021-08-02 7:19 ` luoj
2021-08-02 13:39 ` Andrew Lunn
2021-08-04 2:37 ` Jie Luo
2021-07-29 13:26 ` Andrew Lunn [this message]
2021-08-02 6:46 ` [PATCH 1/3] net: mdio-ipq4019: Add mdio reset function luoj
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=YQKsnqWCfoTpTuxI@lunn.ch \
--to=andrew@lunn.ch \
--cc=agross@kernel.org \
--cc=bjorn.andersson@linaro.org \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=hkallweit1@gmail.com \
--cc=kuba@kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luoj@codeaurora.org \
--cc=netdev@vger.kernel.org \
--cc=p.zabel@pengutronix.de \
--cc=robert.marko@sartura.hr \
--cc=robh+dt@kernel.org \
--cc=sricharan@codeaurora.org \
--subject='Re: [PATCH 1/3] net: mdio-ipq4019: Add mdio reset function' \
/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
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).