bldc/timeout.c

268 lines
6.8 KiB
C
Raw Normal View History

2014-09-21 08:41:11 -07:00
/*
2021-06-13 04:46:27 -07:00
Copyright 2016 - 2021 Benjamin Vedder benjamin@vedder.se
2014-09-21 08:41:11 -07:00
2016-11-04 07:18:34 -07:00
This file is part of the VESC firmware.
The VESC firmware is free software: you can redistribute it and/or modify
2014-09-21 08:41:11 -07:00
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.
2016-11-04 07:18:34 -07:00
The VESC firmware is distributed in the hope that it will be useful,
2014-09-21 08:41:11 -07:00
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/>.
*/
#include "timeout.h"
2015-12-08 12:01:23 -08:00
#include "mc_interface.h"
#include "stm32f4xx_conf.h"
#include "shutdown.h"
#include "utils.h"
2014-09-21 08:41:11 -07:00
// Private variables
static volatile bool init_done = false;
2014-09-21 08:41:11 -07:00
static volatile systime_t timeout_msec;
static volatile systime_t last_update_time;
static volatile float timeout_brake_current;
2021-06-13 04:46:27 -07:00
static volatile KILL_SW_MODE timeout_kill_sw_mode;
2014-09-21 08:41:11 -07:00
static volatile bool has_timeout;
2021-06-13 04:46:27 -07:00
static volatile bool kill_sw_active;
static volatile uint32_t feed_counter[MAX_THREADS_MONITOR];
2014-09-21 08:41:11 -07:00
// Threads
2022-01-16 12:57:12 -08:00
static THD_WORKING_AREA(timeout_thread_wa, 256);
static THD_FUNCTION(timeout_thread, arg);
2014-09-21 08:41:11 -07:00
void timeout_init(void) {
timeout_msec = 1000;
last_update_time = 0;
timeout_brake_current = 0.0;
2021-06-13 04:46:27 -07:00
timeout_kill_sw_mode = KILL_SW_MODE_DISABLED;
2014-09-21 08:41:11 -07:00
has_timeout = false;
2021-06-13 04:46:27 -07:00
kill_sw_active = false;
init_done = true;
2014-09-21 08:41:11 -07:00
IWDG_WriteAccessCmd(IWDG_WriteAccess_Enable);
// IWDG counter clock: LSI/4
IWDG_SetPrescaler(IWDG_Prescaler_4);
/* Set counter reload value to obtain 12ms IWDG TimeOut.
*
* LSI timer per datasheet is 32KHz typical, but 17KHz min
* and 47KHz max over the complete range of operating conditions,
* so reload time must ensure watchdog will work correctly under
* all conditions.
*
* Timeout threads runs every 10ms. Take 20% margin so wdt should
* be fed every 12ms. The worst condition occurs when the wdt clock
* runs at the max freq (47KHz) due to oscillator tolerances.
*
* t_IWDG(ms) = t_LSI(ms) * 4 * 2^(IWDG_PR[2:0]) * (IWDG_RLR[11:0] + 1)
* t_LSI(ms) [MAX] = 0.021276ms
* 12ms = 0.0212765 * 4 * 1 * (140 + 1)
*
* Counter Reload Value = 140
*
* When LSI clock runs the slowest, the IWDG will expire every 33.17ms
*/
IWDG_SetReload(140);
IWDG_ReloadCounter();
/* Enable IWDG (the LSI oscillator will be enabled by hardware) */
IWDG_Enable();
chThdSleepMilliseconds(10);
2014-09-21 08:41:11 -07:00
chThdCreateStatic(timeout_thread_wa, sizeof(timeout_thread_wa), NORMALPRIO, timeout_thread, NULL);
}
2021-06-13 04:46:27 -07:00
void timeout_configure(systime_t timeout, float brake_current, KILL_SW_MODE kill_sw_mode) {
2014-09-21 08:41:11 -07:00
timeout_msec = timeout;
timeout_brake_current = brake_current;
2021-06-13 04:46:27 -07:00
timeout_kill_sw_mode = kill_sw_mode;
2014-09-21 08:41:11 -07:00
}
void timeout_reset(void) {
last_update_time = chVTGetSystemTimeX();
2014-09-21 08:41:11 -07:00
}
bool timeout_has_timeout(void) {
return has_timeout;
}
float timeout_secs_since_update(void) {
return UTILS_AGE_S(last_update_time);
}
2021-06-13 04:46:27 -07:00
bool timeout_kill_sw_active(void) {
return kill_sw_active;
}
systime_t timeout_get_timeout_msec(void) {
return timeout_msec;
}
float timeout_get_brake_current(void) {
return timeout_brake_current;
}
2021-06-13 04:46:27 -07:00
KILL_SW_MODE timeout_get_kill_sw_mode(void) {
return timeout_kill_sw_mode;
}
void timeout_feed_WDT(uint8_t index) {
++feed_counter[index];
}
void timeout_configure_IWDT_slowest(void) {
if (!init_done) {
return;
}
// As we expect to lock the CPU for a couple of ms make sure that shutdown is not sampling the button input,
// as that can cause a shutdown.
SHUTDOWN_SET_SAMPLING_DISABLED(true);
2019-02-19 09:55:18 -08:00
while(((IWDG->SR & IWDG_SR_RVU) != 0) || ((IWDG->SR & IWDG_SR_PVU) != 0)) {
// Continue to kick the dog
IWDG_ReloadCounter();
}
// Unlock register
IWDG_WriteAccessCmd(IWDG_WriteAccess_Enable);
// Update configuration
IWDG_SetReload(4000);
2019-02-19 09:55:18 -08:00
IWDG_SetPrescaler(IWDG_Prescaler_256);
// Wait for the new configuration to be taken into account
while(((IWDG->SR & IWDG_SR_RVU) != 0) || ((IWDG->SR & IWDG_SR_PVU) != 0)) {
// Continue to kick the dog
IWDG_ReloadCounter();
}
}
void timeout_configure_IWDT(void) {
if (!init_done) {
return;
}
SHUTDOWN_SET_SAMPLING_DISABLED(false);
2019-02-19 09:55:18 -08:00
while(((IWDG->SR & IWDG_SR_RVU) != 0) || ((IWDG->SR & IWDG_SR_PVU) != 0)) {
// Continue to kick the dog
IWDG_ReloadCounter();
}
// Unlock register
IWDG_WriteAccessCmd(IWDG_WriteAccess_Enable);
// Update configuration
IWDG_SetReload(140);
IWDG_SetPrescaler(IWDG_Prescaler_4);
// Wait for the new configuration to be taken into account
while(((IWDG->SR & IWDG_SR_RVU) != 0) || ((IWDG->SR & IWDG_SR_PVU) != 0)) {
// Continue to kick the dog
IWDG_ReloadCounter();
}
}
bool timeout_had_IWDG_reset(void) {
// Check if the system has resumed from IWDG reset
2019-02-19 09:55:18 -08:00
if (RCC_GetFlagStatus(RCC_FLAG_IWDGRST) != RESET) {
/* IWDGRST flag set */
/* Clear reset flags */
2019-02-19 09:55:18 -08:00
RCC_ClearFlag();
return true;
2019-02-19 09:55:18 -08:00
}
2019-02-19 09:55:18 -08:00
return false;
}
static THD_FUNCTION(timeout_thread, arg) {
2014-09-21 08:41:11 -07:00
(void)arg;
chRegSetThreadName("Timeout");
for(;;) {
2021-06-13 04:46:27 -07:00
bool kill_sw = false;
switch (timeout_kill_sw_mode) {
case KILL_SW_MODE_PPM_LOW:
kill_sw = !palReadPad(HW_ICU_GPIO, HW_ICU_PIN);
break;
case KILL_SW_MODE_PPM_HIGH:
kill_sw = palReadPad(HW_ICU_GPIO, HW_ICU_PIN);
break;
case KILL_SW_MODE_ADC2_LOW:
kill_sw = ADC_VOLTS(ADC_IND_EXT2) < 1.65;
break;
case KILL_SW_MODE_ADC2_HIGH:
kill_sw = ADC_VOLTS(ADC_IND_EXT2) > 1.65;
break;
default:
break;
}
if (kill_sw || (timeout_msec != 0 && chVTTimeElapsedSinceX(last_update_time) > MS2ST(timeout_msec))) {
2021-06-15 03:56:38 -07:00
if (!has_timeout && !kill_sw_active) {
mc_interface_release_motor_override();
}
2015-12-08 12:01:23 -08:00
mc_interface_unlock();
mc_interface_select_motor_thread(1);
mc_interface_set_brake_current(timeout_brake_current);
mc_interface_select_motor_thread(2);
2015-12-08 12:01:23 -08:00
mc_interface_set_brake_current(timeout_brake_current);
2021-06-13 04:46:27 -07:00
if (kill_sw) {
mc_interface_ignore_input_both(20);
} else {
2021-06-13 04:46:27 -07:00
has_timeout = true;
}
2014-09-21 08:41:11 -07:00
} else {
has_timeout = false;
}
2021-06-13 04:46:27 -07:00
kill_sw_active = kill_sw;
bool threads_ok = true;
// Monitored threads (foc, can, timer) must report at least one iteration,
// otherwise the watchdog won't be feed and MCU will reset. All threads should
// be monitored
2019-02-19 09:55:18 -08:00
if(feed_counter[THREAD_MCPWM] < MIN_THREAD_ITERATIONS) {
threads_ok = false;
2019-02-19 09:55:18 -08:00
}
#if CAN_ENABLE
2019-02-19 09:55:18 -08:00
if(feed_counter[THREAD_CANBUS] < MIN_THREAD_ITERATIONS) {
threads_ok = false;
2019-02-19 09:55:18 -08:00
}
#endif
2019-02-19 09:55:18 -08:00
for( int i = 0; i < MAX_THREADS_MONITOR; i++) {
feed_counter[i] = 0;
2019-02-19 09:55:18 -08:00
}
if (threads_ok == true) {
// Feed WDT
IWDG_ReloadCounter(); // must reload in <12ms
2019-02-19 09:55:18 -08:00
} else {
// not reloading the watchdog will produce a reset.
// This can be checked from the GUI logs as
// "FAULT_CODE_BOOTING_FROM_WATCHDOG_RESET"
}
2014-09-21 08:41:11 -07:00
chThdSleepMilliseconds(10);
}
}