Skip to content

Commit 71c679d

Browse files
author
Jeppe Odgaard
committed
drivers: rtc: rtc_ll_stm32: rework lock usage in rtc_stm32_set_time
Lock just before and just after accessing functions that modifies register values. Signed-off-by: Jeppe Odgaard <jeppe.odgaard@prevas.dk>
1 parent 017744c commit 71c679d

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

drivers/rtc/rtc_ll_stm32.c

+13-13
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,6 @@ static int rtc_stm32_set_time(const struct device *dev, const struct rtc_time *t
442442
LL_RTC_TimeTypeDef rtc_time;
443443
LL_RTC_DateTypeDef rtc_date;
444444
uint32_t real_year = timeptr->tm_year + TM_YEAR_REF;
445-
int err = 0;
446445

447446
if (real_year < RTC_YEAR_REF) {
448447
/* RTC does not support years before 2000 */
@@ -454,19 +453,10 @@ static int rtc_stm32_set_time(const struct device *dev, const struct rtc_time *t
454453
return -EINVAL;
455454
}
456455

457-
k_spinlock_key_t key = k_spin_lock(&data->lock);
458-
459-
LOG_DBG("Setting clock");
460-
461-
#if RTC_STM32_BACKUP_DOMAIN_WRITE_PROTECTION
462-
LL_PWR_EnableBkUpAccess();
463-
#endif /* RTC_STM32_BACKUP_DOMAIN_WRITE_PROTECTION */
464-
465456
/* Enter Init mode inside the LL_RTC_Time and Date Init functions */
466457
rtc_time.Hours = bin2bcd(timeptr->tm_hour);
467458
rtc_time.Minutes = bin2bcd(timeptr->tm_min);
468459
rtc_time.Seconds = bin2bcd(timeptr->tm_sec);
469-
LL_RTC_TIME_Init(RTC, LL_RTC_FORMAT_BCD, &rtc_time);
470460

471461
/* Set Date after Time to be sure the DR is correctly updated on stm32F2 serie. */
472462
rtc_date.Year = bin2bcd((real_year - RTC_YEAR_REF));
@@ -476,6 +466,16 @@ static int rtc_stm32_set_time(const struct device *dev, const struct rtc_time *t
476466
/* WeekDay sunday (tm_wday = 0) is not represented by the same value in hardware,
477467
* all the other values are consistent with what is expected by hardware.
478468
*/
469+
470+
LOG_DBG("Setting clock");
471+
472+
k_spinlock_key_t key = k_spin_lock(&data->lock);
473+
474+
#if RTC_STM32_BACKUP_DOMAIN_WRITE_PROTECTION
475+
LL_PWR_EnableBkUpAccess();
476+
#endif /* RTC_STM32_BACKUP_DOMAIN_WRITE_PROTECTION */
477+
478+
LL_RTC_TIME_Init(RTC, LL_RTC_FORMAT_BCD, &rtc_time);
479479
LL_RTC_DATE_Init(RTC, LL_RTC_FORMAT_BCD, &rtc_date);
480480

481481
#if RTC_STM32_BACKUP_DOMAIN_WRITE_PROTECTION
@@ -492,8 +492,6 @@ static int rtc_stm32_set_time(const struct device *dev, const struct rtc_time *t
492492
}
493493
#endif /* CONFIG_SOC_SERIES_STM32F2X */
494494

495-
k_spin_unlock(&data->lock, key);
496-
497495
LOG_DBG("Calendar set : %d/%d/%d - %dh%dm%ds",
498496
LL_RTC_DATE_GetDay(RTC),
499497
LL_RTC_DATE_GetMonth(RTC),
@@ -503,7 +501,9 @@ static int rtc_stm32_set_time(const struct device *dev, const struct rtc_time *t
503501
LL_RTC_TIME_GetSecond(RTC)
504502
);
505503

506-
return err;
504+
k_spin_unlock(&data->lock, key);
505+
506+
return 0;
507507
}
508508

509509
static int rtc_stm32_get_time(const struct device *dev, struct rtc_time *timeptr)

0 commit comments

Comments
 (0)