[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>
|
---|
[c0699467] | 44 | #include <abi/ipc/methods.h>
|
---|
| 45 | #include <abi/synch.h>
|
---|
[64d2b10] | 46 | #include <task.h>
|
---|
[b419162] | 47 |
|
---|
[64d2b10] | 48 | typedef void (*ipc_async_callback_t)(void *, int, ipc_call_t *);
|
---|
[b419162] | 49 |
|
---|
[10477601] | 50 | extern ipc_callid_t ipc_wait_cycle(ipc_call_t *, sysarg_t, unsigned int);
|
---|
[057d21a] | 51 | extern void ipc_poke(void);
|
---|
[ca3ba3a] | 52 |
|
---|
[10477601] | 53 | #define ipc_wait_for_call(data) \
|
---|
| 54 | ipc_wait_for_call_timeout(data, SYNCH_NO_TIMEOUT);
|
---|
[ca3ba3a] | 55 |
|
---|
[10477601] | 56 | extern ipc_callid_t ipc_wait_for_call_timeout(ipc_call_t *, sysarg_t);
|
---|
[161ae09] | 57 | extern ipc_callid_t ipc_trywait_for_call(ipc_call_t *);
|
---|
[04a73cdf] | 58 |
|
---|
[b74959bd] | 59 | /*
|
---|
| 60 | * User-friendly wrappers for ipc_answer_fast() and ipc_answer_slow().
|
---|
| 61 | * They are in the form of ipc_answer_m(), where m is the number of return
|
---|
| 62 | * arguments. The macros decide between the fast and the slow version according
|
---|
| 63 | * to m.
|
---|
| 64 | */
|
---|
[10477601] | 65 |
|
---|
[b74959bd] | 66 | #define ipc_answer_0(callid, retval) \
|
---|
[ca3ba3a] | 67 | ipc_answer_fast((callid), (retval), 0, 0, 0, 0)
|
---|
[b74959bd] | 68 | #define ipc_answer_1(callid, retval, arg1) \
|
---|
[ca3ba3a] | 69 | ipc_answer_fast((callid), (retval), (arg1), 0, 0, 0)
|
---|
[b74959bd] | 70 | #define ipc_answer_2(callid, retval, arg1, arg2) \
|
---|
[ca3ba3a] | 71 | ipc_answer_fast((callid), (retval), (arg1), (arg2), 0, 0)
|
---|
[b74959bd] | 72 | #define ipc_answer_3(callid, retval, arg1, arg2, arg3) \
|
---|
[ca3ba3a] | 73 | ipc_answer_fast((callid), (retval), (arg1), (arg2), (arg3), 0)
|
---|
[b74959bd] | 74 | #define ipc_answer_4(callid, retval, arg1, arg2, arg3, arg4) \
|
---|
[ca3ba3a] | 75 | ipc_answer_fast((callid), (retval), (arg1), (arg2), (arg3), (arg4))
|
---|
[b74959bd] | 76 | #define ipc_answer_5(callid, retval, arg1, arg2, arg3, arg4, arg5) \
|
---|
[ca3ba3a] | 77 | ipc_answer_slow((callid), (retval), (arg1), (arg2), (arg3), (arg4), (arg5))
|
---|
[b74959bd] | 78 |
|
---|
[96b02eb9] | 79 | extern sysarg_t ipc_answer_fast(ipc_callid_t, sysarg_t, sysarg_t, sysarg_t,
|
---|
| 80 | sysarg_t, sysarg_t);
|
---|
| 81 | extern sysarg_t ipc_answer_slow(ipc_callid_t, sysarg_t, sysarg_t, sysarg_t,
|
---|
| 82 | sysarg_t, sysarg_t, sysarg_t);
|
---|
[b419162] | 83 |
|
---|
[3209923] | 84 | /*
|
---|
| 85 | * User-friendly wrappers for ipc_call_async_fast() and ipc_call_async_slow().
|
---|
| 86 | * They are in the form of ipc_call_async_m(), where m is the number of payload
|
---|
| 87 | * arguments. The macros decide between the fast and the slow version according
|
---|
| 88 | * to m.
|
---|
| 89 | */
|
---|
[10477601] | 90 |
|
---|
[161ae09] | 91 | #define ipc_call_async_0(phoneid, method, private, callback, can_preempt) \
|
---|
[3209923] | 92 | ipc_call_async_fast((phoneid), (method), 0, 0, 0, 0, (private), \
|
---|
| 93 | (callback), (can_preempt))
|
---|
| 94 | #define ipc_call_async_1(phoneid, method, arg1, private, callback, \
|
---|
| 95 | can_preempt) \
|
---|
| 96 | ipc_call_async_fast((phoneid), (method), (arg1), 0, 0, 0, (private), \
|
---|
| 97 | (callback), (can_preempt))
|
---|
| 98 | #define ipc_call_async_2(phoneid, method, arg1, arg2, private, callback, \
|
---|
| 99 | can_preempt) \
|
---|
| 100 | ipc_call_async_fast((phoneid), (method), (arg1), (arg2), 0, 0, \
|
---|
| 101 | (private), (callback), (can_preempt))
|
---|
| 102 | #define ipc_call_async_3(phoneid, method, arg1, arg2, arg3, private, callback, \
|
---|
| 103 | can_preempt) \
|
---|
| 104 | ipc_call_async_fast((phoneid), (method), (arg1), (arg2), (arg3), 0, \
|
---|
| 105 | (private), (callback), (can_preempt))
|
---|
| 106 | #define ipc_call_async_4(phoneid, method, arg1, arg2, arg3, arg4, private, \
|
---|
| 107 | callback, can_preempt) \
|
---|
| 108 | ipc_call_async_fast((phoneid), (method), (arg1), (arg2), (arg3), \
|
---|
| 109 | (arg4), (private), (callback), (can_preempt))
|
---|
| 110 | #define ipc_call_async_5(phoneid, method, arg1, arg2, arg3, arg4, arg5, \
|
---|
| 111 | private, callback, can_preempt) \
|
---|
| 112 | ipc_call_async_slow((phoneid), (method), (arg1), (arg2), (arg3), \
|
---|
| 113 | (arg4), (arg5), (private), (callback), (can_preempt))
|
---|
| 114 |
|
---|
[96b02eb9] | 115 | extern void ipc_call_async_fast(int, sysarg_t, sysarg_t, sysarg_t, sysarg_t,
|
---|
[10477601] | 116 | sysarg_t, void *, ipc_async_callback_t, bool);
|
---|
[96b02eb9] | 117 | extern void ipc_call_async_slow(int, sysarg_t, sysarg_t, sysarg_t, sysarg_t,
|
---|
[10477601] | 118 | sysarg_t, sysarg_t, void *, ipc_async_callback_t, bool);
|
---|
| 119 |
|
---|
[161ae09] | 120 | extern int ipc_hangup(int);
|
---|
[10477601] | 121 |
|
---|
| 122 | extern int ipc_forward_fast(ipc_callid_t, int, sysarg_t, sysarg_t, sysarg_t,
|
---|
| 123 | unsigned int);
|
---|
| 124 | extern int ipc_forward_slow(ipc_callid_t, int, sysarg_t, sysarg_t, sysarg_t,
|
---|
| 125 | sysarg_t, sysarg_t, sysarg_t, unsigned int);
|
---|
[a55d5f9f] | 126 |
|
---|
[161ae09] | 127 | extern int ipc_connect_kbox(task_id_t);
|
---|
[9a1b20c] | 128 |
|
---|
[b419162] | 129 | #endif
|
---|
[b2951e2] | 130 |
|
---|
[fadd381] | 131 | /** @}
|
---|
[b2951e2] | 132 | */
|
---|