Merge pull request #4999 from hierophect/esp-timer-leak
ESP32S2: Fix PWM timer leak and variable frequency conflicts
This commit is contained in:
commit
e3bc800bbc
@ -1270,6 +1270,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
#: ports/atmel-samd/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/cxd56/common-hal/pwmio/PWMOut.c
|
#: ports/cxd56/common-hal/pwmio/PWMOut.c
|
||||||
|
#: ports/esp32s2/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/mimxrt10xx/common-hal/pwmio/PWMOut.c
|
#: ports/mimxrt10xx/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/nrf/common-hal/pwmio/PWMOut.c
|
#: ports/nrf/common-hal/pwmio/PWMOut.c
|
||||||
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
#: ports/raspberrypi/common-hal/pwmio/PWMOut.c shared-bindings/pwmio/PWMOut.c
|
||||||
@ -1329,7 +1330,7 @@ msgstr ""
|
|||||||
msgid "Invalid format chunk size"
|
msgid "Invalid format chunk size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/esp32s2/common-hal/busio/I2C.c ports/esp32s2/common-hal/pwmio/PWMOut.c
|
#: ports/esp32s2/common-hal/busio/I2C.c
|
||||||
msgid "Invalid frequency"
|
msgid "Invalid frequency"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -34,10 +34,26 @@
|
|||||||
|
|
||||||
STATIC bool not_first_reset = false;
|
STATIC bool not_first_reset = false;
|
||||||
STATIC uint32_t reserved_timer_freq[LEDC_TIMER_MAX];
|
STATIC uint32_t reserved_timer_freq[LEDC_TIMER_MAX];
|
||||||
|
STATIC bool varfreq_timers[LEDC_TIMER_MAX];
|
||||||
STATIC uint8_t reserved_channels[LEDC_CHANNEL_MAX];
|
STATIC uint8_t reserved_channels[LEDC_CHANNEL_MAX];
|
||||||
STATIC bool never_reset_tim[LEDC_TIMER_MAX];
|
STATIC bool never_reset_tim[LEDC_TIMER_MAX];
|
||||||
STATIC bool never_reset_chan[LEDC_CHANNEL_MAX];
|
STATIC bool never_reset_chan[LEDC_CHANNEL_MAX];
|
||||||
|
|
||||||
|
STATIC uint32_t calculate_duty_cycle(uint32_t frequency) {
|
||||||
|
uint32_t duty_bits = 0;
|
||||||
|
uint32_t interval = LEDC_APB_CLK_HZ / frequency;
|
||||||
|
for (size_t i = 0; i < 32; i++) {
|
||||||
|
if (!(interval >> i)) {
|
||||||
|
duty_bits = i - 1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (duty_bits >= LEDC_TIMER_14_BIT) {
|
||||||
|
duty_bits = LEDC_TIMER_13_BIT;
|
||||||
|
}
|
||||||
|
return duty_bits;
|
||||||
|
}
|
||||||
|
|
||||||
void pwmout_reset(void) {
|
void pwmout_reset(void) {
|
||||||
for (size_t i = 0; i < LEDC_CHANNEL_MAX; i++) {
|
for (size_t i = 0; i < LEDC_CHANNEL_MAX; i++) {
|
||||||
if (reserved_channels[i] != INDEX_EMPTY && not_first_reset) {
|
if (reserved_channels[i] != INDEX_EMPTY && not_first_reset) {
|
||||||
@ -53,6 +69,7 @@ void pwmout_reset(void) {
|
|||||||
}
|
}
|
||||||
if (!never_reset_tim[i]) {
|
if (!never_reset_tim[i]) {
|
||||||
reserved_timer_freq[i] = 0;
|
reserved_timer_freq[i] = 0;
|
||||||
|
varfreq_timers[i] = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
not_first_reset = true;
|
not_first_reset = true;
|
||||||
@ -70,25 +87,17 @@ pwmout_result_t common_hal_pwmio_pwmout_construct(pwmio_pwmout_obj_t *self,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Calculate duty cycle
|
// Calculate duty cycle
|
||||||
uint32_t duty_bits = 0;
|
uint32_t duty_bits = calculate_duty_cycle(frequency);
|
||||||
uint32_t interval = LEDC_APB_CLK_HZ / frequency;
|
if (duty_bits == 0) {
|
||||||
for (size_t i = 0; i < 32; i++) {
|
return PWMOUT_INVALID_FREQUENCY;
|
||||||
if (!(interval >> i)) {
|
|
||||||
duty_bits = i - 1;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (duty_bits < 1) {
|
|
||||||
mp_raise_ValueError(translate("Invalid frequency"));
|
|
||||||
} else if (duty_bits >= LEDC_TIMER_14_BIT) {
|
|
||||||
duty_bits = LEDC_TIMER_13_BIT;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Find a viable timer
|
// Find a viable timer
|
||||||
size_t timer_index = INDEX_EMPTY;
|
size_t timer_index = INDEX_EMPTY;
|
||||||
size_t channel_index = INDEX_EMPTY;
|
size_t channel_index = INDEX_EMPTY;
|
||||||
for (size_t i = 0; i < LEDC_TIMER_MAX; i++) {
|
for (size_t i = 0; i < LEDC_TIMER_MAX; i++) {
|
||||||
if ((reserved_timer_freq[i] == frequency) && !variable_frequency) {
|
// accept matching freq timers unless this instance is varfreq or a prior one was
|
||||||
|
if ((reserved_timer_freq[i] == frequency) && !variable_frequency && !varfreq_timers[i]) {
|
||||||
// prioritize matched frequencies so we don't needlessly take slots
|
// prioritize matched frequencies so we don't needlessly take slots
|
||||||
timer_index = i;
|
timer_index = i;
|
||||||
break;
|
break;
|
||||||
@ -139,6 +148,9 @@ pwmout_result_t common_hal_pwmio_pwmout_construct(pwmio_pwmout_obj_t *self,
|
|||||||
reserved_timer_freq[timer_index] = frequency;
|
reserved_timer_freq[timer_index] = frequency;
|
||||||
reserved_channels[channel_index] = timer_index;
|
reserved_channels[channel_index] = timer_index;
|
||||||
|
|
||||||
|
if (variable_frequency) {
|
||||||
|
varfreq_timers[timer_index] = true;
|
||||||
|
}
|
||||||
self->variable_frequency = variable_frequency;
|
self->variable_frequency = variable_frequency;
|
||||||
self->pin_number = pin->number;
|
self->pin_number = pin->number;
|
||||||
self->deinited = false;
|
self->deinited = false;
|
||||||
@ -175,6 +187,7 @@ void common_hal_pwmio_pwmout_deinit(pwmio_pwmout_obj_t *self) {
|
|||||||
if (reserved_channels[self->chan_handle.channel] != INDEX_EMPTY) {
|
if (reserved_channels[self->chan_handle.channel] != INDEX_EMPTY) {
|
||||||
ledc_stop(LEDC_LOW_SPEED_MODE, self->chan_handle.channel, 0);
|
ledc_stop(LEDC_LOW_SPEED_MODE, self->chan_handle.channel, 0);
|
||||||
}
|
}
|
||||||
|
reserved_channels[self->chan_handle.channel] = INDEX_EMPTY;
|
||||||
// Search if any other channel is using the timer
|
// Search if any other channel is using the timer
|
||||||
bool taken = false;
|
bool taken = false;
|
||||||
for (size_t i = 0; i < LEDC_CHANNEL_MAX; i++) {
|
for (size_t i = 0; i < LEDC_CHANNEL_MAX; i++) {
|
||||||
@ -184,13 +197,12 @@ void common_hal_pwmio_pwmout_deinit(pwmio_pwmout_obj_t *self) {
|
|||||||
}
|
}
|
||||||
// Variable frequency means there's only one channel on the timer
|
// Variable frequency means there's only one channel on the timer
|
||||||
if (!taken || self->variable_frequency) {
|
if (!taken || self->variable_frequency) {
|
||||||
if (reserved_timer_freq[self->tim_handle.timer_num] != 0) {
|
|
||||||
ledc_timer_rst(LEDC_LOW_SPEED_MODE, self->tim_handle.timer_num);
|
ledc_timer_rst(LEDC_LOW_SPEED_MODE, self->tim_handle.timer_num);
|
||||||
}
|
|
||||||
reserved_timer_freq[self->tim_handle.timer_num] = 0;
|
reserved_timer_freq[self->tim_handle.timer_num] = 0;
|
||||||
|
// if timer isn't varfreq this will be off aleady
|
||||||
|
varfreq_timers[self->tim_handle.timer_num] = false;
|
||||||
}
|
}
|
||||||
reset_pin_number(self->pin_number);
|
reset_pin_number(self->pin_number);
|
||||||
reserved_channels[self->chan_handle.channel] = INDEX_EMPTY;
|
|
||||||
self->deinited = true;
|
self->deinited = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -204,6 +216,12 @@ uint16_t common_hal_pwmio_pwmout_get_duty_cycle(pwmio_pwmout_obj_t *self) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void common_hal_pwmio_pwmout_set_frequency(pwmio_pwmout_obj_t *self, uint32_t frequency) {
|
void common_hal_pwmio_pwmout_set_frequency(pwmio_pwmout_obj_t *self, uint32_t frequency) {
|
||||||
|
// Calculate duty cycle
|
||||||
|
uint32_t duty_bits = calculate_duty_cycle(frequency);
|
||||||
|
if (duty_bits == 0) {
|
||||||
|
mp_raise_ValueError(translate("Invalid PWM frequency"));
|
||||||
|
}
|
||||||
|
self->duty_resolution = duty_bits;
|
||||||
ledc_set_freq(LEDC_LOW_SPEED_MODE, self->tim_handle.timer_num, frequency);
|
ledc_set_freq(LEDC_LOW_SPEED_MODE, self->tim_handle.timer_num, frequency);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -231,7 +231,11 @@ STATIC mp_obj_t pwmio_pwmout_obj_set_frequency(mp_obj_t self_in, mp_obj_t freque
|
|||||||
"PWM frequency not writable when variable_frequency is False on "
|
"PWM frequency not writable when variable_frequency is False on "
|
||||||
"construction."));
|
"construction."));
|
||||||
}
|
}
|
||||||
common_hal_pwmio_pwmout_set_frequency(self, mp_obj_get_int(frequency));
|
mp_int_t freq = mp_obj_get_int(frequency);
|
||||||
|
if (freq == 0) {
|
||||||
|
mp_raise_ValueError(translate("Invalid PWM frequency"));
|
||||||
|
}
|
||||||
|
common_hal_pwmio_pwmout_set_frequency(self, freq);
|
||||||
return mp_const_none;
|
return mp_const_none;
|
||||||
}
|
}
|
||||||
MP_DEFINE_CONST_FUN_OBJ_2(pwmio_pwmout_set_frequency_obj, pwmio_pwmout_obj_set_frequency);
|
MP_DEFINE_CONST_FUN_OBJ_2(pwmio_pwmout_set_frequency_obj, pwmio_pwmout_obj_set_frequency);
|
||||||
|
Loading…
Reference in New Issue
Block a user