Rename sched_tasks_busy() to sched_check_set_tasks_busy() and change it to only return true if tasks are active (running or requested) for two consecutive calls. This makes it less likely that timers will yield to tasks except when tasks really are notably backlogged. This also makes it less likely that multiple steppers controlling the same rail will be interrupted by tasks mid-step. This should slightly improve the timing, and make it less likely that a halt during homing/probing will occur with these steppers taking a different number of total steps. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
84 lines
2.5 KiB
C
84 lines
2.5 KiB
C
// Generic interrupt based timer helper functions
|
|
//
|
|
// Copyright (C) 2017 Kevin O'Connor <kevin@koconnor.net>
|
|
//
|
|
// This file may be distributed under the terms of the GNU GPLv3 license.
|
|
|
|
#include "autoconf.h" // CONFIG_CLOCK_FREQ
|
|
#include "board/irq.h" // irq_disable
|
|
#include "board/misc.h" // timer_from_us
|
|
#include "board/timer_irq.h" // timer_dispatch_many
|
|
#include "command.h" // shutdown
|
|
#include "sched.h" // sched_timer_dispatch
|
|
|
|
DECL_CONSTANT("CLOCK_FREQ", CONFIG_CLOCK_FREQ);
|
|
|
|
// Return the number of clock ticks for a given number of microseconds
|
|
uint32_t
|
|
timer_from_us(uint32_t us)
|
|
{
|
|
return us * (CONFIG_CLOCK_FREQ / 1000000);
|
|
}
|
|
|
|
// Return true if time1 is before time2. Always use this function to
|
|
// compare times as regular C comparisons can fail if the counter
|
|
// rolls over.
|
|
uint8_t
|
|
timer_is_before(uint32_t time1, uint32_t time2)
|
|
{
|
|
return (int32_t)(time1 - time2) < 0;
|
|
}
|
|
|
|
static uint32_t timer_repeat_until;
|
|
#define TIMER_IDLE_REPEAT_TICKS timer_from_us(500)
|
|
#define TIMER_REPEAT_TICKS timer_from_us(100)
|
|
|
|
#define TIMER_MIN_TRY_TICKS timer_from_us(2)
|
|
#define TIMER_DEFER_REPEAT_TICKS timer_from_us(5)
|
|
|
|
// Invoke timers - called from board irq code.
|
|
uint32_t
|
|
timer_dispatch_many(void)
|
|
{
|
|
uint32_t tru = timer_repeat_until;
|
|
for (;;) {
|
|
// Run the next software timer
|
|
uint32_t next = sched_timer_dispatch();
|
|
|
|
uint32_t now = timer_read_time();
|
|
int32_t diff = next - now;
|
|
if (diff > (int32_t)TIMER_MIN_TRY_TICKS)
|
|
// Schedule next timer normally.
|
|
return next;
|
|
|
|
if (unlikely(timer_is_before(tru, now))) {
|
|
// Check if there are too many repeat timers
|
|
if (diff < (int32_t)(-timer_from_us(1000)))
|
|
try_shutdown("Rescheduled timer in the past");
|
|
if (sched_check_set_tasks_busy()) {
|
|
timer_repeat_until = now + TIMER_REPEAT_TICKS;
|
|
return now + TIMER_DEFER_REPEAT_TICKS;
|
|
}
|
|
timer_repeat_until = tru = now + TIMER_IDLE_REPEAT_TICKS;
|
|
}
|
|
|
|
// Next timer in the past or near future - wait for it to be ready
|
|
irq_enable();
|
|
while (unlikely(diff > 0))
|
|
diff = next - timer_read_time();
|
|
irq_disable();
|
|
}
|
|
}
|
|
|
|
// Make sure timer_repeat_until doesn't wrap 32bit comparisons
|
|
void
|
|
timer_task(void)
|
|
{
|
|
uint32_t now = timer_read_time();
|
|
irq_disable();
|
|
if (timer_is_before(timer_repeat_until, now))
|
|
timer_repeat_until = now;
|
|
irq_enable();
|
|
}
|
|
DECL_TASK(timer_task);
|