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
//! Miscellaneous assembly instructions

/// Puts the processor in Debug state. Debuggers can pick this up as a
/// "breakpoint".
///
/// NOTE calling `bkpt` when the processor is not connected to a debugger will
/// cause an exception
#[inline(always)]
pub fn bkpt() {
    match () {
        #[cfg(target_arch = "arm")]
        () => unsafe { asm!("bkpt" :::: "volatile") },
        #[cfg(not(target_arch = "arm"))]
        () => unimplemented!(),
    }
}

/// A no-operation. Useful to prevent delay loops from being optimized away.
#[inline]
pub fn nop() {
    match () {
        #[cfg(target_arch = "arm")]
        () => unsafe { asm!("nop" :::: "volatile") },
        #[cfg(not(target_arch = "arm"))]
        () => unimplemented!(),
    }
}
/// Wait For Event
#[inline]
pub fn wfe() {
    match () {
        #[cfg(target_arch = "arm")]
        () => unsafe { asm!("wfe" :::: "volatile") },
        #[cfg(not(target_arch = "arm"))]
        () => unimplemented!(),
    }
}

/// Wait For Interrupt
#[inline]
pub fn wfi() {
    match () {
        #[cfg(target_arch = "arm")]
        () => unsafe { asm!("wfi" :::: "volatile") },
        #[cfg(not(target_arch = "arm"))]
        () => unimplemented!(),
    }
}

/// Instruction Synchronization Barrier
///
/// Flushes the pipeline in the processor, so that all instructions following the `ISB` are fetched
/// from cache or memory, after the instruction has been completed.
#[inline]
pub fn isb() {
    match () {
        #[cfg(target_arch = "arm")]
        () => unsafe { asm!("isb 0xF" : : : "memory" : "volatile") },
        #[cfg(not(target_arch = "arm"))]
        () => unimplemented!(),
    }
}

/// Data Synchronization Barrier
///
/// Acts as a special kind of memory barrier. No instruction in program order after this
/// instruction can execute until this instruction completes. This instruction completes only when
/// both:
///
///  * any explicit memory access made before this instruction is complete
///  * all cache and branch predictor maintenance operations before this instruction complete
#[inline]
pub fn dsb() {
    match () {
        #[cfg(target_arch = "arm")]
        () => unsafe { asm!("dsb 0xF" : : : "memory" : "volatile") },
        #[cfg(not(target_arch = "arm"))]
        () => unimplemented!(),
    }
}

/// Data Memory Barrier
///
/// Ensures that all explicit memory accesses that appear in program order before the `DMB`
/// instruction are observed before any explicit memory accesses that appear in program order
/// after the `DMB` instruction.
#[inline]
pub fn dmb() {
    match () {
        #[cfg(target_arch = "arm")]
        () => unsafe { asm!("dmb 0xF" : : : "memory" : "volatile") },
        #[cfg(not(target_arch = "arm"))]
        () => unimplemented!(),
    }
}