source: mainline/kernel/generic/include/ipc/ipc.h@ 58c0917

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 58c0917 was 55b77d9, checked in by Jiri Svoboda <jiri@…>, 15 years ago

Separate list_t typedef from link_t (kernel part).

  • list_t represents lists
  • Use list_first(), list_last(), list_empty() where appropriate
  • Use list_foreach() where possible
  • Replace improper uses of list_prepend() with list_insert_after()
  • Replace improper uses of list_append() with list_insert_before()
  • Property mode set to 100644
File size: 6.9 KB
RevLine 
[6d9c49a]1/*
[df4ed85]2 * Copyright (c) 2006 Ondrej Palkovsky
[6d9c49a]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
[06e1e95]29/** @addtogroup genericipc
[b45c443]30 * @{
31 */
32/** @file
33 */
34
[27ab6a7]35#ifndef KERN_IPC_H_
36#define KERN_IPC_H_
[6d9c49a]37
[da1bafb]38/** Length of data being transfered with IPC call
39 *
40 * The uspace may not be able to utilize full length
41 *
42 */
43#define IPC_CALL_LEN 6
[6d9c49a]44
[97d17fe]45/** Maximum active async calls per phone */
46#define IPC_MAX_ASYNC_CALLS 4
[5f62ef9]47
[6d9c49a]48/* Flags for calls */
[80bcaed]49
50/** This is answer to a call */
[da1bafb]51#define IPC_CALL_ANSWERED (1 << 0)
52
[80bcaed]53/** Answer will not be passed to userspace, will be discarded */
[da1bafb]54#define IPC_CALL_DISCARD_ANSWER (1 << 1)
55
[80bcaed]56/** Call was forwarded */
[da1bafb]57#define IPC_CALL_FORWARDED (1 << 2)
58
[80bcaed]59/** Identify connect_me_to answer */
[da1bafb]60#define IPC_CALL_CONN_ME_TO (1 << 3)
61
[80bcaed]62/** Interrupt notification */
[da1bafb]63#define IPC_CALL_NOTIF (1 << 4)
[e74cb73]64
[da1bafb]65
66/** Bits used in call hashes.
67 *
[8b243f2]68 * The addresses are aligned at least to 4 that is why we can use the 2 least
69 * significant bits of the call address.
[da1bafb]70 *
[fbcfd458]71 */
[da1bafb]72
[8b243f2]73/** Type of this call is 'answer' */
[da1bafb]74#define IPC_CALLID_ANSWERED 1
75
[8b243f2]76/** Type of this call is 'notification' */
[da1bafb]77#define IPC_CALLID_NOTIFICATION 2
[e74cb73]78
[8b243f2]79/* Return values from sys_ipc_call_async(). */
[da1bafb]80#define IPC_CALLRET_FATAL -1
81#define IPC_CALLRET_TEMPORARY -2
[e74cb73]82
83
84/* Macros for manipulating calling data */
[da1bafb]85#define IPC_SET_RETVAL(data, retval) ((data).args[0] = (retval))
[228e490]86#define IPC_SET_IMETHOD(data, val) ((data).args[0] = (val))
[da1bafb]87#define IPC_SET_ARG1(data, val) ((data).args[1] = (val))
88#define IPC_SET_ARG2(data, val) ((data).args[2] = (val))
89#define IPC_SET_ARG3(data, val) ((data).args[3] = (val))
90#define IPC_SET_ARG4(data, val) ((data).args[4] = (val))
91#define IPC_SET_ARG5(data, val) ((data).args[5] = (val))
92
[228e490]93#define IPC_GET_IMETHOD(data) ((data).args[0])
94#define IPC_GET_RETVAL(data) ((data).args[0])
[da1bafb]95
96#define IPC_GET_ARG1(data) ((data).args[1])
97#define IPC_GET_ARG2(data) ((data).args[2])
98#define IPC_GET_ARG3(data) ((data).args[3])
99#define IPC_GET_ARG4(data) ((data).args[4])
100#define IPC_GET_ARG5(data) ((data).args[5])
[e74cb73]101
[d40a8ff]102/* Forwarding flags. */
[da1bafb]103#define IPC_FF_NONE 0
104
[9201f47]105/**
106 * The call will be routed as though it was initially sent via the phone used to
107 * forward it. This feature is intended to support the situation in which the
108 * forwarded call needs to be handled by the same connection fibril as any other
109 * calls that were initially sent by the forwarder to the same destination. This
110 * flag has no imapct on routing replies.
[da1bafb]111 *
[9201f47]112 */
[da1bafb]113#define IPC_FF_ROUTE_FROM_ME (1 << 0)
[d40a8ff]114
[f6bffee]115/* Data transfer flags. */
[79ae36dd]116#define IPC_XF_NONE 0
[f6bffee]117
118/** Restrict the transfer size if necessary. */
[79ae36dd]119#define IPC_XF_RESTRICT (1 << 0)
[da1bafb]120
[79ae36dd]121/** User-defined IPC methods */
[da1bafb]122#define IPC_FIRST_USER_METHOD 1024
[2d5a54f3]123
[6d9c49a]124#ifdef KERNEL
125
[21580dd]126#define IPC_MAX_PHONES 32
[fa8e7d2]127
[ff48a15]128#include <synch/spinlock.h>
129#include <synch/mutex.h>
[fa8e7d2]130#include <synch/waitq.h>
131
132struct answerbox;
133struct task;
134
135typedef enum {
[80bcaed]136 /** Phone is free and can be allocated */
137 IPC_PHONE_FREE = 0,
138 /** Phone is connecting somewhere */
139 IPC_PHONE_CONNECTING,
140 /** Phone is connected */
141 IPC_PHONE_CONNECTED,
142 /** Phone is hung up, waiting for answers to come */
143 IPC_PHONE_HUNGUP,
144 /** Phone was hungup from server */
145 IPC_PHONE_SLAMMED
[fa8e7d2]146} ipc_phone_state_t;
147
148/** Structure identifying phone (in TASK structure) */
149typedef struct {
[ff48a15]150 mutex_t lock;
[fa8e7d2]151 link_t link;
152 struct answerbox *callee;
153 ipc_phone_state_t state;
154 atomic_t active_calls;
155} phone_t;
156
157typedef struct answerbox {
[da1bafb]158 IRQ_SPINLOCK_DECLARE(lock);
159
[fa8e7d2]160 struct task *task;
[da1bafb]161
[fa8e7d2]162 waitq_t wq;
[da1bafb]163
[33adc6ce]164 /** Linkage for the list of task's synchronous answerboxes. */
165 link_t sync_box_link;
[da1bafb]166
[8b243f2]167 /** Phones connected to this answerbox. */
[55b77d9]168 list_t connected_phones;
[8b243f2]169 /** Received calls. */
[55b77d9]170 list_t calls;
171 list_t dispatched_calls; /* Should be hash table in the future */
[da1bafb]172
[8b243f2]173 /** Answered calls. */
[55b77d9]174 list_t answers;
[da1bafb]175
176 IRQ_SPINLOCK_DECLARE(irq_lock);
177
[8b243f2]178 /** Notifications from IRQ handlers. */
[55b77d9]179 list_t irq_notifs;
[80bcaed]180 /** IRQs with notifications to this answerbox. */
[55b77d9]181 list_t irq_list;
[fa8e7d2]182} answerbox_t;
[6d9c49a]183
184typedef struct {
[96b02eb9]185 sysarg_t args[IPC_CALL_LEN];
[f21a61e]186 /** Task which made or forwarded the call with IPC_FF_ROUTE_FROM_ME. */
187 struct task *task;
[fdb9982c]188 /** Phone which made or last masqueraded this call. */
[fbcfd458]189 phone_t *phone;
[06e1e95]190} ipc_data_t;
[6d9c49a]191
[fbcfd458]192typedef struct {
[c4e4507]193 link_t link;
[da1bafb]194
195 unsigned int flags;
196
[8b243f2]197 /** Identification of the caller. */
[fa8e7d2]198 struct task *sender;
[da1bafb]199
200 /*
201 * The caller box is different from sender->answerbox
202 * for synchronous calls.
203 */
[fbcfd458]204 answerbox_t *callerbox;
[da1bafb]205
[8b243f2]206 /** Private data to internal IPC. */
[96b02eb9]207 sysarg_t priv;
[da1bafb]208
[8b243f2]209 /** Data passed from/to userspace. */
[80bcaed]210 ipc_data_t data;
[da1bafb]211
[a55d5f9f]212 /** Buffer for IPC_M_DATA_WRITE and IPC_M_DATA_READ. */
[7918fce]213 uint8_t *buffer;
[da1bafb]214
[27526e87]215 /*
216 * The forward operation can masquerade the caller phone. For those
217 * cases, we must keep it aside so that the answer is processed
218 * correctly.
219 */
220 phone_t *caller_phone;
[06e1e95]221} call_t;
[6d9c49a]222
[fd1210a]223extern answerbox_t *ipc_phone_0;
224
[6d9c49a]225extern void ipc_init(void);
[fd1210a]226
[da1bafb]227extern call_t *ipc_call_alloc(unsigned int);
[fd1210a]228extern void ipc_call_free(call_t *);
229
[12ab886]230extern int ipc_call(phone_t *, call_t *);
[79872cd]231extern int ipc_call_sync(phone_t *, call_t *);
[da1bafb]232extern call_t * ipc_wait_for_call(answerbox_t *, uint32_t, unsigned int);
233extern int ipc_forward(call_t *, phone_t *, answerbox_t *, unsigned int);
[fd1210a]234extern void ipc_answer(answerbox_t *, call_t *);
235
[12ab886]236extern void ipc_phone_init(phone_t *);
237extern void ipc_phone_connect(phone_t *, answerbox_t *);
[fd1210a]238extern int ipc_phone_hangup(phone_t *);
239
[12ab886]240extern void ipc_answerbox_init(answerbox_t *, struct task *);
[fd1210a]241
[d79dcdb]242extern void ipc_cleanup(void);
[96b02eb9]243extern void ipc_backsend_err(phone_t *, call_t *, sysarg_t);
[9a1b20c]244extern void ipc_answerbox_slam_phones(answerbox_t *, bool);
[55b77d9]245extern void ipc_cleanup_call_list(list_t *);
[7c7aae16]246
[fd1210a]247extern void ipc_print_task(task_id_t);
[6d9c49a]248
[da1bafb]249#endif /* KERNEL */
[6d9c49a]250
251#endif
[b45c443]252
[27ab6a7]253/** @}
[b45c443]254 */
Note: See TracBrowser for help on using the repository browser.