ardix/arch/at91sam3x8e/sched.c

90 lines
2.4 KiB
C
Raw Normal View History

/* See the end of this file for copyright, license, and warranty information. */
2021-07-31 19:39:51 +02:00
#include <arch-generic/sched.h>
#include <arch/hardware.h>
#include <arch/interrupt.h>
2020-11-29 20:23:27 +01:00
#include <ardix/atomic.h>
#include <ardix/sched.h>
2020-11-29 20:23:27 +01:00
#include <string.h>
2021-02-01 00:07:45 +01:00
extern struct task *_sched_current_task;
2020-10-10 23:15:47 +02:00
void irq_sys_tick(void)
{
/*
* fire a PendSV interrupt and do the actual context switching there
* because it is faster that way (according to the docs, at least)
*/
if (!is_atomic_context())
arch_irq_invoke(IRQNO_PEND_SV);
2020-06-17 20:40:22 +02:00
}
/**
* Set the NVIC priority grouping field in `AIRCR`.
* Only values from 0..7 are allowed, see the SAM3X documentation.
*
* @param prio_group: The new priority grouping value.
*/
static inline void sched_nvic_set_prio_group(uint32_t prio_group)
{
uint32_t reg_val = REG_SCB_AIRCR;
reg_val &= ~(REG_SCB_AIRCR_VECTKEY_MASK | REG_SCB_AIRCR_PRIGROUP_MASK);
reg_val = reg_val
| REG_SCB_AIRCR_VECTKEY_VAL(REG_SCB_AIRCR_VECTKEY_MAGIC)
| REG_SCB_AIRCR_PRIGROUP_VAL(prio_group);
REG_SCB_AIRCR = reg_val;
}
2020-11-29 20:23:27 +01:00
int arch_sched_hwtimer_init(unsigned int freq)
2020-06-14 05:51:01 +02:00
{
2020-06-17 20:40:22 +02:00
uint32_t ticks = sys_core_clock / freq;
2020-06-14 05:51:01 +02:00
if (ticks > REG_SYSTICK_LOAD_RELOAD_MASK)
return 1;
2020-06-17 20:40:22 +02:00
/* Ensure SysTick and PendSV are preemptive */
sched_nvic_set_prio_group(0b011);
2020-06-14 05:51:01 +02:00
REG_SYSTICK_LOAD = (ticks & REG_SYSTICK_LOAD_RELOAD_MASK) - 1;
REG_SYSTICK_VAL = 0U;
REG_SYSTICK_CTRL = REG_SYSTICK_CTRL_CLKSOURCE_BIT /* MCK */
| REG_SYSTICK_CTRL_TICKINT_BIT /* trigger exception */
| REG_SYSTICK_CTRL_ENABLE_BIT; /* enable SysTick */
return 0;
}
2021-02-01 00:07:45 +01:00
void arch_sched_task_init(struct task *task, void (*entry)(void))
2020-06-14 05:51:01 +02:00
{
2021-02-01 00:07:45 +01:00
struct reg_snapshot *regs = task->stack_bottom - sizeof(*regs);
task->sp = regs;
2020-06-14 05:51:01 +02:00
2020-11-29 20:23:27 +01:00
memset(regs, 0, sizeof(*regs));
2020-11-29 22:01:35 +01:00
regs->hw.pc = entry;
2020-11-30 03:01:02 +01:00
regs->hw.psr = 0x01000000U;
regs->sw.lr = (void *)0xFFFFFFF9U;
2020-06-17 20:40:22 +02:00
}
2021-02-01 00:07:45 +01:00
void sched_yield(enum task_state state)
2020-06-17 20:40:22 +02:00
{
REG_SYSTICK_VAL = 0U; /* Reset timer */
2021-02-01 00:07:45 +01:00
_sched_current_task->state = state;
2020-11-29 22:01:35 +01:00
arch_irq_invoke(IRQNO_PEND_SV);
}
2020-10-11 19:35:30 +02:00
/*
* This file is part of Ardix.
* Copyright (c) 2020, 2021 Felix Kopp <owo@fef.moe>.
2020-10-11 19:35:30 +02:00
*
* Ardix is non-violent software: you may only use, redistribute,
* and/or modify it under the terms of the CNPLv6+ as found in
* the LICENSE file in the source code root directory or at
* <https://git.pixie.town/thufie/CNPL>.
2020-10-11 19:35:30 +02:00
*
* Ardix comes with ABSOLUTELY NO WARRANTY, to the extent
* permitted by applicable law. See the CNPLv6+ for details.
2020-10-11 19:35:30 +02:00
*/