Home
last modified time | relevance | path

Searched refs:clockPeriodNanoSec (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/contrib/ncsw/Peripherals/FM/Rtc/
H A Dfm_rtc.c181 p_Rtc->clockPeriodNanoSec = DEFAULT_CLOCK_PERIOD; /* 1 usec */ in FM_RTC_Config()
219 p_Rtc->clockPeriodNanoSec = (1000 / p_Rtc->srcClkFreqMhz); in FM_RTC_Init()
228 p_Rtc->clockPeriodNanoSec * p_Rtc->srcClkFreqMhz); in FM_RTC_Init()
233 tmpDouble = 10000 * (uint64_t)p_Rtc->clockPeriodNanoSec * (uint64_t)p_Rtc->srcClkFreqMhz; in FM_RTC_Init()
305 p_Rtc->clockPeriodNanoSec = period; in FM_RTC_ConfigPeriod()
469 if (p_FmRtcAlarmParams->alarmTime < p_Rtc->clockPeriodNanoSec) in FM_RTC_SetAlarm()
472 p_Rtc->clockPeriodNanoSec)); in FM_RTC_SetAlarm()
474 if (do_div(tmpAlarm, p_Rtc->clockPeriodNanoSec)) in FM_RTC_SetAlarm()
477 p_Rtc->clockPeriodNanoSec)); in FM_RTC_SetAlarm()
507 if (p_FmRtcPeriodicPulseParams->periodicPulsePeriod < p_Rtc->clockPeriodNanoSec) in FM_RTC_SetPeriodicPulse()
[all …]
H A Dfm_rtc.h86 … uint32_t clockPeriodNanoSec; /**< RTC clock period in nano-seconds (for FS mode) */ member