* [PATCH] powerpc/85xx: Don't scan for TBI PHY addresses on MPC8569E-MDS boards
@ 2009-07-01 17:39 Anton Vorontsov
2009-07-14 13:33 ` Anton Vorontsov
2009-07-30 4:16 ` Kumar Gala
0 siblings, 2 replies; 3+ messages in thread
From: Anton Vorontsov @ 2009-07-01 17:39 UTC (permalink / raw)
To: Kumar Gala; +Cc: linuxppc-dev
Sometimes (e.g. when there are no UEMs attached to a board)
fsl_pq_mdio_find_free() fails to find a spare address for a TBI PHY,
this is because get_phy_id() returns bogus 0x0000ffff values
(0xffffffff is expected), and therefore mdio bus probing fails with
the following message:
fsl-pq_mdio: probe of e0082120.mdio failed with error -16
And obviously ethernet doesn't work after this.
This patch solves the problem by adding tbi-phy node into mdio node,
so that we won't scan for spare addresses, we'll just use a fixed one.
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
---
arch/powerpc/boot/dts/mpc8569mds.dts | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/arch/powerpc/boot/dts/mpc8569mds.dts b/arch/powerpc/boot/dts/mpc8569mds.dts
index 2577f37..baa4ac7 100644
--- a/arch/powerpc/boot/dts/mpc8569mds.dts
+++ b/arch/powerpc/boot/dts/mpc8569mds.dts
@@ -502,6 +502,10 @@
reg = <0x6>;
device_type = "ethernet-phy";
};
+ tbi-phy@11 {
+ reg = <0x11>;
+ device_type = "tbi-phy";
+ };
};
mdio@3520 {
#address-cells = <1>;
--
1.6.3.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] powerpc/85xx: Don't scan for TBI PHY addresses on MPC8569E-MDS boards
2009-07-01 17:39 [PATCH] powerpc/85xx: Don't scan for TBI PHY addresses on MPC8569E-MDS boards Anton Vorontsov
@ 2009-07-14 13:33 ` Anton Vorontsov
2009-07-30 4:16 ` Kumar Gala
1 sibling, 0 replies; 3+ messages in thread
From: Anton Vorontsov @ 2009-07-14 13:33 UTC (permalink / raw)
To: Anton Vorontsov; +Cc: linuxppc-dev
On Wed, Jul 01, 2009 at 09:39:25PM +0400, Anton Vorontsov wrote:
> Sometimes (e.g. when there are no UEMs attached to a board)
> fsl_pq_mdio_find_free() fails to find a spare address for a TBI PHY,
> this is because get_phy_id() returns bogus 0x0000ffff values
> (0xffffffff is expected), and therefore mdio bus probing fails with
> the following message:
>
> fsl-pq_mdio: probe of e0082120.mdio failed with error -16
>
> And obviously ethernet doesn't work after this.
>
> This patch solves the problem by adding tbi-phy node into mdio node,
> so that we won't scan for spare addresses, we'll just use a fixed one.
>
> Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Kumar,
I believe this patch is suitable for 2.6.31, no?
Thanks,
> ---
> arch/powerpc/boot/dts/mpc8569mds.dts | 4 ++++
> 1 files changed, 4 insertions(+), 0 deletions(-)
>
> diff --git a/arch/powerpc/boot/dts/mpc8569mds.dts b/arch/powerpc/boot/dts/mpc8569mds.dts
> index 2577f37..baa4ac7 100644
> --- a/arch/powerpc/boot/dts/mpc8569mds.dts
> +++ b/arch/powerpc/boot/dts/mpc8569mds.dts
> @@ -502,6 +502,10 @@
> reg = <0x6>;
> device_type = "ethernet-phy";
> };
> + tbi-phy@11 {
> + reg = <0x11>;
> + device_type = "tbi-phy";
> + };
> };
> mdio@3520 {
> #address-cells = <1>;
> --
> 1.6.3.3
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/linuxppc-dev
--
Anton Vorontsov
email: cbouatmailru@gmail.com
irc://irc.freenode.net/bd2
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] powerpc/85xx: Don't scan for TBI PHY addresses on MPC8569E-MDS boards
2009-07-01 17:39 [PATCH] powerpc/85xx: Don't scan for TBI PHY addresses on MPC8569E-MDS boards Anton Vorontsov
2009-07-14 13:33 ` Anton Vorontsov
@ 2009-07-30 4:16 ` Kumar Gala
1 sibling, 0 replies; 3+ messages in thread
From: Kumar Gala @ 2009-07-30 4:16 UTC (permalink / raw)
To: Anton Vorontsov; +Cc: linuxppc-dev
On Jul 1, 2009, at 12:39 PM, Anton Vorontsov wrote:
> Sometimes (e.g. when there are no UEMs attached to a board)
> fsl_pq_mdio_find_free() fails to find a spare address for a TBI PHY,
> this is because get_phy_id() returns bogus 0x0000ffff values
> (0xffffffff is expected), and therefore mdio bus probing fails with
> the following message:
>
> fsl-pq_mdio: probe of e0082120.mdio failed with error -16
>
> And obviously ethernet doesn't work after this.
>
> This patch solves the problem by adding tbi-phy node into mdio node,
> so that we won't scan for spare addresses, we'll just use a fixed one.
>
> Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
> ---
> arch/powerpc/boot/dts/mpc8569mds.dts | 4 ++++
> 1 files changed, 4 insertions(+), 0 deletions(-)
applied to merge
- k
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-07-30 4:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-01 17:39 [PATCH] powerpc/85xx: Don't scan for TBI PHY addresses on MPC8569E-MDS boards Anton Vorontsov
2009-07-14 13:33 ` Anton Vorontsov
2009-07-30 4:16 ` Kumar Gala
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).