2016-03-09 16:18:51 +00:00
|
|
|
/*
|
2016-03-13 16:04:03 +00:00
|
|
|
* Auxiliary functions to handle date/time along with lwIP sntp implementation.
|
2016-03-09 16:18:51 +00:00
|
|
|
*
|
|
|
|
* Jesus Alonso (doragasu)
|
|
|
|
*/
|
|
|
|
|
2016-03-11 12:11:15 +00:00
|
|
|
#include <sys/reent.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/errno.h>
|
2016-03-09 16:18:51 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <espressif/esp_common.h>
|
|
|
|
#include <esp/timer.h>
|
|
|
|
#include <esp/rtc_regs.h>
|
2017-12-07 19:48:38 +00:00
|
|
|
#include <sntp.h>
|
2016-03-09 16:18:51 +00:00
|
|
|
|
|
|
|
#define TIMER_COUNT RTC.COUNTER
|
|
|
|
|
|
|
|
// daylight settings
|
|
|
|
// Base calculated with value obtained from NTP server (64 bits)
|
|
|
|
#define sntp_base (*((uint64_t*)RTC.SCRATCH))
|
|
|
|
// Timer value when base was obtained
|
|
|
|
#define tim_ref (RTC.SCRATCH[2])
|
2016-03-13 16:04:03 +00:00
|
|
|
// Calibration value
|
|
|
|
#define cal (RTC.SCRATCH[3])
|
2016-03-13 17:29:30 +00:00
|
|
|
|
|
|
|
// Timezone related data.
|
|
|
|
static struct timezone stz;
|
2016-03-09 16:18:51 +00:00
|
|
|
|
|
|
|
// Implemented in sntp.c
|
|
|
|
void sntp_init(void);
|
|
|
|
|
2016-03-13 17:29:30 +00:00
|
|
|
// Sets time zone.
|
2016-03-09 16:18:51 +00:00
|
|
|
// NOTE: Settings do not take effect until SNTP time is updated.
|
2016-03-13 17:29:30 +00:00
|
|
|
void sntp_set_timezone(const struct timezone *tz) {
|
|
|
|
if (tz) {
|
|
|
|
stz = *tz;
|
|
|
|
} else {
|
|
|
|
stz.tz_minuteswest = 0;
|
|
|
|
stz.tz_dsttime = 0;
|
|
|
|
}
|
2016-03-09 16:18:51 +00:00
|
|
|
}
|
|
|
|
|
2016-03-13 17:29:30 +00:00
|
|
|
// Initialization
|
|
|
|
void sntp_initialize(const struct timezone *tz) {
|
|
|
|
if (tz) {
|
|
|
|
stz = *tz;
|
|
|
|
} else {
|
|
|
|
stz.tz_minuteswest = 0;
|
|
|
|
stz.tz_dsttime = 0;
|
|
|
|
}
|
2016-03-09 16:18:51 +00:00
|
|
|
sntp_base = 0;
|
|
|
|
// To avoid div by 0 exceptions if requesting time before SNTP config
|
2016-03-13 16:04:03 +00:00
|
|
|
cal = 1;
|
2016-03-09 16:18:51 +00:00
|
|
|
tim_ref = TIMER_COUNT;
|
|
|
|
sntp_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if a timer wrap has occurred. Compensate sntp_base reference
|
|
|
|
// if affirmative.
|
|
|
|
// TODO: think about multitasking and race conditions
|
|
|
|
static inline void sntp_check_timer_wrap(uint32_t current_value) {
|
|
|
|
if (current_value < tim_ref) {
|
|
|
|
// Timer wrap has occurred, compensate by subtracting 2^32 to ref.
|
|
|
|
sntp_base -= 1LLU<<32;
|
|
|
|
// DEBUG
|
|
|
|
printf("\nTIMER WRAPPED!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return secs. If us is not a null pointer, fill it with usecs
|
2016-03-13 16:04:03 +00:00
|
|
|
inline time_t sntp_get_rtc_time(int32_t *us) {
|
2016-03-09 16:18:51 +00:00
|
|
|
time_t secs;
|
|
|
|
uint32_t tim;
|
|
|
|
uint64_t base;
|
|
|
|
|
|
|
|
tim = TIMER_COUNT;
|
|
|
|
// Check for timer wrap
|
|
|
|
sntp_check_timer_wrap(tim);
|
|
|
|
base = sntp_base + tim - tim_ref;
|
2016-03-13 16:04:03 +00:00
|
|
|
secs = base * cal / (1000000U<<12);
|
2016-03-09 16:18:51 +00:00
|
|
|
if (us) {
|
2016-03-13 16:04:03 +00:00
|
|
|
*us = base * cal % (1000000U<<12);
|
2016-03-09 16:18:51 +00:00
|
|
|
}
|
|
|
|
return secs;
|
|
|
|
}
|
|
|
|
|
2016-03-13 17:29:30 +00:00
|
|
|
// Syscall implementation. doesn't seem to use tzp.
|
2016-03-11 12:11:15 +00:00
|
|
|
int _gettimeofday_r(struct _reent *r, struct timeval *tp, void *tzp) {
|
2016-03-13 17:29:30 +00:00
|
|
|
(void)r;
|
|
|
|
// Syscall defined by xtensa newlib defines tzp as void*
|
|
|
|
// So it looks like it is not used. Also check tp is not NULL
|
|
|
|
if (tzp || !tp) return EINVAL;
|
2016-03-11 12:11:15 +00:00
|
|
|
|
|
|
|
tp->tv_sec = sntp_get_rtc_time((int32_t*)&tp->tv_usec);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-03-13 17:29:30 +00:00
|
|
|
// Update RTC timer. Called by SNTP module each time it receives an update.
|
2016-03-09 16:18:51 +00:00
|
|
|
void sntp_update_rtc(time_t t, uint32_t us) {
|
|
|
|
// Apply daylight and timezone correction
|
2016-03-13 17:29:30 +00:00
|
|
|
t += (stz.tz_minuteswest + stz.tz_dsttime * 60) * 60;
|
2016-03-09 16:18:51 +00:00
|
|
|
// DEBUG: Compute and print drift
|
|
|
|
int64_t sntp_current = sntp_base + TIMER_COUNT - tim_ref;
|
2016-03-13 16:04:03 +00:00
|
|
|
int64_t sntp_correct = (((uint64_t)us + (uint64_t)t * 1000000U)<<12) / cal;
|
2017-09-21 11:46:20 +00:00
|
|
|
printf("\nRTC Adjust: drift = %lld ticks, cal = %d\n", (time_t)(sntp_correct - sntp_current), (uint32_t)cal);
|
2016-03-09 16:18:51 +00:00
|
|
|
|
|
|
|
tim_ref = TIMER_COUNT;
|
2016-03-13 16:04:03 +00:00
|
|
|
cal = sdk_system_rtc_clock_cali_proc();
|
2016-03-09 16:18:51 +00:00
|
|
|
|
2016-03-13 16:04:03 +00:00
|
|
|
sntp_base = (((uint64_t)us + (uint64_t)t * 1000000U)<<12) / cal;
|
2016-03-09 16:18:51 +00:00
|
|
|
}
|
|
|
|
|