2011-12-08 21:17:19 +00:00
|
|
|
/*
|
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
2012-01-21 14:29:42 +00:00
|
|
|
2011,2012 Giovanni Di Sirio.
|
2011-12-08 21:17:19 +00:00
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2011-12-29 18:07:02 +00:00
|
|
|
/*
|
|
|
|
Concepts and parts of this file have been contributed by Uladzimir Pylinsky
|
|
|
|
aka barthess.
|
|
|
|
*/
|
2011-12-08 21:17:19 +00:00
|
|
|
|
|
|
|
/**
|
2011-12-11 23:40:49 +00:00
|
|
|
* @file STM32/RTCv2/rtc_lld.c
|
2012-03-04 14:27:03 +00:00
|
|
|
* @brief STM32L1xx/STM32F2xx/STM32F4xx RTC low level driver.
|
2011-12-08 21:17:19 +00:00
|
|
|
*
|
|
|
|
* @addtogroup RTC
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
|
|
|
|
|
|
|
#if HAL_USE_RTC || defined(__DOXYGEN__)
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported variables. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief RTC driver identifier.
|
|
|
|
*/
|
|
|
|
RTCDriver RTCD1;
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local variables. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local functions. */
|
|
|
|
/*===========================================================================*/
|
2012-03-04 14:27:03 +00:00
|
|
|
/**
|
|
|
|
* @brief Wait for synchronization of RTC registers with APB1 bus.
|
|
|
|
* @details This function must be invoked before trying to read RTC registers.
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
#define rtc_lld_apb1_sync() {while ((RTCD1.id_rtc->ISR & RTC_ISR_RSF) == 0);}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Beginning of configuration procedure.
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
#define rtc_lld_enter_init() { \
|
|
|
|
RTCD1.id_rtc->ISR |= RTC_ISR_INIT; \
|
|
|
|
while ((RTCD1.id_rtc->ISR & RTC_ISR_INITF) == 0) \
|
|
|
|
; \
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Finalizing of configuration procedure.
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
#define rtc_lld_exit_init() {RTCD1.id_rtc->ISR &= ~RTC_ISR_INIT;}
|
2011-12-08 21:17:19 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver interrupt handlers. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
2012-03-04 14:27:03 +00:00
|
|
|
* @brief Enable access to registers.
|
2011-12-08 21:17:19 +00:00
|
|
|
*
|
2012-03-04 14:27:03 +00:00
|
|
|
* @api
|
2011-12-08 21:17:19 +00:00
|
|
|
*/
|
|
|
|
void rtc_lld_init(void){
|
2011-12-11 23:40:49 +00:00
|
|
|
RTCD1.id_rtc = RTC;
|
|
|
|
|
2011-12-11 20:05:55 +00:00
|
|
|
/* Asynchronous part of preloader. Set it to maximum value. */
|
2012-03-04 14:27:03 +00:00
|
|
|
uint32_t prediv_a = 0x7F;
|
2011-12-08 21:17:19 +00:00
|
|
|
|
2012-03-04 14:27:03 +00:00
|
|
|
/* Disable write protection. */
|
2011-12-12 10:56:51 +00:00
|
|
|
RTCD1.id_rtc->WPR = 0xCA;
|
|
|
|
RTCD1.id_rtc->WPR = 0x53;
|
|
|
|
|
2011-12-11 20:05:55 +00:00
|
|
|
/* If calendar not init yet. */
|
|
|
|
if (!(RTC->ISR & RTC_ISR_INITS)){
|
2012-03-04 14:27:03 +00:00
|
|
|
rtc_lld_enter_init();
|
|
|
|
|
|
|
|
/* Prescaler register must be written in two SEPARATE writes. */
|
2012-05-14 17:40:44 +00:00
|
|
|
prediv_a = (prediv_a << 16) |
|
|
|
|
(((STM32_RTCCLK / (prediv_a + 1)) - 1) & 0x7FFF);
|
|
|
|
RTCD1.id_rtc->PRER = prediv_a;
|
|
|
|
RTCD1.id_rtc->PRER = prediv_a;
|
2012-03-04 14:27:03 +00:00
|
|
|
rtc_lld_exit_init();
|
2011-12-08 21:17:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Set current time.
|
|
|
|
* @note Fractional part will be silently ignored. There is no possibility
|
2012-03-04 14:27:03 +00:00
|
|
|
* to set it on STM32 platform.
|
2011-12-08 21:17:19 +00:00
|
|
|
*
|
|
|
|
* @param[in] rtcp pointer to RTC driver structure
|
|
|
|
* @param[in] timespec pointer to a @p RTCTime structure
|
|
|
|
*
|
2012-03-04 14:27:03 +00:00
|
|
|
* @api
|
2011-12-08 21:17:19 +00:00
|
|
|
*/
|
|
|
|
void rtc_lld_set_time(RTCDriver *rtcp, const RTCTime *timespec) {
|
|
|
|
(void)rtcp;
|
|
|
|
|
2012-03-04 14:27:03 +00:00
|
|
|
rtc_lld_enter_init();
|
|
|
|
if (timespec->h12)
|
|
|
|
RTCD1.id_rtc->CR |= RTC_CR_FMT;
|
|
|
|
else
|
|
|
|
RTCD1.id_rtc->CR &= ~RTC_CR_FMT;
|
2011-12-11 23:40:49 +00:00
|
|
|
RTCD1.id_rtc->TR = timespec->tv_time;
|
|
|
|
RTCD1.id_rtc->DR = timespec->tv_date;
|
2012-03-04 14:27:03 +00:00
|
|
|
rtc_lld_exit_init();
|
2011-12-08 21:17:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get current time.
|
|
|
|
*
|
|
|
|
* @param[in] rtcp pointer to RTC driver structure
|
|
|
|
* @param[out] timespec pointer to a @p RTCTime structure
|
|
|
|
*
|
2012-03-04 14:27:03 +00:00
|
|
|
* @api
|
2011-12-08 21:17:19 +00:00
|
|
|
*/
|
|
|
|
void rtc_lld_get_time(RTCDriver *rtcp, RTCTime *timespec) {
|
|
|
|
(void)rtcp;
|
|
|
|
|
2012-03-04 14:27:03 +00:00
|
|
|
rtc_lld_apb1_sync();
|
2011-12-09 13:58:19 +00:00
|
|
|
|
2011-12-13 09:03:41 +00:00
|
|
|
#if STM32_RTC_HAS_SUBSECONDS
|
2012-03-04 14:27:03 +00:00
|
|
|
timespec->tv_msec =
|
|
|
|
(1000 * ((RTCD1.id_rtc->PRER & 0x7FFF) - RTCD1.id_rtc->SSR)) /
|
|
|
|
((RTCD1.id_rtc->PRER & 0x7FFF) + 1);
|
2011-12-11 20:05:55 +00:00
|
|
|
#endif /* STM32_RTC_HAS_SUBSECONDS */
|
2011-12-15 20:49:24 +00:00
|
|
|
timespec->tv_time = RTCD1.id_rtc->TR;
|
|
|
|
timespec->tv_date = RTCD1.id_rtc->DR;
|
2011-12-08 21:17:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-12-11 23:40:49 +00:00
|
|
|
* @brief Set alarm time.
|
2011-12-08 21:17:19 +00:00
|
|
|
*
|
2011-12-11 23:40:49 +00:00
|
|
|
* @note Default value after BKP domain reset for both comparators is 0.
|
|
|
|
* @note Function does not performs any checks of alarm time validity.
|
2011-12-08 21:17:19 +00:00
|
|
|
*
|
2011-12-11 23:40:49 +00:00
|
|
|
* @param[in] rtcp Pointer to RTC driver structure.
|
|
|
|
* @param[in] alarm Alarm identifier. Can be 1 or 2.
|
|
|
|
* @param[in] alarmspec Pointer to a @p RTCAlarm structure.
|
2011-12-08 21:17:19 +00:00
|
|
|
*
|
2012-03-04 14:27:03 +00:00
|
|
|
* @api
|
2011-12-08 21:17:19 +00:00
|
|
|
*/
|
|
|
|
void rtc_lld_set_alarm(RTCDriver *rtcp,
|
|
|
|
rtcalarm_t alarm,
|
|
|
|
const RTCAlarm *alarmspec) {
|
2011-12-11 23:40:49 +00:00
|
|
|
if (alarm == 1){
|
2012-03-04 14:27:03 +00:00
|
|
|
if (alarmspec != NULL){
|
|
|
|
rtcp->id_rtc->CR &= ~RTC_CR_ALRAE;
|
|
|
|
while(!(rtcp->id_rtc->ISR & RTC_ISR_ALRAWF))
|
|
|
|
;
|
|
|
|
rtcp->id_rtc->ALRMAR = alarmspec->tv_datetime;
|
|
|
|
rtcp->id_rtc->CR |= RTC_CR_ALRAE;
|
|
|
|
rtcp->id_rtc->CR |= RTC_CR_ALRAIE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rtcp->id_rtc->CR &= ~RTC_CR_ALRAIE;
|
|
|
|
rtcp->id_rtc->CR &= ~RTC_CR_ALRAE;
|
|
|
|
}
|
2011-12-11 23:40:49 +00:00
|
|
|
}
|
|
|
|
else{
|
2012-03-04 14:27:03 +00:00
|
|
|
if (alarmspec != NULL){
|
|
|
|
rtcp->id_rtc->CR &= ~RTC_CR_ALRBE;
|
|
|
|
while(!(rtcp->id_rtc->ISR & RTC_ISR_ALRBWF))
|
|
|
|
;
|
|
|
|
rtcp->id_rtc->ALRMBR = alarmspec->tv_datetime;
|
|
|
|
rtcp->id_rtc->CR |= RTC_CR_ALRBE;
|
|
|
|
rtcp->id_rtc->CR |= RTC_CR_ALRBIE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rtcp->id_rtc->CR &= ~RTC_CR_ALRBIE;
|
|
|
|
rtcp->id_rtc->CR &= ~RTC_CR_ALRBE;
|
|
|
|
}
|
2011-12-11 23:40:49 +00:00
|
|
|
}
|
2011-12-08 21:17:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-12-11 23:40:49 +00:00
|
|
|
* @brief Get alarm time.
|
2011-12-08 21:17:19 +00:00
|
|
|
*
|
2011-12-12 10:56:51 +00:00
|
|
|
* @param[in] rtcp pointer to RTC driver structure
|
|
|
|
* @param[in] alarm alarm identifier
|
|
|
|
* @param[out] alarmspec pointer to a @p RTCAlarm structure
|
2011-12-08 21:17:19 +00:00
|
|
|
*
|
2012-03-04 14:27:03 +00:00
|
|
|
* @api
|
2011-12-08 21:17:19 +00:00
|
|
|
*/
|
|
|
|
void rtc_lld_get_alarm(RTCDriver *rtcp,
|
|
|
|
rtcalarm_t alarm,
|
|
|
|
RTCAlarm *alarmspec) {
|
2011-12-11 23:40:49 +00:00
|
|
|
if (alarm == 1)
|
|
|
|
alarmspec->tv_datetime = rtcp->id_rtc->ALRMAR;
|
|
|
|
else
|
|
|
|
alarmspec->tv_datetime = rtcp->id_rtc->ALRMBR;
|
|
|
|
}
|
2011-12-08 21:17:19 +00:00
|
|
|
|
2011-12-11 23:40:49 +00:00
|
|
|
/**
|
|
|
|
* @brief Sets time of periodic wakeup.
|
|
|
|
*
|
|
|
|
* @note Default value after BKP domain reset is 0x0000FFFF
|
|
|
|
*
|
|
|
|
* @param[in] rtcp pointer to RTC driver structure
|
|
|
|
* @param[in] wakeupspec pointer to a @p RTCWakeup structure
|
|
|
|
*
|
2012-03-04 14:27:03 +00:00
|
|
|
* @api
|
2011-12-11 23:40:49 +00:00
|
|
|
*/
|
2012-03-04 14:27:03 +00:00
|
|
|
void rtcSetPeriodicWakeup_v2(RTCDriver *rtcp, RTCWakeup *wakeupspec){
|
2011-12-12 10:56:51 +00:00
|
|
|
chDbgCheck((wakeupspec->wakeup != 0x30000),
|
2011-12-11 23:40:49 +00:00
|
|
|
"rtc_lld_set_periodic_wakeup, forbidden combination");
|
|
|
|
|
2012-03-04 14:27:03 +00:00
|
|
|
if (wakeupspec != NULL){
|
|
|
|
rtcp->id_rtc->CR &= ~RTC_CR_WUTE;
|
|
|
|
while(!(rtcp->id_rtc->ISR & RTC_ISR_WUTWF))
|
|
|
|
;
|
|
|
|
rtcp->id_rtc->WUTR = wakeupspec->wakeup & 0xFFFF;
|
|
|
|
rtcp->id_rtc->CR = (wakeupspec->wakeup >> 16) & 0x7;
|
|
|
|
rtcp->id_rtc->CR |= RTC_CR_WUTIE;
|
|
|
|
rtcp->id_rtc->CR |= RTC_CR_WUTE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rtcp->id_rtc->CR &= ~RTC_CR_WUTIE;
|
|
|
|
rtcp->id_rtc->CR &= ~RTC_CR_WUTE;
|
|
|
|
}
|
2011-12-08 21:17:19 +00:00
|
|
|
}
|
|
|
|
|
2011-12-11 23:40:49 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets time of periodic wakeup.
|
|
|
|
*
|
|
|
|
* @note Default value after BKP domain reset is 0x0000FFFF
|
|
|
|
*
|
2011-12-12 10:56:51 +00:00
|
|
|
* @param[in] rtcp pointer to RTC driver structure
|
|
|
|
* @param[out] wakeupspec pointer to a @p RTCWakeup structure
|
2011-12-11 23:40:49 +00:00
|
|
|
*
|
2012-03-04 14:27:03 +00:00
|
|
|
* @api
|
2011-12-11 23:40:49 +00:00
|
|
|
*/
|
2012-03-04 14:27:03 +00:00
|
|
|
void rtcGetPeriodicWakeup_v2(RTCDriver *rtcp, RTCWakeup *wakeupspec){
|
2011-12-12 10:56:51 +00:00
|
|
|
wakeupspec->wakeup = 0;
|
|
|
|
wakeupspec->wakeup |= rtcp->id_rtc->WUTR;
|
|
|
|
wakeupspec->wakeup |= (((uint32_t)rtcp->id_rtc->CR) & 0x7) << 16;
|
2011-12-11 23:40:49 +00:00
|
|
|
}
|
|
|
|
|
2011-12-08 21:17:19 +00:00
|
|
|
#endif /* HAL_USE_RTC */
|
|
|
|
|
|
|
|
/** @} */
|