<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>i.MX ProcessorsのトピックUsing RMII(LAN8720A) on iMx6Q</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454426#M70743</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;We use LAN8720A as RMII phy on i.Mx6q, now we can set its IP but don't transfer data.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_0.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/57268i56EDC021B694C520/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_0.png" alt="pastedImage_0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;RMII_REF_CLK_50M is connected to GPIO_16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;board-mx6q_sabresd.h&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_MDIO__ENET_MDIO,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_MDC__ENET_MDC,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_RXD0__ENET_RDATA_0,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_RXD1__ENET_RDATA_1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_CRS_DV__ENET_RX_EN,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_RX_ER__ENET_RX_ER,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_TXD0__ENET_TDATA_0,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_TXD1__ENET_TDATA_1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_TX_EN__ENET_TX_EN,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_GPIO_16__ENET_ANATOP_ETHERNET_REF_OUT,/* Internal connect for 1588 TS Clock&amp;nbsp; 50M clock*/&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_RGMII_TD3__GPIO_6_23,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* RMII reset */&lt;/P&gt;&lt;P&gt;&amp;nbsp; //MX6Q_PAD_GPIO_5__GPIO_1_5,&amp;nbsp;&amp;nbsp; /* PHY interrupt */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;board-mx6q_sabresd.c&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; mxc_iomux_set_gpr_register(1, 21, 1, 1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;static int mx6q_sabresd_fec_phy_init(struct phy_device *phydev)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; unsigned short val;&lt;/P&gt;&lt;P&gt;&amp;nbsp; /* reset phy */&lt;/P&gt;&lt;P&gt;&amp;nbsp; gpio_request(SABRESD_RMII_RST, "phy-rst");&lt;/P&gt;&lt;P&gt;&amp;nbsp; gpio_direction_output(SABRESD_RMII_RST, 0);&lt;/P&gt;&lt;P&gt;&amp;nbsp; mdelay(10);&lt;/P&gt;&lt;P&gt;&amp;nbsp; gpio_direction_output(SABRESD_RMII_RST, 1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; val = phy_read(phydev, 0x0);&lt;/P&gt;&lt;P&gt;&amp;nbsp; phy_write(phydev, 0x0, (val |BMCR_RESET));&lt;/P&gt;&lt;P&gt;&amp;nbsp; msleep(500);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; /* check phy power */&lt;/P&gt;&lt;P&gt;&amp;nbsp; val = phy_read(phydev, 0x0);&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (val &amp;amp; BMCR_PDOWN) &lt;/P&gt;&lt;P&gt;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp; phy_write(phydev, 0x0, (val &amp;amp; ~BMCR_PDOWN));&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp; return 0;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static struct fec_platform_data fec_data __initdata = {&lt;/P&gt;&lt;P&gt;&amp;nbsp; .init = mx6q_sabresd_fec_phy_init,&lt;/P&gt;&lt;P&gt;&amp;nbsp; .phy = PHY_INTERFACE_MODE_RMII,&lt;/P&gt;&lt;P&gt;#ifdef CONFIG_MX6_ENET_IRQ_TO_GPIO&lt;/P&gt;&lt;P&gt;&amp;nbsp; .gpio_irq = MX6_ENET_IRQ,&lt;/P&gt;&lt;P&gt;#endif&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Sep 2015 04:25:47 GMT</pubDate>
    <dc:creator>soberpeng</dc:creator>
    <dc:date>2015-09-16T04:25:47Z</dc:date>
    <item>
      <title>Using RMII(LAN8720A) on iMx6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454426#M70743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;We use LAN8720A as RMII phy on i.Mx6q, now we can set its IP but don't transfer data.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_0.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/57268i56EDC021B694C520/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_0.png" alt="pastedImage_0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;RMII_REF_CLK_50M is connected to GPIO_16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;board-mx6q_sabresd.h&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_MDIO__ENET_MDIO,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_MDC__ENET_MDC,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_RXD0__ENET_RDATA_0,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_RXD1__ENET_RDATA_1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_CRS_DV__ENET_RX_EN,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_RX_ER__ENET_RX_ER,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_TXD0__ENET_TDATA_0,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_TXD1__ENET_TDATA_1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_ENET_TX_EN__ENET_TX_EN,&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_GPIO_16__ENET_ANATOP_ETHERNET_REF_OUT,/* Internal connect for 1588 TS Clock&amp;nbsp; 50M clock*/&lt;/P&gt;&lt;P&gt;&amp;nbsp; MX6Q_PAD_RGMII_TD3__GPIO_6_23,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* RMII reset */&lt;/P&gt;&lt;P&gt;&amp;nbsp; //MX6Q_PAD_GPIO_5__GPIO_1_5,&amp;nbsp;&amp;nbsp; /* PHY interrupt */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;board-mx6q_sabresd.c&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; mxc_iomux_set_gpr_register(1, 21, 1, 1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;static int mx6q_sabresd_fec_phy_init(struct phy_device *phydev)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; unsigned short val;&lt;/P&gt;&lt;P&gt;&amp;nbsp; /* reset phy */&lt;/P&gt;&lt;P&gt;&amp;nbsp; gpio_request(SABRESD_RMII_RST, "phy-rst");&lt;/P&gt;&lt;P&gt;&amp;nbsp; gpio_direction_output(SABRESD_RMII_RST, 0);&lt;/P&gt;&lt;P&gt;&amp;nbsp; mdelay(10);&lt;/P&gt;&lt;P&gt;&amp;nbsp; gpio_direction_output(SABRESD_RMII_RST, 1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; val = phy_read(phydev, 0x0);&lt;/P&gt;&lt;P&gt;&amp;nbsp; phy_write(phydev, 0x0, (val |BMCR_RESET));&lt;/P&gt;&lt;P&gt;&amp;nbsp; msleep(500);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; /* check phy power */&lt;/P&gt;&lt;P&gt;&amp;nbsp; val = phy_read(phydev, 0x0);&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (val &amp;amp; BMCR_PDOWN) &lt;/P&gt;&lt;P&gt;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp; phy_write(phydev, 0x0, (val &amp;amp; ~BMCR_PDOWN));&lt;/P&gt;&lt;P&gt;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp; return 0;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static struct fec_platform_data fec_data __initdata = {&lt;/P&gt;&lt;P&gt;&amp;nbsp; .init = mx6q_sabresd_fec_phy_init,&lt;/P&gt;&lt;P&gt;&amp;nbsp; .phy = PHY_INTERFACE_MODE_RMII,&lt;/P&gt;&lt;P&gt;#ifdef CONFIG_MX6_ENET_IRQ_TO_GPIO&lt;/P&gt;&lt;P&gt;&amp;nbsp; .gpio_irq = MX6_ENET_IRQ,&lt;/P&gt;&lt;P&gt;#endif&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 04:25:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454426#M70743</guid>
      <dc:creator>soberpeng</dc:creator>
      <dc:date>2015-09-16T04:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Using RMII(LAN8720A) on iMx6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454427#M70744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #666666; font-family: Tahoma, Arial; font-size: 12px; text-align: justify; background-color: rgba(255, 255, 255, 0.8);"&gt;When I ping the router, terminal display the information as below&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #666666; font-family: Tahoma, Arial; font-size: 12px; text-align: justify; background-color: rgba(255, 255, 255, 0.8);"&gt;&lt;IMG class="jive-image" src="http://www.freescaleic.org/module/forum/data/attachment/forum/201410/28/202447i2z3ttp0j722zf0t.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #666666; font-family: Tahoma, Arial; font-size: 12px; text-align: justify; background-color: rgba(255, 255, 255, 0.8);"&gt;&lt;SPAN style="color: #666666; font-family: Tahoma, Arial; font-size: 12px; text-align: justify; background-color: rgba(255, 255, 255, 0.8);"&gt;my router's IP is &lt;/SPAN&gt;192.168.1.1. it is alive.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: rgba(255, 255, 255, 0.8); color: #666666; font-size: 12px; font-family: Tahoma, Arial; text-align: justify;"&gt;Are there other things need to set up? then it will transmit data.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 04:28:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454427#M70744</guid>
      <dc:creator>soberpeng</dc:creator>
      <dc:date>2015-09-16T04:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Using RMII(LAN8720A) on iMx6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454428#M70745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;H Sober,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check from the peer you ping to, if the packet is sent out and peer side has replied. Just i.MX6 could not receive from phy.&lt;/P&gt;&lt;P&gt;If so, please check the CRS_DV signal. It is the signal to tell mac the data is ready to receive.&lt;/P&gt;&lt;P&gt;Also please check the phy mode.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 04:57:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454428#M70745</guid>
      <dc:creator>BiyongSUN</dc:creator>
      <dc:date>2015-09-16T04:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: Using RMII(LAN8720A) on iMx6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454429#M70746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sober&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;had you implemented lan8720 patch&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/message/331971"&gt;Re: iMX6 RGMII + ENET_REF_CLK/ENET_TX_CLK&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~igor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 07:58:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454429#M70746</guid>
      <dc:creator>igorpadykov</dc:creator>
      <dc:date>2015-09-16T07:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using RMII(LAN8720A) on iMx6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454430#M70747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have similar problem with newer kernel:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/358798"&gt;RMII interface error on i.MX6Q&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately I haven't figured it out yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Laszlo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 12:16:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454430#M70747</guid>
      <dc:creator>laszlotimko</dc:creator>
      <dc:date>2015-09-16T12:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using RMII(LAN8720A) on iMx6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454431#M70748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have modifued the kernel is according to the patch. &lt;/P&gt;&lt;P&gt;When I use the wireshark to test the ping command. it display as the follow,&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/57285i42EE50FECA529104/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;20:13:10:11:18:14 is board's mac. 68:5b:35:b6:3f:81 is PC's mac.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The terminal have display,&lt;/P&gt;&lt;P&gt; &lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_4.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/57393iC4A65FEEB367F7A2/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_4.png" alt="pastedImage_4.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Now, I don't know what happen is on the network module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 03:55:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454431#M70748</guid>
      <dc:creator>soberpeng</dc:creator>
      <dc:date>2015-09-17T03:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Using RMII(LAN8720A) on iMx6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454432#M70749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It caputue shows, the sending is correct.&lt;/P&gt;&lt;P&gt;APR is sent out and APR response is sending back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So as I suggest, please check the&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check from the peer you ping to, if the packet is sent out and peer side has replied. Just i.MX6 could not receive from phy.&lt;/P&gt;&lt;P&gt;If so, please check the CRS_DV signal. It is the signal to tell mac the data is ready to receive.&lt;/P&gt;&lt;P&gt;Also please check the phy mode.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 04:30:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454432#M70749</guid>
      <dc:creator>BiyongSUN</dc:creator>
      <dc:date>2015-09-17T04:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using RMII(LAN8720A) on iMx6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454433#M70750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The CRS_DV have signal, also can entry fec_recv function in uboot mxc_fec.c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;int fec_recv(struct eth_device *dev)&lt;/P&gt;&lt;P&gt;if (info-&amp;gt;rxbd[info-&amp;gt;rxIdx].cbd_sc &amp;amp; BD_ENET_RX_EMPTY) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; length = -1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; break; /* nothing received - leave for() loop */&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the function checked recv buffer empty and break;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I couldn't find where to receive data and then give the info-&amp;gt;rxbd assignment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2015 07:05:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454433#M70750</guid>
      <dc:creator>soberpeng</dc:creator>
      <dc:date>2015-09-17T07:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: Using RMII(LAN8720A) on iMx6Q</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454434#M70751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,did you solve this problem? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jul 2016 16:00:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Using-RMII-LAN8720A-on-iMx6Q/m-p/454434#M70751</guid>
      <dc:creator>承王</dc:creator>
      <dc:date>2016-07-19T16:00:41Z</dc:date>
    </item>
  </channel>
</rss>

