xref: /linux/arch/microblaze/include/asm/barrier.h (revision ead5d1f4d877e92c051e1a1ade623d0d30e71619)
1*db79e029SStefan Asserhall /* SPDX-License-Identifier: GPL-2.0 */
2*db79e029SStefan Asserhall /*
3*db79e029SStefan Asserhall  * Copyright (c) 2015 - 2020 Xilinx, Inc. All rights reserved.
4*db79e029SStefan Asserhall  */
5*db79e029SStefan Asserhall 
6*db79e029SStefan Asserhall #ifndef _ASM_MICROBLAZE_BARRIER_H
7*db79e029SStefan Asserhall #define _ASM_MICROBLAZE_BARRIER_H
8*db79e029SStefan Asserhall 
9*db79e029SStefan Asserhall #define mb()	__asm__ __volatile__ ("mbar 1" : : : "memory")
10*db79e029SStefan Asserhall 
11*db79e029SStefan Asserhall #include <asm-generic/barrier.h>
12*db79e029SStefan Asserhall 
13*db79e029SStefan Asserhall #endif /* _ASM_MICROBLAZE_BARRIER_H */
14