![]() |
L4Re Operating System Framework
Interface and Usage Documentation
|
Message-item-related functionality. More...
Data Structures | |
struct | l4_snd_fpage_t |
Send-flexpage types. More... | |
Enumerations | |
enum | L4_obj_fpage_ctl { L4_FPAGE_C_REF_CNT = 0x00 , L4_FPAGE_C_NO_REF_CNT = 0x10 , L4_FPAGE_C_OBJ_RIGHT1 = 0x20 , L4_FPAGE_C_OBJ_RIGHT2 = 0x40 , L4_FPAGE_C_OBJ_RIGHT3 = 0x80 , L4_FPAGE_C_OBJ_RIGHTS = 0xe0 , L4_FPAGE_C_IPCGATE_SVR = L4_FPAGE_C_OBJ_RIGHT1 } |
Attributes and additional permissions for object send items. More... | |
enum | l4_fpage_cacheability_opt_t { L4_FPAGE_CACHE_OPT = 0x1 , L4_FPAGE_CACHEABLE = 0x3 , L4_FPAGE_BUFFERABLE = 0x5 , L4_FPAGE_UNCACHEABLE = 0x1 } |
Cacheability options for memory send items. More... | |
enum | l4_msg_item_consts_t { L4_ITEM_MAP = 8 , L4_ITEM_CONT = 1 , L4_MAP_ITEM_GRANT = 2 , L4_MAP_ITEM_MAP = 0 , L4_RCV_ITEM_FORWARD_MAPPINGS = 1 , L4_RCV_ITEM_SINGLE_CAP = L4_ITEM_MAP | 2 , L4_RCV_ITEM_LOCAL_ID = 4 } |
Constants for message items. More... | |
Functions | |
l4_umword_t | l4_map_control (l4_umword_t spot, unsigned char cache, unsigned grant) L4_NOTHROW |
Create the first word for a map item that is a send item for the memory space. | |
l4_umword_t | l4_map_obj_control (l4_umword_t spot, unsigned grant) L4_NOTHROW |
Create the first word for a map item that is a send item for the object space. | |
Message-item-related functionality.
Message items are typed items that are used for transferring capabilities during IPC. There are three sub-types of typed message items with variations in the layout:
They are abbreviated by send item, receive item, and return item, respectively.
A typed message item in the message registers (case 1 and case 3) always consists of two words (even if it is a void item). The size of a typed message item in the buffer registers (case 2) is determined by its first word. The size is up to three words (see L4_RCV_ITEM_SINGLE_CAP and L4_RCV_ITEM_FORWARD_MAPPINGS). A void item in the buffer registers consists of a single word.
Cacheability options for memory send items.
Enumerator | |
---|---|
L4_FPAGE_CACHE_OPT | Enable the cacheability option in a memory send item. Without this flag, the options are copied from the sender. |
L4_FPAGE_CACHEABLE | Cacheability option to enable caches for the mapping. Implies L4_FPAGE_CACHE_OPT. |
L4_FPAGE_BUFFERABLE | Cacheability option to enable buffered writes for the mapping. Implies L4_FPAGE_CACHE_OPT. |
L4_FPAGE_UNCACHEABLE | Cacheability option to disable caching for the mapping. Implies L4_FPAGE_CACHE_OPT. |
Definition at line 284 of file __l4_fpage.h.
enum l4_msg_item_consts_t |
Constants for message items.
Enumerator | |
---|---|
L4_ITEM_MAP | Identify a message item as map item. |
L4_ITEM_CONT | Denote that the following item shall be put into the same receive item as this one. |
L4_MAP_ITEM_GRANT | Flag as grant instead of map operation. This means, the sender delegates access to the receiver and the kernel removes the rights from the sender (basically a move operation). The mapping in the receiver gets the new parent of any child mappings of the mapping of the sender. Rights revocation via send item/flexpage is not guaranteed to be applied to descendant mappings in case of grant. See Spaces and Mappings for more details on map/grant.
|
L4_MAP_ITEM_MAP | Flag as usual map operation. |
L4_RCV_ITEM_FORWARD_MAPPINGS | This flag specifies if received capabilities shall be mapped to a particular task instead of the invoking task. This flag may be used only if L4_RCV_ITEM_LOCAL_ID is unset. Setting this flag increases the size of the buffer item by one word. This word is used to specify a capability index for the task that shall receive the mappings. |
L4_RCV_ITEM_SINGLE_CAP | Mark the receive buffer to be a small receive item that describes a buffer for a single object capability. A receive item needs to specify a receive window. The receive window determines which kind of capabilities (object, memory, I/O ports) may be received where in the respective space. If this flag is unset, the receive window is specified in the second word of the receive item via a flexpage. If this flag is set, the receive window consists of a single capability index in the object space and the capability index is specified in the most significant bits of the first word of the receive item (see L4_CAP_SHIFT). |
L4_RCV_ITEM_LOCAL_ID | The receiver requests to receive a local ID instead of a mapping whenever possible. This flag may be used only if L4_RCV_ITEM_SINGLE_CAP is set and L4_RCV_ITEM_FORWARD_MAPPINGS is unset. When this flag is set, then,
|
enum L4_obj_fpage_ctl |
Attributes and additional permissions for object send items.
These rights need to be added to the snd_base when mapping and control internal behavior. The exact meaning depends on the type of capability (currently used only with IPC gates).
Definition at line 262 of file __l4_fpage.h.
|
inline |
Create the first word for a map item that is a send item for the memory space.
spot | Hot spot address, used to determine what is actually mapped when send and receive flexpage have differing sizes. |
cache | Cacheability hints for memory flexpages. See Cacheability options. |
grant | Indicates if it is a map or a grant item. Allowed values: L4_MAP_ITEM_MAP, L4_MAP_ITEM_GRANT. |
Definition at line 723 of file __l4_fpage.h.
References L4_FPAGE_CONTROL_MASK, and L4_ITEM_MAP.
Referenced by l4_map_obj_control().
|
inline |
Create the first word for a map item that is a send item for the object space.
spot | Hot spot address, used to determine what is actually mapped when send and receive flexpages have different size. |
grant | Indicates if it is a map item or a grant item. Allowed values: L4_MAP_ITEM_MAP, L4_MAP_ITEM_GRANT. |
Definition at line 730 of file __l4_fpage.h.
References l4_map_control().
Referenced by l4_icu_bind_u(), l4_icu_unbind_u(), l4_irq_bind_vcpu_u(), and L4::Cap_base::snd_base().