public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] Teridian Phy Support tr78q21x3
@ 2008-06-10  9:56 Manuel Sahm
  2008-06-10 20:35 ` Anatolij Gustschin
  0 siblings, 1 reply; 12+ messages in thread
From: Manuel Sahm @ 2008-06-10  9:56 UTC (permalink / raw)
  To: u-boot

Hello,
I?m using a at91sam9260 Microcontroller.

I added a Teridian Phy Driver (tr78q21x3) to the Uboot version 1.3.0
It works. (even in linux when I use the linux generic macb driver)

If I try to use the latest u-boot-version (1.3.3) with the macb driver - 
ethernet doesn?t work (in u-boot and linux).
I don?t know how to add my phy driver to the latest u-boot version !

Is anybody out there who would be able to insert the phy driver in the 
latest u-boot version (tree) - I would offer my driver for anybody...

Please reply

Thank you

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Teridian Phy Support tr78q21x3
  2008-06-10  9:56 [U-Boot-Users] Teridian Phy Support tr78q21x3 Manuel Sahm
@ 2008-06-10 20:35 ` Anatolij Gustschin
  2008-06-11  6:25   ` Manuel Sahm
  0 siblings, 1 reply; 12+ messages in thread
From: Anatolij Gustschin @ 2008-06-10 20:35 UTC (permalink / raw)
  To: u-boot

Hello,

Manuel Sahm wrote:

> I added a Teridian Phy Driver (tr78q21x3) to the Uboot version 1.3.0
> It works. (even in linux when I use the linux generic macb driver)
> 
> If I try to use the latest u-boot-version (1.3.3) with the macb driver - 
> ethernet doesn?t work (in u-boot and linux).
> I don?t know how to add my phy driver to the latest u-boot version !

Maybe it is not a phy driver problem? Teridian phy 78q21x3 supports only
MII mode. Reverse the following patch locally and check if ethernet works
again:

http://www.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=blobdiff_plain;f=drivers/net/macb.c;h=e5733f6e5b23c6ad7a05dfbda0b5a3d783f701f7;hp=6657d22926b55f4000c03095bb9b87af53247056;hb=8e429b3eee23927c1222679f6b6f53667b21595c;hpb=422b1a01602b6e2fbf8444a1192c7ba31461fd4c

Best regards,
Anatolij

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Teridian Phy Support tr78q21x3
  2008-06-10 20:35 ` Anatolij Gustschin
@ 2008-06-11  6:25   ` Manuel Sahm
  2008-06-11  7:43     ` Anatolij Gustschin
  0 siblings, 1 reply; 12+ messages in thread
From: Manuel Sahm @ 2008-06-11  6:25 UTC (permalink / raw)
  To: u-boot

Hello,

In the U-Boot 1.3.3 there is already this patch included....

But I see another problem:

I uses the AT91SAM9260 microcontroller so I defined in the header:

#define CONFIG_AT91SAM9260   1

Instead of the Davicom Phy (RMII), which is used in the DevBoard 
AT91SAM9260EK I want to use the Teridian Phy(MII), so I write in the header:

#undef   CONFIG_RMII



Now have a look at the patch:

+#if defined(CONFIG_AT91CAP9) || defined(CONFIG_AT91SAM9260) || \
+ defined(CONFIG_AT91SAM9263)
+ macb_writel(macb, USRIO, MACB_BIT(CLKEN));
#else
macb_writel(macb, USRIO, MACB_BIT(MII));
#endif

I don?t go to the line : macb_writel(macb, USRIO, MACB_BIT(MII)); 
,because of CONFIG_AT91SAM9260

BUT I have to go there or not ?

Thank you very much

Best regards

Manuel


