diff options
| -rw-r--r-- | include/asm-generic/mmiowb.h | 63 | ||||
| -rw-r--r-- | include/asm-generic/mmiowb_types.h | 12 | ||||
| -rw-r--r-- | kernel/Kconfig.locks | 7 | ||||
| -rw-r--r-- | kernel/locking/spinlock.c | 7 |
4 files changed, 89 insertions, 0 deletions
diff --git a/include/asm-generic/mmiowb.h b/include/asm-generic/mmiowb.h new file mode 100644 index 000000000000..9439ff037b2d --- /dev/null +++ b/include/asm-generic/mmiowb.h | |||
| @@ -0,0 +1,63 @@ | |||
| 1 | /* SPDX-License-Identifier: GPL-2.0 */ | ||
| 2 | #ifndef __ASM_GENERIC_MMIOWB_H | ||
| 3 | #define __ASM_GENERIC_MMIOWB_H | ||
| 4 | |||
| 5 | /* | ||
| 6 | * Generic implementation of mmiowb() tracking for spinlocks. | ||
| 7 | * | ||
| 8 | * If your architecture doesn't ensure that writes to an I/O peripheral | ||
| 9 | * within two spinlocked sections on two different CPUs are seen by the | ||
| 10 | * peripheral in the order corresponding to the lock handover, then you | ||
| 11 | * need to follow these FIVE easy steps: | ||
| 12 | * | ||
| 13 | * 1. Implement mmiowb() (and arch_mmiowb_state() if you're fancy) | ||
| 14 | * in asm/mmiowb.h, then #include this file | ||
| 15 | * 2. Ensure your I/O write accessors call mmiowb_set_pending() | ||
| 16 | * 3. Select ARCH_HAS_MMIOWB | ||
| 17 | * 4. Untangle the resulting mess of header files | ||
| 18 | * 5. Complain to your architects | ||
| 19 | */ | ||
| 20 | #ifdef CONFIG_MMIOWB | ||
| 21 | |||
| 22 | #include <linux/compiler.h> | ||
| 23 | #include <asm-generic/mmiowb_types.h> | ||
| 24 | |||
| 25 | #ifndef arch_mmiowb_state | ||
| 26 | #include <asm/percpu.h> | ||
| 27 | #include <asm/smp.h> | ||
| 28 | |||
| 29 | DECLARE_PER_CPU(struct mmiowb_state, __mmiowb_state); | ||
| 30 | #define __mmiowb_state() this_cpu_ptr(&__mmiowb_state) | ||
| 31 | #else | ||
| 32 | #define __mmiowb_state() arch_mmiowb_state() | ||
| 33 | #endif /* arch_mmiowb_state */ | ||
| 34 | |||
| 35 | static inline void mmiowb_set_pending(void) | ||
| 36 | { | ||
| 37 | struct mmiowb_state *ms = __mmiowb_state(); | ||
| 38 | ms->mmiowb_pending = ms->nesting_count; | ||
| 39 | } | ||
| 40 | |||
| 41 | static inline void mmiowb_spin_lock(void) | ||
| 42 | { | ||
| 43 | struct mmiowb_state *ms = __mmiowb_state(); | ||
| 44 | ms->nesting_count++; | ||
| 45 | } | ||
| 46 | |||
| 47 | static inline void mmiowb_spin_unlock(void) | ||
| 48 | { | ||
| 49 | struct mmiowb_state *ms = __mmiowb_state(); | ||
| 50 | |||
| 51 | if (unlikely(ms->mmiowb_pending)) { | ||
| 52 | ms->mmiowb_pending = 0; | ||
| 53 | mmiowb(); | ||
| 54 | } | ||
| 55 | |||
| 56 | ms->nesting_count--; | ||
| 57 | } | ||
| 58 | #else | ||
| 59 | #define mmiowb_set_pending() do { } while (0) | ||
| 60 | #define mmiowb_spin_lock() do { } while (0) | ||
| 61 | #define mmiowb_spin_unlock() do { } while (0) | ||
| 62 | #endif /* CONFIG_MMIOWB */ | ||
| 63 | #endif /* __ASM_GENERIC_MMIOWB_H */ | ||
diff --git a/include/asm-generic/mmiowb_types.h b/include/asm-generic/mmiowb_types.h new file mode 100644 index 000000000000..8eb0095655e7 --- /dev/null +++ b/include/asm-generic/mmiowb_types.h | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | /* SPDX-License-Identifier: GPL-2.0 */ | ||
| 2 | #ifndef __ASM_GENERIC_MMIOWB_TYPES_H | ||
| 3 | #define __ASM_GENERIC_MMIOWB_TYPES_H | ||
| 4 | |||
| 5 | #include <linux/types.h> | ||
| 6 | |||
| 7 | struct mmiowb_state { | ||
| 8 | u16 nesting_count; | ||
| 9 | u16 mmiowb_pending; | ||
| 10 | }; | ||
| 11 | |||
| 12 | #endif /* __ASM_GENERIC_MMIOWB_TYPES_H */ | ||
diff --git a/kernel/Kconfig.locks b/kernel/Kconfig.locks index fbba478ae522..6ba2570eddad 100644 --- a/kernel/Kconfig.locks +++ b/kernel/Kconfig.locks | |||
| @@ -251,3 +251,10 @@ config ARCH_USE_QUEUED_RWLOCKS | |||
| 251 | config QUEUED_RWLOCKS | 251 | config QUEUED_RWLOCKS |
| 252 | def_bool y if ARCH_USE_QUEUED_RWLOCKS | 252 | def_bool y if ARCH_USE_QUEUED_RWLOCKS |
| 253 | depends on SMP | 253 | depends on SMP |
| 254 | |||
| 255 | config ARCH_HAS_MMIOWB | ||
| 256 | bool | ||
| 257 | |||
| 258 | config MMIOWB | ||
| 259 | def_bool y if ARCH_HAS_MMIOWB | ||
| 260 | depends on SMP | ||
diff --git a/kernel/locking/spinlock.c b/kernel/locking/spinlock.c index 936f3d14dd6b..0ff08380f531 100644 --- a/kernel/locking/spinlock.c +++ b/kernel/locking/spinlock.c | |||
| @@ -22,6 +22,13 @@ | |||
| 22 | #include <linux/debug_locks.h> | 22 | #include <linux/debug_locks.h> |
| 23 | #include <linux/export.h> | 23 | #include <linux/export.h> |
| 24 | 24 | ||
| 25 | #ifdef CONFIG_MMIOWB | ||
| 26 | #ifndef arch_mmiowb_state | ||
| 27 | DEFINE_PER_CPU(struct mmiowb_state, __mmiowb_state); | ||
| 28 | EXPORT_PER_CPU_SYMBOL(__mmiowb_state); | ||
| 29 | #endif | ||
| 30 | #endif | ||
| 31 | |||
| 25 | /* | 32 | /* |
| 26 | * If lockdep is enabled then we use the non-preemption spin-ops | 33 | * If lockdep is enabled then we use the non-preemption spin-ops |
| 27 | * even on CONFIG_PREEMPT, because lockdep assumes that interrupts are | 34 | * even on CONFIG_PREEMPT, because lockdep assumes that interrupts are |
