spinlock.c 2.9 KB
Newer Older
1 2 3 4
/*
 *  arch/s390/lib/spinlock.c
 *    Out of line spinlock code.
 *
5
 *    Copyright (C) IBM Corp. 2004, 2006
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *    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 <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);

27
static inline void _raw_yield(void)
28 29 30 31 32
{
	if (MACHINE_HAS_DIAG44)
		asm volatile("diag 0,0,0x44");
}

33 34 35 36 37 38 39 40 41
static inline void _raw_yield_cpu(int cpu)
{
	if (MACHINE_HAS_DIAG9C)
		asm volatile("diag %0,0,0x9c"
			     : : "d" (__cpu_logical_map[cpu]));
	else
		_raw_yield();
}

42
void _raw_spin_lock_wait(raw_spinlock_t *lp)
43 44
{
	int count = spin_retry;
45
	unsigned int cpu = ~smp_processor_id();
46 47 48

	while (1) {
		if (count-- <= 0) {
49 50 51
			unsigned int owner = lp->owner_cpu;
			if (owner != 0)
				_raw_yield_cpu(~owner);
52 53
			count = spin_retry;
		}
54 55
		if (__raw_spin_is_locked(lp))
			continue;
56
		if (_raw_compare_and_swap(&lp->owner_cpu, 0, cpu) == 0)
57 58 59 60 61
			return;
	}
}
EXPORT_SYMBOL(_raw_spin_lock_wait);

62
int _raw_spin_trylock_retry(raw_spinlock_t *lp)
63
{
64 65
	unsigned int cpu = ~smp_processor_id();
	int count;
66

67
	for (count = spin_retry; count > 0; count--) {
68 69
		if (__raw_spin_is_locked(lp))
			continue;
70
		if (_raw_compare_and_swap(&lp->owner_cpu, 0, cpu) == 0)
71 72 73 74 75 76
			return 1;
	}
	return 0;
}
EXPORT_SYMBOL(_raw_spin_trylock_retry);

77 78 79 80 81 82 83 84 85
void _raw_spin_relax(raw_spinlock_t *lock)
{
	unsigned int cpu = lock->owner_cpu;
	if (cpu != 0)
		_raw_yield_cpu(~cpu);
}
EXPORT_SYMBOL(_raw_spin_relax);

void _raw_read_lock_wait(raw_rwlock_t *rw)
86 87 88 89 90 91
{
	unsigned int old;
	int count = spin_retry;

	while (1) {
		if (count-- <= 0) {
92
			_raw_yield();
93 94
			count = spin_retry;
		}
95 96
		if (!__raw_read_can_lock(rw))
			continue;
97 98 99 100 101 102 103
		old = rw->lock & 0x7fffffffU;
		if (_raw_compare_and_swap(&rw->lock, old, old + 1) == old)
			return;
	}
}
EXPORT_SYMBOL(_raw_read_lock_wait);

104
int _raw_read_trylock_retry(raw_rwlock_t *rw)
105 106 107 108 109
{
	unsigned int old;
	int count = spin_retry;

	while (count-- > 0) {
110 111
		if (!__raw_read_can_lock(rw))
			continue;
112 113 114 115 116 117 118 119
		old = rw->lock & 0x7fffffffU;
		if (_raw_compare_and_swap(&rw->lock, old, old + 1) == old)
			return 1;
	}
	return 0;
}
EXPORT_SYMBOL(_raw_read_trylock_retry);

120
void _raw_write_lock_wait(raw_rwlock_t *rw)
121 122 123 124 125
{
	int count = spin_retry;

	while (1) {
		if (count-- <= 0) {
126
			_raw_yield();
127 128
			count = spin_retry;
		}
129 130
		if (!__raw_write_can_lock(rw))
			continue;
131 132 133 134 135 136
		if (_raw_compare_and_swap(&rw->lock, 0, 0x80000000) == 0)
			return;
	}
}
EXPORT_SYMBOL(_raw_write_lock_wait);

137
int _raw_write_trylock_retry(raw_rwlock_t *rw)
138 139 140 141
{
	int count = spin_retry;

	while (count-- > 0) {
142 143
		if (!__raw_write_can_lock(rw))
			continue;
144 145 146 147 148 149
		if (_raw_compare_and_swap(&rw->lock, 0, 0x80000000) == 0)
			return 1;
	}
	return 0;
}
EXPORT_SYMBOL(_raw_write_trylock_retry);