diff mbox

[U-Boot,2/2] Initialize second PHY on OpenRD-Client and OpenRD-Ultimate.

Message ID 1302116103-15460-2-git-send-email-clint@debian.org
State Superseded
Headers show

Commit Message

Clint Adams April 6, 2011, 6:55 p.m. UTC
(rework of Julian Pidancet's patch)
---
 board/Marvell/openrd_base/openrd_base.c |   22 ++++++++++++++++++----
 include/configs/openrd_base.h           |   14 ++++++++++++--
 2 files changed, 30 insertions(+), 6 deletions(-)

Comments

Prafulla Wadaskar April 7, 2011, 6:17 a.m. UTC | #1
> -----Original Message-----
> From: Clint Adams [mailto:clint@debian.org]
> Sent: Thursday, April 07, 2011 12:25 AM
> To: u-boot@lists.denx.de
> Cc: Prafulla Wadaskar; julian.pidancet@citrix.com; Clint Adams
> Subject: [PATCH 2/2] Initialize second PHY on OpenRD-Client and OpenRD-
> Ultimate.
> 
> (rework of Julian Pidancet's patch)
> ---
>  board/Marvell/openrd_base/openrd_base.c |   22 ++++++++++++++++++----
>  include/configs/openrd_base.h           |   14 ++++++++++++--
>  2 files changed, 30 insertions(+), 6 deletions(-)
> 
> diff --git a/board/Marvell/openrd_base/openrd_base.c
> b/board/Marvell/openrd_base/openrd_base.c
> index 10109c1..aea4760 100644
> --- a/board/Marvell/openrd_base/openrd_base.c
> +++ b/board/Marvell/openrd_base/openrd_base.c
> @@ -118,12 +118,11 @@ int board_init(void)
>  }
> 
>  #ifdef CONFIG_RESET_PHY_R
> -/* Configure and enable MV88E1116 PHY */
> -void reset_phy(void)
> +/* Configure and enable MV88E1116/88E1121 PHY */
> +void mv_phy_init(char *name)
>  {
>  	u16 reg;
>  	u16 devadr;
> -	char *name = "egiga0";
> 
>  	if (miiphy_set_current_dev(name))
>  		return;
> @@ -148,6 +147,21 @@ void reset_phy(void)
>  	/* reset the phy */
>  	miiphy_reset(name, devadr);
> 
> -	printf("88E1116 Initialized on %s\n", name);
> +	printf(PHY_NO" Initialized on %s\n", name);
> +}
> +
> +void reset_phy(void)
> +{
> +       mv_phy_init("egiga0");
> +
> +#ifdef CONFIG_BOARD_IS_OPENRD_CLIENT
> +       /* Kirkwood ethernet driver is written with the assumption that
> in case
> +        * of multiple PHYs, their addresses are consecutive. But
> unfortunately
> +        * in case of OpenRD-Client, PHY addresses are not
> consecutive.*/
> +       miiphy_write("egiga1", 0xEE, 0xEE, 24);
> +
> +       /* configure and initialize both PHY's */
> +       mv_phy_init("egiga1");
> +#endif
>  }
>  #endif /* CONFIG_RESET_PHY_R */
> diff --git a/include/configs/openrd_base.h
> b/include/configs/openrd_base.h
> index 5e05890..aa13908 100644
> --- a/include/configs/openrd_base.h
> +++ b/include/configs/openrd_base.h
> @@ -117,8 +117,18 @@
>   * Ethernet Driver configuration
>   */
>  #ifdef CONFIG_CMD_NET
> -#define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
> -#define CONFIG_PHY_BASE_ADR	0x8
> +# ifdef CONFIG_BOARD_IS_OPENRD_BASE
> +#  define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
> +# else
> +#  define CONFIG_MVGBE_PORTS	{1, 1}	/* enable both ports */
> +# endif
> +# ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
> +#  define CONFIG_PHY_BASE_ADR	0x0
> +#  define PHY_NO		"88E1121"
> +# else
> +#  define CONFIG_PHY_BASE_ADR	0x8
> +#  define PHY_NO		"88E1116"
> +# endif
>  #endif /* CONFIG_CMD_NET */
>

This looks pretty good.
Ack for both the patches.

Regards..
Prafulla ..
Albert ARIBAUD April 7, 2011, 7:18 a.m. UTC | #2
Le 07/04/2011 08:17, Prafulla Wadaskar a écrit :
>
>
>> -----Original Message-----
>> From: Clint Adams [mailto:clint@debian.org]
>> Sent: Thursday, April 07, 2011 12:25 AM
>> To: u-boot@lists.denx.de
>> Cc: Prafulla Wadaskar; julian.pidancet@citrix.com; Clint Adams
>> Subject: [PATCH 2/2] Initialize second PHY on OpenRD-Client and OpenRD-
>> Ultimate.
>>
>> (rework of Julian Pidancet's patch)
>> ---
>>   board/Marvell/openrd_base/openrd_base.c |   22 ++++++++++++++++++----
>>   include/configs/openrd_base.h           |   14 ++++++++++++--
>>   2 files changed, 30 insertions(+), 6 deletions(-)
>>
>> diff --git a/board/Marvell/openrd_base/openrd_base.c
>> b/board/Marvell/openrd_base/openrd_base.c
>> index 10109c1..aea4760 100644
>> --- a/board/Marvell/openrd_base/openrd_base.c
>> +++ b/board/Marvell/openrd_base/openrd_base.c
>> @@ -118,12 +118,11 @@ int board_init(void)
>>   }
>>
>>   #ifdef CONFIG_RESET_PHY_R
>> -/* Configure and enable MV88E1116 PHY */
>> -void reset_phy(void)
>> +/* Configure and enable MV88E1116/88E1121 PHY */
>> +void mv_phy_init(char *name)
>>   {
>>   	u16 reg;
>>   	u16 devadr;
>> -	char *name = "egiga0";
>>
>>   	if (miiphy_set_current_dev(name))
>>   		return;
>> @@ -148,6 +147,21 @@ void reset_phy(void)
>>   	/* reset the phy */
>>   	miiphy_reset(name, devadr);
>>
>> -	printf("88E1116 Initialized on %s\n", name);
>> +	printf(PHY_NO" Initialized on %s\n", name);
>> +}
>> +
>> +void reset_phy(void)
>> +{
>> +       mv_phy_init("egiga0");
>> +
>> +#ifdef CONFIG_BOARD_IS_OPENRD_CLIENT
>> +       /* Kirkwood ethernet driver is written with the assumption that
>> in case
>> +        * of multiple PHYs, their addresses are consecutive. But
>> unfortunately
>> +        * in case of OpenRD-Client, PHY addresses are not
>> consecutive.*/
>> +       miiphy_write("egiga1", 0xEE, 0xEE, 24);
>> +
>> +       /* configure and initialize both PHY's */
>> +       mv_phy_init("egiga1");
>> +#endif
>>   }
>>   #endif /* CONFIG_RESET_PHY_R */
>> diff --git a/include/configs/openrd_base.h
>> b/include/configs/openrd_base.h
>> index 5e05890..aa13908 100644
>> --- a/include/configs/openrd_base.h
>> +++ b/include/configs/openrd_base.h
>> @@ -117,8 +117,18 @@
>>    * Ethernet Driver configuration
>>    */
>>   #ifdef CONFIG_CMD_NET
>> -#define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
>> -#define CONFIG_PHY_BASE_ADR	0x8
>> +# ifdef CONFIG_BOARD_IS_OPENRD_BASE
>> +#  define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
>> +# else
>> +#  define CONFIG_MVGBE_PORTS	{1, 1}	/* enable both ports */
>> +# endif
>> +# ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
>> +#  define CONFIG_PHY_BASE_ADR	0x0
>> +#  define PHY_NO		"88E1121"
>> +# else
>> +#  define CONFIG_PHY_BASE_ADR	0x8
>> +#  define PHY_NO		"88E1116"
>> +# endif
>>   #endif /* CONFIG_CMD_NET */
>>
>
> This looks pretty good.
> Ack for both the patches.
>
> Regards..
> Prafulla ..

Didn't Julian re-post patches that actually separates Base, Client and 
Ultimate into distinct config header files plus a common one? How does 
this affect Clint's patchset?

Amicalement,
Prafulla Wadaskar April 11, 2011, 12:03 p.m. UTC | #3
> -----Original Message-----
> From: Albert ARIBAUD [mailto:albert.aribaud@free.fr]
> Sent: Thursday, April 07, 2011 12:48 PM
> To: u-boot@lists.denx.de
> Cc: Prafulla Wadaskar; Clint Adams
> Subject: Re: [U-Boot] [PATCH 2/2] Initialize second PHY on OpenRD-Client
> and OpenRD-Ultimate.
> 
> Le 07/04/2011 08:17, Prafulla Wadaskar a écrit :
> >
> >
> >> -----Original Message-----
> >> From: Clint Adams [mailto:clint@debian.org]
> >> Sent: Thursday, April 07, 2011 12:25 AM
> >> To: u-boot@lists.denx.de
> >> Cc: Prafulla Wadaskar; julian.pidancet@citrix.com; Clint Adams
> >> Subject: [PATCH 2/2] Initialize second PHY on OpenRD-Client and
> OpenRD-
> >> Ultimate.
> >>
> >> (rework of Julian Pidancet's patch)
> >> ---
> >>   board/Marvell/openrd_base/openrd_base.c |   22 ++++++++++++++++++--
> --
> >>   include/configs/openrd_base.h           |   14 ++++++++++++--
> >>   2 files changed, 30 insertions(+), 6 deletions(-)
> >>
> >> diff --git a/board/Marvell/openrd_base/openrd_base.c
> >> b/board/Marvell/openrd_base/openrd_base.c
> >> index 10109c1..aea4760 100644
> >> --- a/board/Marvell/openrd_base/openrd_base.c
> >> +++ b/board/Marvell/openrd_base/openrd_base.c
> >> @@ -118,12 +118,11 @@ int board_init(void)
> >>   }
> >>
> >>   #ifdef CONFIG_RESET_PHY_R
> >> -/* Configure and enable MV88E1116 PHY */
> >> -void reset_phy(void)
> >> +/* Configure and enable MV88E1116/88E1121 PHY */
> >> +void mv_phy_init(char *name)
> >>   {
> >>   	u16 reg;
> >>   	u16 devadr;
> >> -	char *name = "egiga0";
> >>
> >>   	if (miiphy_set_current_dev(name))
> >>   		return;
> >> @@ -148,6 +147,21 @@ void reset_phy(void)
> >>   	/* reset the phy */
> >>   	miiphy_reset(name, devadr);
> >>
> >> -	printf("88E1116 Initialized on %s\n", name);
> >> +	printf(PHY_NO" Initialized on %s\n", name);
> >> +}
> >> +
> >> +void reset_phy(void)
> >> +{
> >> +       mv_phy_init("egiga0");
> >> +
> >> +#ifdef CONFIG_BOARD_IS_OPENRD_CLIENT
> >> +       /* Kirkwood ethernet driver is written with the assumption
> that
> >> in case
> >> +        * of multiple PHYs, their addresses are consecutive. But
> >> unfortunately
> >> +        * in case of OpenRD-Client, PHY addresses are not
> >> consecutive.*/
> >> +       miiphy_write("egiga1", 0xEE, 0xEE, 24);
> >> +
> >> +       /* configure and initialize both PHY's */
> >> +       mv_phy_init("egiga1");
> >> +#endif
> >>   }
> >>   #endif /* CONFIG_RESET_PHY_R */
> >> diff --git a/include/configs/openrd_base.h
> >> b/include/configs/openrd_base.h
> >> index 5e05890..aa13908 100644
> >> --- a/include/configs/openrd_base.h
> >> +++ b/include/configs/openrd_base.h
> >> @@ -117,8 +117,18 @@
> >>    * Ethernet Driver configuration
> >>    */
> >>   #ifdef CONFIG_CMD_NET
> >> -#define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
> >> -#define CONFIG_PHY_BASE_ADR	0x8
> >> +# ifdef CONFIG_BOARD_IS_OPENRD_BASE
> >> +#  define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
> >> +# else
> >> +#  define CONFIG_MVGBE_PORTS	{1, 1}	/* enable both ports */
> >> +# endif
> >> +# ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
> >> +#  define CONFIG_PHY_BASE_ADR	0x0
> >> +#  define PHY_NO		"88E1121"
> >> +# else
> >> +#  define CONFIG_PHY_BASE_ADR	0x8
> >> +#  define PHY_NO		"88E1116"
> >> +# endif
> >>   #endif /* CONFIG_CMD_NET */
> >>
> >
> > This looks pretty good.
> > Ack for both the patches.
> >
> > Regards..
> > Prafulla ..
> 
> Didn't Julian re-post patches that actually separates Base, Client and
> Ultimate into distinct config header files plus a common one? How does
> this affect Clint's patchset?

I acked for the method used here.

We don't need separate config headers. Using CONFIG_BOARD_IS_OPENRD_* the boards related stuff can be identified.

To me this looks better that what Julian had posted

I have tested these patches and works for openRD-Base, certainly it may not work for ultimate and client since respective machine ids are not programmed.

Hi Julian/Clint
May you please provide tuned version of these patches?

Regards..
Prafulla . .
 
> 
> Amicalement,
> --
> Albert.
Albert ARIBAUD April 11, 2011, 12:45 p.m. UTC | #4
Hi Prafulle,

Le 11/04/2011 14:03, Prafulla Wadaskar a écrit :

>>>>    board/Marvell/openrd_base/openrd_base.c |   22 ++++++++++++++++++--
>> --
>>>>    include/configs/openrd_base.h           |   14 ++++++++++++--

>> Didn't Julian re-post patches that actually separates Base, Client and
>> Ultimate into distinct config header files plus a common one? How does
>> this affect Clint's patchset?
>
> I acked for the method used here.
>
> We don't need separate config headers. Using CONFIG_BOARD_IS_OPENRD_* the boards related stuff can be identified.

If the two files above are to be used for all Open-RD boards (which is 
fine for me), then they should be renamed from openrd_base.* to openrd.* 
for the sake of clarity as to what they actually support.

Amicalement,
Prafulla Wadaskar April 11, 2011, 5:05 p.m. UTC | #5
> -----Original Message-----
> From: Albert ARIBAUD [mailto:albert.u.boot@aribaud.net]
> Sent: Monday, April 11, 2011 6:15 PM
> To: Prafulla Wadaskar
> Cc: u-boot@lists.denx.de; Clint Adams; Julian Pidancet
> Subject: Re: [U-Boot] [PATCH 2/2] Initialize second PHY on OpenRD-Client
> and OpenRD-Ultimate.
> 
> Hi Prafulle,
> 
> Le 11/04/2011 14:03, Prafulla Wadaskar a écrit :
> 
> >>>>    board/Marvell/openrd_base/openrd_base.c |   22
> ++++++++++++++++++--
> >> --
> >>>>    include/configs/openrd_base.h           |   14 ++++++++++++--
> 
> >> Didn't Julian re-post patches that actually separates Base, Client
> and
> >> Ultimate into distinct config header files plus a common one? How
> does
> >> this affect Clint's patchset?
> >
> > I acked for the method used here.
> >
> > We don't need separate config headers. Using CONFIG_BOARD_IS_OPENRD_*
> the boards related stuff can be identified.
> 
> If the two files above are to be used for all Open-RD boards (which is
> fine for me), then they should be renamed from openrd_base.* to openrd.*
> for the sake of clarity as to what they actually support.

Ack, I hope this will be addressed in next version.

Regards..
Prafulla . .

> 
> Amicalement,
> --
> Albert.
Clint Adams April 12, 2011, 4:14 p.m. UTC | #6
On Mon, Apr 11, 2011 at 05:03:32AM -0700, Prafulla Wadaskar wrote:
> I have tested these patches and works for openRD-Base, certainly it may not work for ultimate and client since respective machine ids are not programmed.

I can't believe I forgot this part.

> May you please provide tuned version of these patches?

Sending with the MACH_TYPE fix and the file renames.
diff mbox

Patch

diff --git a/board/Marvell/openrd_base/openrd_base.c b/board/Marvell/openrd_base/openrd_base.c
index 10109c1..aea4760 100644
--- a/board/Marvell/openrd_base/openrd_base.c
+++ b/board/Marvell/openrd_base/openrd_base.c
@@ -118,12 +118,11 @@  int board_init(void)
 }
 
 #ifdef CONFIG_RESET_PHY_R
