aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ubicom32/files/arch/ubicom32/include/asm/spinlock.h
blob: 40080584c00630945738e07aba9204a57c1ef4ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/*
 * arch/ubicom32/include/asm/spinlock.h
 *   Spinlock related definitions for Ubicom32 architecture.
 *
 * (C) Copyright 2009, Ubicom, Inc.
 *
 * This file is part of the Ubicom32 Linux Kernel Port.
 *
 * The Ubicom32 Linux Kernel Port is free software: you can redistribute
 * it and/or modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation, either version 2 of the
 * License, or (at your option) any later version.
 *
 * The Ubicom32 Linux Kernel Port is distributed in the hope that it
 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
 * the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with the Ubicom32 Linux Kernel Port.  If not,
 * see <http://www.gnu.org/licenses/>.
 *
 * Ubicom32 implementation derived from (with many thanks):
 *   arch/m68knommu
 *   arch/blackfin
 *   arch/parisc
 */
#ifndef _ASM_UBICOM32_SPINLOCK_H
#define _ASM_UBICOM32_SPINLOCK_H

#include <asm/system.h>
#include <asm/processor.h>
#include <asm/spinlock_types.h>

/*
 * __raw_spin_lock()
 *	Lock the lock.
 */
static inline void __raw_spin_lock(raw_spinlock_t *x)
{
	asm volatile (
	"1:	bset	%0, %0, #0	\n\t"
	"	jmpne.f	1b		\n\t"
		: "+U4" (x->lock)
		:
		: "memory", "cc"
	);
}

/*
 * __raw_spin_unlock()
 *	Unlock the lock.
 */
static inline void __raw_spin_unlock(raw_spinlock_t *x)
{
	asm volatile (
	"	bclr	%0, %0, #0	\n\t"
		: "+U4" (x->lock)
		:
		: "memory", "cc"
	);
}

/*
 * __raw_spin_is_locked()
 *	Test if the lock is locked.
 */
static inline int __raw_spin_is_locked(raw_spinlock_t *x)
{
	return x->lock;
}

/*
 * __raw_spin_unlock_wait()
 *	Wait for the lock to be unlocked.
 *
 * Note: the caller has not guarantee that the lock will not
 * be acquired before they get to it.
 */
static inline void __raw_spin_unlock_wait(raw_spinlock_t *x)
{
	do {
		cpu_relax();
	} while (__raw_spin_is_locked(x));
}

/*
 * __raw_spin_trylock()
 *	Try the lock, return 0 on failure, 1 on success.
 */
static inline int __raw_spin_trylock(raw_spinlock_t *x)
{
	int ret = 0;

	asm volatile (
	"	bset	%1, %1, #0	\n\t"
	"	jmpne.f	1f		\n\t"
	"	move.4	%0, #1		\n\t"
	"1:				\n\t"
		: "+r" (ret), "+U4" (x->lock)
		:
		: "memory", "cc"
	);

	return ret;
}

/*
 * __raw_spin_lock_flags()
 *	Spin waiting for the lock (enabling IRQ(s))
 */
static inline void __raw_spin_lock_flags(raw_spinlock_t *x, unsigned long flags)
{
	mb();
	while (!__raw_spin_trylock(x)) {
		/*
		 * If the flags from the IRQ are set, interrupts are disabled and we
		 * need to re-enable them.
		 */
		if (!flags) {
			cpu_relax();
		} else {
			raw_local_irq_enable();
			cpu_relax();
			raw_local_irq_disable();
		}
	}
	mb();
}

/*
 * Read-write spinlocks, allowing multiple readers but only one writer.
 * Linux rwlocks are unfair to writers; they can be starved for an indefinite
 * time by readers.  With care, they can also be taken in interrupt context.
 *
 * In Ubicom32 architecture implementation, we have a spinlock and a counter.
 * Readers use the lock to serialise their access to the counter (which
 * records how many readers currently hold the lock).
 * Writers hold the spinlock, preventing any readers or other writers from
 * grabbing the rwlock.
 */

/*
 * __raw_read_lock()
 *	Increment the counter in the rwlock.
 *
 * Note that we have to ensure interrupts are disabled in case we're
 * interrupted by some other code that wants to grab the same read lock
 */
