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

171 lines
3.3 KiB
C
Raw Normal View History

/*
2014-09-09 12:16:26 +02:00
* Copyright (C) 2014, Freie Universitaet Berlin (FUB) & INRIA.
* All rights reserved.
*
* 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.
*/
#ifndef CPU_H_
#define CPU_H_
/**
* @defgroup cpu_msp430_common TI MSP430
* @ingroup cpu
* @brief Texas Instruments MSP430 specific code
<h2>First steps</h2>
\li See the <a href="../manual/index.html">manual</a> for toolchain and ide setup
* @{
*/
#include <stdio.h>
#include <legacymsp430.h>
#include <msp430.h>
2013-12-16 17:54:58 +01:00
#include "board.h"
#include "sched.h"
#include "msp430_types.h"
#include "cpu_conf.h"
2014-10-13 10:53:20 +02:00
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Wordsize in bit for MSP430 platforms
*/
#define WORDSIZE 16
/**
* @brief The current ISR state (inside or not)
*/
extern volatile int __inISR;
/**
* @brief Memory used as stack for the interrupt context
*/
extern char __isr_stack[MSP430_ISR_STACK_SIZE];
/**
* @brief definition of legacy interrupt control functions
*/
#define eINT enableIRQ
#define dINT disableIRQ
/** @} */
/**
* @brief Save the current thread context from inside an ISR
*/
inline void __save_context_isr(void)
{
__asm__("push r15");
__asm__("push r14");
__asm__("push r13");
__asm__("push r12");
__asm__("push r11");
__asm__("push r10");
__asm__("push r9");
__asm__("push r8");
__asm__("push r7");
__asm__("push r6");
__asm__("push r5");
__asm__("push r4");
__asm__("mov.w r1,%0" : "=r"(sched_active_thread->sp));
}
/**
* @brief Restore the thread context from inside an ISR
*/
inline void __restore_context_isr(void)
{
__asm__("mov.w %0,r1" : : "m"(sched_active_thread->sp));
__asm__("pop r4");
__asm__("pop r5");
__asm__("pop r6");
__asm__("pop r7");
__asm__("pop r8");
__asm__("pop r9");
__asm__("pop r10");
__asm__("pop r11");
__asm__("pop r12");
__asm__("pop r13");
__asm__("pop r14");
__asm__("pop r15");
}
/**
* @brief Run this code on entering interrupt routines
*/
inline void __enter_isr(void)
{
__save_context_isr();
__asm__("mov.w %0,r1" : : "i"(__isr_stack+MSP430_ISR_STACK_SIZE));
__inISR = 1;
}
/**
* @brief Run this code on exiting interrupt routines
*/
inline void __exit_isr(void)
{
__inISR = 0;
if (sched_context_switch_request) {
sched_run();
}
__restore_context_isr();
__asm__("reti");
}
/**
* @brief Save the current context on the stack
*/
inline void __save_context(void)
{
__asm__("push r2"); /* save SR */
__save_context_isr();
}
/**
* @brief Restore the thread context from the stack
*
* @param[in] irqen former interrupt state
*/
inline void __restore_context(unsigned int irqen)
{
__restore_context_isr();
2014-09-09 12:16:26 +02:00
/*
* we want to enable appropriate IRQs *just after*
* quitting the interrupt handler; to that end,
* we change the GIE bit in the value to be restored
* in R2 (a.k.a. SR) by the next RETI instruction
*/
if (irqen) {
__asm__("bis.w #8, 0(r1)");
} else {
__asm__("bic.w #8, 0(r1)");
}
__asm__("reti");
}
/**
* @brief Initialize the cpu
*/
2013-08-14 23:46:51 +02:00
void msp430_cpu_init(void);
2014-10-13 10:53:20 +02:00
#ifdef __cplusplus
}
#endif
/** @} */
#endif /* CPU_H_ */