This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

LCDK6748 EMAC implementation for RMII

Other Parts Discussed in Thread: OMAPL138

I have built the starterware software example "enet_echo" for the LCDK6748 development kit.  The app runs correctly on the LCDK6748 hardware.

The LCDK6748 hardware  uses a MII implementation for the EMAC interface.

errUDP = udp_bind(pcb, &addrLocal, UDP_PORT_LOCAL); returns with OK

errUDP = udp_connect(pcb, &addrRemote, UDP_PORT_REMOTE); returns with OK

errUDP = udp_send(udpMY, &Buffer); returns OK and the UDP message correctly arrives at the destination.

A ping message from the destination address succeeds.

 

I have built a C6748 board that uses a RMII implementation for the EMAC interface. 

In RMII mode:

errUDP = udp_bind(pcb, &addrLocal, UDP_PORT_LOCAL); returns with OK

errUDP = udp_connect(pcb, &addrRemote, UDP_PORT_REMOTE); returns with OK

errUDP = udp_send(udpMY, &Buffer); returns OK but the UDP message does NOT arrive at the destination.

I have checked all the clocks and they appear to be correct.

Wirehark does not pickup any incoming packets on the destination side.

The LED lights on the LAN switch and/or LAN router blink, indicating a received packet.

A ping message from the destination address fails.

TCP is enabled and returns OK.

I have stepped through the udp_send() all the way to the end and the message is built in the driver without any error returns.

There are numerous debug messages in the EMAC driver.  How can I easily turn these on  I can't find the documentation on how to do this.

John

  • Dear John,
    I'm working on this post.
    BTW, DA850/OMAPL138 SDI and Logic PD EVM has support both MII and RMII support.
    Please make sure that no HW issue is on your custom board.
    What is your operating voltage and frequency?
  • Titus,

    I have checked the HW and all appears to be ok.  However I have asked the HW engineer to review the board.

    the voltages are;

    VDD33A1 is 1.2v

    VDD33A2 is 1.2v

    VDDCR is 3.3v

    VDDIO is 0v on both the OMAP138 and my target board.

    The frequency is 50MHz and this measures correctly.

    john

  • Titus,

    I am going around the chip in the wrong direction so the voltages listed in the previous message are incorrect. Sorry about that.

    Here are the correct voltages.

    VDD33A1 is 3.3 volts

    VDD33A2 is 3.3 volts

    VDDCR is 1.2 volts

    VDDIO is at 3.3 volts.

     The voltages are exactly the same on the L138 test board.

    John