drv_rtc.c 8.7 KB
Newer Older
1
/*
mysterywolf's avatar
mysterywolf 已提交
2
 * Copyright (c) 2006-2021, RT-Thread Development Team
3 4 5 6
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
S
SummerGift 已提交
7 8
 * Date         Author        Notes
 * 2018-12-04   balanceTWK    first version
9 10
 * 2020-10-14   Dozingfiretruck Porting for stm32wbxx
 * 2021-02-05   Meco Man      fix the problem of mixing local time and UTC time
11
 * 2021-07-05   iysheng       implement RTC framework V2.0
12 13 14
 */

#include "board.h"
15
#include <sys/time.h>
16 17 18

#ifdef BSP_USING_ONCHIP_RTC

T
tangweikang 已提交
19 20 21 22
#ifndef RTC_BKP_DR1
#define RTC_BKP_DR1 RT_NULL
#endif

23 24 25 26 27 28 29 30
//#define DRV_DEBUG
#define LOG_TAG             "drv.rtc"
#include <drv_log.h>

#define BKUP_REG_DATA 0xA5A5

static RTC_HandleTypeDef RTC_Handler;

T
tyustli 已提交
31 32 33 34 35 36 37 38 39 40
RT_WEAK uint32_t HAL_RTCEx_BKUPRead(RTC_HandleTypeDef *hrtc, uint32_t BackupRegister)
{
    return (~BKUP_REG_DATA);
}

RT_WEAK void HAL_RTCEx_BKUPWrite(RTC_HandleTypeDef *hrtc, uint32_t BackupRegister, uint32_t Data)
{
    return;
}

41
static void get_rtc_timeval(struct timeval *tv)
42
{
S
SummerGift 已提交
43 44
    RTC_TimeTypeDef RTC_TimeStruct = {0};
    RTC_DateTypeDef RTC_DateStruct = {0};
45
    struct tm tm_new = {0};
46 47 48 49 50 51 52 53 54 55 56

    HAL_RTC_GetTime(&RTC_Handler, &RTC_TimeStruct, RTC_FORMAT_BIN);
    HAL_RTC_GetDate(&RTC_Handler, &RTC_DateStruct, RTC_FORMAT_BIN);

    tm_new.tm_sec  = RTC_TimeStruct.Seconds;
    tm_new.tm_min  = RTC_TimeStruct.Minutes;
    tm_new.tm_hour = RTC_TimeStruct.Hours;
    tm_new.tm_mday = RTC_DateStruct.Date;
    tm_new.tm_mon  = RTC_DateStruct.Month - 1;
    tm_new.tm_year = RTC_DateStruct.Year + 100;

57 58 59 60 61
    tv->tv_sec = timegm(&tm_new);

#if defined(SOC_SERIES_STM32H7)
    tv->tv_usec = (255.0 - RTC_TimeStruct.SubSeconds * 1.0) / 256.0 * 1000.0 * 1000.0;
#endif
62 63 64 65
}

static rt_err_t set_rtc_time_stamp(time_t time_stamp)
{
S
SummerGift 已提交
66 67
    RTC_TimeTypeDef RTC_TimeStruct = {0};
    RTC_DateTypeDef RTC_DateStruct = {0};
68
    struct tm p_tm = {0};
69

70 71
    gmtime_r(&time_stamp, &p_tm);
    if (p_tm.tm_year < 100)
72 73 74 75
    {
        return -RT_ERROR;
    }

76 77 78 79 80 81 82
    RTC_TimeStruct.Seconds = p_tm.tm_sec ;
    RTC_TimeStruct.Minutes = p_tm.tm_min ;
    RTC_TimeStruct.Hours   = p_tm.tm_hour;
    RTC_DateStruct.Date    = p_tm.tm_mday;
    RTC_DateStruct.Month   = p_tm.tm_mon + 1 ;
    RTC_DateStruct.Year    = p_tm.tm_year - 100;
    RTC_DateStruct.WeekDay = p_tm.tm_wday + 1;
83

Z
zylx 已提交
84
    if (HAL_RTC_SetTime(&RTC_Handler, &RTC_TimeStruct, RTC_FORMAT_BIN) != HAL_OK)
85 86 87
    {
        return -RT_ERROR;
    }
Z
zylx 已提交
88
    if (HAL_RTC_SetDate(&RTC_Handler, &RTC_DateStruct, RTC_FORMAT_BIN) != HAL_OK)
89 90 91 92 93 94
    {
        return -RT_ERROR;
    }

    LOG_D("set rtc time.");
    HAL_RTCEx_BKUPWrite(&RTC_Handler, RTC_BKP_DR1, BKUP_REG_DATA);
95

T
tyustli 已提交
96
#ifdef SOC_SERIES_STM32F1
97
    /* F1 series does't save year/month/date datas. so keep those datas to bkp reg */
T
tyustli 已提交
98 99 100 101 102 103
    HAL_RTCEx_BKUPWrite(&RTC_Handler, RTC_BKP_DR2, RTC_DateStruct.Year);
    HAL_RTCEx_BKUPWrite(&RTC_Handler, RTC_BKP_DR3, RTC_DateStruct.Month);
    HAL_RTCEx_BKUPWrite(&RTC_Handler, RTC_BKP_DR4, RTC_DateStruct.Date);
    HAL_RTCEx_BKUPWrite(&RTC_Handler, RTC_BKP_DR5, RTC_DateStruct.WeekDay);
#endif

104 105 106
    return RT_EOK;
}