Anatolij Gustschin schrieb:
> Hello,
>
> Manuel Sahm wrote:
>
>   
>> I added a Teridian Phy Driver (tr78q21x3) to the Uboot version 1.3.0
>> It works. (even in linux when I use the linux generic macb driver)
>>
>> If I try to use the latest u-boot-version (1.3.3) with the macb driver - 
>> ethernet doesn?t work (in u-boot and linux).
>> I don?t know how to add my phy driver to the latest u-boot version !
>>     
>
> Maybe it is not a phy driver problem? Teridian phy 78q21x3 supports only
> MII mode. Reverse the following patch locally and check if ethernet works
> again:
>
> http://www.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=blobdiff_plain;f=drivers/net/macb.c;h=e5733f6e5b23c6ad7a05dfbda0b5a3d783f701f7;hp=6657d22926b55f4000c03095bb9b87af53247056;hb=8e429b3eee23927c1222679f6b6f53667b21595c;hpb=422b1a01602b6e2fbf8444a1192c7ba31461fd4c
>
> Best regards,
> Anatolij
>
>   
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.denx.de/pipermail/u-boot/attachments/20080611/3ea0b495/attachment.htm 

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Teridian Phy Support tr78q21x3
  2008-06-11  6:25   ` Manuel Sahm
@ 2008-06-11  7:43     ` Anatolij Gustschin
  2008-06-18  7:39       ` Manuel Sahm
  0 siblings, 1 reply; 12+ messages in thread
From: Anatolij Gustschin @ 2008-06-11  7:43 UTC (permalink / raw)
  To: u-boot

Hello,

Manuel Sahm wrote:

> In the U-Boot 1.3.3 there is already this patch included....

yes, of course this is already included. I meant you have to
_reverse_ this patch (or in other words un-apply it, "patch -p1 -R"),
as it was not included in U-Boot 1.3.0 and as you sad, with U-Boot
1.3.0 ethernet did work. Un-applying this patch and test without it
could quickly show if MII mode configuration was your problem.

> But I see another problem:
> 
> I uses the AT91SAM9260 microcontroller so I defined in the header:
> 
> #define CONFIG_AT91SAM9260   1
> 
> Instead of the Davicom Phy (RMII), which is used in the DevBoard
> AT91SAM9260EK I want to use the Teridian Phy(MII), so I write in the header:
> 
> #undef   CONFIG_RMII
> 
> 
> 
> Now have a look at the patch:
> 
> +#if defined(CONFIG_AT91CAP9) || defined(CONFIG_AT91SAM9260) || \
> + defined(CONFIG_AT91SAM9263)
> + macb_writel(macb, USRIO, MACB_BIT(CLKEN));
> #else
> macb_writel(macb, USRIO, MACB_BIT(MII));
> #endif
> 
> I don?t go to the line : macb_writel(macb, USRIO, MACB_BIT(MII));
> ,because of CONFIG_AT91SAM9260
> 
> BUT I have to go there or not ?

Probably. If you un-apply the patch, you end up in something
like this:

#ifdef CONFIG_RMII
	macb_writel(macb, USRIO, 0);
#else
	macb_writel(macb, USRIO, MACB_BIT(MII));
#endif

and this is the macb.c code in U-Boot-1.3.0 (drivers/macb.c:419).

Best regards,
Anatolij

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Teridian Phy Support tr78q21x3
  2008-06-11  7:43     ` Anatolij Gustschin