-/* Configure and enable MV88E1116 PHY */
-void reset_phy(void)
+/* Configure and enable MV88E1116/88E1121 PHY */
+void mv_phy_init(char *name)
 {
 	u16 reg;
 	u16 devadr;
-	char *name = "egiga0";
 
 	if (miiphy_set_current_dev(name))
 		return;
@@ -148,6 +147,21 @@  void reset_phy(void)
 	/* reset the phy */
 	miiphy_reset(name, devadr);
 
-	printf("88E1116 Initialized on %s\n", name);
+	printf(PHY_NO" Initialized on %s\n", name);
+}
+
+void reset_phy(void)
+{
+       mv_phy_init("egiga0");
+
+#ifdef CONFIG_BOARD_IS_OPENRD_CLIENT
+       /* Kirkwood ethernet driver is written with the assumption that in case
+        * of multiple PHYs, their addresses are consecutive. But unfortunately
+        * in case of OpenRD-Client, PHY addresses are not consecutive.*/
+       miiphy_write("egiga1", 0xEE, 0xEE, 24);
+
+       /* configure and initialize both PHY's */
+       mv_phy_init("egiga1");
+#endif
 }
 #endif /* CONFIG_RESET_PHY_R */
diff --git a/include/configs/openrd_base.h b/include/configs/openrd_base.h
index 5e05890..aa13908 100644
--- a/include/configs/openrd_base.h
+++ b/include/configs/openrd_base.h
@@ -117,8 +117,18 @@ 
  * Ethernet Driver configuration
  */
 #ifdef CONFIG_CMD_NET
-#define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
-#define CONFIG_PHY_BASE_ADR	0x8
+# ifdef CONFIG_BOARD_IS_OPENRD_BASE
+#  define CONFIG_MVGBE_PORTS	{1, 0}	/* enable port 0 only */
+# else
+#  define CONFIG_MVGBE_PORTS	{1, 1}	/* enable both ports */
+# endif
+# ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
+#  define CONFIG_PHY_BASE_ADR	0x0
+#  define PHY_NO		"88E1121"
+# else
+#  define CONFIG_PHY_BASE_ADR	0x8
+#  define PHY_NO		"88E1116"
+# endif
 #endif /* CONFIG_CMD_NET */
 
 /*