Hi Efim,
try to use below config. Also remove J18 jumper on motherboard and connect J18.2 to P20.9. This connects PHY's RX_CLK to PM[8]/MCU's RXCLK input.
void InitEthernetSIU(void)
{
#define MSCR_TO_IMCR_OFFSET 512
SIUL2.MSCR_IO[47].R = 0x22300001; // PC[15], Set to FEC_TXD0
SIUL2.MSCR_IO[76].R = 0x22300001; // PE[12], Set to FEC_TXD1
SIUL2.MSCR_IO[196].R = 0x22300001; // PM[4], Set to FEC_TXD2
SIUL2.MSCR_IO[197].R = 0x22300001; // PM[5], Set to FEC_TXD3
SIUL2.MSCR_IO[46].R = 0x22300001; // PC[14], Set to FEC_TXEN
SIUL2.MSCR_IO[198].R = 0x22300001; // PM[6], Set to FEC_TX_ER, not connected to PHY
SIUL2.MSCR_IO[174].R = 0x00080000; // PK[14], Set to FEC_TX_CLK
SIUL2.MSCR_MUX[923-MSCR_TO_IMCR_OFFSET].B.SSS = 2; // 923-512
SIUL2.MSCR_IO[44].R = 0x00080000; // PC[12], Set to FEC_RXD0
SIUL2.MSCR_MUX[927-MSCR_TO_IMCR_OFFSET].B.SSS = 1;
SIUL2.MSCR_IO[45].R = 0x00080000; // PC[13], Set to FEC_RXD1
SIUL2.MSCR_MUX[928-MSCR_TO_IMCR_OFFSET].B.SSS = 1;
SIUL2.MSCR_IO[193].R = 0x00080000; // PM[1], Set to FEC_RXD2
SIUL2.MSCR_MUX[929-MSCR_TO_IMCR_OFFSET].B.SSS = 1;
SIUL2.MSCR_IO[175].R = 0x00080000; // PK[15], Set to FEC_RXD3
SIUL2.MSCR_MUX[930-MSCR_TO_IMCR_OFFSET].B.SSS = 1;
SIUL2.MSCR_IO[192].R = 0x00080000; // PM[0], Set to FEC_RXDV
SIUL2.MSCR_MUX[925-MSCR_TO_IMCR_OFFSET].B.SSS = 2;
SIUL2.MSCR_IO[195].R = 0x00080000; // PM[3], Set to FEC_RXER
SIUL2.MSCR_MUX[932-MSCR_TO_IMCR_OFFSET].B.SSS = 1;
SIUL2.MSCR_IO[194].R = 0x00080000; // PM[2], Set to FEC_COL
SIUL2.MSCR_MUX[931-MSCR_TO_IMCR_OFFSET].B.SSS = 1;
SIUL2.MSCR_IO[43].R = 0x00080000; // PC[11], Set to FEC_CRS
SIUL2.MSCR_MUX[926-MSCR_TO_IMCR_OFFSET].B.SSS = 1; // 926-512
SIUL2.MSCR_IO[200].R = 0x00080000; // PM[8], Set to FEC_RX_CLK
SIUL2.MSCR_MUX[922-MSCR_TO_IMCR_OFFSET].B.SSS = 2;
SIUL2.MSCR_IO[35].R = 0x22300001; // PC[3], Set to FEC_MDC
SIUL2.MSCR_IO[34].R = 0x21380003; // PC[2], Set to FEC_MDIO
SIUL2.MSCR_MUX[924-MSCR_TO_IMCR_OFFSET].B.SSS = 1; // 924-512
}
BR, Petr