I found the MAC address from the label on the bottom of the L137 EVM board. Is below the correct procedure for configuring EMAC frame? Thank you!
//MAC Addr, from EVM Board Label 00-03-99-02-55-57
// Fixed Priority Queue, Ch7 highest priority, copy Addr across unused Channels 0-6
EMAC_MACINDEX = 0x00;
EMAC_MACADDRHI = 0x000e9902; // Needs to be written only the first time
EMAC_MACADDRLO = 0xff57;
EMAC_MACINDEX = 0x01;
EMAC_MACADDRLO = 0xff57;
EMAC_MACINDEX = 0x02;
EMAC_MACADDRLO = 0xff57;
EMAC_MACINDEX = 0x03;
EMAC_MACADDRLO = 0xff57;
EMAC_MACINDEX = 0x04;
EMAC_MACADDRLO = 0xff57;
EMAC_MACINDEX = 0x05;
EMAC_MACADDRLO = 0xff57;
EMAC_MACINDEX = 0x06;
EMAC_MACADDRLO = 0xff57;
EMAC_MACINDEX = 0x07;
EMAC_MACADDRLO = 0xff57;
... ...
// MAC Source Addr, should be same as the EMAC Addr
EMAC_MACSRCADDRHI = 0x000e9902; /* bytes 2-5 */
EMAC_MACSRCADDRLO = 0xff57; /* bytes 0,1 */