Hello @pciampanelli,
It seems that you will have to configurate the RTC Clock Configuration by yourself. You could look at the SDK's examples or call the following function: RTC_SetClockSource(), between RTC_Init() and RTC_Stop().
There you could try to set the LPO as your clock source [in fsl_rtc.h], as follows:
static inline void RTC_SetClockSource(RTC_Type *base)
{
//
base->CR |= RTC_CR_LPOS_MASK;
//
}
Best regards, Raul.