static inline void __raw_read_lock(raw_rwlock_t *rw)
{
	unsigned long flags;
	raw_local_irq_save(flags);
	__raw_spin_lock_flags(&rw->lock, flags);
	rw->counter++;
	__raw_spin_unlock(&rw->lock);
	raw_local_irq_restore(flags);
}

/*
 * __raw_read_unlock()
 *	Decrement the counter.
 *
 * Note that we have to ensure interrupts are disabled in case we're
 * interrupted by some other code that wants to grab the same read lock
 */
static inline void __raw_read_unlock(raw_rwlock_t *rw)
{
	unsigned long flags;
	raw_local_irq_save(flags);
	__raw_spin_lock_flags(&rw->lock, flags);
	rw->counter--;
	__raw_spin_unlock(&rw->lock);
	raw_local_irq_restore(flags);
}

/*
 * __raw_read_trylock()
 *	Increment the counter if we can.
 *
 * Note that we have to ensure interrupts are disabled in case we're
 * interrupted by some other code that wants to grab the same read lock
 */
static inline int __raw_read_trylock(raw_rwlock_t *rw)
{
	unsigned long flags;
 retry:
	raw_local_irq_save(flags);
	if (__raw_spin_trylock(&rw->lock)) {
		rw->counter++;
		__raw_spin_unlock(&rw->lock);
		raw_local_irq_restore(flags);
		return 1;
	}

	raw_local_irq_restore(flags);

	/*
	 * If write-locked, we fail to acquire the lock
	 */
	if (rw->counter < 0) {
		return 0;
	}

	/*
	 * Wait until we have a realistic chance at the lock
	 */
	while (__raw_spin_is_locked(&rw->lock) && rw->counter >= 0) {
		cpu_relax();
	}

	goto retry;
}

/*
 * __raw_write_lock()
 *
 * Note that we have to ensure interrupts are disabled in case we're
 * interrupted by some other code that wants to read_trylock() this lock
 */
static inline void __raw_write_lock(raw_rwlock_t *rw)
{
	unsigned long flags;
retry:
	raw_local_irq_save(flags);
	__raw_spin_lock_flags(&rw->lock, flags);

	if (rw->counter != 0) {
		__raw_spin_unlock(&rw->lock);
		raw_local_irq_restore(flags);

		while (rw->counter != 0)
			cpu_relax();

		goto retry;
	}

	rw->counter = -1; /* mark as write-locked */
	mb();
	raw_local_irq_restore(flags);
}

static inline void __raw_write_unlock(raw_rwlock_t *rw)
{
	rw->counter = 0;
	__raw_spin_unlock(&rw->lock);
}

/* Note that we have to ensure interrupts are disabled in case we're
 * interrupted by some other code that wants to read_trylock() this lock */
static inline int __raw_write_trylock(raw_rwlock_t *rw)
{
	unsigned long flags;
	int result = 0;

	raw_local_irq_save(flags);
	if (__raw_spin_trylock(&rw->lock)) {
		if (rw->counter == 0) {
			rw->counter = -1;
			result = 1;
		} else {
			/* Read-locked.  Oh well. */
			__raw_spin_unlock(&rw->lock);
		}
	}
	raw_local_irq_restore(flags);

	return result;
}

/*
 * read_can_lock - would read_trylock() succeed?
 * @lock: the rwlock in question.
 */
static inline int __raw_read_can_lock(raw_rwlock_t *rw)
{
	return rw->counter >= 0;
}

/*
 * write_can_lock - would write_trylock() succeed?
 * @lock: the rwlock in question.
 */
static inline int __raw_write_can_lock(raw_rwlock_t *rw)
{
	return !rw->counter;
}

#define __raw_read_lock_flags(lock, flags) __raw_read_lock(lock)
#define __raw_write_lock_flags(lock, flags) __raw_write_lock(lock)

#define _raw_spin_relax(lock)	cpu_relax()
#define _raw_read_relax(lock)	cpu_relax()
#define _raw_write_relax(lock)	cpu_relax()

#endif /* _ASM_UBICOM32_SPINLOCK_H */