T
tyustli 已提交
107 108
#ifdef SOC_SERIES_STM32F1
/* update RTC_BKP_DRx*/
109
static void rt_rtc_f1_bkp_update(void)
T
tyustli 已提交
110 111 112 113 114 115
{
    RTC_DateTypeDef RTC_DateStruct = {0};

    HAL_PWR_EnableBkUpAccess();
    __HAL_RCC_BKP_CLK_ENABLE();

116 117 118 119 120 121 122 123 124
    RTC_DateStruct.Year    = HAL_RTCEx_BKUPRead(&RTC_Handler, RTC_BKP_DR2);
    RTC_DateStruct.Month   = HAL_RTCEx_BKUPRead(&RTC_Handler, RTC_BKP_DR3);
    RTC_DateStruct.Date    = HAL_RTCEx_BKUPRead(&RTC_Handler, RTC_BKP_DR4);
    RTC_DateStruct.WeekDay = HAL_RTCEx_BKUPRead(&RTC_Handler, RTC_BKP_DR5);
    if (HAL_RTC_SetDate(&RTC_Handler, &RTC_DateStruct, RTC_FORMAT_BIN) != HAL_OK)
    {
        Error_Handler();
    }

T
tyustli 已提交
125 126 127 128 129 130 131 132 133 134 135 136
    HAL_RTC_GetDate(&RTC_Handler, &RTC_DateStruct, RTC_FORMAT_BIN);
    if (HAL_RTCEx_BKUPRead(&RTC_Handler, RTC_BKP_DR4) != RTC_DateStruct.Date)
    {
        HAL_RTCEx_BKUPWrite(&RTC_Handler, RTC_BKP_DR1, BKUP_REG_DATA);
        HAL_RTCEx_BKUPWrite(&RTC_Handler, RTC_BKP_DR2, RTC_DateStruct.Year);
        HAL_RTCEx_BKUPWrite(&RTC_Handler, RTC_BKP_DR3, RTC_DateStruct.Month);
        HAL_RTCEx_BKUPWrite(&RTC_Handler, RTC_BKP_DR4, RTC_DateStruct.Date);
        HAL_RTCEx_BKUPWrite(&RTC_Handler, RTC_BKP_DR5, RTC_DateStruct.WeekDay);
    }
}
#endif

137
static rt_err_t rt_rtc_config(void)
138
{
S
SummerGift 已提交
139
    RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0};
140 141 142

    HAL_PWR_EnableBkUpAccess();
    PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_RTC;
Z
zylx 已提交
143 144 145
#ifdef BSP_RTC_USING_LSI
    PeriphClkInitStruct.RTCClockSelection = RCC_RTCCLKSOURCE_LSI;
#else
146
    PeriphClkInitStruct.RTCClockSelection = RCC_RTCCLKSOURCE_LSE;
Z
zylx 已提交
147
#endif
148 149
    HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct);

150 151 152 153
#if defined(SOC_SERIES_STM32WL)
    __HAL_RCC_RTCAPB_CLK_ENABLE();
#endif

154 155 156
    /* Enable RTC Clock */
    __HAL_RCC_RTC_ENABLE();

157 158 159
    RTC_Handler.Instance = RTC;
    if (HAL_RTCEx_BKUPRead(&RTC_Handler, RTC_BKP_DR1) != BKUP_REG_DATA)
    {
T
tangweikang 已提交
160
        LOG_I("RTC hasn't been configured, please use <date> command to config.");
161 162 163 164

#if defined(SOC_SERIES_STM32F1)
        RTC_Handler.Init.OutPut = RTC_OUTPUTSOURCE_NONE;
        RTC_Handler.Init.AsynchPrediv = RTC_AUTO_1_SECOND;
Z
zylx 已提交
165 166 167 168 169 170
#elif defined(SOC_SERIES_STM32F0)

        /* set the frequency division */
#ifdef BSP_RTC_USING_LSI
        RTC_Handler.Init.AsynchPrediv = 0XA0;
        RTC_Handler.Init.SynchPrediv = 0xFA;
171
#else
Z
zylx 已提交
172
        RTC_Handler.Init.AsynchPrediv = 0X7F;
173
        RTC_Handler.Init.SynchPrediv = 0x0130;
Z
zylx 已提交
174 175 176 177 178 179
#endif /* BSP_RTC_USING_LSI */

        RTC_Handler.Init.HourFormat = RTC_HOURFORMAT_24;
        RTC_Handler.Init.OutPut = RTC_OUTPUT_DISABLE;
        RTC_Handler.Init.OutPutPolarity = RTC_OUTPUT_POLARITY_HIGH;
        RTC_Handler.Init.OutPutType = RTC_OUTPUT_TYPE_OPENDRAIN;
180
#elif defined(SOC_SERIES_STM32F2) || defined(SOC_SERIES_STM32F4) || defined(SOC_SERIES_STM32F7) || defined(SOC_SERIES_STM32L4) || defined(SOC_SERIES_STM32WL) || defined(SOC_SERIES_STM32H7) || defined (SOC_SERIES_STM32WB)
Z
zylx 已提交
181 182 183 184 185 186 187 188 189

        /* set the frequency division */
#ifdef BSP_RTC_USING_LSI
        RTC_Handler.Init.AsynchPrediv = 0X7D;
#else
        RTC_Handler.Init.AsynchPrediv = 0X7F;
#endif /* BSP_RTC_USING_LSI */
        RTC_Handler.Init.SynchPrediv = 0XFF;

190 191 192 193 194 195 196 197 198 199
        RTC_Handler.Init.HourFormat = RTC_HOURFORMAT_24;
        RTC_Handler.Init.OutPut = RTC_OUTPUT_DISABLE;
        RTC_Handler.Init.OutPutPolarity = RTC_OUTPUT_POLARITY_HIGH;
        RTC_Handler.Init.OutPutType = RTC_OUTPUT_TYPE_OPENDRAIN;
#endif
        if (HAL_RTC_Init(&RTC_Handler) != HAL_OK)
        {
            return -RT_ERROR;
        }
    }
