From: Vinod Koul <vkoul@kernel.org>
To: Chukun Pan <amadeus@jmu.edu.cn>
Cc: Heiko Stuebner <heiko@sntech.de>,
Philipp Zabel <p.zabel@pengutronix.de>,
Kishon Vijay Abraham I <kishon@kernel.org>,
Jianfeng Liu <liujianfeng1994@gmail.com>,
linux-arm-kernel@lists.infradead.org,
linux-rockchip@lists.infradead.org,
linux-phy@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 1/1] phy: rockchip: naneng-combphy: compatible reset with old DT
Date: Thu, 30 Jan 2025 11:27:14 +0530 [thread overview]
Message-ID: <Z5sUusWDCfFFeh0f@vaman> (raw)
In-Reply-To: <20250106100001.1344418-2-amadeus@jmu.edu.cn>
On 06-01-25, 18:00, Chukun Pan wrote:
> The device tree of RK3568 did not specify reset-names before.
> So add fallback to old behaviour to be compatible with old DT.
>
> Fixes: fbcbffbac994 ("phy: rockchip: naneng-combphy: fix phy reset")
> Cc: Jianfeng Liu <liujianfeng1994@gmail.com>
> Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn>
> ---
> drivers/phy/rockchip/phy-rockchip-naneng-combphy.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c b/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
> index a1532ef8bbe9..8c3ce57f8915 100644
> --- a/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
> +++ b/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
> @@ -324,7 +324,10 @@ static int rockchip_combphy_parse_dt(struct device *dev, struct rockchip_combphy
>
> priv->ext_refclk = device_property_present(dev, "rockchip,ext-refclk");
>
> - priv->phy_rst = devm_reset_control_get(dev, "phy");
> + priv->phy_rst = devm_reset_control_get_exclusive(dev, "phy");
> + /* fallback to old behaviour */
> + if (PTR_ERR(priv->phy_rst) == -ENOENT)
> + priv->phy_rst = devm_reset_control_array_get_exclusive(dev);
That is not *same* behaviour on fallback, why _exclusive() for the
fallback?
> if (IS_ERR(priv->phy_rst))
> return dev_err_probe(dev, PTR_ERR(priv->phy_rst), "failed to get phy reset\n");
>
> --
> 2.25.1
--
~Vinod
WARNING: multiple messages have this Message-ID (diff)
From: Vinod Koul <vkoul@kernel.org>
To: Chukun Pan <amadeus@jmu.edu.cn>
Cc: Heiko Stuebner <heiko@sntech.de>,
Philipp Zabel <p.zabel@pengutronix.de>,
Kishon Vijay Abraham I <kishon@kernel.org>,
Jianfeng Liu <liujianfeng1994@gmail.com>,
linux-arm-kernel@lists.infradead.org,
linux-rockchip@lists.infradead.org,
linux-phy@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 1/1] phy: rockchip: naneng-combphy: compatible reset with old DT
Date: Thu, 30 Jan 2025 11:27:14 +0530 [thread overview]
Message-ID: <Z5sUusWDCfFFeh0f@vaman> (raw)
In-Reply-To: <20250106100001.1344418-2-amadeus@jmu.edu.cn>
On 06-01-25, 18:00, Chukun Pan wrote:
> The device tree of RK3568 did not specify reset-names before.
> So add fallback to old behaviour to be compatible with old DT.
>
> Fixes: fbcbffbac994 ("phy: rockchip: naneng-combphy: fix phy reset")
> Cc: Jianfeng Liu <liujianfeng1994@gmail.com>
> Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn>
> ---
> drivers/phy/rockchip/phy-rockchip-naneng-combphy.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c b/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
> index a1532ef8bbe9..8c3ce57f8915 100644
> --- a/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
> +++ b/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
> @@ -324,7 +324,10 @@ static int rockchip_combphy_parse_dt(struct device *dev, struct rockchip_combphy
>
> priv->ext_refclk = device_property_present(dev, "rockchip,ext-refclk");
>
> - priv->phy_rst = devm_reset_control_get(dev, "phy");
> + priv->phy_rst = devm_reset_control_get_exclusive(dev, "phy");
> + /* fallback to old behaviour */
> + if (PTR_ERR(priv->phy_rst) == -ENOENT)
> + priv->phy_rst = devm_reset_control_array_get_exclusive(dev);
That is not *same* behaviour on fallback, why _exclusive() for the
fallback?
> if (IS_ERR(priv->phy_rst))
> return dev_err_probe(dev, PTR_ERR(priv->phy_rst), "failed to get phy reset\n");
>
> --
> 2.25.1
--
~Vinod
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
WARNING: multiple messages have this Message-ID (diff)
From: Vinod Koul <vkoul@kernel.org>
To: Chukun Pan <amadeus@jmu.edu.cn>
Cc: Heiko Stuebner <heiko@sntech.de>,
Philipp Zabel <p.zabel@pengutronix.de>,
Kishon Vijay Abraham I <kishon@kernel.org>,
Jianfeng Liu <liujianfeng1994@gmail.com>,
linux-arm-kernel@lists.infradead.org,
linux-rockchip@lists.infradead.org,
linux-phy@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 1/1] phy: rockchip: naneng-combphy: compatible reset with old DT
Date: Thu, 30 Jan 2025 11:27:14 +0530 [thread overview]
Message-ID: <Z5sUusWDCfFFeh0f@vaman> (raw)
In-Reply-To: <20250106100001.1344418-2-amadeus@jmu.edu.cn>
On 06-01-25, 18:00, Chukun Pan wrote:
> The device tree of RK3568 did not specify reset-names before.
> So add fallback to old behaviour to be compatible with old DT.
>
> Fixes: fbcbffbac994 ("phy: rockchip: naneng-combphy: fix phy reset")
> Cc: Jianfeng Liu <liujianfeng1994@gmail.com>
> Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn>
> ---
> drivers/phy/rockchip/phy-rockchip-naneng-combphy.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c b/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
> index a1532ef8bbe9..8c3ce57f8915 100644
> --- a/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
> +++ b/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
> @@ -324,7 +324,10 @@ static int rockchip_combphy_parse_dt(struct device *dev, struct rockchip_combphy
>
> priv->ext_refclk = device_property_present(dev, "rockchip,ext-refclk");
>
> - priv->phy_rst = devm_reset_control_get(dev, "phy");
> + priv->phy_rst = devm_reset_control_get_exclusive(dev, "phy");
> + /* fallback to old behaviour */
> + if (PTR_ERR(priv->phy_rst) == -ENOENT)
> + priv->phy_rst = devm_reset_control_array_get_exclusive(dev);
That is not *same* behaviour on fallback, why _exclusive() for the
fallback?
> if (IS_ERR(priv->phy_rst))
> return dev_err_probe(dev, PTR_ERR(priv->phy_rst), "failed to get phy reset\n");
>
> --
> 2.25.1
--
~Vinod
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
next prev parent reply other threads:[~2025-01-30 5:58 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-06 10:00 [PATCH v2 0/1] phy: rockchip: naneng-combphy: compatible reset with old DT Chukun Pan
2025-01-06 10:00 ` Chukun Pan
2025-01-06 10:00 ` Chukun Pan
2025-01-06 10:00 ` [PATCH v2 1/1] " Chukun Pan
2025-01-06 10:00 ` Chukun Pan
2025-01-06 10:00 ` Chukun Pan
2025-01-13 21:45 ` Jonas Karlman
2025-01-13 21:45 ` Jonas Karlman
2025-01-13 21:45 ` Jonas Karlman
2025-01-15 4:00 ` Chukun Pan
2025-01-15 4:00 ` Chukun Pan
2025-01-15 4:00 ` Chukun Pan
2025-01-15 8:07 ` Jonas Karlman
2025-01-15 8:07 ` Jonas Karlman
2025-01-15 8:07 ` Jonas Karlman
2025-01-30 5:57 ` Vinod Koul [this message]
2025-01-30 5:57 ` Vinod Koul
2025-01-30 5:57 ` Vinod Koul
2025-01-30 10:11 ` Jonas Karlman
2025-01-30 10:11 ` Jonas Karlman
2025-01-30 10:11 ` Jonas Karlman
2025-01-31 9:52 ` [PATCH v2 0/1] " Vinod Koul
2025-01-31 9:52 ` Vinod Koul
2025-01-31 9:52 ` Vinod Koul
2025-02-11 13:03 ` Valentin Kleibel
2025-02-11 13:03 ` Valentin Kleibel
2025-02-11 13:03 ` Valentin Kleibel
2025-02-18 11:45 ` Diederik de Haas
2025-02-18 11:45 ` Diederik de Haas
2025-02-18 11:45 ` Diederik de Haas
2025-02-21 7:18 ` Salvatore Bonaccorso
2025-02-21 7:18 ` Salvatore Bonaccorso
2025-02-21 7:18 ` Salvatore Bonaccorso
2025-02-21 8:57 ` Diederik de Haas
2025-02-21 8:57 ` Diederik de Haas
2025-02-21 8:57 ` Diederik de Haas
2025-02-21 9:19 ` Heiko Stübner
2025-02-21 9:19 ` Heiko Stübner
2025-02-21 9:19 ` Heiko Stübner
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=Z5sUusWDCfFFeh0f@vaman \
--to=vkoul@kernel.org \
--cc=amadeus@jmu.edu.cn \
--cc=heiko@sntech.de \
--cc=kishon@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=liujianfeng1994@gmail.com \
--cc=p.zabel@pengutronix.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.