<?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 S32K388 RGMII GMAC0 ethernet cannot ping in S32K</title>
    <link>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2271084#M55844</link>
    <description>&lt;P&gt;Hello engineers,&lt;/P&gt;&lt;P&gt;I’m facing an issue while bringing up GMAC0 on the S32K388.&lt;/P&gt;&lt;P&gt;I have already configured and enabled the 14 required GMAC0 pins, but I’m still unable to ping the device from my laptop, im new to NXP so dont know the flow or any else where to config to use rgmii GMAC0 on S32K388&lt;/P&gt;&lt;P&gt;Could you guys please help review my test project&amp;nbsp;and advise what might be missing or incorrectly configured?&lt;/P&gt;&lt;P&gt;Any guidance would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 05 Jan 2026 05:19:17 GMT</pubDate>
    <dc:creator>vinmotion</dc:creator>
    <dc:date>2026-01-05T05:19:17Z</dc:date>
    <item>
      <title>S32K388 RGMII GMAC0 ethernet cannot ping</title>
      <link>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2271084#M55844</link>
      <description>&lt;P&gt;Hello engineers,&lt;/P&gt;&lt;P&gt;I’m facing an issue while bringing up GMAC0 on the S32K388.&lt;/P&gt;&lt;P&gt;I have already configured and enabled the 14 required GMAC0 pins, but I’m still unable to ping the device from my laptop, im new to NXP so dont know the flow or any else where to config to use rgmii GMAC0 on S32K388&lt;/P&gt;&lt;P&gt;Could you guys please help review my test project&amp;nbsp;and advise what might be missing or incorrectly configured?&lt;/P&gt;&lt;P&gt;Any guidance would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 05:19:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2271084#M55844</guid>
      <dc:creator>vinmotion</dc:creator>
      <dc:date>2026-01-05T05:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: S32K388 RGMII GMAC0 ethernet cannot ping</title>
      <link>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2277685#M55869</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/254753"&gt;@vinmotion&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I reviewed your project and here are my findings:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Pins look correct&lt;/LI&gt;
&lt;LI&gt;Clocks are not correct. Please fix it based on picture below. If you require 100Mbps just change dividers and/or manual setting of yellow numbers: 125MHz -&amp;gt; 25MHz and 250MHz -&amp;gt; 50MHz. Also set PLL AUX accordingly to the picture.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PavelL_0-1767624067350.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/371738i9021F9C040EB8DCF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PavelL_0-1767624067350.png" alt="PavelL_0-1767624067350.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Replace DCMRWF settings in&amp;nbsp;&lt;SPAN&gt;device_init() by these rows:&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;/* Bypass MUX_7 manually, GMAC0_RX_CLK is derived directly from input pin. */&lt;BR /&gt;IP_DCM_GPR-&amp;gt;DCMRWF3 |= DCM_GPR_DCMRWF3_MAC_RX_CLK_MUX_BYPASS(1u);&lt;/P&gt;
&lt;P&gt;/* Bypass MUX_15 manually, GMAC1_RX_CLK is derived directly from input pin. */&lt;BR /&gt;IP_DCM_GPR-&amp;gt;DCMRWF4 |= DCM_GPR_DCMRWF4_MAC2_RX_CLK_MUX_BYPASS(1u);&lt;/P&gt;
&lt;P&gt;/* Enable GMAC1_TX_RMII_CLK loopback manually. */&lt;BR /&gt;IP_DCM_GPR-&amp;gt;DCMRWF2 |= DCM_GPR_DCMRWF2_MAC2_LOOBPACK_CLK_SEL_MASK | DCM_GPR_DCMRWF2_MAC2_TX_RMII_CLK_LPBCK_EN_MASK;&lt;/P&gt;
&lt;P&gt;/* Configure GMAC1 to RGMII mode manually. */&lt;BR /&gt;IP_DCM_GPR-&amp;gt;DCMRWF4 |= DCM_GPR_DCMRWF4_MAC2_CONF_SEL(1u);&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Optionally, you may comment out rows 622 to 642 in test.c to remove limited time of lwIP example.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Pavel&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 14:49:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2277685#M55869</guid>
      <dc:creator>PavelL</dc:creator>
      <dc:date>2026-01-05T14:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: S32K388 RGMII GMAC0 ethernet cannot ping</title>
      <link>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2281583#M55874</link>
      <description>&lt;P&gt;Thank you Sir&amp;nbsp;&lt;/P&gt;&lt;P&gt;im trying to use the lwIP example on the S32K388 , but im running into build/compile errors and i'm not sure why i'm unable to get GMAC0 Ethernet (RGMII) working&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would it be possible for you to share a working zip project for GMAC0 RGMII on S32K388.. That would really help me debug my setup, now im waiting to order adapter ethernet for S32k388&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot for your support&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jan 2026 02:24:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2281583#M55874</guid>
      <dc:creator>vinmotion</dc:creator>
      <dc:date>2026-01-06T02:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: S32K388 RGMII GMAC0 ethernet cannot ping</title>
      <link>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2289162#M55922</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/254753"&gt;@vinmotion&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;If you have build error, sharing the project will not help.&lt;/P&gt;
