From: Grygorii Strashko <grygorii.strashko-l0cyMroinI0@public.gmane.org>
To: "David Rivshin (Allworx)"
<drivshin.allworx-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
David Miller <davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>,
Mugunthan V N <mugunthanvnm-l0cyMroinI0@public.gmane.org>,
Andrew Goodbody
<andrew.goodbody-nYQdZkeIoGZN8Ch2cx6nig@public.gmane.org>,
Markus Brunner
<systemprogrammierung.brunner-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
Nicolas Chauvet <kwizart-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Subject: Re: [PATCH net v2 3/3] drivers: net: cpsw: use of_phy_connect() in fixed-link case
Date: Fri, 22 Apr 2016 16:34:08 +0300 [thread overview]
Message-ID: <571A2850.30700@ti.com> (raw)
In-Reply-To: <1461264066-12358-1-git-send-email-drivshin.allworx-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
On 04/21/2016 09:41 PM, David Rivshin (Allworx) wrote:
> From: David Rivshin <drivshin-5fOYsn7Fw8lBDgjK7y7TUQ@public.gmane.org>
>
> If a fixed-link DT subnode is used, the phy_device was looked up so
> that a PHY ID string could be constructed and passed to phy_connect().
> This is not necessary, as the device_node can be passed directly to
> of_phy_connect() instead. This reuses the same codepath as if the
> phy-handle DT property was used.
>
> Signed-off-by: David Rivshin <drivshin-5fOYsn7Fw8lBDgjK7y7TUQ@public.gmane.org>
> Tested-by: Nicolas Chauvet <kwizart-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> ---
>
> Changes since v1 [1]:
> - Rebased (trivial conflict, e5a03bfd modified the deleted snprintf)
> - Added Tested-by from Nicolas Chauvet
>
> [1] https://patchwork.ozlabs.org/patch/560327/
>
Reviewed-by: Grygorii Strashko <grygorii.strashko-l0cyMroinI0@public.gmane.org>
>
> drivers/net/ethernet/ti/cpsw.c | 11 +----------
> 1 file changed, 1 insertion(+), 10 deletions(-)
>
> diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
> index 3c81413..245f919 100644
> --- a/drivers/net/ethernet/ti/cpsw.c
> +++ b/drivers/net/ethernet/ti/cpsw.c
> @@ -2038,30 +2038,21 @@ static int cpsw_probe_dt(struct cpsw_platform_data *data,
> "phy-handle", 0);
> parp = of_get_property(slave_node, "phy_id", &lenp);
> if (slave_data->phy_node) {
> dev_dbg(&pdev->dev,
> "slave[%d] using phy-handle=\"%s\"\n",
> i, slave_data->phy_node->full_name);
> } else if (of_phy_is_fixed_link(slave_node)) {
> - struct device_node *phy_node;
> - struct phy_device *phy_dev;
> -
> /* In the case of a fixed PHY, the DT node associated
> * to the PHY is the Ethernet MAC DT node.
> */
> ret = of_phy_register_fixed_link(slave_node);
> if (ret)
> return ret;
> - phy_node = of_node_get(slave_node);
> - phy_dev = of_phy_find_device(phy_node);
> - if (!phy_dev)
> - return -ENODEV;
> - snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
> - PHY_ID_FMT, phy_dev->mdio.bus->id,
> - phy_dev->mdio.addr);
> + slave_data->phy_node = of_node_get(slave_node);
> } else if (parp) {
> u32 phyid;
> struct device_node *mdio_node;
> struct platform_device *mdio;
>
> if (lenp != (sizeof(__be32) * 2)) {
> dev_err(&pdev->dev, "Invalid slave[%d] phy_id property\n", i);
>
--
regards,
-grygorii
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: grygorii.strashko@ti.com (Grygorii Strashko)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH net v2 3/3] drivers: net: cpsw: use of_phy_connect() in fixed-link case
Date: Fri, 22 Apr 2016 16:34:08 +0300 [thread overview]
Message-ID: <571A2850.30700@ti.com> (raw)
In-Reply-To: <1461264066-12358-1-git-send-email-drivshin.allworx@gmail.com>
On 04/21/2016 09:41 PM, David Rivshin (Allworx) wrote:
> From: David Rivshin <drivshin@allworx.com>
>
> If a fixed-link DT subnode is used, the phy_device was looked up so
> that a PHY ID string could be constructed and passed to phy_connect().
> This is not necessary, as the device_node can be passed directly to
> of_phy_connect() instead. This reuses the same codepath as if the
> phy-handle DT property was used.
>
> Signed-off-by: David Rivshin <drivshin@allworx.com>
> Tested-by: Nicolas Chauvet <kwizart@gmail.com>
> ---
>
> Changes since v1 [1]:
> - Rebased (trivial conflict, e5a03bfd modified the deleted snprintf)
> - Added Tested-by from Nicolas Chauvet
>
> [1] https://patchwork.ozlabs.org/patch/560327/
>
Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com>
>
> drivers/net/ethernet/ti/cpsw.c | 11 +----------
> 1 file changed, 1 insertion(+), 10 deletions(-)
>
> diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
> index 3c81413..245f919 100644
> --- a/drivers/net/ethernet/ti/cpsw.c
> +++ b/drivers/net/ethernet/ti/cpsw.c
> @@ -2038,30 +2038,21 @@ static int cpsw_probe_dt(struct cpsw_platform_data *data,
> "phy-handle", 0);
> parp = of_get_property(slave_node, "phy_id", &lenp);
> if (slave_data->phy_node) {
> dev_dbg(&pdev->dev,
> "slave[%d] using phy-handle=\"%s\"\n",
> i, slave_data->phy_node->full_name);
> } else if (of_phy_is_fixed_link(slave_node)) {
> - struct device_node *phy_node;
> - struct phy_device *phy_dev;
> -
> /* In the case of a fixed PHY, the DT node associated
> * to the PHY is the Ethernet MAC DT node.
> */
> ret = of_phy_register_fixed_link(slave_node);
> if (ret)
> return ret;
> - phy_node = of_node_get(slave_node);
> - phy_dev = of_phy_find_device(phy_node);
> - if (!phy_dev)
> - return -ENODEV;
> - snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
> - PHY_ID_FMT, phy_dev->mdio.bus->id,
> - phy_dev->mdio.addr);
> + slave_data->phy_node = of_node_get(slave_node);
> } else if (parp) {
> u32 phyid;
> struct device_node *mdio_node;
> struct platform_device *mdio;
>
> if (lenp != (sizeof(__be32) * 2)) {
> dev_err(&pdev->dev, "Invalid slave[%d] phy_id property\n", i);
>
--
regards,
-grygorii
WARNING: multiple messages have this Message-ID (diff)
From: Grygorii Strashko <grygorii.strashko@ti.com>
To: "David Rivshin (Allworx)" <drivshin.allworx@gmail.com>,
<netdev@vger.kernel.org>, <linux-omap@vger.kernel.org>
Cc: <linux-arm-kernel@lists.infradead.org>,
<devicetree@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
David Miller <davem@davemloft.net>,
Mugunthan V N <mugunthanvnm@ti.com>,
Andrew Goodbody <andrew.goodbody@cambrionix.com>,
Markus Brunner <systemprogrammierung.brunner@gmail.com>,
Nicolas Chauvet <kwizart@gmail.com>
Subject: Re: [PATCH net v2 3/3] drivers: net: cpsw: use of_phy_connect() in fixed-link case
Date: Fri, 22 Apr 2016 16:34:08 +0300 [thread overview]
Message-ID: <571A2850.30700@ti.com> (raw)
In-Reply-To: <1461264066-12358-1-git-send-email-drivshin.allworx@gmail.com>
On 04/21/2016 09:41 PM, David Rivshin (Allworx) wrote:
> From: David Rivshin <drivshin@allworx.com>
>
> If a fixed-link DT subnode is used, the phy_device was looked up so
> that a PHY ID string could be constructed and passed to phy_connect().
> This is not necessary, as the device_node can be passed directly to
> of_phy_connect() instead. This reuses the same codepath as if the
> phy-handle DT property was used.
>
> Signed-off-by: David Rivshin <drivshin@allworx.com>
> Tested-by: Nicolas Chauvet <kwizart@gmail.com>
> ---
>
> Changes since v1 [1]:
> - Rebased (trivial conflict, e5a03bfd modified the deleted snprintf)
> - Added Tested-by from Nicolas Chauvet
>
> [1] https://patchwork.ozlabs.org/patch/560327/
>
Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com>
>
> drivers/net/ethernet/ti/cpsw.c | 11 +----------
> 1 file changed, 1 insertion(+), 10 deletions(-)
>
> diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
> index 3c81413..245f919 100644
> --- a/drivers/net/ethernet/ti/cpsw.c
> +++ b/drivers/net/ethernet/ti/cpsw.c
> @@ -2038,30 +2038,21 @@ static int cpsw_probe_dt(struct cpsw_platform_data *data,
> "phy-handle", 0);
> parp = of_get_property(slave_node, "phy_id", &lenp);
> if (slave_data->phy_node) {
> dev_dbg(&pdev->dev,
> "slave[%d] using phy-handle=\"%s\"\n",
> i, slave_data->phy_node->full_name);
> } else if (of_phy_is_fixed_link(slave_node)) {
> - struct device_node *phy_node;
> - struct phy_device *phy_dev;
> -
> /* In the case of a fixed PHY, the DT node associated
> * to the PHY is the Ethernet MAC DT node.
> */
> ret = of_phy_register_fixed_link(slave_node);
> if (ret)
> return ret;
> - phy_node = of_node_get(slave_node);
> - phy_dev = of_phy_find_device(phy_node);
> - if (!phy_dev)
> - return -ENODEV;
> - snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
> - PHY_ID_FMT, phy_dev->mdio.bus->id,
> - phy_dev->mdio.addr);
> + slave_data->phy_node = of_node_get(slave_node);
> } else if (parp) {
> u32 phyid;
> struct device_node *mdio_node;
> struct platform_device *mdio;
>
> if (lenp != (sizeof(__be32) * 2)) {
> dev_err(&pdev->dev, "Invalid slave[%d] phy_id property\n", i);
>
--
regards,
-grygorii
WARNING: multiple messages have this Message-ID (diff)
From: Grygorii Strashko <grygorii.strashko-l0cyMroinI0@public.gmane.org>
To: "David Rivshin (Allworx)"
<drivshin.allworx-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
<netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
<linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Cc: <linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>,
<devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
David Miller <davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>,
Mugunthan V N <mugunthanvnm-l0cyMroinI0@public.gmane.org>,
Andrew Goodbody
<andrew.goodbody-nYQdZkeIoGZN8Ch2cx6nig@public.gmane.org>,
Markus Brunner
<systemprogrammierung.brunner-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
Nicolas Chauvet <kwizart-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Subject: Re: [PATCH net v2 3/3] drivers: net: cpsw: use of_phy_connect() in fixed-link case
Date: Fri, 22 Apr 2016 16:34:08 +0300 [thread overview]
Message-ID: <571A2850.30700@ti.com> (raw)
In-Reply-To: <1461264066-12358-1-git-send-email-drivshin.allworx-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
On 04/21/2016 09:41 PM, David Rivshin (Allworx) wrote:
> From: David Rivshin <drivshin-5fOYsn7Fw8lBDgjK7y7TUQ@public.gmane.org>
>
> If a fixed-link DT subnode is used, the phy_device was looked up so
> that a PHY ID string could be constructed and passed to phy_connect().
> This is not necessary, as the device_node can be passed directly to
> of_phy_connect() instead. This reuses the same codepath as if the
> phy-handle DT property was used.
>
> Signed-off-by: David Rivshin <drivshin-5fOYsn7Fw8lBDgjK7y7TUQ@public.gmane.org>
> Tested-by: Nicolas Chauvet <kwizart-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> ---
>
> Changes since v1 [1]:
> - Rebased (trivial conflict, e5a03bfd modified the deleted snprintf)
> - Added Tested-by from Nicolas Chauvet
>
> [1] https://patchwork.ozlabs.org/patch/560327/
>
Reviewed-by: Grygorii Strashko <grygorii.strashko-l0cyMroinI0@public.gmane.org>
>
> drivers/net/ethernet/ti/cpsw.c | 11 +----------
> 1 file changed, 1 insertion(+), 10 deletions(-)
>
> diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
> index 3c81413..245f919 100644
> --- a/drivers/net/ethernet/ti/cpsw.c
> +++ b/drivers/net/ethernet/ti/cpsw.c
> @@ -2038,30 +2038,21 @@ static int cpsw_probe_dt(struct cpsw_platform_data *data,
> "phy-handle", 0);
> parp = of_get_property(slave_node, "phy_id", &lenp);
> if (slave_data->phy_node) {
> dev_dbg(&pdev->dev,
> "slave[%d] using phy-handle=\"%s\"\n",
> i, slave_data->phy_node->full_name);
> } else if (of_phy_is_fixed_link(slave_node)) {
> - struct device_node *phy_node;
> - struct phy_device *phy_dev;
> -
> /* In the case of a fixed PHY, the DT node associated
> * to the PHY is the Ethernet MAC DT node.
> */
> ret = of_phy_register_fixed_link(slave_node);
> if (ret)
> return ret;
> - phy_node = of_node_get(slave_node);
> - phy_dev = of_phy_find_device(phy_node);
> - if (!phy_dev)
> - return -ENODEV;
> - snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
> - PHY_ID_FMT, phy_dev->mdio.bus->id,
> - phy_dev->mdio.addr);
> + slave_data->phy_node = of_node_get(slave_node);
> } else if (parp) {
> u32 phyid;
> struct device_node *mdio_node;
> struct platform_device *mdio;
>
> if (lenp != (sizeof(__be32) * 2)) {
> dev_err(&pdev->dev, "Invalid slave[%d] phy_id property\n", i);
>
--
regards,
-grygorii
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2016-04-22 13:34 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-21 17:50 [PATCH net v2 0/3] drivers: net: cpsw: phy-handle fixes David Rivshin (Allworx)
2016-04-21 17:50 ` David Rivshin (Allworx)
2016-04-21 17:50 ` David Rivshin (Allworx)
2016-04-21 18:19 ` [PATCH net v2 1/3] drivers: net: cpsw: fix parsing of phy-handle DT property in dual_emac config David Rivshin (Allworx)
2016-04-21 18:19 ` David Rivshin (Allworx)
2016-04-22 13:03 ` Grygorii Strashko
2016-04-22 13:03 ` Grygorii Strashko
2016-04-22 13:03 ` Grygorii Strashko
[not found] ` <571A210E.2020607-l0cyMroinI0@public.gmane.org>
2016-04-25 19:14 ` Grygorii Strashko
2016-04-25 19:14 ` Grygorii Strashko
2016-04-25 19:14 ` Grygorii Strashko
2016-04-25 19:14 ` Grygorii Strashko
2016-04-26 15:27 ` David Rivshin (Allworx)
2016-04-26 15:27 ` David Rivshin (Allworx)
2016-04-21 18:26 ` [PATCH net v2 2/3] drivers: net: cpsw: fix error messages when using phy-handle DT property David Rivshin (Allworx)
2016-04-21 18:26 ` David Rivshin (Allworx)
2016-04-22 13:03 ` Grygorii Strashko
2016-04-22 13:03 ` Grygorii Strashko
2016-04-22 13:03 ` Grygorii Strashko
2016-04-22 13:03 ` Grygorii Strashko
2016-04-22 15:45 ` David Rivshin (Allworx)
2016-04-22 15:45 ` David Rivshin (Allworx)
2016-04-22 15:45 ` David Rivshin (Allworx)
2016-04-25 19:12 ` Grygorii Strashko
2016-04-25 19:12 ` Grygorii Strashko
2016-04-25 19:12 ` Grygorii Strashko
2016-04-25 21:55 ` David Rivshin (Allworx)
2016-04-25 21:55 ` David Rivshin (Allworx)
2016-04-25 21:55 ` David Rivshin (Allworx)
2016-04-26 7:50 ` Grygorii Strashko
2016-04-26 7:50 ` Grygorii Strashko
2016-04-26 7:50 ` Grygorii Strashko
[not found] ` <1461261035-5578-1-git-send-email-drivshin.allworx-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2016-04-21 18:41 ` [PATCH net v2 3/3] drivers: net: cpsw: use of_phy_connect() in fixed-link case David Rivshin (Allworx)
2016-04-21 18:41 ` David Rivshin (Allworx)
2016-04-21 18:41 ` David Rivshin (Allworx)
[not found] ` <1461264066-12358-1-git-send-email-drivshin.allworx-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2016-04-22 13:34 ` Grygorii Strashko [this message]
2016-04-22 13:34 ` Grygorii Strashko
2016-04-22 13:34 ` Grygorii Strashko
2016-04-22 13:34 ` Grygorii Strashko
2016-04-22 6:55 ` [PATCH net v2 0/3] drivers: net: cpsw: phy-handle fixes Mugunthan V N
2016-04-22 6:55 ` Mugunthan V N
2016-04-22 6:55 ` Mugunthan V N
2016-04-22 6:55 ` Mugunthan V N
2016-04-22 13:44 ` Andrew Goodbody
2016-04-22 13:44 ` Andrew Goodbody
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=571A2850.30700@ti.com \
--to=grygorii.strashko-l0cymroini0@public.gmane.org \
--cc=andrew.goodbody-nYQdZkeIoGZN8Ch2cx6nig@public.gmane.org \
--cc=davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=drivshin.allworx-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=kwizart-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=mugunthanvnm-l0cyMroinI0@public.gmane.org \
--cc=netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=systemprogrammierung.brunner-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
/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.