Constify second parameter of timeval{add,sub}()
[dragonfly.git] / sys / kern / lwkt_serialize.c
1 /*
2  * Copyright (c) 2005 The DragonFly Project.  All rights reserved.
3  * 
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  * 
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  * 
34  * $DragonFly: src/sys/kern/lwkt_serialize.c,v 1.10 2008/04/02 13:11:48 sephe Exp $
35  */
36 /*
37  * This API provides a fast locked-bus-cycle-based serializer.  It's
38  * basically a low level NON-RECURSIVE exclusive lock that can be held across
39  * a blocking condition.  It is NOT a mutex.
40  *
41  * This serializer is primarily designed for low level situations and
42  * interrupt/device interaction.  There are two primary facilities.  First,
43  * the serializer facility itself.  Second, an integrated interrupt handler 
44  * disablement facility.
45  */
46
47 #include "opt_serializer.h"
48
49 #include <sys/param.h>
50 #include <sys/systm.h>
51 #include <sys/kernel.h>
52 #include <sys/proc.h>
53 #include <sys/rtprio.h>
54 #include <sys/queue.h>
55 #include <sys/thread2.h>
56 #include <sys/serialize.h>
57 #include <sys/sysctl.h>
58 #include <sys/kthread.h>
59 #include <machine/cpu.h>
60 #include <sys/lock.h>
61 #include <sys/caps.h>
62
63 static void lwkt_serialize_sleep(void *info);
64 static void lwkt_serialize_wakeup(void *info);
65
66 void
67 lwkt_serialize_init(lwkt_serialize_t s)
68 {
69     atomic_intr_init(&s->interlock);
70 #ifdef INVARIANTS
71     s->last_td = (void *)-4;
72 #endif
73 #ifdef PROFILE_SERIALIZER
74     s->sleep_cnt = 0;
75     s->tryfail_cnt = 0;
76 #endif
77 }
78
79 void
80 lwkt_serialize_enter(lwkt_serialize_t s)
81 {
82 #ifdef INVARIANTS
83     KKASSERT(s->last_td != curthread);
84 #endif
85     atomic_intr_cond_enter(&s->interlock, lwkt_serialize_sleep, s);
86 #ifdef INVARIANTS
87     s->last_td = curthread;
88 #endif
89 }
90
91 /*
92  * Returns non-zero on success
93  */
94 int
95 lwkt_serialize_try(lwkt_serialize_t s)
96 {
97     int error;
98
99 #ifdef INVARIANTS
100     KKASSERT(s->last_td != curthread);
101 #endif
102     if ((error = atomic_intr_cond_try(&s->interlock)) == 0) {
103 #ifdef INVARIANTS
104         s->last_td = curthread;
105 #endif
106         return(1);
107     }
108 #ifdef PROFILE_SERIALIZER
109     s->tryfail_cnt++;
110 #endif
111     return (0);
112 }
113
114 void
115 lwkt_serialize_exit(lwkt_serialize_t s)
116 {
117 #ifdef INVARIANTS
118     KKASSERT(s->last_td == curthread);
119     s->last_td = (void *)-2;
120 #endif
121     atomic_intr_cond_exit(&s->interlock, lwkt_serialize_wakeup, s);
122 }
123
124 /*
125  * Interrupt handler disablement support, used by drivers.  Non-stackable
126  * (uses bit 30).
127  */
128 void
129 lwkt_serialize_handler_disable(lwkt_serialize_t s)
130 {
131     atomic_intr_handler_disable(&s->interlock);
132 }
133
134 void
135 lwkt_serialize_handler_enable(lwkt_serialize_t s)
136 {
137     atomic_intr_handler_enable(&s->interlock);
138 }
139
140 void
141 lwkt_serialize_handler_call(lwkt_serialize_t s, void (*func)(void *, void *), 
142                             void *arg, void *frame)
143 {
144     /*
145      * note: a return value of 0 indicates that the interrupt handler is 
146      * enabled.
147      */
148     if (atomic_intr_handler_is_enabled(&s->interlock) == 0) {
149         atomic_intr_cond_enter(&s->interlock, lwkt_serialize_sleep, s);
150 #ifdef INVARIANTS
151         s->last_td = curthread;
152 #endif
153         if (atomic_intr_handler_is_enabled(&s->interlock) == 0)
154             func(arg, frame);
155 #ifdef INVARIANTS
156         KKASSERT(s->last_td == curthread);
157         s->last_td = (void *)-2;
158 #endif
159         atomic_intr_cond_exit(&s->interlock, lwkt_serialize_wakeup, s);
160     }
161 }
162
163 /*
164  * Similar to handler_call but does not block.  Returns 0 on success, 
165  * and 1 on failure.
166  */
167 int
168 lwkt_serialize_handler_try(lwkt_serialize_t s, void (*func)(void *, void *),
169                            void *arg, void *frame)
170 {
171     /*
172      * note: a return value of 0 indicates that the interrupt handler is 
173      * enabled.
174      */
175     if (atomic_intr_handler_is_enabled(&s->interlock) == 0) {
176         if (atomic_intr_cond_try(&s->interlock) == 0) {
177 #ifdef INVARIANTS
178             s->last_td = curthread;
179 #endif
180             func(arg, frame);
181 #ifdef INVARIANTS
182             KKASSERT(s->last_td == curthread);
183             s->last_td = (void *)-2;
184 #endif
185             atomic_intr_cond_exit(&s->interlock, lwkt_serialize_wakeup, s);
186             return(0);
187         }
188     }
189 #ifdef PROFILE_SERIALIZER
190     s->tryfail_cnt++;
191 #endif
192     return(1);
193 }
194
195
196 /*
197  * Helper functions
198  *
199  * It is possible to race an interrupt which acquires and releases the
200  * bit, then calls wakeup before we actually go to sleep, so we
201  * need to check that the interlock is still acquired from within
202  * a critical section prior to sleeping.
203  */
204 static void
205 lwkt_serialize_sleep(void *info)
206 {
207     lwkt_serialize_t s = info;
208     crit_enter();
209     tsleep_interlock(s);
210     if (atomic_intr_cond_test(&s->interlock) != 0) {
211 #ifdef PROFILE_SERIALIZER
212             s->sleep_cnt++;
213 #endif
214             tsleep(s, 0, "slize", 0);
215     }
216     crit_exit();
217 }
218
219 static void
220 lwkt_serialize_wakeup(void *info)
221 {
222     wakeup(info);
223 }
224