Hi Kewal,
Yes, TWR-K64F120M does support MII interface, but the LwIP ping demo needs some modification to support this . before going ahead, please check the board jumpers settings referring to the following links.
TWR-SER: http://cache.freescale.com/files/microcontrollers/doc/user_guide/TWRSERUM.pdf
TWR-K64F120M : http://cache.freescale.com/files/microcontrollers/doc/user_guide/TWRK64F120MUG.pdf
for TWR-K64F120M and TWR-SER, please make sure the jumpers are set in default configuration. Please note the K64 tower board user guide provide table 5 for RMII settings, so for MII, just following the table 6.
above are hardware configuration, for software , please open the project in the folder of "C:\Freescale\KSDK_1.2.0\examples\twrk64f120m\demo_apps\lwip\lwip_ping_demo\ping_bm" after you installed KSDK 1.2, and add MII config in ethernetif.c and use MII config to replace RMII config in the enet configuration structure.
enet_config_rmii_t miiCfg = {kEnetCfgMii, kEnetCfgSpeed100M, kEnetCfgFullDuplex, false, false};
enet_mac_config_t g_enetMacCfg[ENET_INSTANCE_COUNT] =
{
{
kEnetMacNormalMode, /*!< ENET normal mode*/
NULL, /*!< ENET mac address*/
&miiCfg,
/*!< enet mac control flag recommended to use enet_mac_control_flag_t
it is special control for loop mode, sleep mode, crc forward/terminate etc*/
kEnetRxCrcFwdEnable | kEnetTxCrcBdEnable | kEnetMacEnhancedEnable,
NULL, /*!< ENET Rx FIFO threshold*/
NULL, /*!< ENET Tx FIFO threshold*/
0, /*!< ENET rxaccelerator config*/
0, /*!< ENET txaccelerator config*/
0, /*!< ENET Pause duration*/
NULL, /*!< ENET Special configure for MAC*/
#if FSL_FEATURE_ENET_SUPPORT_PTP
false,
#endif
},
};
I have tested that demo on my TWR-K64 board, and you may try it on your side.

Hope that helps,
Have a great day,
Kan
Freescale Technical Support
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------