<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Hello,<br>
<br>
In the U-Boot 1.3.3 there is already this patch included....<br>
<br>
But I see another problem:<br>
<br>
I uses the AT91SAM9260 microcontroller so I defined in the header: <br>
<br>
#define CONFIG_AT91SAM9260&nbsp;&nbsp; 1<br>
<br>
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:<br>
<br>
#undef&nbsp;&nbsp; CONFIG_RMII<br>
<br>
<br>
<br>
Now have a look at the patch:<br>
<br>
+#if defined(CONFIG_AT91CAP9) || defined(CONFIG_AT91SAM9260) || \<br>
+ defined(CONFIG_AT91SAM9263)<br>
+ macb_writel(macb, USRIO, MACB_BIT(CLKEN));<br>
#else<br>
macb_writel(macb, USRIO, MACB_BIT(MII));<br>
#endif<br>
<br>
I don&acute;t go to the line : macb_writel(macb, USRIO, MACB_BIT(MII));
,because of CONFIG_AT91SAM9260<br>
<br>
BUT I have to go there or not ?<br>
<br>
Thank you very much<br>
<br>
Best regards<br>
<br>
Manuel<br>
<br>
<br>
Anatolij Gustschin schrieb:
<blockquote cite="mid:484EE57C.3070603@denx.de" type="cite">
  <pre wrap="">Hello,

Manuel Sahm wrote:

  </pre>
  <blockquote type="cite">
    <pre wrap="">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 !
    </pre>
  </blockquote>
  <pre wrap=""><!---->
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:

<a class="moz-txt-link-freetext" href="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">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</a>

Best regards,
Anatolij

  </pre>
</blockquote>
</body>
</html>