L4Re Operating System Framework
Interface and Usage Documentation
Loading...
Searching...
No Matches
types.h
Go to the documentation of this file.
1/*****************************************************************************/
7/*
8 * (c) 2008-2013 Adam Lackorzynski <adam@os.inf.tu-dresden.de>,
9 * Alexander Warg <warg@os.inf.tu-dresden.de>,
10 * Björn Döbel <doebel@os.inf.tu-dresden.de>,
11 * Torsten Frenzel <frenzel@os.inf.tu-dresden.de>
12 * economic rights: Technische Universität Dresden (Germany)
13 *
14 * License: see LICENSE.spdx (in this directory or the directories above)
15 */
16/*****************************************************************************/
17#pragma once
18
19#include <l4/sys/l4int.h>
20#include <l4/sys/compiler.h>
21#include <l4/sys/consts.h>
22
29
36
37
45
83
84enum L4_varg_type
85{
86 L4_VARG_TYPE_NIL = 0x00,
87 L4_VARG_TYPE_UMWORD = 0x01,
88 L4_VARG_TYPE_MWORD = 0x81,
89 L4_VARG_TYPE_STRING = 0x02,
90 L4_VARG_TYPE_FPAGE = 0x03,
91
92 L4_VARG_TYPE_SIGN = 0x80,
93};
94
95
101{
102 // flags for received IPC
108
109 // flags for sending IPC
141 L4_MSGTAG_PROPAGATE = 0x4000,
142
148};
149
150typedef struct l4_msgtag_t l4_msgtag_t;
151
161
171
181
193
207
217
227
237
247
248
266{
268#ifdef __cplusplus
270 long label() const L4_NOTHROW { return l4_msgtag_label(*this); }
272 void label(long v) L4_NOTHROW { raw = (raw & 0x0ffff) | ((l4_umword_t)v << 16); }
274 unsigned words() const L4_NOTHROW { return l4_msgtag_words(*this); }
276 unsigned items() const L4_NOTHROW { return l4_msgtag_items(*this); }
283 unsigned flags() const L4_NOTHROW { return l4_msgtag_flags(*this); }
286 { return l4_msgtag_is_page_fault(*this); }
287
289 { return l4_msgtag_is_exception(*this); }
290
291 bool is_sigma0() const L4_NOTHROW { return l4_msgtag_is_sigma0(*this); }
294 { return l4_msgtag_is_io_page_fault(*this); }
295
299 bool has_error() const L4_NOTHROW { return l4_msgtag_has_error(*this); }
300#endif
301};
302
303// The following declaration should be _after_ the definition of struct
304// l4_msgtag_t. Circumvents a clang warning about a *potentially*
305// incompatibility with C if the type is incomplete when the function is
306// declared.
307
319L4_INLINE l4_msgtag_t l4_msgtag(long label, unsigned words, unsigned items,
320 unsigned flags) L4_NOTHROW;
321
322
335
352typedef unsigned long l4_cap_idx_t;
353
364
375
390
400
401/* ************************************************************************* */
402/* Implementation */
403
404L4_INLINE unsigned
406{ return c & L4_INVALID_CAP_BIT; }
407
408L4_INLINE unsigned
410{ return !(c & L4_INVALID_CAP_BIT); }
411
412L4_INLINE unsigned
415
416
421l4_msgtag_t l4_msgtag(long label, unsigned words, unsigned items,
422 unsigned flags) L4_NOTHROW
423{
424 return (l4_msgtag_t){ (l4_mword_t)((l4_umword_t)label << 16)
425 | (l4_mword_t)(words & 0x3f)
426 | (l4_mword_t)((items & 0x3f) << 6)
427 | (l4_mword_t)(flags & 0xf000)};
428}
429
430
431
434{
435#if defined(__cplusplus) && (__cplusplus >= 202002L)
436 return t.raw >> 16;
437#else
438 return t.raw < 0 ? ~(~t.raw >> 16) : t.raw >> 16;
439#endif
440}
441
444{ return t.raw & 0x3f; }
445
448{ return (t.raw >> 6) & 0x3f; }
449
452{ return t.raw & 0xf000; }
453
454
458
459
460
463
466
469
472
475
476#include <l4/sys/__l4_fpage.h>
477#include <l4/sys/__timeout.h>
L4 compiler related defines.
unsigned long l4_umword_t
Unsigned machine word.
Definition l4int.h:40
signed long l4_mword_t
Signed machine word.
Definition l4int.h:37
signed short int l4_int16_t
Signed 16bit value.
Definition l4int.h:26
#define L4_CAP_OFFSET
Offset of two consecutive capability selectors.
Definition consts.h:144
unsigned long l4_cap_idx_t
Capability selector type.
Definition types.h:352
unsigned l4_is_invalid_cap(l4_cap_idx_t c) L4_NOTHROW
Test if a capability selector is the invalid capability.
Definition types.h:405
unsigned l4_capability_equal(l4_cap_idx_t c1, l4_cap_idx_t c2) L4_NOTHROW
Test if the capability indices of two capability selectors are equal.
Definition types.h:413
unsigned l4_is_valid_cap(l4_cap_idx_t c) L4_NOTHROW
Test if a capability selector is a valid selector.
Definition types.h:409
#define L4_CAP_SHIFT
Capability index shift.
Definition consts.h:137
unsigned l4_msgtag_is_sigma0(l4_msgtag_t t) L4_NOTHROW
Test for sigma0 protocol.
Definition types.h:467
unsigned l4_msgtag_is_exception(l4_msgtag_t t) L4_NOTHROW
Test for exception protocol.
Definition types.h:464
L4_msgtag_flags
Flags for message tags.
Definition types.h:101
unsigned l4_msgtag_items(l4_msgtag_t t) L4_NOTHROW
Get the number of typed items.
Definition types.h:447
unsigned l4_msgtag_is_io_page_fault(l4_msgtag_t t) L4_NOTHROW
Test for IO-page-fault protocol.
Definition types.h:470
unsigned l4_msgtag_has_error(l4_msgtag_t t) L4_NOTHROW
Test for error indicator flag.
Definition types.h:456
l4_msgtag_t l4_msgtag(long label, unsigned words, unsigned items, unsigned flags) L4_NOTHROW
Create a message tag from the specified values.
Definition types.h:421
unsigned l4_msgtag_words(l4_msgtag_t t) L4_NOTHROW
Get the number of untyped words.
Definition types.h:443
L4_msgtag_protocol
Message tag for IPC operations.
Definition types.h:53
unsigned l4_msgtag_flags(l4_msgtag_t t) L4_NOTHROW
Get the flags.
Definition types.h:451
long l4_msgtag_label(l4_msgtag_t t) L4_NOTHROW
Get the protocol of tag.
Definition types.h:433
unsigned l4_msgtag_is_page_fault(l4_msgtag_t t) L4_NOTHROW
Test for page-fault protocol.
Definition types.h:461
@ L4_MSGTAG_FLAGS
Mask for all flags.
Definition types.h:147
@ L4_MSGTAG_ERROR
Error indicator flag.
Definition types.h:107
@ L4_MSGTAG_SCHEDULE
Enable schedule in IPC flag.
Definition types.h:128
@ L4_MSGTAG_TRANSFER_FPU
Enable FPU transfer flag for IPC.
Definition types.h:119
@ L4_PROTO_IRQ
IRQ message.
Definition types.h:58
@ L4_PROTO_FACTORY
Protocol for messages to a factory object.
Definition types.h:71
@ L4_PROTO_DMA_SPACE
Protocol for (creating) kernel DMA space objects.
Definition types.h:73
@ L4_PROTO_SCHEDULER
Protocol for messages to a scheduler object.
Definition types.h:70
@ L4_PROTO_EXCEPTION
Exception.
Definition types.h:62
@ L4_PROTO_IRQ_SENDER
Protocol for IRQ senders (IRQ -> IPC).
Definition types.h:74
@ L4_PROTO_KOBJECT
Protocol for messages to a generic kobject.
Definition types.h:66
@ L4_PROTO_TASK
Protocol for messages to a task object.
Definition types.h:67
@ L4_PROTO_IO_PAGE_FAULT
I/O page fault message.
Definition types.h:64
@ L4_PROTO_NONE
Default protocol tag to reply to kernel.
Definition types.h:54
@ L4_PROTO_VM
Protocol for messages to a virtual machine object.
Definition types.h:72
@ L4_PROTO_SIGMA0
Sigma0 protocol.
Definition types.h:63
@ L4_PROTO_THREAD_GROUP
Protocol for messages to a thread group obj.
Definition types.h:65
@ L4_PROTO_THREAD
Protocol for messages to a thread object.
Definition types.h:68
@ L4_PROTO_PF_EXCEPTION
Make an exception out of a page fault.
Definition types.h:56
@ L4_PROTO_META
Meta information protocol.
Definition types.h:77
@ L4_PROTO_PAGE_FAULT
Page fault message.
Definition types.h:59
@ L4_PROTO_IOMMU
Protocol ID for IO-MMUs.
Definition types.h:78
@ L4_PROTO_ALLOW_SYSCALL
Allow an alien the system call.
Definition types.h:55
@ L4_PROTO_SEMAPHORE
Protocol for semaphore objects.
Definition types.h:76
@ L4_PROTO_LOG
Protocol for messages to a log object.
Definition types.h:69
@ L4_PROTO_DEBUGGER
Protocol ID for the debugger.
Definition types.h:79
@ L4_PROTO_VCPU_CONTEXT
Protocol for hardware vCPU contexts.
Definition types.h:81
@ L4_PROTO_SMCCC
Protocol ID for ARM SMCCC calls.
Definition types.h:80
#define L4_NOTHROW
Mark a function declaration and definition as never throwing an exception.
Definition compiler.h:161
#define L4_INLINE
L4 Inline function attribute.
Definition compiler.h:51
Common constants.
Fixed sized integer types, generic version.
l4_cap_idx_t l4_capability_next(l4_cap_idx_t c) L4_NOTHROW
Get the next capability selector after c.
Definition types.h:473
l4_int16_t l4_proto_t
Prototype value for RPC calls.
Definition types.h:35
l4_int16_t l4_ret_t
Return value of an IPC call as well as an RPC call.
Definition types.h:28
Message tag data structure.
Definition types.h:266
long label() const L4_NOTHROW
Get the protocol value.
Definition types.h:270
bool is_page_fault() const L4_NOTHROW
Test if protocol indicates page-fault protocol.
Definition types.h:285
bool is_sigma0() const L4_NOTHROW
Test if protocol indicates sigma0 protocol.
Definition types.h:291
bool has_error() const L4_NOTHROW
Test if flags indicate an error.
Definition types.h:299
void label(long v) L4_NOTHROW
Set the protocol value.
Definition types.h:272
bool is_exception() const L4_NOTHROW
Test if protocol indicates exception protocol.
Definition types.h:288
unsigned words() const L4_NOTHROW
Get the number of untyped words.
Definition types.h:274
bool is_io_page_fault() const L4_NOTHROW
Test if protocol indicates IO-page-fault protocol.
Definition types.h:293
unsigned items() const L4_NOTHROW
Get the number of typed items.
Definition types.h:276
l4_mword_t raw
raw value
Definition types.h:267
unsigned flags() const L4_NOTHROW
Get the flags value.
Definition types.h:283