Hi @pdgendt ,
Do you boot the code from the external QSPI flash, right?
If yes, let's talk about the boot mode at first, after POR, the chip will run the internal ROM code at first, it will read the external QSPI flash FCB, then configure the flexSPI interface, then check the external memory IVT, after it is valid, it will jump to the customer code, so all these operation need the time.
I think you can set higher flexSPI frequency, eg, project xip folder, evkmimxrt1064_flexspi_nor_config.c, qspiflash_config,
Set:
.serialClkFreq = kFlexSpiSerialClk_100MHz,
to
.serialClkFreq = kFlexSpiSerialClk_133MHz,
The time may be shorten, but, about 270ms enter the user APP after POR, I think it is correct, as the ROM code, flexspi interface configuration, and jumpt to the app all need code execution time.
Wish it helps you!
Bes Regards,
Kerry