2 * Copyright (c) 2005 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
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.
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
34 * $DragonFly: src/sys/kern/lwkt_serialize.c,v 1.12 2008/04/29 16:00:12 sephe Exp $
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.
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.
47 #include "opt_serializer.h"
49 #include <sys/param.h>
50 #include <sys/systm.h>
51 #include <sys/kernel.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>
59 #include <sys/kthread.h>
60 #include <machine/cpu.h>
64 #define SLZ_KTR_STRING "slz=%p"
65 #define SLZ_KTR_ARG_SIZE (sizeof(void *))
67 #ifndef KTR_SERIALIZER
68 #define KTR_SERIALIZER KTR_ALL
72 KTR_INFO(KTR_SERIALIZER
, slz
, enter
, 0, SLZ_KTR_STRING
, SLZ_KTR_ARG_SIZE
);
73 KTR_INFO(KTR_SERIALIZER
, slz
, sleep
, 1, SLZ_KTR_STRING
, SLZ_KTR_ARG_SIZE
);
74 KTR_INFO(KTR_SERIALIZER
, slz
, exit
, 2, SLZ_KTR_STRING
, SLZ_KTR_ARG_SIZE
);
75 KTR_INFO(KTR_SERIALIZER
, slz
, wakeup
, 3, SLZ_KTR_STRING
, SLZ_KTR_ARG_SIZE
);
76 KTR_INFO(KTR_SERIALIZER
, slz
, try, 4, SLZ_KTR_STRING
, SLZ_KTR_ARG_SIZE
);
77 KTR_INFO(KTR_SERIALIZER
, slz
, tryfail
, 5, SLZ_KTR_STRING
, SLZ_KTR_ARG_SIZE
);
78 KTR_INFO(KTR_SERIALIZER
, slz
, tryok
, 6, SLZ_KTR_STRING
, SLZ_KTR_ARG_SIZE
);
80 #define logslz(name, slz) KTR_LOG(slz_ ## name, slz)
82 static void lwkt_serialize_sleep(void *info
);
83 static void lwkt_serialize_wakeup(void *info
);
86 lwkt_serialize_init(lwkt_serialize_t s
)
88 atomic_intr_init(&s
->interlock
);
90 s
->last_td
= (void *)-4;
99 lwkt_serialize_enter(lwkt_serialize_t s
)
102 KKASSERT(s
->last_td
!= curthread
);
105 atomic_intr_cond_enter(&s
->interlock
, lwkt_serialize_sleep
, s
);
107 s
->last_td
= curthread
;
109 #ifdef PROFILE_SERIALIZER
115 * Returns non-zero on success
118 lwkt_serialize_try(lwkt_serialize_t s
)
123 KKASSERT(s
->last_td
!= curthread
);
125 #ifdef PROFILE_SERIALIZER
129 if ((error
= atomic_intr_cond_try(&s
->interlock
)) == 0) {
131 s
->last_td
= curthread
;
136 #ifdef PROFILE_SERIALIZER
144 lwkt_serialize_exit(lwkt_serialize_t s
)
147 KKASSERT(s
->last_td
== curthread
);
148 s
->last_td
= (void *)-2;
151 atomic_intr_cond_exit(&s
->interlock
, lwkt_serialize_wakeup
, s
);
155 * Interrupt handler disablement support, used by drivers. Non-stackable
159 lwkt_serialize_handler_disable(lwkt_serialize_t s
)
161 atomic_intr_handler_disable(&s
->interlock
);
165 lwkt_serialize_handler_enable(lwkt_serialize_t s
)
167 atomic_intr_handler_enable(&s
->interlock
);
171 lwkt_serialize_handler_call(lwkt_serialize_t s
, void (*func
)(void *, void *),
172 void *arg
, void *frame
)
175 * note: a return value of 0 indicates that the interrupt handler is
178 if (atomic_intr_handler_is_enabled(&s
->interlock
) == 0) {
180 atomic_intr_cond_enter(&s
->interlock
, lwkt_serialize_sleep
, s
);
182 s
->last_td
= curthread
;
184 #ifdef PROFILE_SERIALIZER
187 if (atomic_intr_handler_is_enabled(&s
->interlock
) == 0)
190 KKASSERT(s
->last_td
== curthread
);
191 s
->last_td
= (void *)-2;
194 atomic_intr_cond_exit(&s
->interlock
, lwkt_serialize_wakeup
, s
);
199 * Similar to handler_call but does not block. Returns 0 on success,
203 lwkt_serialize_handler_try(lwkt_serialize_t s
, void (*func
)(void *, void *),
204 void *arg
, void *frame
)
207 * note: a return value of 0 indicates that the interrupt handler is
210 if (atomic_intr_handler_is_enabled(&s
->interlock
) == 0) {
211 #ifdef PROFILE_SERIALIZER
215 if (atomic_intr_cond_try(&s
->interlock
) == 0) {
217 s
->last_td
= curthread
;
222 KKASSERT(s
->last_td
== curthread
);
223 s
->last_td
= (void *)-2;
226 atomic_intr_cond_exit(&s
->interlock
, lwkt_serialize_wakeup
, s
);
230 #ifdef PROFILE_SERIALIZER
241 * It is possible to race an interrupt which acquires and releases the
242 * bit, then calls wakeup before we actually go to sleep, so we
243 * need to check that the interlock is still acquired from within
244 * a critical section prior to sleeping.
247 lwkt_serialize_sleep(void *info
)
249 lwkt_serialize_t s
= info
;
252 if (atomic_intr_cond_test(&s
->interlock
) != 0) {
253 #ifdef PROFILE_SERIALIZER
257 tsleep(s
, 0, "slize", 0);
263 lwkt_serialize_wakeup(void *info
)
265 logslz(wakeup
, info
);