Drop dmb function

* Use cortex_a functions directly.
This commit is contained in:
Berkus Decker 2019-03-02 19:14:11 +02:00
parent 1ba6c3f4d7
commit 593544a6ec
2 changed files with 11 additions and 13 deletions

View File

@ -7,7 +7,7 @@ pub mod traps;
pub use self::memory::{PhysicalAddress, VirtualAddress};
pub use mmu::*;
use cortex_a::{asm, barrier, regs::*};
use cortex_a::{asm, regs::*};
#[no_mangle]
static mut WAIT_FLAG: bool = true;
@ -25,14 +25,6 @@ pub fn jtag_dbg_wait() {
unsafe { write_volatile(&mut WAIT_FLAG, true) }
}
// Data memory barrier
#[inline]
pub fn dmb() {
unsafe {
barrier::dmb(barrier::SY);
}
}
#[inline]
pub fn flushcache(address: usize) {
unsafe {

View File

@ -1,10 +1,10 @@
use crate::{
arch::*,
platform::{display::Size2d, rpi3::BcmHost},
println,
};
use core::ops::Deref;
use core::sync::atomic::{compiler_fence, Ordering};
use cortex_a::barrier;
use register::mmio::*;
// Public interface to the mailbox.
@ -207,7 +207,9 @@ fn write(regs: &RegisterBlock, buf_ptr: u32, channel: u32) -> Result<()> {
return Err(MboxError::Timeout);
}
}
dmb();
unsafe {
barrier::dmb(barrier::SY);
}
regs.WRITE
.set((buf_ptr & !CHANNEL_MASK) | (channel & CHANNEL_MASK));
Ok(())
@ -227,9 +229,13 @@ fn read(regs: &RegisterBlock, expected: u32, channel: u32) -> Result<()> {
/* Read the data
* Data memory barriers as we've switched peripheral
*/
dmb();
unsafe {
barrier::dmb(barrier::SY);
}
let data: u32 = regs.READ.get();
dmb();
unsafe {
barrier::dmb(barrier::SY);
}
// is it a response to our message?
if ((data & CHANNEL_MASK) == channel) && ((data & !CHANNEL_MASK) == expected) {