From db5948075ef7e8e6ab6f91db7c72c4ac600cfe39 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Sun, 24 Feb 2019 00:03:52 +0200 Subject: [PATCH] Add compiler fence before mbox write --- src/platform/mailbox.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/platform/mailbox.rs b/src/platform/mailbox.rs index 1712bbb..795c980 100644 --- a/src/platform/mailbox.rs +++ b/src/platform/mailbox.rs @@ -4,6 +4,7 @@ use crate::{ println, }; use core::ops::Deref; +use core::sync::atomic::{compiler_fence, Ordering}; use register::mmio::*; // Public interface to the mailbox @@ -194,6 +195,11 @@ fn write(regs: &RegisterBlock, buf_ptr: u32, channel: u32) -> Result<()> { println!("Mailbox::write {:x}/{:x}", buf_ptr, channel); + // Insert a compiler fence that ensures that all stores to the + // mbox buffer are finished before the GPU is signaled (which is + // done by a store operation as well). + compiler_fence(Ordering::Release); + while regs.STATUS.is_set(STATUS::FULL) { count += 1; if count > (1 << 25) {