mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-23 09:15:36 +00:00
committed by
Christian Helmuth
parent
790a57041c
commit
ef8140cce5
31
repos/dde_linux/src/include/spec/arm_64/lx_emul/barrier.h
Normal file
31
repos/dde_linux/src/include/spec/arm_64/lx_emul/barrier.h
Normal file
@ -0,0 +1,31 @@
|
||||
/*
|
||||
* \brief ARMv8-specific part of the Linux API emulation
|
||||
* \author Christian Prochaska
|
||||
* \date 2014-05-28
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2019 Genode Labs GmbH
|
||||
*
|
||||
* This file is distributed under the terms of the GNU General Public License
|
||||
* version 2.
|
||||
*/
|
||||
|
||||
/*******************
|
||||
** asm/barrier.h **
|
||||
*******************/
|
||||
|
||||
#define mb() asm volatile ("dsb ld": : :"memory")
|
||||
#define rmb() mb()
|
||||
#define wmb() asm volatile ("dsb st": : :"memory")
|
||||
|
||||
/*
|
||||
* This is the "safe" implementation as needed for a configuration
|
||||
* with bufferable DMA memory and SMP enabled.
|
||||
*/
|
||||
|
||||
#define smp_mb() asm volatile ("dmb ish": : :"memory")
|
||||
#define smp_rmb() smp_mb()
|
||||
#define smp_wmb() asm volatile ("dmb ishst": : :"memory")
|
||||
|
||||
static inline void barrier() { asm volatile ("": : :"memory"); }
|
Reference in New Issue
Block a user