Hi Greg
I've found a solution for tracing the IMXRT1062 at 600MHz. I am able to use a 400MHz trace clock, which is perfect for this purpose. Initially, I tried using the Segger Jtrace, but it wasn't stable. Instead, I got successful results with uTrace from Lauterbach. I have attached a screenshot of my test for your reference.
Please note an important detail: the MCUXpresso Clock Config tool limits the Trace clock to 132MHz, and attempting to set it higher will result in an error. However, you can bypass this by manually configuring the trace clock register. For my setup, I used the following configuration, which worked perfectly:
/* Set TRACE_PODF. */
CLOCK_SetDiv(kCLOCK_TraceDiv, 0);
/* Set Trace clock source. */
CLOCK_SetMux(kCLOCK_TraceMux, 1);

Best wishes
HM