b012980d1c
In a bid to kill off explicit mmiowb() usage in driver code, hook up the asm-generic mmiowb() tracking code for riscv, so that an mmiowb() is automatically issued from spin_unlock() if an I/O write was performed in the critical section. Reviewed-by: Palmer Dabbelt <palmer@sifive.com> Acked-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Will Deacon <will.deacon@arm.com>
15 lines
374 B
C
15 lines
374 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef _ASM_RISCV_MMIOWB_H
|
|
#define _ASM_RISCV_MMIOWB_H
|
|
|
|
/*
|
|
* "o,w" is sufficient to ensure that all writes to the device have completed
|
|
* before the write to the spinlock is allowed to commit.
|
|
*/
|
|
#define mmiowb() __asm__ __volatile__ ("fence o,w" : : : "memory");
|
|
|
|
#include <asm-generic/mmiowb.h>
|
|
|
|
#endif /* ASM_RISCV_MMIOWB_H */
|