Searched refs:apb_ticks_per_us (Results 1 – 7 of 7) sorted by relevance
186 void IRAM_ATTR esp_timer_impl_update_apb_freq(uint32_t apb_ticks_per_us) in esp_timer_impl_update_apb_freq() argument189 assert(apb_ticks_per_us >= 3 && "divider value too low"); in esp_timer_impl_update_apb_freq()190 …assert(apb_ticks_per_us % TICKS_PER_US == 0 && "APB frequency (in MHz) should be divisible by TICK… in esp_timer_impl_update_apb_freq()191 REG_SET_FIELD(CONFIG_REG, TIMG_LACT_DIVIDER, apb_ticks_per_us / TICKS_PER_US); in esp_timer_impl_update_apb_freq()280 void esp_timer_private_update_apb_freq(uint32_t apb_ticks_per_us) __attribute__((alias("esp_timer_i…
95 void IRAM_ATTR esp_timer_impl_update_apb_freq(uint32_t apb_ticks_per_us) in esp_timer_impl_update_apb_freq() argument98 systimer_hal_on_apb_freq_update(&systimer_hal, apb_ticks_per_us); in esp_timer_impl_update_apb_freq()193 void esp_timer_private_update_apb_freq(uint32_t apb_ticks_per_us) __attribute__((alias("esp_timer_i…
198 void systimer_hal_on_apb_freq_update(systimer_hal_context_t *hal, uint32_t apb_ticks_per_us) in systimer_hal_on_apb_freq_update() argument205 if (apb_ticks_per_us != hal->us_to_ticks(1)) { in systimer_hal_on_apb_freq_update()206 …HAL_ASSERT((hal->us_to_ticks(1) % apb_ticks_per_us) == 0 && "TICK_PER_US should be divisible by AP… in systimer_hal_on_apb_freq_update()207 systimer_ll_set_step_for_xtal(hal->dev, hal->us_to_ticks(1) / apb_ticks_per_us); in systimer_hal_on_apb_freq_update()
35 void esp_timer_private_update_apb_freq(uint32_t apb_ticks_per_us);
88 void esp_timer_impl_update_apb_freq(uint32_t apb_ticks_per_us);
105 void systimer_hal_on_apb_freq_update(systimer_hal_context_t *hal, uint32_t apb_ticks_per_us);
355 uint32_t apb_ticks_per_us = MIN(ticks_per_us, 80); in on_freq_update() local357 if (old_apb_ticks_per_us != apb_ticks_per_us) { in on_freq_update()358 esp_timer_private_update_apb_freq(apb_ticks_per_us); in on_freq_update()