From: Florian Fainelli <f.fainelli-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: madalin.bucur-KZfg59tc24xl57MIdRCFDg@public.gmane.org,
netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
grant.likely-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Igal.Liberman-KZfg59tc24xl57MIdRCFDg@public.gmane.org,
Stas Sergeev
<stsp-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
Subject: Re: [PATCH 0/2] of: fsl/fman: reuse the fixed node parsing code
Date: Sat, 08 Aug 2015 10:32:43 -0700 [thread overview]
Message-ID: <55C63D3B.5020005@gmail.com> (raw)
In-Reply-To: <1438785745-15517-1-git-send-email-madalin.bucur-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
CC'ing Stas,
Le 08/05/15 07:42, Madalin Bucur a écrit :
> The FMan MAC configuration code needs the speed and duplex information
> for fixed-link interfaces that is parsed now by the of function
> of_phy_register_fixed_link(). This parses the fixed-link parameters but
> does not expose to the caller neither the phy_device pointer nor the
> status struct where it loads the fixed-link params. By extracting the
> fixed-link parsing code from of_phy_register_fixed_link() into a
> separate function the parsed values are made available without changing
> the existing API. This change also removes a small redundancy in the
> previous code calling fixed_phy_register().
I will look into this shortly, sorry for the delay.
>
> The FMan patch relies on the latest FMan driver v4 submission by Igal Liberman:
> https://patchwork.ozlabs.org/project/netdev/list/?submitter=Igal.Liberman&state=*&q=v4
>
> Madalin Bucur (2):
> of: separate fixed link parsing from registration
> fsl_fman: use fixed_phy_status for MEMAC
>
> .../ethernet/freescale/fman/flib/fsl_fman_memac.h | 6 ++-
> drivers/net/ethernet/freescale/fman/inc/mac.h | 2 +-
> drivers/net/ethernet/freescale/fman/mac/fm_memac.c | 42 ++++++++++++-----
> drivers/net/ethernet/freescale/fman/mac/fm_memac.h | 3 +-
> drivers/net/ethernet/freescale/fman/mac/mac.c | 18 ++++++--
> drivers/of/of_mdio.c | 52 ++++++++++++++--------
> include/linux/of_mdio.h | 9 ++++
> 7 files changed, 94 insertions(+), 38 deletions(-)
>
--
Florian
--
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: Florian Fainelli <f.fainelli@gmail.com>
To: madalin.bucur@freescale.com, netdev@vger.kernel.org,
grant.likely@linaro.org, robh+dt@kernel.org
Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
Igal.Liberman@freescale.com,
Stas Sergeev <stsp@users.sourceforge.net>
Subject: Re: [PATCH 0/2] of: fsl/fman: reuse the fixed node parsing code
Date: Sat, 08 Aug 2015 10:32:43 -0700 [thread overview]
Message-ID: <55C63D3B.5020005@gmail.com> (raw)
In-Reply-To: <1438785745-15517-1-git-send-email-madalin.bucur@freescale.com>
CC'ing Stas,
Le 08/05/15 07:42, Madalin Bucur a écrit :
> The FMan MAC configuration code needs the speed and duplex information
> for fixed-link interfaces that is parsed now by the of function
> of_phy_register_fixed_link(). This parses the fixed-link parameters but
> does not expose to the caller neither the phy_device pointer nor the
> status struct where it loads the fixed-link params. By extracting the
> fixed-link parsing code from of_phy_register_fixed_link() into a
> separate function the parsed values are made available without changing
> the existing API. This change also removes a small redundancy in the
> previous code calling fixed_phy_register().
I will look into this shortly, sorry for the delay.
>
> The FMan patch relies on the latest FMan driver v4 submission by Igal Liberman:
> https://patchwork.ozlabs.org/project/netdev/list/?submitter=Igal.Liberman&state=*&q=v4
>
> Madalin Bucur (2):
> of: separate fixed link parsing from registration
> fsl_fman: use fixed_phy_status for MEMAC
>
> .../ethernet/freescale/fman/flib/fsl_fman_memac.h | 6 ++-
> drivers/net/ethernet/freescale/fman/inc/mac.h | 2 +-
> drivers/net/ethernet/freescale/fman/mac/fm_memac.c | 42 ++++++++++++-----
> drivers/net/ethernet/freescale/fman/mac/fm_memac.h | 3 +-
> drivers/net/ethernet/freescale/fman/mac/mac.c | 18 ++++++--
> drivers/of/of_mdio.c | 52 ++++++++++++++--------
> include/linux/of_mdio.h | 9 ++++
> 7 files changed, 94 insertions(+), 38 deletions(-)
>
--
Florian
next prev parent reply other threads:[~2015-08-08 17:32 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-05 14:42 [PATCH 0/2] of: fsl/fman: reuse the fixed node parsing code Madalin Bucur
2015-08-05 14:42 ` Madalin Bucur
[not found] ` <1438785745-15517-1-git-send-email-madalin.bucur-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2015-08-05 14:42 ` [PATCH RFC 1/2] of: separate fixed link parsing from registration Madalin Bucur
2015-08-05 14:42 ` Madalin Bucur
2015-08-05 14:42 ` Madalin Bucur
2015-08-08 17:32 ` Florian Fainelli [this message]
2015-08-08 17:32 ` [PATCH 0/2] of: fsl/fman: reuse the fixed node parsing code Florian Fainelli
2015-08-11 16:00 ` Stas Sergeev
2015-08-11 16:33 ` Madalin-Cristian Bucur
2015-08-11 16:33 ` Madalin-Cristian Bucur
2015-08-11 16:58 ` Stas Sergeev
2015-08-12 13:26 ` Madalin-Cristian Bucur
2015-08-12 13:26 ` Madalin-Cristian Bucur
2015-08-12 13:58 ` Stas Sergeev
2015-08-12 14:43 ` Madalin-Cristian Bucur
2015-08-12 14:43 ` Madalin-Cristian Bucur
2015-08-12 15:09 ` Stas Sergeev
2015-08-12 15:27 ` Madalin-Cristian Bucur
2015-08-12 15:27 ` Madalin-Cristian Bucur
[not found] ` <BL2PR03MB545A213D584384018CCB30CE67E0-AZ66ij2kwaa1tTsckATbNOO6mTEJWrR4XA4E9RH9d+qIuWR1G4zioA@public.gmane.org>
2015-08-12 16:03 ` Stas Sergeev
2015-08-12 16:03 ` Stas Sergeev
2015-08-05 14:42 ` [PATCH RFC 2/2] fsl_fman: use fixed_phy_status for MEMAC Madalin Bucur
2015-08-05 14:42 ` Madalin Bucur
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=55C63D3B.5020005@gmail.com \
--to=f.fainelli-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
--cc=Igal.Liberman-KZfg59tc24xl57MIdRCFDg@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=grant.likely-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=madalin.bucur-KZfg59tc24xl57MIdRCFDg@public.gmane.org \
--cc=netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=stsp-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@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.