arch: arm: Add Cortex-R support
This adds initial Cortex-R support for interrupts and context switching. Signed-off-by: Bradley Bolen <bbolen@lexmark.com>
This commit is contained in:
parent
7daf42b123
commit
c30a71df95
37 changed files with 1516 additions and 82 deletions
|
@ -36,6 +36,12 @@ static inline void timestamp_serialize(void)
|
|||
/* isb is available in all Cortex-M */
|
||||
__ISB();
|
||||
}
|
||||
#elif defined(CONFIG_CPU_CORTEX_R)
|
||||
#include <arch/arm/cortex_r/cpu.h>
|
||||
static inline void timestamp_serialize(void)
|
||||
{
|
||||
__ISB();
|
||||
}
|
||||
#elif defined(CONFIG_CPU_ARCV2)
|
||||
#define timestamp_serialize()
|
||||
#elif defined(CONFIG_ARCH_POSIX)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue