M7350/kernel/arch/s390/lib/spinlock.c

235 lines
4.9 KiB
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
/*
* Out of line spinlock code.
*
2024-09-09 08:57:42 +00:00
* Copyright IBM Corp. 2004, 2006
2024-09-09 08:52:07 +00:00
* Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
*/
#include <linux/types.h>
#include <linux/module.h>
#include <linux/spinlock.h>
#include <linux/init.h>
#include <linux/smp.h>
#include <asm/io.h>
int spin_retry = 1000;
/**
* spin_retry= parameter
*/
static int __init spin_retry_setup(char *str)
{
spin_retry = simple_strtoul(str, &str, 0);
return 1;
}
__setup("spin_retry=", spin_retry_setup);
void arch_spin_lock_wait(arch_spinlock_t *lp)
{
2024-09-09 08:57:42 +00:00
unsigned int cpu = SPINLOCK_LOCKVAL;
2024-09-09 08:52:07 +00:00
unsigned int owner;
2024-09-09 08:57:42 +00:00
int count;
2024-09-09 08:52:07 +00:00
while (1) {
2024-09-09 08:57:42 +00:00
owner = ACCESS_ONCE(lp->lock);
/* Try to get the lock if it is free. */
if (!owner) {
if (_raw_compare_and_swap(&lp->lock, 0, cpu))
return;
continue;
2024-09-09 08:52:07 +00:00
}
2024-09-09 08:57:42 +00:00
/* Check if the lock owner is running. */
if (!smp_vcpu_scheduled(~owner)) {
smp_yield_cpu(~owner);
continue;
}
/* Loop for a while on the lock value. */
count = spin_retry;
do {
owner = ACCESS_ONCE(lp->lock);
} while (owner && count-- > 0);
if (!owner)
continue;
/*
* For multiple layers of hypervisors, e.g. z/VM + LPAR
* yield the CPU if the lock is still unavailable.
*/
if (!MACHINE_IS_LPAR)
2024-09-09 08:52:07 +00:00
smp_yield_cpu(~owner);
}
}
EXPORT_SYMBOL(arch_spin_lock_wait);
void arch_spin_lock_wait_flags(arch_spinlock_t *lp, unsigned long flags)
{
2024-09-09 08:57:42 +00:00
unsigned int cpu = SPINLOCK_LOCKVAL;
2024-09-09 08:52:07 +00:00
unsigned int owner;
2024-09-09 08:57:42 +00:00
int count;
2024-09-09 08:52:07 +00:00
local_irq_restore(flags);
while (1) {
2024-09-09 08:57:42 +00:00
owner = ACCESS_ONCE(lp->lock);
/* Try to get the lock if it is free. */
if (!owner) {
local_irq_disable();
if (_raw_compare_and_swap(&lp->lock, 0, cpu))
return;
local_irq_restore(flags);
2024-09-09 08:52:07 +00:00
}
2024-09-09 08:57:42 +00:00
/* Check if the lock owner is running. */
if (!smp_vcpu_scheduled(~owner)) {
smp_yield_cpu(~owner);
continue;
}
/* Loop for a while on the lock value. */
count = spin_retry;
do {
owner = ACCESS_ONCE(lp->lock);
} while (owner && count-- > 0);
if (!owner)
continue;
/*
* For multiple layers of hypervisors, e.g. z/VM + LPAR
* yield the CPU if the lock is still unavailable.
*/
if (!MACHINE_IS_LPAR)
2024-09-09 08:52:07 +00:00
smp_yield_cpu(~owner);
}
}
EXPORT_SYMBOL(arch_spin_lock_wait_flags);
int arch_spin_trylock_retry(arch_spinlock_t *lp)
{
int count;
2024-09-09 08:57:42 +00:00
for (count = spin_retry; count > 0; count--)
if (arch_spin_trylock_once(lp))
2024-09-09 08:52:07 +00:00
return 1;
return 0;
}
EXPORT_SYMBOL(arch_spin_trylock_retry);
void _raw_read_lock_wait(arch_rwlock_t *rw)
{
2024-09-09 08:57:42 +00:00
unsigned int owner, old;
2024-09-09 08:52:07 +00:00
int count = spin_retry;
2024-09-09 08:57:42 +00:00
#ifdef CONFIG_HAVE_MARCH_Z196_FEATURES
__RAW_LOCK(&rw->lock, -1, __RAW_OP_ADD);
#endif
owner = 0;
2024-09-09 08:52:07 +00:00
while (1) {
if (count-- <= 0) {
2024-09-09 08:57:42 +00:00
if (owner && !smp_vcpu_scheduled(~owner))
smp_yield_cpu(~owner);
2024-09-09 08:52:07 +00:00
count = spin_retry;
}
2024-09-09 08:57:42 +00:00
old = ACCESS_ONCE(rw->lock);
owner = ACCESS_ONCE(rw->owner);
if ((int) old < 0)
2024-09-09 08:52:07 +00:00
continue;
2024-09-09 08:57:42 +00:00
if (_raw_compare_and_swap(&rw->lock, old, old + 1))
2024-09-09 08:52:07 +00:00
return;
}
}
EXPORT_SYMBOL(_raw_read_lock_wait);
int _raw_read_trylock_retry(arch_rwlock_t *rw)
{
unsigned int old;
int count = spin_retry;
while (count-- > 0) {
2024-09-09 08:57:42 +00:00
old = ACCESS_ONCE(rw->lock);
if ((int) old < 0)
2024-09-09 08:52:07 +00:00
continue;
2024-09-09 08:57:42 +00:00
if (_raw_compare_and_swap(&rw->lock, old, old + 1))
2024-09-09 08:52:07 +00:00
return 1;
}
return 0;
}
EXPORT_SYMBOL(_raw_read_trylock_retry);
2024-09-09 08:57:42 +00:00
#ifdef CONFIG_HAVE_MARCH_Z196_FEATURES
void _raw_write_lock_wait(arch_rwlock_t *rw, unsigned int prev)
2024-09-09 08:52:07 +00:00
{
2024-09-09 08:57:42 +00:00
unsigned int owner, old;
2024-09-09 08:52:07 +00:00
int count = spin_retry;
2024-09-09 08:57:42 +00:00
owner = 0;
2024-09-09 08:52:07 +00:00
while (1) {
if (count-- <= 0) {
2024-09-09 08:57:42 +00:00
if (owner && !smp_vcpu_scheduled(~owner))
smp_yield_cpu(~owner);
2024-09-09 08:52:07 +00:00
count = spin_retry;
}
2024-09-09 08:57:42 +00:00
old = ACCESS_ONCE(rw->lock);
owner = ACCESS_ONCE(rw->owner);
smp_rmb();
if ((int) old >= 0) {
prev = __RAW_LOCK(&rw->lock, 0x80000000, __RAW_OP_OR);
old = prev;
}
if ((old & 0x7fffffff) == 0 && (int) prev >= 0)
break;
2024-09-09 08:52:07 +00:00
}
}
EXPORT_SYMBOL(_raw_write_lock_wait);
2024-09-09 08:57:42 +00:00
#else /* CONFIG_HAVE_MARCH_Z196_FEATURES */
void _raw_write_lock_wait(arch_rwlock_t *rw)
2024-09-09 08:52:07 +00:00
{
2024-09-09 08:57:42 +00:00
unsigned int owner, old, prev;
2024-09-09 08:52:07 +00:00
int count = spin_retry;
2024-09-09 08:57:42 +00:00
prev = 0x80000000;
owner = 0;
2024-09-09 08:52:07 +00:00
while (1) {
if (count-- <= 0) {
2024-09-09 08:57:42 +00:00
if (owner && !smp_vcpu_scheduled(~owner))
smp_yield_cpu(~owner);
2024-09-09 08:52:07 +00:00
count = spin_retry;
}
2024-09-09 08:57:42 +00:00
old = ACCESS_ONCE(rw->lock);
owner = ACCESS_ONCE(rw->owner);
if ((int) old >= 0 &&
_raw_compare_and_swap(&rw->lock, old, old | 0x80000000))
prev = old;
else
smp_rmb();
if ((old & 0x7fffffff) == 0 && (int) prev >= 0)
break;
2024-09-09 08:52:07 +00:00
}
}
2024-09-09 08:57:42 +00:00
EXPORT_SYMBOL(_raw_write_lock_wait);
#endif /* CONFIG_HAVE_MARCH_Z196_FEATURES */
2024-09-09 08:52:07 +00:00
int _raw_write_trylock_retry(arch_rwlock_t *rw)
{
2024-09-09 08:57:42 +00:00
unsigned int old;
2024-09-09 08:52:07 +00:00
int count = spin_retry;
while (count-- > 0) {
2024-09-09 08:57:42 +00:00
old = ACCESS_ONCE(rw->lock);
if (old)
2024-09-09 08:52:07 +00:00
continue;
2024-09-09 08:57:42 +00:00
if (_raw_compare_and_swap(&rw->lock, 0, 0x80000000))
2024-09-09 08:52:07 +00:00
return 1;
}
return 0;
}
EXPORT_SYMBOL(_raw_write_trylock_retry);
2024-09-09 08:57:42 +00:00
void arch_lock_relax(unsigned int cpu)
{
if (!cpu)
return;
if (MACHINE_IS_LPAR && smp_vcpu_scheduled(~cpu))
return;
smp_yield_cpu(~cpu);
}
EXPORT_SYMBOL(arch_lock_relax);