Linux 5.6.13
[linux/fpc-iii.git] / arch / riscv / include / asm / mmiowb.h
blobbb4091ff4a21fb3229aba4e298f7e6bd2b07e239
1 /* SPDX-License-Identifier: GPL-2.0 */
3 #ifndef _ASM_RISCV_MMIOWB_H
4 #define _ASM_RISCV_MMIOWB_H
6 /*
7 * "o,w" is sufficient to ensure that all writes to the device have completed
8 * before the write to the spinlock is allowed to commit.
9 */
10 #define mmiowb() __asm__ __volatile__ ("fence o,w" : : : "memory");
12 #include <asm-generic/mmiowb.h>
14 #endif /* _ASM_RISCV_MMIOWB_H */