@ 2008-06-18  7:39       ` Manuel Sahm
  2008-06-18  7:59         ` Wolfgang Denk
  2008-07-08  8:03         ` [U-Boot-Users] [PATCH] at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260 Anatolij Gustschin
  0 siblings, 2 replies; 12+ messages in thread
From: Manuel Sahm @ 2008-06-18  7:39 UTC (permalink / raw)
  To: u-boot

Hello,

I found out, why the Generic MACB MII driver for the AT91SAM9260 doesn?t 
work.

The problem is inside the file

/board/atmel/at91sam9260ek/at91sam9260ek.c


at91_set_B_periph(AT91_PIN_PA23, 0);   //ETX2
at91_set_B_periph(AT91_PIN_PA24, 0);   //ETX3

These lines are multiplexed with the TWI Interface of the AT91SAM9260 
and on the development board (AT91SAM9260EK) there is an EEPROM connected.
Instead of lines PA23 and PA24 you have to use

at91_set_B_periph(AT91_PIN_PA10, 0);   //ETX2
at91_set_B_periph(AT91_PIN_PA11, 0);   //ETX3

which have the same abilites.

Then it works perfect !!!!!


Is it possible to change this in the official U-Boot tree ?

Hopefully someone from denx.de could do that and I hope for a positive 
reply - Thank you


Anatolij Gustschin schrieb:
> Hello,
>
> Manuel Sahm wrote:
>
>   
>> In the U-Boot 1.3.3 there is already this patch included....
>>     
>
> yes, of course this is already included. I meant you have to
> _reverse_ this patch (or in other words un-apply it, "patch -p1 -R"),
> as it was not included in U-Boot 1.3.0 and as you sad, with U-Boot
> 1.3.0 ethernet did work. Un-applying this patch and test without it
> could quickly show if MII mode configuration was your problem.
>
>   
>> But I see another problem:
>>
>> I uses the AT91SAM9260 microcontroller so I defined in the header:
>>
>> #define CONFIG_AT91SAM9260   1
>>
>> Instead of the Davicom Phy (RMII), which is used in the DevBoard
>> AT91SAM9260EK I want to use the Teridian Phy(MII), so I write in the header:
>>
>> #undef   CONFIG_RMII
>>
>>
>>
>> Now have a look at the patch:
>>
>> +#if defined(CONFIG_AT91CAP9) || defined(CONFIG_AT91SAM9260) || \
>> + defined(CONFIG_AT91SAM9263)
>> + macb_writel(macb, USRIO, MACB_BIT(CLKEN));
>> #else
>> macb_writel(macb, USRIO, MACB_BIT(MII));
>> #endif
>>
>> I don?t go to the line : macb_writel(macb, USRIO, MACB_BIT(MII));
>> ,because of CONFIG_AT91SAM9260
>>
>> BUT I have to go there or not ?
>>     
>
> Probably. If you un-apply the patch, you end up in something
> like this:
>
> #ifdef CONFIG_RMII
> 	macb_writel(macb, USRIO, 0);
> #else
> 	macb_writel(macb, USRIO, MACB_BIT(MII));
> #endif
>
> and this is the macb.c code in U-Boot-1.3.0 (drivers/macb.c:419).
>
> Best regards,
> Anatolij
>
>   

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] Teridian Phy Support tr78q21x3
  2008-06-18  7:39       ` Manuel Sahm
@ 2008-06-18  7:59         ` Wolfgang Denk
  2008-07-08  8:03         ` [U-Boot-Users] [PATCH] at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260 Anatolij Gustschin
  1 sibling, 0 replies; 12+ messages in thread
From: Wolfgang Denk @ 2008-06-18  7:59 UTC (permalink / raw)
  To: u-boot

In message <4858BB99.8020703@feig.de> you wrote:
> 
> I found out, why the Generic MACB MII driver for the AT91SAM9260 doesn?t
> work.
...
> Instead of lines PA23 and PA24 you have to use
> 
> at91_set_B_periph(AT91_PIN_PA10, 0);   //ETX2
> at91_set_B_periph(AT91_PIN_PA11, 0);   //ETX3
> 
> which have the same abilites.

can you please submit a proper patch?

See http://www.denx.de/wiki/UBoot/Patches for instructions.

> Hopefully someone from denx.de could do that and I hope for a positive
> reply - Thank you

This will behandled by the AT91 custodian - but please submit a proper
patch...

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
He'd been wrong, there _was_ a light at the end of the tunnel, and it
was a flamethrower.                         - Terry Pratchett, _Mort_

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] [PATCH] at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
  2008-06-18  7:39       ` Manuel Sahm
  2008-06-18  7:59         ` Wolfgang Denk
