1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/native/irq_cpu.c

518 lines
13 KiB
C
Raw Normal View History

2013-03-06 10:29:49 +01:00
/**
* Native CPU irq.h implementation
*
* Copyright (C) 2013 Ludwig Ortmann
*
2013-11-22 20:47:05 +01:00
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License. See the file LICENSE in the top level directory for more
* details.
2013-03-06 10:29:49 +01:00
*
* @ingroup native_cpu
* @ingroup irq
2013-03-06 10:29:49 +01:00
* @{
* @file
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
*/
2013-03-06 01:08:15 +01:00
#include <err.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
2013-09-30 14:07:10 +02:00
#ifdef HAVE_VALGRIND_H
#include <valgrind.h>
#define VALGRIND_DEBUG DEBUG
#elif defined(HAVE_VALGRIND_VALGRIND_H)
#include <valgrind/valgrind.h>
#define VALGRIND_DEBUG DEBUG
#else
#define VALGRIND_STACK_REGISTER(...)
#define VALGRIND_DEBUG(...)
#endif
// __USE_GNU for gregs[REG_EIP] access under Linux
#define __USE_GNU
#include <signal.h>
#undef __USE_GNU
2013-03-06 01:08:15 +01:00
#include "irq.h"
2013-03-06 01:08:15 +01:00
#include "cpu.h"
2013-10-23 22:43:58 +02:00
#include "lpm.h"
#include "native_internal.h"
#define ENABLE_DEBUG (0)
2013-03-06 01:08:15 +01:00
#include "debug.h"
extern volatile tcb_t *active_thread;
2013-03-06 01:08:15 +01:00
volatile int native_interrupts_enabled;
volatile int _native_in_isr;
volatile int _native_in_syscall;
static sigset_t _native_sig_set, _native_sig_set_dint;
2013-03-06 01:08:15 +01:00
char __isr_stack[SIGSTKSZ];
ucontext_t native_isr_context;
ucontext_t *_native_cur_ctx, *_native_isr_ctx;
volatile unsigned int _native_saved_eip;
volatile int _native_sigpend;
int _sig_pipefd[2];
2013-03-06 01:08:15 +01:00
struct int_handler_t {
void (*func)(void);
};
static struct int_handler_t native_irq_handlers[255];
char sigalt_stk[SIGSTKSZ];
2013-04-15 20:08:46 +02:00
void print_thread_sigmask(ucontext_t *cp)
{
sigset_t *p = &cp->uc_sigmask;
if (sigemptyset(p) == -1) {
err(EXIT_FAILURE, "print_thread_sigmask: sigemptyset");
2013-04-15 20:08:46 +02:00
}
for (int i = 1; i < (NSIG); i++) {
if (native_irq_handlers[i].func != NULL) {
2013-04-15 20:08:46 +02:00
printf("%s: %s\n",
strsignal(i),
(sigismember(&_native_sig_set, i) ? "blocked" : "unblocked")
2013-04-15 20:08:46 +02:00
);
}
if (sigismember(p, i)) {
2013-04-15 20:08:46 +02:00
printf("%s: pending\n", strsignal(i));
}
}
}
void print_sigmasks(void)
{
ucontext_t *p;
//tcb_t *cb = NULL;
for (int i = 0; i < MAXTHREADS; i++) {
if (sched_threads[i] != NULL) {
2013-04-15 20:08:46 +02:00
printf("%s:\n", sched_threads[i]->name);
//print_thread_sigmask(sched_threads[i]->sp);
p = (ucontext_t *)(sched_threads[i]->stack_start);
2013-04-15 20:08:46 +02:00
print_thread_sigmask(p);
puts("");
}
}
}
void native_print_signals()
{
sigset_t p, q;
puts("native signals:\n");
if (sigemptyset(&p) == -1) {
err(EXIT_FAILURE, "native_print_signals: sigemptyset");
2013-04-15 20:08:46 +02:00
}
if (sigpending(&p) == -1) {
err(EXIT_FAILURE, "native_print_signals: sigpending");
2013-04-15 20:08:46 +02:00
}
if (sigprocmask(SIG_SETMASK, NULL, &q) == -1) {
err(EXIT_FAILURE, "native_print_signals(): sigprocmask");
2013-04-15 20:08:46 +02:00
}
for (int i = 1; i < (NSIG); i++) {
if (native_irq_handlers[i].func != NULL || i == SIGUSR1) {
printf("%s: %s in active thread\n",
strsignal(i),
(sigismember(&_native_sig_set, i) ? "blocked" : "unblocked")
2013-04-15 20:08:46 +02:00
);
}
if (sigismember(&p, i)) {
2013-04-15 20:08:46 +02:00
printf("%s: pending\n", strsignal(i));
}
if (sigismember(&q, i)) {
printf("%s: blocked in this context\n", strsignal(i));
2013-04-15 20:08:46 +02:00
}
}
}
/**
* block signals
*/
2013-03-06 01:08:15 +01:00
unsigned disableIRQ(void)
{
unsigned int prev_state;
_native_syscall_enter();
2013-03-06 01:08:15 +01:00
DEBUG("disableIRQ()\n");
if (_native_in_isr == 1) {
DEBUG("disableIRQ + _native_in_isr\n");
}
if (sigprocmask(SIG_SETMASK, &_native_sig_set_dint, NULL) == -1) {
err(EXIT_FAILURE, "disableIRQ(): sigprocmask()");
2013-03-06 01:08:15 +01:00
}
2013-03-06 01:08:15 +01:00
prev_state = native_interrupts_enabled;
native_interrupts_enabled = 0;
DEBUG("disableIRQ(): return\n");
_native_syscall_leave();
2013-03-06 01:08:15 +01:00
return prev_state;
}
/**
* unblock signals
*/
2013-03-06 01:08:15 +01:00
unsigned enableIRQ(void)
{
unsigned int prev_state;
_native_syscall_enter();
2013-03-06 01:08:15 +01:00
DEBUG("enableIRQ()\n");
if (_native_in_isr == 1) {
DEBUG("enableIRQ + _native_in_isr\n");
}
if (sigprocmask(SIG_SETMASK, &_native_sig_set, NULL) == -1) {
err(EXIT_FAILURE, "enableIRQ(): sigprocmask()");
2013-03-06 01:08:15 +01:00
}
2013-03-06 01:08:15 +01:00
prev_state = native_interrupts_enabled;
native_interrupts_enabled = 1;
_native_syscall_leave();
DEBUG("enableIRQ(): return\n");
2013-04-15 20:08:46 +02:00
2013-03-06 01:08:15 +01:00
return prev_state;
}
void restoreIRQ(unsigned state)
{
DEBUG("restoreIRQ()\n");
if (state == 1) {
2013-03-06 01:08:15 +01:00
enableIRQ();
}
else {
disableIRQ();
}
2013-03-06 01:08:15 +01:00
return;
}
int inISR(void)
{
DEBUG("inISR(): %i\n", _native_in_isr);
return _native_in_isr;
2013-03-06 01:08:15 +01:00
}
void dINT(void)
{
disableIRQ();
}
void eINT(void)
{
enableIRQ();
}
int _native_popsig(void)
{
int nread, nleft, i;
int sig;
nleft = sizeof(int);
i = 0;
while ((nleft > 0) && ((nread = real_read(_sig_pipefd[0], ((uint8_t*)&sig) + i, nleft)) != -1)) {
i += nread;
nleft -= nread;
}
if (nread == -1) {
err(EXIT_FAILURE, "_native_popsig(): real_read()");
}
return sig;
}
2013-03-06 01:08:15 +01:00
/**
* call signal handlers,
2013-03-06 01:08:15 +01:00
* restore user context
*/
void native_irq_handler()
{
int sig;
DEBUG("\n\n\t\tnative_irq_handler\n\n");
while (_native_sigpend > 0) {
sig = _native_popsig();
_native_sigpend--;
if (native_irq_handlers[sig].func != NULL) {
DEBUG("calling interrupt handler for %i\n", sig);
native_irq_handlers[sig].func();
}
else if (sig == SIGUSR1) {
DEBUG("ignoring SIGUSR1\n");
}
else {
2013-08-08 11:08:33 +02:00
DEBUG("XXX: no handler for signal %i\n", sig);
errx(1, "XXX: this should not have happened!\n");
}
2013-03-06 01:08:15 +01:00
}
2014-01-22 18:23:10 +01:00
DEBUG("native_irq_handler(): return\n");
2013-03-06 01:08:15 +01:00
cpu_switch_context_exit();
}
void isr_set_sigmask(ucontext_t *ctx)
{
ctx->uc_sigmask = _native_sig_set_dint;
}
2013-03-06 01:08:15 +01:00
/**
* save signal, return to _native_sig_leave_tramp if possible
2013-03-06 01:08:15 +01:00
*/
void native_isr_entry(int sig, siginfo_t *info, void *context)
{
(void) info; /* unused at the moment */
//printf("\n\033[33m\n\t\tnative_isr_entry(%i)\n\n\033[0m", sig);
2013-03-06 01:08:15 +01:00
/* save the signal */
if (real_write(_sig_pipefd[1], &sig, sizeof(int)) == -1) {
err(EXIT_FAILURE, "native_isr_entry(): real_write()");
}
_native_sigpend++;
//real_write(STDOUT_FILENO, "sigpend\n", 8);
native_isr_context.uc_stack.ss_sp = __isr_stack;
native_isr_context.uc_stack.ss_size = SIGSTKSZ;
native_isr_context.uc_stack.ss_flags = 0;
makecontext(&native_isr_context, native_irq_handler, 0);
_native_cur_ctx = (ucontext_t *)active_thread->sp;
2013-03-06 01:08:15 +01:00
/* XXX: Workaround safety check - whenever this happens it really
* indicates a bug in disableIRQ */
if (native_interrupts_enabled == 0) {
//printf("interrupts are off, but I caught a signal.\n");
return;
}
2013-11-20 19:50:07 +01:00
if (_native_in_isr != 0) {
//real_write(STDOUT_FILENO, "interrupts in ISR!!\n", 20);
return;
}
if (_native_in_syscall == 0) {
DEBUG("\n\n\t\treturn to _native_sig_leave_tramp\n\n");
/* disable interrupts in context */
2014-01-21 12:22:55 +01:00
isr_set_sigmask((ucontext_t *)context);
2013-10-16 15:33:04 +02:00
_native_in_isr = 1;
#ifdef __MACH__
_native_saved_eip = ((ucontext_t *)context)->uc_mcontext->__ss.__eip;
((ucontext_t *)context)->uc_mcontext->__ss.__eip = (unsigned int)&_native_sig_leave_tramp;
#elif BSD
_native_saved_eip = ((struct sigcontext *)context)->sc_eip;
((struct sigcontext *)context)->sc_eip = (unsigned int)&_native_sig_leave_tramp;
2013-05-15 17:45:43 +02:00
#else
//printf("\n\033[31mEIP:\t%p\ngo switching\n\n\033[0m", (void*)((ucontext_t *)context)->uc_mcontext.gregs[REG_EIP]);
_native_saved_eip = ((ucontext_t *)context)->uc_mcontext.gregs[REG_EIP];
((ucontext_t *)context)->uc_mcontext.gregs[REG_EIP] = (unsigned int)&_native_sig_leave_tramp;
2013-05-15 17:45:43 +02:00
#endif
2013-03-06 01:08:15 +01:00
}
else {
DEBUG("\n\n\t\treturn to syscall\n\n");
2013-03-06 01:08:15 +01:00
}
}
/**
* register signal/interrupt handler for signal sig
*
* TODO: use appropriate data structure for signal
2013-03-06 01:08:15 +01:00
* handlers.
*/
int register_interrupt(int sig, void (*handler)(void))
2013-03-06 01:08:15 +01:00
{
DEBUG("register_interrupt()\n");
2013-03-06 01:08:15 +01:00
_native_syscall_enter();
if (sigdelset(&_native_sig_set, sig)) {
err(EXIT_FAILURE, "register_interrupt: sigdelset");
2013-03-06 01:08:15 +01:00
}
if (sigaddset(&_native_sig_set_dint, sig)) {
err(EXIT_FAILURE, "register_interrupt: sigaddset");
}
2013-03-06 01:08:15 +01:00
native_irq_handlers[sig].func = handler;
/* set current dINT sigmask for all signals */
struct sigaction sa;
sa.sa_sigaction = native_isr_entry;
sa.sa_mask = _native_sig_set_dint;
sa.sa_flags = SA_RESTART | SA_SIGINFO | SA_ONSTACK;
for (int i = 0; i < 255; i++) {
if (native_irq_handlers[i].func != NULL) {
if (sigaction(sig, &sa, NULL)) {
err(EXIT_FAILURE, "register_interrupt: sigaction");
}
}
2013-03-06 01:08:15 +01:00
}
_native_syscall_leave();
2013-03-06 01:08:15 +01:00
return 0;
}
/**
* empty signal mask
2013-03-06 01:08:15 +01:00
*/
int unregister_interrupt(int sig)
{
DEBUG("XXX: unregister_interrupt()\n");
_native_syscall_enter();
if (sigaddset(&_native_sig_set, sig) == -1) {
err(EXIT_FAILURE, "unregister_interrupt: sigaddset");
2013-03-06 01:08:15 +01:00
}
if (sigdelset(&_native_sig_set_dint, sig) == -1) {
err(EXIT_FAILURE, "unregister_interrupt: sigdelset");
}
2013-03-06 01:08:15 +01:00
native_irq_handlers[sig].func = NULL;
/* reset signal handler for sig */
struct sigaction sa;
sa.sa_handler = SIG_IGN; /* there may be late signals, so we need to ignore those */
sa.sa_mask = _native_sig_set_dint;
sa.sa_flags = SA_RESTART | SA_SIGINFO | SA_ONSTACK;
if (sigaction(sig, &sa, NULL)) {
err(EXIT_FAILURE, "unregister_interrupt: sigaction");
2013-03-06 01:08:15 +01:00
}
/* change sigmask for remaining signal handlers */
sa.sa_sigaction = native_isr_entry;
for (int i = 0; i < 255; i++) {
if (native_irq_handlers[i].func != NULL) {
if (sigaction(sig, &sa, NULL)) {
err(EXIT_FAILURE, "register_interrupt: sigaction");
}
}
}
_native_syscall_leave();
2013-03-06 01:08:15 +01:00
return 0;
}
void shutdown(int sig, siginfo_t *info, void *context)
2013-10-23 22:43:58 +02:00
{
(void)sig;
(void)info;
(void)context;
2013-10-23 22:43:58 +02:00
lpm_set(LPM_OFF);
}
2013-03-06 01:08:15 +01:00
/**
* register internal signal handler,
* initalize local variables
*
2013-03-06 01:08:15 +01:00
* TODO: see register_interrupt
*/
void native_interrupt_init(void)
{
struct sigaction sa;
DEBUG("XXX: native_interrupt_init()\n");
2013-09-30 14:07:10 +02:00
VALGRIND_STACK_REGISTER(__isr_stack, __isr_stack + sizeof(__isr_stack));
VALGRIND_DEBUG("VALGRIND_STACK_REGISTER(%p, %p)\n", __isr_stack, (void*)((int)__isr_stack + sizeof(__isr_stack)));
2013-04-15 20:08:46 +02:00
native_interrupts_enabled = 1;
_native_sigpend = 0;
2013-04-15 20:08:46 +02:00
for (int i = 0; i < 255; i++) {
2013-03-06 01:08:15 +01:00
native_irq_handlers[i].func = NULL;
}
sa.sa_sigaction = native_isr_entry;
2013-11-20 21:47:59 +01:00
if (sigfillset(&sa.sa_mask) == -1) {
err(EXIT_FAILURE, "native_interrupt_init: sigfillset");
2013-03-06 01:08:15 +01:00
}
sa.sa_flags = SA_RESTART | SA_SIGINFO | SA_ONSTACK;
2013-03-06 01:08:15 +01:00
/* get current process interrupt masks */
if (sigprocmask(SIG_SETMASK, NULL, &_native_sig_set) == -1) {
err(EXIT_FAILURE, "native_interrupt_init(): sigprocmask");
2013-04-15 20:08:46 +02:00
}
if (sigprocmask(SIG_SETMASK, NULL, &_native_sig_set_dint) == -1) {
err(EXIT_FAILURE, "native_isr_entry(): sigprocmask");
}
2013-04-15 20:08:46 +02:00
/* SIGUSR1 is intended for debugging purposes and shall always be
* enabled */
if (sigdelset(&_native_sig_set, SIGUSR1) == -1) {
err(EXIT_FAILURE, "native_interrupt_init: sigdelset");
}
if (sigdelset(&_native_sig_set_dint, SIGUSR1) == -1) {
err(EXIT_FAILURE, "native_interrupt_init: sigdelset");
2013-03-06 01:08:15 +01:00
}
/* SIGUSR1 is handled like a regular interrupt */
if (sigaction(SIGUSR1, &sa, NULL)) {
err(EXIT_FAILURE, "native_interrupt_init: sigaction");
2013-03-06 01:08:15 +01:00
}
if (getcontext(&native_isr_context) == -1) {
err(EXIT_FAILURE, "native_isr_entry(): getcontext()");
2013-04-15 20:08:46 +02:00
}
native_isr_context.uc_stack.ss_sp = __isr_stack;
native_isr_context.uc_stack.ss_size = SIGSTKSZ;
native_isr_context.uc_stack.ss_flags = 0;
_native_isr_ctx = &native_isr_context;
static stack_t sigstk;
sigstk.ss_sp = sigalt_stk;
sigstk.ss_size = SIGSTKSZ;
sigstk.ss_flags = 0;
if (sigaltstack(&sigstk, NULL) < 0) {
err(EXIT_FAILURE, "main: sigaltstack");
2013-04-15 20:08:46 +02:00
}
makecontext(&native_isr_context, native_irq_handler, 0);
_native_in_syscall = 0;
2013-04-15 20:08:46 +02:00
if (pipe(_sig_pipefd) == -1) {
err(EXIT_FAILURE, "native_interrupt_init(): pipe()");
2013-04-15 20:08:46 +02:00
}
/* allow for ctrl+c to shut down gracefully always */
//register_interrupt(SIGINT, shutdown);
sa.sa_sigaction = shutdown;
if (sigdelset(&_native_sig_set, SIGINT) == -1) {
err(EXIT_FAILURE, "native_interrupt_init: sigdelset");
}
if (sigdelset(&_native_sig_set_dint, SIGINT) == -1) {
err(EXIT_FAILURE, "native_interrupt_init: sigdelset");
}
if (sigaction(SIGINT, &sa, NULL)) {
err(EXIT_FAILURE, "native_interrupt_init: sigaction");
}
2013-10-23 22:43:58 +02:00
2013-03-06 01:08:15 +01:00
puts("RIOT native interrupts/signals initialized.");
}
/** @} */