&lt;P&gt;Please check your installation setup - here's my setup:&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;S32 Design Studio 3.6.1&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;S32 Configuration Tools R1.8.0 NPI data package for S32K388&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;S32K3_S32M27x Real-Time Drivers AUTOSAR R21-11 Version 6.0.0&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;FreeRTOS Update-site for S32K3 version 6.0.0 CD1&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;TCPIP_STACK for S32K3XX version 3.0.0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Pavel&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jan 2026 06:51:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2289162#M55922</guid>
      <dc:creator>PavelL</dc:creator>
      <dc:date>2026-01-07T06:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: S32K388 RGMII GMAC0 ethernet cannot ping</title>
      <link>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2289168#M55923</link>
      <description>&lt;P&gt;Thank you Sir , i use all your config with clock but still cannot ping test with GMAC0 Rgmii for s32k388, hopefully anyone can please test ping because i got the board but not have the adapter ethernet yet&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jan 2026 07:01:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2289168#M55923</guid>
      <dc:creator>vinmotion</dc:creator>
      <dc:date>2026-01-07T07:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: S32K388 RGMII GMAC0 ethernet cannot ping</title>
      <link>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2289277#M55934</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/254753"&gt;@vinmotion&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I successfully brought up&amp;nbsp;example lwip_FreeRTOS_s32K388, baremetal shall be about the same.&lt;/P&gt;
&lt;P&gt;It's not clear from the description, but I assume that you use S32K388EVB-Q289.&lt;/P&gt;
&lt;P&gt;I check your last project:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Pins look correct. Only MDIO shall be set as Input/Output, but this is not important for now.&lt;/LI&gt;
&lt;LI&gt;Clocks looks correct.&lt;/LI&gt;
&lt;LI&gt;Platform - IRQ's handlers should be defined (I didn't notice before that handlers were undefined):&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PavelL_0-1767775451438.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/371969i3903994ADFF55C5B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PavelL_0-1767775451438.png" alt="PavelL_0-1767775451438.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Eth_43_GMAC - need to be set to RGMII 1G, Eth indexes should be 0 ( = GMAC0)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PavelL_1-1767775525416.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/371970i81E73121ADA168B7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PavelL_1-1767775525416.png" alt="PavelL_1-1767775525416.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PavelL_2-1767775558500.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/371971i931A23982EA6218F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PavelL_2-1767775558500.png" alt="PavelL_2-1767775558500.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;S32K388EVB-Q289 -&amp;nbsp;Jumper J361 shall be closed&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PavelL_3-1767775689644.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/371972i27DD7834E0DA55EE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PavelL_3-1767775689644.png" alt="PavelL_3-1767775689644.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Pavel&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jan 2026 08:54:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2289277#M55934</guid>
      <dc:creator>PavelL</dc:creator>
      <dc:date>2026-01-07T08:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: S32K388 RGMII GMAC0 ethernet cannot ping</title>
      <link>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2292065#M56068</link>
      <description>&lt;P&gt;Hi Pavel,&lt;/P&gt;&lt;P&gt;I have adjusted the project as you have mentioned in the other posts and this thread. However, I'm still not able to ping from PC after making all these changes. I'm using a RAD-MOON2 as the media converter. Can you kindly check if I'm missing anything in my project or what else do I need for the setup?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 01:40:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2292065#M56068</guid>
      <dc:creator>James_Zhang_SE</dc:creator>
      <dc:date>2026-01-13T01:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: S32K388 RGMII GMAC0 ethernet cannot ping</title>
      <link>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2292592#M56093</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/256069"&gt;@James_Zhang_SE&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please note: Once an answer is marked as a solution, the original query is no longer actively tracked in our system. I only receive subscription emails for updates, and those can occasionally be missed.&lt;BR /&gt;If you need further assistance, the best approach is to create a new query.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I checked your latest project and TX_CLK should be set to output - after the change, your example works on my board well.&lt;/P&gt;
&lt;P&gt;Please check on RAD MOON2:&lt;/P&gt;
&lt;UL style="font-weight: 400;"&gt;
&lt;LI&gt;Slave mode is set (S32K388 EVB: U97 - bit 7 in middle position -&amp;gt; CONFIG 6 open -&amp;gt; Master)&lt;/LI&gt;
&lt;LI&gt;MacSec is disabled&lt;/LI&gt;
&lt;LI&gt;Correct speed 1000Mbps is set&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Pavel&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jan 2026 12:47:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K388-RGMII-GMAC0-ethernet-cannot-ping/m-p/2292592#M56093</guid>
      <dc:creator>PavelL</dc:creator>
      <dc:date>2026-01-13T12:47:06Z</dc:date>
    </item>
  </channel>
</rss>

