<?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>topic Re: IMXRT1050-EVK: Ethernet clock to PHY in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/IMXRT1050-EVK-Ethernet-clock-to-PHY/m-p/739142#M115016</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, as the reference, you can use the enet driver code, included in the MCUXpresso SDK package, available for download on the processor's Software&amp;amp;Tools web page:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fwww.nxp.com%2Fproducts%2Fprocessors-and-microcontrollers%2Fapplications-processors%2Fi.mx-applications-processors%2Fi.mx-rt-series%2Fi.mx-rt1050-crossover-processor-with-arm-cortex-m7-core%3Ai.MX-RT1050%3Ftab%3DDesign_Tools_Tab" rel="nofollow" target="_blank"&gt;https://www.nxp.com/products/processors-and-microcontrollers/applications-processors/i.mx-applications-processors/i.mx-rt-series/i.mx-rt1050-crossover-processor-with-arm-cortex-m7-core:i.MX-RT1050?tab=Design_Tools_Tab&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Artur&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Dec 2017 11:51:35 GMT</pubDate>
    <dc:creator>art</dc:creator>
    <dc:date>2017-12-27T11:51:35Z</dc:date>
    <item>
      <title>IMXRT1050-EVK: Ethernet clock to PHY</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMXRT1050-EVK-Ethernet-clock-to-PHY/m-p/739140#M115014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After setup my development environment with success on imxrt1050 evk, I started to port the tcp/ip (picoTCP) to my project, so write the enet driver was required, and I got the phy&amp;lt;-&amp;gt;processor MII (MDIO/MDC) communication working and now I'm able to configure it. But when I read the link status register, even with cable connected it never report the link was up.&lt;BR /&gt;&lt;BR /&gt;Loooking deeper on hardware ( in EVK schematic) I noted the phy XI pin (clock input) receives it from ENET_TX_CLK signal from processor, measuring with the oscilloscope I found no clock in this pin. Given this my question is, what is the correct ENET configuration to provide clock to enet phy in IMXRT1050-EVK?&lt;BR /&gt;&lt;BR /&gt;Thank you in advance.&lt;BR /&gt;&lt;BR /&gt;Felipe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 17:56:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMXRT1050-EVK-Ethernet-clock-to-PHY/m-p/739140#M115014</guid>
      <dc:creator>ulipe</dc:creator>
      <dc:date>2017-12-20T17:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: IMXRT1050-EVK: Ethernet clock to PHY</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMXRT1050-EVK-Ethernet-clock-to-PHY/m-p/739141#M115015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;3 days and no response useful response (again).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;So I solved the problem, after configuring ENET PLL as stated on reference manual, and set the IOMUX to redirect the generated clock to the phy, now I able the 50MHz clock to use in RMII mode and got the phy fully working, to help others with same question, follow the code snippet below before configure the ethernet:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;const clock_enet_pll_config_t config = { .enableClkOutput0 = true, .enableClkOutput1 = false, .enableClkOutput2 = false, .loopDivider0 = 0x01, .loopDivider1 = 0x01 };&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* configure ethernet pin_muxing and clocking*/&lt;/P&gt;&lt;P&gt;CLOCK_InitEnetPll(&amp;amp;config);&lt;/P&gt;&lt;P&gt;IOMUXC_EnableMode(IOMUXC_GPR, kIOMUXC_GPR_ENET1TxClkOutputDir, true);&lt;/P&gt;&lt;P&gt;BOARD_InitENET();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best.&lt;BR /&gt;&lt;BR /&gt;Felipe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2017 17:38:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMXRT1050-EVK-Ethernet-clock-to-PHY/m-p/739141#M115015</guid>
      <dc:creator>ulipe</dc:creator>
      <dc:date>2017-12-22T17:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: IMXRT1050-EVK: Ethernet clock to PHY</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMXRT1050-EVK-Ethernet-clock-to-PHY/m-p/739142#M115016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, as the reference, you can use the enet driver code, included in the MCUXpresso SDK package, available for download on the processor's Software&amp;amp;Tools web page:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fwww.nxp.com%2Fproducts%2Fprocessors-and-microcontrollers%2Fapplications-processors%2Fi.mx-applications-processors%2Fi.mx-rt-series%2Fi.mx-rt1050-crossover-processor-with-arm-cortex-m7-core%3Ai.MX-RT1050%3Ftab%3DDesign_Tools_Tab" rel="nofollow" target="_blank"&gt;https://www.nxp.com/products/processors-and-microcontrollers/applications-processors/i.mx-applications-processors/i.mx-rt-series/i.mx-rt1050-crossover-processor-with-arm-cortex-m7-core:i.MX-RT1050?tab=Design_Tools_Tab&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Artur&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2017 11:51:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMXRT1050-EVK-Ethernet-clock-to-PHY/m-p/739142#M115016</guid>
      <dc:creator>art</dc:creator>
      <dc:date>2017-12-27T11:51:35Z</dc:date>
    </item>
  </channel>
</rss>

