source: mainline/kernel/generic/src/ipc/event.c@ 97d42d5

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 97d42d5 was 97d42d5, checked in by Martin Decky <martin@…>, 14 years ago

get rid of KLOG_LATENCY (thanks to the event notification unmask callback this is no longer needed)

  • Property mode set to 100644
File size: 7.0 KB
Line 
1/*
2 * Copyright (c) 2009 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup generic
30 * @{
31 */
32/**
33 * @file
34 * @brief Kernel event notifications.
35 */
36
37#include <ipc/event.h>
38#include <ipc/event_types.h>
39#include <mm/slab.h>
40#include <typedefs.h>
41#include <synch/spinlock.h>
42#include <console/console.h>
43#include <memstr.h>
44#include <errno.h>
45#include <arch.h>
46
47/** The events array. */
48static event_t events[EVENT_END];
49
50/** Initialize kernel events.
51 *
52 */
53void event_init(void)
54{
55 for (unsigned int i = 0; i < EVENT_END; i++) {
56 spinlock_initialize(&events[i].lock, "event.lock");
57 events[i].answerbox = NULL;
58 events[i].counter = 0;
59 events[i].imethod = 0;
60 events[i].masked = false;
61 events[i].unmask_callback = NULL;
62 }
63}
64
65/** Unsubscribe kernel events associated with an answerbox
66 *
67 * @param answerbox Answerbox to be unsubscribed.
68 *
69 */
70void event_cleanup_answerbox(answerbox_t *answerbox)
71{
72 for (unsigned int i = 0; i < EVENT_END; i++) {
73 spinlock_lock(&events[i].lock);
74
75 if (events[i].answerbox == answerbox) {
76 events[i].answerbox = NULL;
77 events[i].counter = 0;
78 events[i].imethod = 0;
79 events[i].masked = false;
80 }
81
82 spinlock_unlock(&events[i].lock);
83 }
84}
85
86/** Define a callback function for the event unmask event.
87 *
88 * @param evno Event type.
89 * @param callback Callback function to be called when
90 * the event is unmasked.
91 *
92 */
93void event_set_unmask_callback(event_type_t evno, event_callback_t callback)
94{
95 ASSERT(evno < EVENT_END);
96
97 spinlock_lock(&events[evno].lock);
98 events[evno].unmask_callback = callback;
99 spinlock_unlock(&events[evno].lock);
100}
101
102/** Send kernel notification event
103 *
104 * @param evno Event type.
105 * @param mask Mask further notifications after a successful
106 * sending.
107 * @param a1 First argument.
108 * @param a2 Second argument.
109 * @param a3 Third argument.
110 * @param a4 Fourth argument.
111 * @param a5 Fifth argument.
112 *
113 * @return EOK if notification was successfully sent.
114 * @return ENOMEM if the notification IPC message failed to allocate.
115 * @return EBUSY if the notifications of the given type are
116 * currently masked.
117 * @return ENOENT if the notifications of the given type are
118 * currently not subscribed.
119 *
120 */
121int event_notify(event_type_t evno, bool mask, sysarg_t a1, sysarg_t a2,
122 sysarg_t a3, sysarg_t a4, sysarg_t a5)
123{
124 ASSERT(evno < EVENT_END);
125
126 spinlock_lock(&events[evno].lock);
127
128 int ret;
129
130 if (events[evno].answerbox != NULL) {
131 if (!events[evno].masked) {
132 call_t *call = ipc_call_alloc(FRAME_ATOMIC);
133
134 if (call) {
135 call->flags |= IPC_CALL_NOTIF;
136 call->priv = ++events[evno].counter;
137
138 IPC_SET_IMETHOD(call->data, events[evno].imethod);
139 IPC_SET_ARG1(call->data, a1);
140 IPC_SET_ARG2(call->data, a2);
141 IPC_SET_ARG3(call->data, a3);
142 IPC_SET_ARG4(call->data, a4);
143 IPC_SET_ARG5(call->data, a5);
144
145 irq_spinlock_lock(&events[evno].answerbox->irq_lock, true);
146 list_append(&call->link, &events[evno].answerbox->irq_notifs);
147 irq_spinlock_unlock(&events[evno].answerbox->irq_lock, true);
148
149 waitq_wakeup(&events[evno].answerbox->wq, WAKEUP_FIRST);
150
151 if (mask)
152 events[evno].masked = true;
153
154 ret = EOK;
155 } else
156 ret = ENOMEM;
157 } else
158 ret = EBUSY;
159 } else
160 ret = ENOENT;
161
162 spinlock_unlock(&events[evno].lock);
163
164 return ret;
165}
166
167/** Subscribe event notifications
168 *
169 * @param evno Event type.
170 * @param imethod IPC interface and method to be used for
171 * the notifications.
172 * @param answerbox Answerbox to send the notifications to.
173 *
174 * @return EOK if the subscription was successful.
175 * @return EEXISTS if the notifications of the given type are
176 * already subscribed.
177 *
178 */
179static int event_subscribe(event_type_t evno, sysarg_t imethod,
180 answerbox_t *answerbox)
181{
182 ASSERT(evno < EVENT_END);
183
184 spinlock_lock(&events[evno].lock);
185
186 int res;
187
188 if (events[evno].answerbox == NULL) {
189 events[evno].answerbox = answerbox;
190 events[evno].imethod = imethod;
191 events[evno].counter = 0;
192 events[evno].masked = false;
193 res = EOK;
194 } else
195 res = EEXISTS;
196
197 spinlock_unlock(&events[evno].lock);
198
199 return res;
200}
201
202/** Unmask event notifications
203 *
204 * @param evno Event type to unmask.
205 *
206 */
207static void event_unmask(event_type_t evno)
208{
209 ASSERT(evno < EVENT_END);
210
211 spinlock_lock(&events[evno].lock);
212 events[evno].masked = false;
213 event_callback_t callback = events[evno].unmask_callback;
214 spinlock_unlock(&events[evno].lock);
215
216 /*
217 * Check if there is an unmask callback
218 * function defined for this event.
219 */
220 if (callback != NULL)
221 callback();
222}
223
224/** Event notification syscall wrapper
225 *
226 * @param evno Event type to subscribe.
227 * @param imethod IPC interface and method to be used for
228 * the notifications.
229 *
230 * @return EOK on success.
231 * @return ELIMIT on unknown event type.
232 * @return EEXISTS if the notifications of the given type are
233 * already subscribed.
234 *
235 */
236sysarg_t sys_event_subscribe(sysarg_t evno, sysarg_t imethod)
237{
238 if (evno >= EVENT_END)
239 return ELIMIT;
240
241 return (sysarg_t) event_subscribe((event_type_t) evno, (sysarg_t)
242 imethod, &TASK->answerbox);
243}
244
245/** Event notification unmask syscall wrapper
246 *
247 * Note that currently no tests are performed whether the calling
248 * task is entitled to unmask the notifications. However, thanks
249 * to the fact that notification masking is only a performance
250 * optimization, this has probably no security implications.
251 *
252 * @param evno Event type to unmask.
253 *
254 * @return EOK on success.
255 * @return ELIMIT on unknown event type.
256 *
257 */
258sysarg_t sys_event_unmask(sysarg_t evno)
259{
260 if (evno >= EVENT_END)
261 return ELIMIT;
262
263 event_unmask((event_type_t) evno);
264 return EOK;
265}
266
267/** @}
268 */
Note: See TracBrowser for help on using the repository browser.