From: Laurent Pinchart <laurentp@cse-semaphore.com>
To: linuxppc-dev@ozlabs.org
Cc: Scott Wood <scottwood@freescale.com>,
netdev@vger.kernel.org, jgarzik@pobox.com, vbordug@ru.mvista.com
Subject: Re: [PATCH 2/2] fs_enet: MDIO on GPIO support
Date: Mon, 16 Jun 2008 10:57:02 +0200 [thread overview]
Message-ID: <200806161057.03158.laurentp@cse-semaphore.com> (raw)
In-Reply-To: <200805261153.46131.laurentp@cse-semaphore.com>
[-- Attachment #1: Type: text/plain, Size: 2417 bytes --]
On Monday 26 May 2008 11:53, Laurent Pinchart wrote:
> Port the fs_enet driver to support the MDIO on GPIO driver for PHY access
> in addition to the mii-bitbang driver.
Now that 1/2 has been applied by Jeff, could this one make it to
powerpc-next ?
> Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
> ---
> drivers/net/fs_enet/fs_enet-main.c | 31 ++++++++++++++++++++-----------
> 1 files changed, 20 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/net/fs_enet/fs_enet-main.c
b/drivers/net/fs_enet/fs_enet-main.c
> index 67b4b07..b0eb1d2 100644
> --- a/drivers/net/fs_enet/fs_enet-main.c
> +++ b/drivers/net/fs_enet/fs_enet-main.c
> @@ -43,6 +43,7 @@
> #include <asm/uaccess.h>
>
> #ifdef CONFIG_PPC_CPM_NEW_BINDING
> +#include <linux/of_gpio.h>
> #include <asm/of_platform.h>
> #endif
>
> @@ -1172,8 +1173,7 @@ static int __devinit find_phy(struct device_node *np,
> struct fs_platform_info *fpi)
> {
> struct device_node *phynode, *mdionode;
> - struct resource res;
> - int ret = 0, len;
> + int ret = 0, len, bus_id;
> const u32 *data;
>
> data = of_get_property(np, "fixed-link", NULL);
> @@ -1190,19 +1190,28 @@ static int __devinit find_phy(struct device_node
*np,
> if (!phynode)
> return -EINVAL;
>
> - mdionode = of_get_parent(phynode);
> - if (!mdionode)
> + data = of_get_property(phynode, "reg", &len);
> + if (!data || len != 4) {
> + ret = -EINVAL;
> goto out_put_phy;
> + }
>
> - ret = of_address_to_resource(mdionode, 0, &res);
> - if (ret)
> - goto out_put_mdio;
> + mdionode = of_get_parent(phynode);
> + if (!mdionode) {
> + ret = -EINVAL;
> + goto out_put_phy;
> + }
>
> - data = of_get_property(phynode, "reg", &len);
> - if (!data || len != 4)
> - goto out_put_mdio;
> + bus_id = of_get_gpio(mdionode, 0);
> + if (bus_id < 0) {
> + struct resource res;
> + ret = of_address_to_resource(mdionode, 0, &res);
> + if (ret)
> + goto out_put_mdio;
> + bus_id = res.start;
> + }
>
> - snprintf(fpi->bus_id, 16, "%x:%02x", res.start, *data);
> + snprintf(fpi->bus_id, 16, "%x:%02x", bus_id, *data);
>
> out_put_mdio:
> of_node_put(mdionode);
> --
> 1.5.0
>
>
--
Laurent Pinchart
CSE Semaphore Belgium
Chaussee de Bruxelles, 732A
B-1410 Waterloo
Belgium
T +32 (2) 387 42 59
F +32 (2) 387 42 75
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
next prev parent reply other threads:[~2008-06-16 8:57 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-26 9:52 [PATCH 0/2] MDIO on GPIO support for the fs_enet driver Laurent Pinchart
2008-05-26 9:53 ` [PATCH 1/2] net: OpenFirmware GPIO based MDIO bitbang driver Laurent Pinchart
2008-05-31 2:20 ` Jeff Garzik
2008-05-26 9:53 ` [PATCH 2/2] fs_enet: MDIO on GPIO support Laurent Pinchart
2008-06-16 8:57 ` Laurent Pinchart [this message]
2008-06-16 16:34 ` Scott Wood
2008-06-18 14:48 ` Laurent Pinchart
2008-06-18 15:00 ` Jeff Garzik
2008-06-18 15:16 ` Laurent Pinchart
2008-06-26 11:21 ` Laurent Pinchart
2008-06-26 13:55 ` Vitaly Bordug
2008-07-18 9:26 ` Laurent Pinchart
2008-07-18 13:40 ` Kumar Gala
2008-07-18 17:10 ` Jeff Garzik
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=200806161057.03158.laurentp@cse-semaphore.com \
--to=laurentp@cse-semaphore.com \
--cc=jgarzik@pobox.com \
--cc=linuxppc-dev@ozlabs.org \
--cc=netdev@vger.kernel.org \
--cc=scottwood@freescale.com \
--cc=vbordug@ru.mvista.com \
/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 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).