Finally, I just correct my IP / mac address and the ping works.
So, for SPC58NG-DISP , to run in RMII, I do 3 modifications :
1) I add the Oscillator chip 50 MHz on the board
2) Change MSCR configuration CRS to CRS_DV
According DP8348 datasheet §6.4.2
The following pins are used in RMII mode:
• TX_EN
• TXD[1:0]
• RX_ER (optionnal for MAC)
• CRS_DV
• RXD[1:0]
• X1 (RMII Reference clock is 50 MHz)
In SPC58xG, the pin configuration is :
On board.h file ( add 512 on SIUL MSCR)
#define MSCR_MUX_PIN_CRS_0 414U => #define MSCR_MUX_PIN_CRS_0 413U
3) On MDIO , the pin are not correctly configure (in MII or RMII), this pin is bi directional pin
On file board.c, the configuration is
{(int16_t)MSCR_IO_PIN_MDIO_0, (iomode_t) PAL_SPC5_SSS(13) | PAL_SPC5_OERC(0) | PAL_SPC5_ODC(2) | PAL_SPC5_SMC | PAL_SPC5_ILS(0) | PAL_SPC5_IBE), PAL_LOW},
So the MDIO is configure in Push pull and that not correct.
Change the configuration to Open Drive => PAL_SPC5_ODC(1)