Hi,
try this configuration:
/* Set sysclk = 120MHz running from PLL with 40 MHz crystal reference. */
void initSysclk (void) {
FMPLL.ESYNCR1.B.CLKCFG = 0X7; /* Change clk to PLL normal mode from crystal */
FMPLL.SYNCR.R = 0x22880000; /* Fsys =60Mhz */
while (FMPLL.SYNSR.B.LOCK != 1) {}; /* Wait for FMPLL to LOCK */
FMPLL.SYNCR.R = 0x22800000; /* Fsys =120Mhz */
}
Regards,
Martin