In nor polling SDK example the flexspi clock is set to 133 MHz.
We want to use flash at 60 MHz, but it is very hard to understand what exactly needs to happen.
In app.h this code is generated:
#if defined(XIP_EXTERNAL_FLASH) && (XIP_EXTERNAL_FLASH == 1)
/* Switch to PLL2 for XIP to avoid hardfault during re-initialize clock. */
CLOCK_InitSysPfd(kCLOCK_Pfd2, 24); /* Set PLL2 PFD2 clock 396MHZ. */
CLOCK_SetMux(kCLOCK_FlexspiMux, 0x2); /* Choose PLL2 PFD2 clock as flexspi source clock. */
CLOCK_SetDiv(kCLOCK_FlexspiDiv, 2); /* flexspi clock 133M. */
#else
In the clock tool I can configure the clock to 133 MHz

I want to use it at 60 MHz

Can you please tell me how to adapt the code in app.h to use the flexspi clock at 60 MHz?
CLOCK_InitSysPfd(kCLOCK_Pfd3 ???, ???); // No clue what I fill in here
CLOCK_SetMux(kCLOCK_FlexspiMux, 0x2); // Should this be 0x3???
CLOCK_SetDiv(kCLOCK_FlexspiDiv, 8);