<br><br><div><span class="gmail_quote">On 11/29/07, <b class="gmail_sendername">Ulf Samuelsson</b> &lt;<a href="mailto:ulf@atmel.com">ulf@atmel.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
tor 2007-11-29 klockan 19:51 +0100 skrev Guennadi Liakhovetski:<br>&gt; Hi,<br>&gt;<br>&gt; 1. Does it make sense at all to define CONFIG_RMII without defining<br>&gt; CONFIG_MII? The question is meant not really theoretical as in what
<br>&gt; meaning RMII has, rather how the macro CONFIG_RMII is supposed to be used?<br>&gt; For example, tests like<br>&gt;<br><br>I think that if you use an Ethernet and need to differentiate<br>between MII and RMII they should be mutually exclusive.
<br>You either define CONFIG_RMII OR CONFIG_MII but not both.<br>If you have a PHY on the chip, then you do not define any of the two.<br>MII uses more pins and maybe different pins, so a port for a CPU<br>should differentiate.
</blockquote><div><br>
<br>
I&#39;m a little late to this, but I feel I should make sure people are
aware that CONFIG_MII and CONFIG_RMII are not, in this case, two
different options for the same concept.&nbsp; CONFIG_MII is the option
you enable to allow MII Management operations to be done.&nbsp; It
should *probably* be called CONFIG_MDIO.&nbsp; You&#39;ll see this problem
all over the place.&nbsp; MII is the name for the data interface
between a PHY and a 10/100 ethernet controller.&nbsp; MDIO is the
management interface for MII-compliant PHYs.&nbsp; But it&#39;s frequently
called the MII Management interface.<br>
<br>
RMII is a different data interface for PHYs, but it uses the same MDIO interface.<br>
<br>
So I believe if you see:<br>
#if defined(CONFIG_MII) &amp;&amp; defined(CONFIG_RMII), what you are
seeing is a check for global mii management capability as well as
board-specific reduced interface selection.<br>
<br>
As to whether one or more of these definitions is poorly named, I leave that as an exercise for the reader.&nbsp; ;)<br>
<br>
<br>
Andy</div></div><br>