@ 2008-07-08  8:03         ` Anatolij Gustschin
       [not found]           ` <4874B6AF.40400@feig.de>
  2008-07-09 23:15           ` [U-Boot-Users] [PATCH v2] " Anatolij Gustschin
  1 sibling, 2 replies; 12+ messages in thread
From: Anatolij Gustschin @ 2008-07-08  8:03 UTC (permalink / raw)
  To: u-boot

On the at91sam9260ep development board there is an EEPROM
connected to the TWI interface (PA23, PA24 Peripheral A
multiplexing), so we cannot use these pins as ETX2, ETX3.
This patch configures PA10, PA11 pins for ETX2, ETX3
instead of PA23, PA24 pins.

Signed-off-by: Anatolij Gustschin <agust@denx.de>
---

Hi Manuel,

Wolfgang Denk asked you in another email for a proper patch to fix
this issue so that this could be reviewed on the list and applied by
AT91 custodian. Now I created this patch and a patch description,
but I'm not familiar with at91sam9260 and also do not have an
at91sam9260ep board and cannot test it.

Could you please test this patch and probably fix the patch
description. I composed this description from info in your mails,
but I'm not sure if it is really correct. Also add your "Signed-off-by"
line.

 board/atmel/at91sam9260ek/at91sam9260ek.c |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/board/atmel/at91sam9260ek/at91sam9260ek.c b/board/atmel/at91sam9260ek/at91sam9260ek.c
index 836a0c4..06d8512 100644
--- a/board/atmel/at91sam9260ek/at91sam9260ek.c
+++ b/board/atmel/at91sam9260ek/at91sam9260ek.c
@@ -188,8 +188,17 @@ static void at91sam9260ek_macb_hw_init(void)
 	at91_set_B_periph(AT91_PIN_PA25, 0);	/* ERX2 */
 	at91_set_B_periph(AT91_PIN_PA26, 0);	/* ERX3 */
 	at91_set_B_periph(AT91_PIN_PA27, 0);	/* ERXCK */
+#if defined(CONFIG_AT91SAM9260EK)
+	/*
+	 * use PA10, PA11 for ETX2, ETX3.
+	 * PA23 and PA24 are for TWI EEPROM
+	 */
+	at91_set_B_periph(AT91_PIN_PA10, 0);	/* ETX2 */
+	at91_set_B_periph(AT91_PIN_PA11, 0);	/* ETX3 */
+#else
 	at91_set_B_periph(AT91_PIN_PA23, 0);	/* ETX2 */
 	at91_set_B_periph(AT91_PIN_PA24, 0);	/* ETX3 */
+#endif
 	at91_set_B_periph(AT91_PIN_PA22, 0);	/* ETXER */
 #endif
 
-- 
Best regards,
Anatolij

DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [U-Boot-Users] [PATCH] at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
       [not found]           ` <4874B6AF.40400@feig.de>
@ 2008-07-09 23:00             ` Anatolij Gustschin
  2008-07-10  6:34               ` Manuel Sahm
  0 siblings, 1 reply; 12+ messages in thread
From: Anatolij Gustschin @ 2008-07-09 23:00 UTC (permalink / raw)
  To: u-boot

Manuel Sahm wrote:

> if I apply the patch with:
> 
> patch -p1 < patchat91.diff
> 
> some messages occur, is this correct ?
> 
> 
> (Stripping trailing CRs from patch.)
> patching file board/atmel/at91sam9260ek/at91sam9260ek.c
> patch unexpectedly ends in middle of line
> Hunk #1 succeeded at 183 with fuzz 2 (offset -5 lines).

it is very likely that these messages occur because the patch
was incorrectly saved from the email body. This patch applies
cleanly against top of our u-boot git tree.
 
> The description is correct - PA23 and PA24 are connected to the TWI
> EEPROM an the DevBoard at91sam9260ek.
> The patch works well.
> Here the signed-off line:
> 
> Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>

Thanks, I will repost the patch again.

> Another problem is, that the same error is in the official kernel tree
> in the file at91sam9260ek_devices.c ?!
> Although the error is still in the kernel, a modification of the uboot
> file at91sam9260ek.c is enough to get ethernet working ?

if the kernel resets Peripheral B pin configuration, then
ethernet will stop working, I think. This should be fixed in
the kernel code, too.

Best regards,
Anatolij

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] [PATCH v2] at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
  2008-07-08  8:03         ` [U-Boot-Users] [PATCH] at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260 Anatolij Gustschin
       [not found]           ` <4874B6AF.40400@feig.de>
@ 2008-07-09 23:15           ` Anatolij Gustschin
  2008-07-09 23:29             ` Ben Warren
  2008-07-13 12:42             ` Wolfgang Denk
  1 sibling, 2 replies; 12+ messages in thread
From: Anatolij Gustschin @ 2008-07-09 23:15 UTC (permalink / raw)
  To: u-boot

On the at91sam9260ep development board there is an EEPROM
connected to the TWI interface (PA23, PA24 Peripheral A
multiplexing), so we cannot use these pins as ETX2, ETX3.
This patch configures PA10, PA11 pins for ETX2, ETX3
instead of PA23, PA24 pins.

Signed-off-by: Anatolij Gustschin <agust@denx.de>
Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de> 
---
 board/atmel/at91sam9260ek/at91sam9260ek.c |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/board/atmel/at91sam9260ek/at91sam9260ek.c b/board/atmel/at91sam9260ek/at91sam9260ek.c
index 836a0c4..06d8512 100644
--- a/board/atmel/at91sam9260ek/at91sam9260ek.c
+++ b/board/atmel/at91sam9260ek/at91sam9260ek.c
@@ -188,8 +188,17 @@ static void at91sam9260ek_macb_hw_init(void)
 	at91_set_B_periph(AT91_PIN_PA25, 0);	/* ERX2 */
 	at91_set_B_periph(AT91_PIN_PA26, 0);	/* ERX3 */
 	at91_set_B_periph(AT91_PIN_PA27, 0);	/* ERXCK */
+#if defined(CONFIG_AT91SAM9260EK)
+	/*
+	 * use PA10, PA11 for ETX2, ETX3.
+	 * PA23 and PA24 are for TWI EEPROM
+	 */
+	at91_set_B_periph(AT91_PIN_PA10, 0);	/* ETX2 */
+	at91_set_B_periph(AT91_PIN_PA11, 0);	/* ETX3 */
+#else
 	at91_set_B_periph(AT91_PIN_PA23, 0);	/* ETX2 */
 	at91_set_B_periph(AT91_PIN_PA24, 0);	/* ETX3 */
+#endif
 	at91_set_B_periph(AT91_PIN_PA22, 0);	/* ETXER */
 #endif
 
-- 
1.5.3.3

^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [U-Boot-Users] [PATCH v2] at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
  2008-07-09 23:15           ` [U-Boot-Users] [PATCH v2] " Anatolij Gustschin
@ 2008-07-09 23:29             ` Ben Warren
  2008-07-13 12:42             ` Wolfgang Denk
  1 sibling, 0 replies; 12+ messages in thread
From: Ben Warren @ 2008-07-09 23:29 UTC (permalink / raw)
  To: u-boot

Anatolij Gustschin wrote:
> On the at91sam9260ep development board there is an EEPROM
> connected to the TWI interface (PA23, PA24 Peripheral A
> multiplexing), so we cannot use these pins as ETX2, ETX3.
> This patch configures PA10, PA11 pins for ETX2, ETX3
> instead of PA23, PA24 pins.
>
> Signed-off-by: Anatolij Gustschin <agust@denx.de>
> Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de> 
> ---
>  board/atmel/at91sam9260ek/at91sam9260ek.c |    9 +++++++++
>  1 files changed, 9 insertions(+), 0 deletions(-)
>
> diff --git a/board/atmel/at91sam9260ek/at91sam9260ek.c b/board/atmel/at91sam9260ek/at91sam9260ek.c
> index 836a0c4..06d8512 100644
> --- a/board/atmel/at91sam9260ek/at91sam9260ek.c
> +++ b/board/atmel/at91sam9260ek/at91sam9260ek.c
> @@ -188,8 +188,17 @@ static void at91sam9260ek_macb_hw_init(void)
>  	at91_set_B_periph(AT91_PIN_PA25, 0);	/* ERX2 */
>  	at91_set_B_periph(AT91_PIN_PA26, 0);	/* ERX3 */
>  	at91_set_B_periph(AT91_PIN_PA27, 0);	/* ERXCK */
> +#if defined(CONFIG_AT91SAM9260EK)
>   
There's a weakness in your software architecture if there are two 
compile paths in 'at91sam9260ek.c': one that has CONFIG_AT91SAM9260EK 
and one that doesn't.  Maybe time for a new board variant or some file 
re-naming?

