-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathatomic.h
More file actions
98 lines (75 loc) · 2.4 KB
/
atomic.h
File metadata and controls
98 lines (75 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
* This is port of Dean Camera's ATOMIC_BLOCK macros for AVR to ARM Cortex M3
* v1.0
* Mark Pendrith, Nov 27, 2012.
* Modifications 2017 Jacob Alexander
*
* From Mark:
* >When I ported the macros I emailed Dean to ask what attribution would be
* >appropriate, and here is his response:
* >
* >>Mark,
* >>I think it's great that you've ported the macros; consider them
* >>public domain, to do with whatever you wish. I hope you find them >useful .
* >>
* >>Cheers!
* >>- Dean
*/
#pragma once
// ----- Includes -----
#include <stdint.h>
// ----- Defines -----
#define ATOMIC_BLOCK(type) \
for ( type, __ToDo = __iCliRetVal(); __ToDo ; __ToDo = 0 )
#define ATOMIC_RESTORESTATE \
uint32_t primask_save __attribute__((__cleanup__(__iRestore))) = __get_primask()
#define ATOMIC_FORCEON \
uint32_t primask_save __attribute__((__cleanup__(__iSeiParam))) = 0
#define NONATOMIC_BLOCK(type) \
for ( type, __ToDo = __iSeiRetVal(); __ToDo ; __ToDo = 0 )
#define NONATOMIC_RESTORESTATE \
uint32_t primask_save __attribute__((__cleanup__(__iRestore))) = __get_primask()
#define NONATOMIC_FORCEOFF \
uint32_t primask_save __attribute__((__cleanup__(__iCliParam))) = 0
// ----- Functions -----
// returns 0 if interrupts enabled, 1 if disabled
static __inline__ uint32_t __get_primask()
{
uint32_t primask = 0;
__asm__ volatile ("MRS %[result], PRIMASK\n\t":[result]"=r"(primask)::);
return primask;
}
static __inline__ void __set_primask( uint32_t setval )
{
__asm__ volatile ("MSR PRIMASK, %[value]\n\t""dmb\n\t""dsb\n\t""isb\n\t"::[value]"r"(setval):);
__asm__ volatile ("" ::: "memory");
}
static __inline__ uint32_t __iSeiRetVal()
{
__asm__ volatile ("CPSIE i\n\t""dmb\n\t""dsb\n\t""isb\n\t");
__asm__ volatile ("" ::: "memory");
return 1;
}
static __inline__ uint32_t __iCliRetVal()
{
__asm__ volatile ("CPSID i\n\t""dmb\n\t""dsb\n\t""isb\n\t");
__asm__ volatile ("" ::: "memory");
return 1;
}
static __inline__ void __iSeiParam( const uint32_t *__s )
{
__asm__ volatile ("CPSIE i\n\t""dmb\n\t""dsb\n\t""isb\n\t");
__asm__ volatile ("" ::: "memory");
(void)__s;
}
static __inline__ void __iCliParam( const uint32_t *__s )
{
__asm__ volatile ("CPSID i\n\t""dmb\n\t""dsb\n\t""isb\n\t");
__asm__ volatile ("" ::: "memory");
(void)__s;
}
static __inline__ void __iRestore( const uint32_t *__s )
{
__set_primask(*__s); __asm__ volatile ("dmb\n\t""dsb\n\t""isb\n\t");
__asm__ volatile ("" ::: "memory");
}