summaryrefslogtreecommitdiff
path: root/kern/spinlock.h
blob: 01329f1de082cd099fb93489bda7385edd06cc7d (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
/*
 * Copyright (c) 2012, 2013 Richard Braun.
 *
 * This program 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 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 *
 * Spin lock.
 *
 * Critical sections built with spin locks run with preemption disabled.
 */

#ifndef _KERN_SPINLOCK_H
#define _KERN_SPINLOCK_H

#include <kern/assert.h>
#include <kern/macros.h>
#include <kern/spinlock_i.h>
#include <kern/thread.h>
#include <machine/cpu.h>

struct spinlock;

#define SPINLOCK_INITIALIZER { 0 }

static inline void
spinlock_init(struct spinlock *lock)
{
    lock->locked = 0;
}

#define spinlock_assert_locked(lock) assert((lock)->locked)

/*
 * Return 0 on success, 1 if busy.
 */
static inline int
spinlock_trylock(struct spinlock *lock)
{
    int busy;

    thread_preempt_disable();
    busy = spinlock_tryacquire(lock);

    if (busy)
        thread_preempt_enable();

    return busy;
}

static inline void
spinlock_lock(struct spinlock *lock)
{
    thread_preempt_disable();
    spinlock_acquire(lock);
}

static inline void
spinlock_unlock(struct spinlock *lock)
{
    spinlock_release(lock);
    thread_preempt_enable();
}

/*
 * Versions of the spinlock functions that also disable interrupts during
 * critical sections.
 */

static inline int
spinlock_trylock_intr_save(struct spinlock *lock, unsigned long *flags)
{
    int busy;

    thread_preempt_disable();
    *flags = cpu_intr_save();
    busy = spinlock_tryacquire(lock);

    if (busy) {
        cpu_intr_restore(*flags);
        thread_preempt_enable();
    }

    return busy;
}

static inline void
spinlock_lock_intr_save(struct spinlock *lock, unsigned long *flags)
{
    thread_preempt_disable();
    *flags = cpu_intr_save();
    spinlock_acquire(lock);
}

static inline void
spinlock_unlock_intr_restore(struct spinlock *lock, unsigned long flags)
{
    spinlock_release(lock);
    cpu_intr_restore(flags);
    thread_preempt_enable();
}

#endif /* _KERN_SPINLOCK_H */