source: mainline/uspace/lib/c/include/ipc/ipc.h@ 64d2b10

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

libc: do not intermix low-level IPC methods with async framework methods

  • Property mode set to 100644
File size: 13.2 KB
RevLine 
[b419162]1/*
[df4ed85]2 * Copyright (c) 2006 Ondrej Palkovsky
[b419162]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.
[b2951e2]27 */
28
[fadd381]29/** @addtogroup libcipc
[b2951e2]30 * @{
31 */
32/** @file
[ca3ba3a]33 */
[b419162]34
[64d2b10]35#if ((defined(LIBC_ASYNC_H_)) && (!defined(LIBC_ASYNC_C_)))
36 #error Do not intermix low-level IPC interface and async framework
37#endif
38
[68a2be19]39#ifndef LIBC_IPC_H_
40#define LIBC_IPC_H_
[b419162]41
[5d4e90f0]42#include <sys/types.h>
[64d2b10]43#include <ipc/common.h>
[80649a91]44#include <kernel/synch/synch.h>
[64d2b10]45#include <task.h>
[b419162]46
[64d2b10]47typedef void (*ipc_async_callback_t)(void *, int, ipc_call_t *);
[b419162]48
[2e51969]49/*
50 * User-friendly wrappers for ipc_call_sync_fast() and ipc_call_sync_slow().
51 * They are in the form ipc_call_sync_m_n(), where m denotes the number of
52 * arguments of payload and n denotes number of return values. Whenever
53 * possible, the fast version is used.
54 */
55#define ipc_call_sync_0_0(phoneid, method) \
[ca3ba3a]56 ipc_call_sync_fast((phoneid), (method), 0, 0, 0, 0, 0, 0, 0, 0)
[2e51969]57#define ipc_call_sync_0_1(phoneid, method, res1) \
[ca3ba3a]58 ipc_call_sync_fast((phoneid), (method), 0, 0, 0, (res1), 0, 0, 0, 0)
[2e51969]59#define ipc_call_sync_0_2(phoneid, method, res1, res2) \
[ca3ba3a]60 ipc_call_sync_fast((phoneid), (method), 0, 0, 0, (res1), (res2), 0, 0, 0)
[2e51969]61#define ipc_call_sync_0_3(phoneid, method, res1, res2, res3) \
[ca3ba3a]62 ipc_call_sync_fast((phoneid), (method), 0, 0, 0, (res1), (res2), (res3), \
63 0, 0)
[2e51969]64#define ipc_call_sync_0_4(phoneid, method, res1, res2, res3, res4) \
[ca3ba3a]65 ipc_call_sync_fast((phoneid), (method), 0, 0, 0, (res1), (res2), (res3), \
66 (res4), 0)
[2e51969]67#define ipc_call_sync_0_5(phoneid, method, res1, res2, res3, res4, res5) \
[ca3ba3a]68 ipc_call_sync_fast((phoneid), (method), 0, 0, 0, (res1), (res2), (res3), \
69 (res4), (res5))
70
[2e51969]71#define ipc_call_sync_1_0(phoneid, method, arg1) \
[ca3ba3a]72 ipc_call_sync_fast((phoneid), (method), (arg1), 0, 0, 0, 0, 0, 0, 0)
[2e51969]73#define ipc_call_sync_1_1(phoneid, method, arg1, res1) \
[ca3ba3a]74 ipc_call_sync_fast((phoneid), (method), (arg1), 0, 0, (res1), 0, 0, 0, 0)
[2e51969]75#define ipc_call_sync_1_2(phoneid, method, arg1, res1, res2) \
[ca3ba3a]76 ipc_call_sync_fast((phoneid), (method), (arg1), 0, 0, (res1), (res2), 0, \
77 0, 0)
[2e51969]78#define ipc_call_sync_1_3(phoneid, method, arg1, res1, res2, res3) \
[ca3ba3a]79 ipc_call_sync_fast((phoneid), (method), (arg1), 0, 0, (res1), (res2), \
80 (res3), 0, 0)
[2e51969]81#define ipc_call_sync_1_4(phoneid, method, arg1, res1, res2, res3, res4) \
[ca3ba3a]82 ipc_call_sync_fast((phoneid), (method), (arg1), 0, 0, (res1), (res2), \
83 (res3), (res4), 0)
[2e51969]84#define ipc_call_sync_1_5(phoneid, method, arg1, res1, res2, res3, res4, \
85 res5) \
86 ipc_call_sync_fast((phoneid), (method), (arg1), 0, 0, (res1), (res2), \
87 (res3), (res4), (res5))
[ca3ba3a]88
[2e51969]89#define ipc_call_sync_2_0(phoneid, method, arg1, arg2) \
[ca3ba3a]90 ipc_call_sync_fast((phoneid), (method), (arg1), (arg2), 0, 0, 0, 0, \
91 0, 0)
[2e51969]92#define ipc_call_sync_2_1(phoneid, method, arg1, arg2, res1) \
[ca3ba3a]93 ipc_call_sync_fast((phoneid), (method), (arg1), (arg2), 0, (res1), 0, 0, \
94 0, 0)
[2e51969]95#define ipc_call_sync_2_2(phoneid, method, arg1, arg2, res1, res2) \
[ca3ba3a]96 ipc_call_sync_fast((phoneid), (method), (arg1), (arg2), 0, (res1), \
97 (res2), 0, 0, 0)
[2e51969]98#define ipc_call_sync_2_3(phoneid, method, arg1, arg2, res1, res2, res3) \
[ca3ba3a]99 ipc_call_sync_fast((phoneid), (method), (arg1), (arg2), 0, (res1), \
100 (res2), (res3), 0, 0)
[2e51969]101#define ipc_call_sync_2_4(phoneid, method, arg1, arg2, res1, res2, res3, \
102 res4) \
103 ipc_call_sync_fast((phoneid), (method), (arg1), (arg2), 0, (res1), \
104 (res2), (res3), (res4), 0)
105#define ipc_call_sync_2_5(phoneid, method, arg1, arg2, res1, res2, res3, \
106 res4, res5)\
107 ipc_call_sync_fast((phoneid), (method), (arg1), (arg2), 0, (res1), \
108 (res2), (res3), (res4), (res5))
[ca3ba3a]109
[2e51969]110#define ipc_call_sync_3_0(phoneid, method, arg1, arg2, arg3) \
[ca3ba3a]111 ipc_call_sync_fast((phoneid), (method), (arg1), (arg2), (arg3), 0, 0, 0, \
112 0, 0)
[2e51969]113#define ipc_call_sync_3_1(phoneid, method, arg1, arg2, arg3, res1) \
[ca3ba3a]114 ipc_call_sync_fast((phoneid), (method), (arg1), (arg2), (arg3), (res1), \
115 0, 0, 0, 0)
[2e51969]116#define ipc_call_sync_3_2(phoneid, method, arg1, arg2, arg3, res1, res2) \
[ca3ba3a]117 ipc_call_sync_fast((phoneid), (method), (arg1), (arg2), (arg3), (res1), \
118 (res2), 0, 0, 0)
[2e51969]119#define ipc_call_sync_3_3(phoneid, method, arg1, arg2, arg3, res1, res2, \
120 res3) \
121 ipc_call_sync_fast((phoneid), (method), (arg1), (arg2), (arg3), \
122 (res1), (res2), (res3), 0, 0)
123#define ipc_call_sync_3_4(phoneid, method, arg1, arg2, arg3, res1, res2, \
124 res3, res4) \
125 ipc_call_sync_fast((phoneid), (method), (arg1), (arg2), (arg3), \
126 (res1), (res2), (res3), (res4), 0)
127#define ipc_call_sync_3_5(phoneid, method, arg1, arg2, arg3, res1, res2, \
128 res3, res4, res5) \
129 ipc_call_sync_fast((phoneid), (method), (arg1), (arg2), (arg3), \
130 (res1), (res2), (res3), (res4), (res5))
[ca3ba3a]131
[2e51969]132#define ipc_call_sync_4_0(phoneid, method, arg1, arg2, arg3, arg4) \
[ca3ba3a]133 ipc_call_sync_slow((phoneid), (method), (arg1), (arg2), (arg3), (arg4), 0, \
134 0, 0, 0, 0, 0)
[2e51969]135#define ipc_call_sync_4_1(phoneid, method, arg1, arg2, arg3, arg4, res1) \
[ca3ba3a]136 ipc_call_sync_slow((phoneid), (method), (arg1), (arg2), (arg3), (arg4), 0, \
137 (res1), 0, 0, 0, 0)
[2e51969]138#define ipc_call_sync_4_2(phoneid, method, arg1, arg2, arg3, arg4, res1, res2) \
[ca3ba3a]139 ipc_call_sync_slow((phoneid), (method), (arg1), (arg2), (arg3), (arg4), 0, \
140 (res1), (res2), 0, 0, 0)
[2e51969]141#define ipc_call_sync_4_3(phoneid, method, arg1, arg2, arg3, arg4, res1, res2, \
142 res3) \
143 ipc_call_sync_slow((phoneid), (method), (arg1), (arg2), (arg3), \
[1383356]144 (arg4), 0, (res1), (res2), (res3), 0, 0)
[2e51969]145#define ipc_call_sync_4_4(phoneid, method, arg1, arg2, arg3, arg4, res1, res2, \
146 res3, res4) \
147 ipc_call_sync_slow((phoneid), (method), (arg1), (arg2), (arg3), \
[1383356]148 (arg4), 0, (res1), (res2), (res3), (res4), 0)
[2e51969]149#define ipc_call_sync_4_5(phoneid, method, arg1, arg2, arg3, arg4, res1, res2, \
150 res3, res4, res5) \
151 ipc_call_sync_slow((phoneid), (method), (arg1), (arg2), (arg3), \
[1383356]152 (arg4), 0, (res1), (res2), (res3), (res4), (res5))
[ca3ba3a]153
[2e51969]154#define ipc_call_sync_5_0(phoneid, method, arg1, arg2, arg3, arg4, arg5) \
[ca3ba3a]155 ipc_call_sync_slow((phoneid), (method), (arg1), (arg2), (arg3), (arg4), \
156 (arg5), 0, 0, 0, 0, 0)
[2e51969]157#define ipc_call_sync_5_1(phoneid, method, arg1, arg2, arg3, arg4, arg5, res1) \
[ca3ba3a]158 ipc_call_sync_slow((phoneid), (method), (arg1), (arg2), (arg3), (arg4), \
159 (arg5), (res1), 0, 0, 0, 0)
[2e51969]160#define ipc_call_sync_5_2(phoneid, method, arg1, arg2, arg3, arg4, arg5, res1, \
161 res2) \
162 ipc_call_sync_slow((phoneid), (method), (arg1), (arg2), (arg3), \
163 (arg4), (arg5), (res1), (res2), 0, 0, 0)
164#define ipc_call_sync_5_3(phoneid, method, arg1, arg2, arg3, arg4, arg5, res1, \
165 res2, res3) \
166 ipc_call_sync_slow((phoneid), (method), (arg1), (arg2), (arg3), \
167 (arg4), (arg5), (res1), (res2), (res3), 0, 0)
168#define ipc_call_sync_5_4(phoneid, method, arg1, arg2, arg3, arg4, arg5, res1, \
169 res2, res3, res4) \
170 ipc_call_sync_slow((phoneid), (method), (arg1), (arg2), (arg3), \
171 (arg4), (arg5), (res1), (res2), (res3), (res4), 0)
172#define ipc_call_sync_5_5(phoneid, method, arg1, arg2, arg3, arg4, arg5, res1, \
173 res2, res3, res4, res5) \
174 ipc_call_sync_slow((phoneid), (method), (arg1), (arg2), (arg3), \
175 (arg4), (arg5), (res1), (res2), (res3), (res4), (res5))
176
[96b02eb9]177extern int ipc_call_sync_fast(int, sysarg_t, sysarg_t, sysarg_t, sysarg_t,
178 sysarg_t *, sysarg_t *, sysarg_t *, sysarg_t *, sysarg_t *);
[2e51969]179
[96b02eb9]180extern int ipc_call_sync_slow(int, sysarg_t, sysarg_t, sysarg_t, sysarg_t,
181 sysarg_t, sysarg_t, sysarg_t *, sysarg_t *, sysarg_t *, sysarg_t *,
182 sysarg_t *);
[06502f7d]183
[161ae09]184extern ipc_callid_t ipc_wait_cycle(ipc_call_t *, uint32_t, int);
185extern ipc_callid_t ipc_wait_for_call_timeout(ipc_call_t *, uint32_t);
[057d21a]186extern void ipc_poke(void);
[ca3ba3a]187
[80649a91]188static inline ipc_callid_t ipc_wait_for_call(ipc_call_t *data)
189{
190 return ipc_wait_for_call_timeout(data, SYNCH_NO_TIMEOUT);
191}
[ca3ba3a]192
[161ae09]193extern ipc_callid_t ipc_trywait_for_call(ipc_call_t *);
[04a73cdf]194
[b74959bd]195/*
196 * User-friendly wrappers for ipc_answer_fast() and ipc_answer_slow().
197 * They are in the form of ipc_answer_m(), where m is the number of return
198 * arguments. The macros decide between the fast and the slow version according
199 * to m.
200 */
201#define ipc_answer_0(callid, retval) \
[ca3ba3a]202 ipc_answer_fast((callid), (retval), 0, 0, 0, 0)
[b74959bd]203#define ipc_answer_1(callid, retval, arg1) \
[ca3ba3a]204 ipc_answer_fast((callid), (retval), (arg1), 0, 0, 0)
[b74959bd]205#define ipc_answer_2(callid, retval, arg1, arg2) \
[ca3ba3a]206 ipc_answer_fast((callid), (retval), (arg1), (arg2), 0, 0)
[b74959bd]207#define ipc_answer_3(callid, retval, arg1, arg2, arg3) \
[ca3ba3a]208 ipc_answer_fast((callid), (retval), (arg1), (arg2), (arg3), 0)
[b74959bd]209#define ipc_answer_4(callid, retval, arg1, arg2, arg3, arg4) \
[ca3ba3a]210 ipc_answer_fast((callid), (retval), (arg1), (arg2), (arg3), (arg4))
[b74959bd]211#define ipc_answer_5(callid, retval, arg1, arg2, arg3, arg4, arg5) \
[ca3ba3a]212 ipc_answer_slow((callid), (retval), (arg1), (arg2), (arg3), (arg4), (arg5))
[b74959bd]213
[96b02eb9]214extern sysarg_t ipc_answer_fast(ipc_callid_t, sysarg_t, sysarg_t, sysarg_t,
215 sysarg_t, sysarg_t);
216extern sysarg_t ipc_answer_slow(ipc_callid_t, sysarg_t, sysarg_t, sysarg_t,
217 sysarg_t, sysarg_t, sysarg_t);
[b419162]218
[3209923]219/*
220 * User-friendly wrappers for ipc_call_async_fast() and ipc_call_async_slow().
221 * They are in the form of ipc_call_async_m(), where m is the number of payload
222 * arguments. The macros decide between the fast and the slow version according
223 * to m.
224 */
[161ae09]225#define ipc_call_async_0(phoneid, method, private, callback, can_preempt) \
[3209923]226 ipc_call_async_fast((phoneid), (method), 0, 0, 0, 0, (private), \
227 (callback), (can_preempt))
228#define ipc_call_async_1(phoneid, method, arg1, private, callback, \
229 can_preempt) \
230 ipc_call_async_fast((phoneid), (method), (arg1), 0, 0, 0, (private), \
231 (callback), (can_preempt))
232#define ipc_call_async_2(phoneid, method, arg1, arg2, private, callback, \
233 can_preempt) \
234 ipc_call_async_fast((phoneid), (method), (arg1), (arg2), 0, 0, \
235 (private), (callback), (can_preempt))
236#define ipc_call_async_3(phoneid, method, arg1, arg2, arg3, private, callback, \
237 can_preempt) \
238 ipc_call_async_fast((phoneid), (method), (arg1), (arg2), (arg3), 0, \
239 (private), (callback), (can_preempt))
240#define ipc_call_async_4(phoneid, method, arg1, arg2, arg3, arg4, private, \
241 callback, can_preempt) \
242 ipc_call_async_fast((phoneid), (method), (arg1), (arg2), (arg3), \
243 (arg4), (private), (callback), (can_preempt))
244#define ipc_call_async_5(phoneid, method, arg1, arg2, arg3, arg4, arg5, \
245 private, callback, can_preempt) \
246 ipc_call_async_slow((phoneid), (method), (arg1), (arg2), (arg3), \
247 (arg4), (arg5), (private), (callback), (can_preempt))
248
[96b02eb9]249extern void ipc_call_async_fast(int, sysarg_t, sysarg_t, sysarg_t, sysarg_t,
250 sysarg_t, void *, ipc_async_callback_t, int);
251extern void ipc_call_async_slow(int, sysarg_t, sysarg_t, sysarg_t, sysarg_t,
252 sysarg_t, sysarg_t, void *, ipc_async_callback_t, int);
[b1f51f0]253
[124c061]254extern int ipc_connect_to_me(int, int, int, int, sysarg_t *, sysarg_t *);
[161ae09]255extern int ipc_connect_me_to(int, int, int, int);
[19b28b0]256extern int ipc_connect_me_to_blocking(int, int, int, int);
[161ae09]257extern int ipc_hangup(int);
[96b02eb9]258extern int ipc_forward_fast(ipc_callid_t, int, int, sysarg_t, sysarg_t, int);
259extern int ipc_forward_slow(ipc_callid_t, int, int, sysarg_t, sysarg_t,
260 sysarg_t, sysarg_t, sysarg_t, int);
[a55d5f9f]261
[27d293a]262/*
[215e375]263 * User-friendly wrappers for ipc_share_in_start().
[27d293a]264 */
[215e375]265#define ipc_share_in_start_0_0(phoneid, dst, size) \
[ca3ba3a]266 ipc_share_in_start((phoneid), (dst), (size), 0, NULL)
[215e375]267#define ipc_share_in_start_0_1(phoneid, dst, size, flags) \
[ca3ba3a]268 ipc_share_in_start((phoneid), (dst), (size), 0, (flags))
[215e375]269#define ipc_share_in_start_1_0(phoneid, dst, size, arg) \
[ca3ba3a]270 ipc_share_in_start((phoneid), (dst), (size), (arg), NULL)
[215e375]271#define ipc_share_in_start_1_1(phoneid, dst, size, arg, flags) \
[ca3ba3a]272 ipc_share_in_start((phoneid), (dst), (size), (arg), (flags))
[27d293a]273
[96b02eb9]274extern int ipc_share_in_start(int, void *, size_t, sysarg_t, int *);
[161ae09]275extern int ipc_share_in_finalize(ipc_callid_t, void *, int );
276extern int ipc_share_out_start(int, void *, int);
277extern int ipc_share_out_finalize(ipc_callid_t, void *);
278extern int ipc_data_read_start(int, void *, size_t);
279extern int ipc_data_read_finalize(ipc_callid_t, const void *, size_t);
280extern int ipc_data_write_start(int, const void *, size_t);
281extern int ipc_data_write_finalize(ipc_callid_t, void *, size_t);
[183b4a0]282
[161ae09]283extern int ipc_connect_kbox(task_id_t);
[9a1b20c]284
[b419162]285#endif
[b2951e2]286
[fadd381]287/** @}
[b2951e2]288 */
Note: See TracBrowser for help on using the repository browser.