Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 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 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 | /* * Copyright (c) 2018 Foundries.io Ltd * Copyright (c) 2019 STMicroelectronics * * SPDX-License-Identifier: Apache-2.0 */ #include <soc.h> #include <drivers/clock_control.h> #include <drivers/clock_control/stm32_clock_control.h> #include <drivers/timer/system_timer.h> #include <sys_clock.h> #include <spinlock.h> /* * Assumptions and limitations: * * - system clock based on an LPTIM1 instance, clocked by LSI or LSE * - prescaler is set to 1 (LL_LPTIM_PRESCALER_DIV1 in the related register) * - using LPTIM1 AutoReload capability to trig the IRQ (timeout irq) * - when timeout irq occurs the counter is already reset * - the maximum timeout duration is reached with the LPTIM_TIMEBASE value * - with prescaler of 1, the max timeout (LPTIM_TIMEBASE) is 2seconds */ #define LPTIM_CLOCK CONFIG_STM32_LPTIM_CLOCK #define LPTIM_TIMEBASE CONFIG_STM32_LPTIM_TIMEBASE /* nb of LPTIM counter unit per kernel tick */ #define COUNT_PER_TICK (LPTIM_CLOCK / CONFIG_SYS_CLOCK_TICKS_PER_SEC) /* minimum nb of clock cycles to have to set autoreload register correctly */ #define LPTIM_GUARD_VALUE 2 /* A 32bit value cannot exceed 0xFFFFFFFF/LPTIM_TIMEBASE counting cycles. * This is for example about of 65000 x 2000ms when clocked by LSI */ static uint32_t accumulated_lptim_cnt; static struct k_spinlock lock; static void lptim_irq_handler(const struct device *unused) { ARG_UNUSED(unused); if ((LL_LPTIM_IsActiveFlag_ARRM(LPTIM1) != 0) && LL_LPTIM_IsEnabledIT_ARRM(LPTIM1) != 0) { k_spinlock_key_t key = k_spin_lock(&lock); /* do not change ARR yet, z_clock_announce will do */ LL_LPTIM_ClearFLAG_ARRM(LPTIM1); /* increase the total nb of autoreload count * used in the z_timer_cycle_get_32() function. * Reading the CNT register gives a reliable value */ uint32_t autoreload = LL_LPTIM_GetAutoReload(LPTIM1) + 1; accumulated_lptim_cnt += autoreload; k_spin_unlock(&lock, key); /* announce the elapsed time in ms (count register is 16bit) */ uint32_t dticks = (autoreload * CONFIG_SYS_CLOCK_TICKS_PER_SEC) / LPTIM_CLOCK; z_clock_announce(IS_ENABLED(CONFIG_TICKLESS_KERNEL) ? dticks : (dticks > 0)); } } int z_clock_driver_init(const struct device *device) { ARG_UNUSED(device); /* enable LPTIM clock source */ LL_APB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_LPTIM1); LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_LPTIM1); #if defined(CONFIG_STM32_LPTIM_CLOCK_LSI) /* enable LSI clock */ #ifdef CONFIG_SOC_SERIES_STM32WBX LL_RCC_LSI1_Enable(); while (!LL_RCC_LSI1_IsReady()) { #else LL_RCC_LSI_Enable(); while (!LL_RCC_LSI_IsReady()) { #endif /* CONFIG_SOC_SERIES_STM32WBX */ /* Wait for LSI ready */ } LL_RCC_SetLPTIMClockSource(LL_RCC_LPTIM1_CLKSOURCE_LSI); #else /* CONFIG_STM32_LPTIM_CLOCK_LSI */ #if defined(LL_APB1_GRP1_PERIPH_PWR) /* Enable the power interface clock */ LL_APB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_PWR); #endif /* LL_APB1_GRP1_PERIPH_PWR */ /* enable backup domain */ LL_PWR_EnableBkUpAccess(); /* enable LSE clock */ LL_RCC_LSE_DisableBypass(); LL_RCC_LSE_Enable(); while (!LL_RCC_LSE_IsReady()) { /* Wait for LSE ready */ } LL_RCC_SetLPTIMClockSource(LL_RCC_LPTIM1_CLKSOURCE_LSE); #endif /* CONFIG_STM32_LPTIM_CLOCK_LSI */ /* Clear the event flag and possible pending interrupt */ IRQ_CONNECT(DT_IRQN(DT_NODELABEL(lptim1)), DT_IRQ(DT_NODELABEL(lptim1), priority), lptim_irq_handler, 0, 0); irq_enable(DT_IRQN(DT_NODELABEL(lptim1))); /* configure the LPTIM1 counter */ LL_LPTIM_SetClockSource(LPTIM1, LL_LPTIM_CLK_SOURCE_INTERNAL); /* configure the LPTIM1 prescaler with 1 */ LL_LPTIM_SetPrescaler(LPTIM1, LL_LPTIM_PRESCALER_DIV1); LL_LPTIM_SetPolarity(LPTIM1, LL_LPTIM_OUTPUT_POLARITY_REGULAR); LL_LPTIM_SetUpdateMode(LPTIM1, LL_LPTIM_UPDATE_MODE_IMMEDIATE); LL_LPTIM_SetCounterMode(LPTIM1, LL_LPTIM_COUNTER_MODE_INTERNAL); LL_LPTIM_DisableTimeout(LPTIM1); /* counting start is initiated by software */ LL_LPTIM_TrigSw(LPTIM1); /* LPTIM1 interrupt set-up before enabling */ /* no Compare match Interrupt */ LL_LPTIM_DisableIT_CMPM(LPTIM1); LL_LPTIM_ClearFLAG_CMPM(LPTIM1); /* Autoreload match Interrupt */ LL_LPTIM_EnableIT_ARRM(LPTIM1); LL_LPTIM_ClearFLAG_ARRM(LPTIM1); /* ARROK bit validates the write operation to ARR register */ LL_LPTIM_ClearFlag_ARROK(LPTIM1); accumulated_lptim_cnt = 0; /* Enable the LPTIM1 counter */ LL_LPTIM_Enable(LPTIM1); /* Set the Autoreload value once the timer is enabled */ if (IS_ENABLED(CONFIG_TICKLESS_KERNEL)) { /* LPTIM1 is triggered on a LPTIM_TIMEBASE period */ LL_LPTIM_SetAutoReload(LPTIM1, LPTIM_TIMEBASE); } else { /* LPTIM1 is triggered on a Tick period */ LL_LPTIM_SetAutoReload(LPTIM1, COUNT_PER_TICK - 1); } /* Start the LPTIM counter in continuous mode */ LL_LPTIM_StartCounter(LPTIM1, LL_LPTIM_OPERATING_MODE_CONTINUOUS); #ifdef CONFIG_DEBUG /* stop LPTIM1 during DEBUG */ LL_DBGMCU_APB1_GRP1_FreezePeriph(LL_DBGMCU_APB1_GRP1_LPTIM1_STOP); #endif return 0; } static inline uint32_t z_clock_lptim_getcounter(void) { uint32_t lp_time; uint32_t lp_time_prev_read; /* It should be noted that to read reliably the content * of the LPTIM_CNT register, two successive read accesses * must be performed and compared */ lp_time = LL_LPTIM_GetCounter(LPTIM1); do { lp_time_prev_read = lp_time; lp_time = LL_LPTIM_GetCounter(LPTIM1); } while (lp_time != lp_time_prev_read); return lp_time; } void z_clock_set_timeout(int32_t ticks, bool idle) { /* new LPTIM1 AutoReload value to set (aligned on Kernel ticks) */ uint32_t next_arr = 0; ARG_UNUSED(idle); if (!IS_ENABLED(CONFIG_TICKLESS_KERNEL)) { return; } if (ticks == K_TICKS_FOREVER) { /* disable LPTIM clock to avoid counting */ LL_APB1_GRP1_DisableClock(LL_APB1_GRP1_PERIPH_LPTIM1); return; } /* if LPTIM clock was previously stopped, it must now be restored */ if (!LL_APB1_GRP1_IsEnabledClock(LL_APB1_GRP1_PERIPH_LPTIM1)) { LL_APB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_LPTIM1); } /* passing ticks==1 means "announce the next tick", * ticks value of zero (or even negative) is legal and * treated identically: it simply indicates the kernel would like the * next tick announcement as soon as possible. */ ticks = MAX(MIN(ticks - 1, (int32_t)LPTIM_TIMEBASE), 1); k_spinlock_key_t key = k_spin_lock(&lock); /* read current counter value (cannot exceed 16bit) */ uint32_t lp_time = z_clock_lptim_getcounter(); uint32_t autoreload = LL_LPTIM_GetAutoReload(LPTIM1); if (LL_LPTIM_IsActiveFlag_ARRM(LPTIM1) || ((autoreload - lp_time) < LPTIM_GUARD_VALUE)) { /* interrupt happens or happens soon. * It's impossible to set autoreload value. */ k_spin_unlock(&lock, key); return; } /* calculate the next arr value (cannot exceed 16bit) * adjust the next ARR match value to align on Ticks * from the current counter value to first next Tick */ next_arr = (((lp_time * CONFIG_SYS_CLOCK_TICKS_PER_SEC) / LPTIM_CLOCK) + 1) * LPTIM_CLOCK / (CONFIG_SYS_CLOCK_TICKS_PER_SEC); /* add count unit from the expected nb of Ticks */ next_arr = next_arr + ((uint32_t)(ticks) * LPTIM_CLOCK) / CONFIG_SYS_CLOCK_TICKS_PER_SEC - 1; /* maximise to TIMEBASE */ if (next_arr > LPTIM_TIMEBASE) { next_arr = LPTIM_TIMEBASE; } /* The new autoreload value must be LPTIM_GUARD_VALUE clock cycles * after current lptim to make sure we don't miss * an autoreload interrupt */ else if (next_arr < (lp_time + LPTIM_GUARD_VALUE)) { next_arr = lp_time + LPTIM_GUARD_VALUE; } /* ARROK bit validates previous write operation to ARR register */ while (LL_LPTIM_IsActiveFlag_ARROK(LPTIM1) == 0) { } LL_LPTIM_ClearFlag_ARROK(LPTIM1); /* run timer and wait for the reload match */ LL_LPTIM_SetAutoReload(LPTIM1, next_arr); k_spin_unlock(&lock, key); } uint32_t z_clock_elapsed(void) { if (!IS_ENABLED(CONFIG_TICKLESS_KERNEL)) { return 0; } k_spinlock_key_t key = k_spin_lock(&lock); uint32_t lp_time = z_clock_lptim_getcounter(); /* In case of counter roll-over, add this value, * even if the irq has not yet been handled */ if ((LL_LPTIM_IsActiveFlag_ARRM(LPTIM1) != 0) && LL_LPTIM_IsEnabledIT_ARRM(LPTIM1) != 0) { lp_time += LL_LPTIM_GetAutoReload(LPTIM1) + 1; } k_spin_unlock(&lock, key); /* gives the value of LPTIM1 counter (ms) * since the previous 'announce' */ uint64_t ret = (lp_time * CONFIG_SYS_CLOCK_TICKS_PER_SEC) / LPTIM_CLOCK; return (uint32_t)(ret); } uint32_t z_timer_cycle_get_32(void) { /* just gives the accumulated count in a number of hw cycles */ k_spinlock_key_t key = k_spin_lock(&lock); uint32_t lp_time = z_clock_lptim_getcounter(); /* In case of counter roll-over, add this value, * even if the irq has not yet been handled */ if ((LL_LPTIM_IsActiveFlag_ARRM(LPTIM1) != 0) && LL_LPTIM_IsEnabledIT_ARRM(LPTIM1) != 0) { lp_time += LL_LPTIM_GetAutoReload(LPTIM1) + 1; } lp_time += accumulated_lptim_cnt; /* convert lptim count in a nb of hw cycles with precision */ uint64_t ret = lp_time * (sys_clock_hw_cycles_per_sec() / LPTIM_CLOCK); k_spin_unlock(&lock, key); /* convert in hw cycles (keeping 32bit value) */ return (uint32_t)(ret); } |