T
tyustli 已提交
200 201 202
#ifdef SOC_SERIES_STM32F1
    else
    {
203 204
        /* F1 series need update by bkp reg datas */
        rt_rtc_f1_bkp_update();
T
tyustli 已提交
205 206 207
    }
#endif

208 209 210
    return RT_EOK;
}

211
static rt_err_t stm32_rtc_init(void)
212
{
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
#if !defined(SOC_SERIES_STM32H7) && !defined(SOC_SERIES_STM32WL) && !defined(SOC_SERIES_STM32WB)
    __HAL_RCC_PWR_CLK_ENABLE();
#endif

    RCC_OscInitTypeDef RCC_OscInitStruct = {0};
#ifdef BSP_RTC_USING_LSI
#ifdef SOC_SERIES_STM32WB
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI1;
    RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE;
    RCC_OscInitStruct.LSEState = RCC_LSE_OFF;
    RCC_OscInitStruct.LSIState = RCC_LSI_ON;
#else
    RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI;
    RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE;
    RCC_OscInitStruct.LSEState = RCC_LSE_OFF;
    RCC_OscInitStruct.LSIState = RCC_LSI_ON;
#endif
#else
    RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSE;
    RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE;
    RCC_OscInitStruct.LSEState = RCC_LSE_ON;
    RCC_OscInitStruct.LSIState = RCC_LSI_OFF;
#endif
    HAL_RCC_OscConfig(&RCC_OscInitStruct);

    if (rt_rtc_config() != RT_EOK)
239
    {
240 241 242
        LOG_E("rtc init failed.");
        return -RT_ERROR;
    }
243

244 245 246 247 248
    return RT_EOK;
}

static rt_err_t stm32_rtc_get_secs(void *args)
{
249 250 251
    struct timeval tv;
    get_rtc_timeval(&tv);
    *(rt_uint32_t *) args = tv.tv_sec;
252 253 254 255 256 257 258 259 260 261 262 263
    LOG_D("RTC: get rtc_time %x\n", *(rt_uint32_t *)args);

    return RT_EOK;
}

static rt_err_t stm32_rtc_set_secs(void *args)
{
    rt_err_t result = RT_EOK;

    if (set_rtc_time_stamp(*(rt_uint32_t *)args))
    {
        result = -RT_ERROR;
264
    }
265
    LOG_D("RTC: set rtc_time %x\n", *(rt_uint32_t *)args);
266 267 268 269

    return result;
}

270 271 272 273 274 275 276
static rt_err_t stm32_rtc_get_timeval(void *args)
{
    get_rtc_timeval((struct timeval *) args);

    return RT_EOK;
}

277
static const struct rt_rtc_ops stm32_rtc_ops =
278
{
279
    stm32_rtc_init,
mysterywolf's avatar
mysterywolf 已提交
280 281
    stm32_rtc_get_secs,
    stm32_rtc_set_secs,
282 283
    RT_NULL,
    RT_NULL,
284
    stm32_rtc_get_timeval,
285 286 287
    RT_NULL,
};

288
static rt_rtc_dev_t stm32_rtc_dev;
289

290
static int rt_hw_rtc_init(void)
291 292
{
    rt_err_t result;
293 294

    stm32_rtc_dev.ops = &stm32_rtc_ops;
295
    result = rt_hw_rtc_register(&stm32_rtc_dev, "rtc", RT_DEVICE_FLAG_RDWR, RT_NULL);
296 297 298 299 300 301
    if (result != RT_EOK)
    {
        LOG_E("rtc register err code: %d", result);
        return result;
    }
    LOG_D("rtc init success");
302

303 304 305 306
    return RT_EOK;
}
INIT_DEVICE_EXPORT(rt_hw_rtc_init);
#endif /* BSP_USING_ONCHIP_RTC */