Hello Igor,
Thank you for your quick response.
By attached waveform, a time of NVCC_PLL_OUT that voltage is ready are almost 440usec.
If it must wait more than 440usec as examples,
CKIL = 32.768KHz => 30.5usec period
440usec / 30.5usec = 14.42
to wait more than equal 15CKIL clock cycle so,
CCM_CGPR[PMIC_DELAY_SCALER] = 0 // clock is not divided
CCM_CLPCR[STBY_COUNT] = 11b // CCM will wait (15*pmic_delay_scaler)+1 ckil clock cycles = 16 CKIL clock cycle
or
CCM_CGPR[PMIC_DELAY_SCALER] = 1 // clock is divided /8
CCM_CLPCR[STBY_COUNT] = 01b // CCM will wait (3*pmic_delay_scaler)+1 ckil clock cycles = 25 CKIL clock cycle
Is it correct?
By the way, I found that NVCC_PLL_OUT and VDDHIGH_CAP are used 22uF for SABRE-SD board.
But these are requested to connect 10uF or small one in IMX6DQ6SDLHDG.
It seems a root cause of VDDHIGH_IN voltage drop down.
Is it OK to use 22uF capacitor?
Best regards,
Ishii.