1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/riscv_common/include/irq_arch.h

119 lines
2.4 KiB
C
Raw Normal View History

/*
* Copyright (C) 2017 Ken Rabold
* 2020 Inria
* 2020 Otto-von-Guericke-Universität Magdeburg
*
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License v2.1. See the file LICENSE in the top level directory for more
* details.
*/
/**
* @ingroup cpu_riscv_common
* @{
*
* @file
* @brief Implementation of the kernels irq interface
*
* @author Ken Rabold
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
* @author Marian Buschsieweke <marian.buschsieweke@ovgu.de>
*/
#ifndef IRQ_ARCH_H
#define IRQ_ARCH_H
#include <stdint.h>
#include "irq.h"
#include "vendor/riscv_csr.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
2021-08-14 14:48:25 +02:00
* @brief Bit mask for the MCAUSE register
*/
#define CPU_CSR_MCAUSE_CAUSE_MSK (0x0fffu)
extern volatile int riscv_in_isr;
/**
* @brief Enable all maskable interrupts
*/
static inline __attribute__((always_inline)) unsigned int irq_enable(void)
{
/* Enable all interrupts */
unsigned state;
2021-01-15 11:53:28 +01:00
__asm__ volatile (
"csrrs %[dest], mstatus, %[mask]"
2021-01-15 11:53:28 +01:00
:[dest] "=r" (state)
:[mask] "i" (MSTATUS_MIE)
: "memory"
2021-01-15 11:53:28 +01:00
);
return state;
}
/**
* @brief Disable all maskable interrupts
*/
static inline __attribute__((always_inline)) unsigned int irq_disable(void)
{
unsigned int state;
2021-01-15 11:53:28 +01:00
__asm__ volatile (
"csrrc %[dest], mstatus, %[mask]"
2021-01-15 11:53:28 +01:00
:[dest] "=r" (state)
:[mask] "i" (MSTATUS_MIE)
: "memory"
2021-01-15 11:53:28 +01:00
);
return state;
}
/**
* @brief Restore the state of the IRQ flags
*/
2021-01-15 11:53:28 +01:00
static inline __attribute__((always_inline)) void irq_restore(
unsigned int state)
{
/* Restore all interrupts to given state */
__asm__ volatile (
"csrw mstatus, %[state]"
: /* no outputs */
2021-01-15 11:53:28 +01:00
:[state] "r" (state)
: "memory"
2021-01-15 11:53:28 +01:00
);
}
/**
* @brief See if the current context is inside an ISR
*/
static inline __attribute__((always_inline)) bool irq_is_in(void)
{
return riscv_in_isr;
}
static inline __attribute__((always_inline)) bool irq_is_enabled(void)
2021-06-29 11:36:38 +02:00
{
unsigned state;
2021-08-14 14:48:25 +02:00
2021-06-29 11:36:38 +02:00
__asm__ volatile (
"csrr %[dest], mstatus"
:[dest] "=r" (state)
: /* no inputs */
: "memory"
);
return (state & MSTATUS_MIE);
}
#ifdef __cplusplus
}
#endif
#endif /* IRQ_ARCH_H */
/** @} */