regards,
Ben

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] [PATCH] at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
  2008-07-09 23:00             ` Anatolij Gustschin
@ 2008-07-10  6:34               ` Manuel Sahm
  0 siblings, 0 replies; 12+ messages in thread
From: Manuel Sahm @ 2008-07-10  6:34 UTC (permalink / raw)
  To: u-boot

Hello,

thanks a lot.

Could you please take care that this will be fixed in the kernel code, too ?

Best regards

Manuel Sahm


Anatolij Gustschin schrieb:
> Manuel Sahm wrote:
>
>   
>> if I apply the patch with:
>>
>> patch -p1 < patchat91.diff
>>
>> some messages occur, is this correct ?
>>
>>
>> (Stripping trailing CRs from patch.)
>> patching file board/atmel/at91sam9260ek/at91sam9260ek.c
>> patch unexpectedly ends in middle of line
>> Hunk #1 succeeded at 183 with fuzz 2 (offset -5 lines).
>>     
>
> it is very likely that these messages occur because the patch
> was incorrectly saved from the email body. This patch applies
> cleanly against top of our u-boot git tree.
>  
>   
>> The description is correct - PA23 and PA24 are connected to the TWI
>> EEPROM an the DevBoard at91sam9260ek.
>> The patch works well.
>> Here the signed-off line:
>>
>> Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
>>     
>
> Thanks, I will repost the patch again.
>
>   
>> Another problem is, that the same error is in the official kernel tree
>> in the file at91sam9260ek_devices.c ?!
>> Although the error is still in the kernel, a modification of the uboot
>> file at91sam9260ek.c is enough to get ethernet working ?
>>     
>
> if the kernel resets Peripheral B pin configuration, then
> ethernet will stop working, I think. This should be fixed in
> the kernel code, too.
>
> Best regards,
> Anatolij
>
>   
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.denx.de/pipermail/u-boot/attachments/20080710/cf222fee/attachment.htm 

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [U-Boot-Users] [PATCH v2] at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
  2008-07-09 23:15           ` [U-Boot-Users] [PATCH v2] " Anatolij Gustschin
  2008-07-09 23:29             ` Ben Warren
@ 2008-07-13 12:42             ` Wolfgang Denk
  1 sibling, 0 replies; 12+ messages in thread
From: Wolfgang Denk @ 2008-07-13 12:42 UTC (permalink / raw)
  To: u-boot

In message <4875467E.1080900@denx.de> you wrote:
> On the at91sam9260ep development board there is an EEPROM
> connected to the TWI interface (PA23, PA24 Peripheral A
> multiplexing), so we cannot use these pins as ETX2, ETX3.
> This patch configures PA10, PA11 pins for ETX2, ETX3
> instead of PA23, PA24 pins.
> 
> Signed-off-by: Anatolij Gustschin <agust@denx.de>
> Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de> 
> ---
>  board/atmel/at91sam9260ek/at91sam9260ek.c |    9 +++++++++
>  1 files changed, 9 insertions(+), 0 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"Oh dear, I think you'll find reality's on the blink again."
- Marvin The Paranoid Android

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2008-07-13 12:42 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-10  9:56 [U-Boot-Users] Teridian Phy Support tr78q21x3 Manuel Sahm
2008-06-10 20:35 ` Anatolij Gustschin
2008-06-11  6:25   ` Manuel Sahm
2008-06-11  7:43     ` Anatolij Gustschin
2008-06-18  7:39       ` Manuel Sahm
2008-06-18  7:59         ` Wolfgang Denk
2008-07-08  8:03         ` [U-Boot-Users] [PATCH] at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260 Anatolij Gustschin
     [not found]           ` <4874B6AF.40400@feig.de>
2008-07-09 23:00             ` Anatolij Gustschin
2008-07-10  6:34               ` Manuel Sahm
2008-07-09 23:15           ` [U-Boot-Users] [PATCH v2] " Anatolij Gustschin
2008-07-09 23:29             ` Ben Warren
2008-07-13 12:42             ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox