cpu: atmega: implement irq_arch_in
This commit is contained in:
parent
f762d2aab2
commit
7fcb2b718e
@ -215,7 +215,9 @@ void gpio_write(gpio_t pin, int value)
|
|||||||
|
|
||||||
static inline void irq_handler(uint8_t pin_num)
|
static inline void irq_handler(uint8_t pin_num)
|
||||||
{
|
{
|
||||||
|
__enter_isr();
|
||||||
config[pin_num].cb(config[pin_num].arg);
|
config[pin_num].cb(config[pin_num].arg);
|
||||||
|
__exit_isr();
|
||||||
}
|
}
|
||||||
|
|
||||||
ISR(INT0_vect, ISR_BLOCK)
|
ISR(INT0_vect, ISR_BLOCK)
|
||||||
|
|||||||
@ -276,44 +276,52 @@ int uart_write_blocking(uart_t uart, char data)
|
|||||||
#if UART_0_EN
|
#if UART_0_EN
|
||||||
ISR(USART0_RX_vect, ISR_BLOCK)
|
ISR(USART0_RX_vect, ISR_BLOCK)
|
||||||
{
|
{
|
||||||
|
__enter_isr();
|
||||||
config[UART_0].rx_cb(config[UART_0].arg, UART0_DATA_REGISTER);
|
config[UART_0].rx_cb(config[UART_0].arg, UART0_DATA_REGISTER);
|
||||||
|
|
||||||
if (sched_context_switch_request) {
|
if (sched_context_switch_request) {
|
||||||
thread_yield();
|
thread_yield();
|
||||||
}
|
}
|
||||||
|
__exit_isr();
|
||||||
}
|
}
|
||||||
#endif /* UART_0_EN */
|
#endif /* UART_0_EN */
|
||||||
|
|
||||||
#if UART_1_EN
|
#if UART_1_EN
|
||||||
ISR(USART1_RX_vect, ISR_BLOCK)
|
ISR(USART1_RX_vect, ISR_BLOCK)
|
||||||
{
|
{
|
||||||
|
__enter_isr();
|
||||||
config[UART_1].rx_cb(config[UART_1].arg, UART0_DATA_REGISTER);
|
config[UART_1].rx_cb(config[UART_1].arg, UART0_DATA_REGISTER);
|
||||||
|
|
||||||
if (sched_context_switch_request) {
|
if (sched_context_switch_request) {
|
||||||
thread_yield();
|
thread_yield();
|
||||||
}
|
}
|
||||||
|
__exit_isr();
|
||||||
}
|
}
|
||||||
#endif /* UART_1_EN */
|
#endif /* UART_1_EN */
|
||||||
|
|
||||||
#if UART_1_EN
|
#if UART_1_EN
|
||||||
ISR(USART2_RX_vect, ISR_BLOCK)
|
ISR(USART2_RX_vect, ISR_BLOCK)
|
||||||
{
|
{
|
||||||
|
__enter_isr();
|
||||||
config[UART_2].rx_cb(config[UART_2].arg, UART0_DATA_REGISTER);
|
config[UART_2].rx_cb(config[UART_2].arg, UART0_DATA_REGISTER);
|
||||||
|
|
||||||
if (sched_context_switch_request) {
|
if (sched_context_switch_request) {
|
||||||
thread_yield();
|
thread_yield();
|
||||||
}
|
}
|
||||||
|
__exit_isr();
|
||||||
}
|
}
|
||||||
#endif /* UART_2_EN */
|
#endif /* UART_2_EN */
|
||||||
|
|
||||||
#if UART_2_EN
|
#if UART_2_EN
|
||||||
ISR(USART2_RX_vect, ISR_BLOCK)
|
ISR(USART2_RX_vect, ISR_BLOCK)
|
||||||
{
|
{
|
||||||
|
__enter_isr();
|
||||||
config[UART_3].rx_cb(config[UART_3].arg, UART0_DATA_REGISTER);
|
config[UART_3].rx_cb(config[UART_3].arg, UART0_DATA_REGISTER);
|
||||||
|
|
||||||
if (sched_context_switch_request) {
|
if (sched_context_switch_request) {
|
||||||
thread_yield();
|
thread_yield();
|
||||||
}
|
}
|
||||||
|
__exit_isr();
|
||||||
}
|
}
|
||||||
#endif /* UART_3_EN */
|
#endif /* UART_3_EN */
|
||||||
#endif /* UART_0_EN || UART_1_EN |UART_2_EN| UART3 */
|
#endif /* UART_0_EN || UART_1_EN |UART_2_EN| UART3 */
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2014 Freie Universität Berlin, Hinnerk van Bruinehsen
|
* Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de>
|
||||||
|
* 2014 Freie Universität Berlin, Hinnerk van Bruinehsen
|
||||||
*
|
*
|
||||||
* This file is subject to the terms and conditions of the GNU Lesser
|
* 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
|
* General Public License v2.1. See the file LICENSE in the top level
|
||||||
@ -20,14 +21,16 @@
|
|||||||
* @author Stefan Pfeiffer <stefan.pfeiffer@fu-berlin.de>
|
* @author Stefan Pfeiffer <stefan.pfeiffer@fu-berlin.de>
|
||||||
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
||||||
* @author Hinnerk van Bruinehsen <h.v.bruinehsen@fu-berlin.de>
|
* @author Hinnerk van Bruinehsen <h.v.bruinehsen@fu-berlin.de>
|
||||||
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __ATMEGA_COMMON_H
|
#ifndef __ATMEGA_COMMON_H
|
||||||
#define __ATMEGA_COMMON_H
|
#define __ATMEGA_COMMON_H
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <avr/interrupt.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#include <avr/interrupt.h>
|
||||||
#include "cpu_conf.h"
|
#include "cpu_conf.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -43,6 +46,27 @@ extern "C" {
|
|||||||
#define eINT enableIRQ
|
#define eINT enableIRQ
|
||||||
#define dINT disableIRQ
|
#define dINT disableIRQ
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief global in-ISR state variable
|
||||||
|
*/
|
||||||
|
extern volatile uint8_t __in_isr;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Flag entering of an ISR
|
||||||
|
*/
|
||||||
|
static inline void __enter_isr(void)
|
||||||
|
{
|
||||||
|
__in_isr = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Flag exiting of an ISR
|
||||||
|
*/
|
||||||
|
static inline void __exit_isr(void)
|
||||||
|
{
|
||||||
|
__in_isr = 0;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Initialization of the CPU
|
* @brief Initialization of the CPU
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -20,6 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include "arch/irq_arch.h"
|
#include "arch/irq_arch.h"
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
|
|
||||||
@ -29,6 +30,8 @@
|
|||||||
static uint8_t __get_interrupt_state(void);
|
static uint8_t __get_interrupt_state(void);
|
||||||
static void __set_interrupt_state(uint8_t state);
|
static void __set_interrupt_state(uint8_t state);
|
||||||
|
|
||||||
|
volatile uint8_t __in_isr = 0;
|
||||||
|
|
||||||
__attribute__((always_inline)) static inline uint8_t __get_interrupt_state(void)
|
__attribute__((always_inline)) static inline uint8_t __get_interrupt_state(void)
|
||||||
{
|
{
|
||||||
uint8_t sreg;
|
uint8_t sreg;
|
||||||
@ -84,9 +87,5 @@ void irq_arch_restore(unsigned int state)
|
|||||||
*/
|
*/
|
||||||
int irq_arch_in(void)
|
int irq_arch_in(void)
|
||||||
{
|
{
|
||||||
/*
|
return __in_isr;
|
||||||
* TODO: find a way to implement this function (e.g. a static variable dis- or
|
|
||||||
* set and unset in each ISR)
|
|
||||||
*/
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user