/* * Copyright (C) 2014-2015 Freie UniversitÀt Berlin * * 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. */ /** * @defgroup cpu_cortexm_common ARM Cortex-M common * @ingroup cpu * @brief Common implementations and headers for Cortex-M family based * micro-controllers * @{ * * @file * @brief Basic definitions for the Cortex-M common module * * When ever you want to do something hardware related, that is accessing MCUs * registers, just include this file. It will then make sure that the MCU * specific headers are included. * * @author Stefan Pfeiffer * @author Hauke Petersen * @author Joakim NohlgÄrd * * @todo remove include irq.h once core was adjusted */ #ifndef CPU_H_ #define CPU_H_ #include #include "cpu_conf.h" #include "irq.h" #ifdef __cplusplus extern "C" { #endif /** * @brief Some members of the Cortex-M family have architecture specific * atomic operations in atomic_arch.c */ #if defined(CPU_ARCH_CORTEX_M3) || defined(CPU_ARCH_CORTEX_M4) || \ defined(CPU_ARCH_CORTEX_M4F) #define ARCH_HAS_ATOMIC_COMPARE_AND_SWAP 1 #endif /** * @brief Initialization of the CPU */ void cpu_init(void); /** * @brief Initialize Cortex-M specific core parts of the CPU */ void cortexm_init(void); /** * @brief Prints the current content of the link register (lr) */ static inline void cpu_print_last_instruction(void) { register uint32_t *lr_ptr; __asm__ __volatile__("mov %0, lr" : "=r"(lr_ptr)); printf("%p\n", (void*) lr_ptr); } /** * @brief Put the CPU into the 'wait for event' sleep mode * * This function is meant to be used for short periods of time, where it is not * feasible to switch to the idle thread and back. */ static inline void cpu_sleep_until_event(void) { __SEV(); __WFE(); } #ifdef __cplusplus } #endif #endif /* CPU_H_ */ /** @} */