123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- /*
- * File : drv_hp_rtc.c
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2006-2013, RT-Thread Development Team
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rt-thread.org/license/LICENSE
- *
- * Change Logs:
- * Date Author Notes
- * 2018-03-15 Liuguang the first version.
- */
- #include "drv_hp_rtc.h"
- #include <time.h>
- #include "fsl_common.h"
- #include "fsl_snvs_hp.h"
- #include "fsl_snvs_lp.h"
- #ifdef RT_USING_RTC
- #if defined(FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL) && FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL
- #error "Please don't define 'FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL'!"
- #endif
- static time_t get_timestamp(void)
- {
- struct tm tm_new = {0};
- snvs_hp_rtc_datetime_t rtcDate;
-
- SNVS_HP_RTC_GetDatetime(SNVS, &rtcDate);
-
- tm_new.tm_sec = rtcDate.second;
- tm_new.tm_min = rtcDate.minute;
- tm_new.tm_hour = rtcDate.hour;
-
- tm_new.tm_mday = rtcDate.day;
- tm_new.tm_mon = rtcDate.month - 1;
- tm_new.tm_year = rtcDate.year - 1900;
- return mktime(&tm_new);
- }
- static int set_timestamp(time_t timestamp)
- {
- struct tm *p_tm;
- snvs_hp_rtc_datetime_t rtcDate;
-
- p_tm = localtime(×tamp);
-
- rtcDate.second = p_tm->tm_sec ;
- rtcDate.minute = p_tm->tm_min ;
- rtcDate.hour = p_tm->tm_hour;
- rtcDate.day = p_tm->tm_mday;
- rtcDate.month = p_tm->tm_mon + 1;
- rtcDate.year = p_tm->tm_year + 1900;
-
- SNVS_HP_RTC_SetDatetime(SNVS, &rtcDate);
-
- return RT_EOK;
- }
- /* Çý¶¯½Ó¿Ú */
- static rt_err_t rt1052_hp_rtc_init(rt_device_t dev)
- {
- snvs_hp_rtc_config_t snvsRtcConfig;
-
- SNVS_HP_RTC_GetDefaultConfig(&snvsRtcConfig);
- SNVS_HP_RTC_Init(SNVS, &snvsRtcConfig);
-
- SNVS_HP_RTC_StartTimer(SNVS);
-
- return RT_EOK;
- }
- static rt_err_t rt1052_hp_rtc_open(rt_device_t dev, rt_uint16_t oflag)
- {
- return RT_EOK;
- }
- static rt_err_t rt1052_hp_rtc_close(rt_device_t dev)
- {
- return RT_EOK;
- }
- static rt_size_t rt1052_hp_rtc_read(rt_device_t dev, rt_off_t pos, void* buffer, rt_size_t size)
- {
- return 0;
- }
- static rt_size_t rt1052_hp_rtc_write(rt_device_t dev, rt_off_t pos, const void* buffer, rt_size_t size)
- {
- return 0;
- }
- static rt_err_t rt1052_hp_rtc_control(rt_device_t dev, int cmd, void *args)
- {
- RT_ASSERT(dev != RT_NULL);
-
- switch(cmd)
- {
- case RT_DEVICE_CTRL_RTC_GET_TIME:
- {
- *(uint32_t *)args = get_timestamp();
- }
- break;
-
- case RT_DEVICE_CTRL_RTC_SET_TIME:
- {
- set_timestamp(*(time_t *)args);
- }
- break;
-
- /* ÎÞЧ²ÎÊý */
- default:
- return RT_EINVAL;
- }
-
- return RT_EOK;
- }
- static struct rt_device device =
- {
- .type = RT_Device_Class_RTC,
- .init = rt1052_hp_rtc_init,
- .open = rt1052_hp_rtc_open,
- .close = rt1052_hp_rtc_close,
- .read = rt1052_hp_rtc_read,
- .write = rt1052_hp_rtc_write,
- .control = rt1052_hp_rtc_control,
- };
- int rt_hw_hp_rtc_init(void)
- {
- rt_err_t ret = RT_EOK;
-
- ret = rt_device_register(&device, "rtc", RT_DEVICE_FLAG_RDWR);
- if(ret != RT_EOK)
- {
- return ret;
- }
-
- rt_device_open(&device, RT_DEVICE_OFLAG_RDWR);
-
- return RT_EOK;
- }
- INIT_DEVICE_EXPORT(rt_hw_hp_rtc_init);
- #endif /*RT_USING_RTC */
|