L4Re Operating System Framework
Interface and Usage Documentation
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
utcb.h
Go to the documentation of this file.
1
6/*
7 * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>,
8 * Alexander Warg <warg@os.inf.tu-dresden.de>
9 * economic rights: Technische Universität Dresden (Germany)
10 *
11 * License: see LICENSE.spdx (in this directory or the directories above)
12 */
13#ifndef __L4_SYS__INCLUDE__ARCH_ARM__UTCB_H__
14#define __L4_SYS__INCLUDE__ARCH_ARM__UTCB_H__
15
16#include <l4/sys/types.h>
17
41
48{
49 L4_UTCB_EXCEPTION_REGS_SIZE = sizeof(l4_exc_regs_t) / sizeof(l4_umword_t),
50 L4_UTCB_GENERIC_DATA_SIZE = 63,
51 L4_UTCB_GENERIC_BUFFERS_SIZE = 58,
52
53 L4_UTCB_MSG_REGS_OFFSET = 0,
54 L4_UTCB_BUF_REGS_OFFSET = 64 * sizeof(l4_umword_t),
55 L4_UTCB_THREAD_REGS_OFFSET = 123 * sizeof(l4_umword_t),
56
57 L4_UTCB_INHERIT_FPU = 1UL << 24,
58
59 L4_UTCB_OFFSET = 512,
60};
61
62#include_next <l4/sys/utcb.h>
63
64/*
65 * ==================================================================
66 * Implementations.
67 */
68
69#ifdef __GNUC__
70L4_INLINE l4_utcb_t *l4_utcb_direct(void) L4_NOTHROW
71{
72# if defined(__ARM_ARCH) && __ARM_ARCH >= 7
73 l4_utcb_t *utcb;
74 __asm__ ("mrc p15, 0, %0, c13, c0, 2" : "=r" (utcb)); // TPIDRURW
75#else
76 register l4_utcb_t *utcb __asm__ ("r0");
77 __asm__ ("mov lr, pc \n"
78 "mvn pc, #0xff \n" // write 0xffffff00 to pc
79 : "=r"(utcb) : : "lr");
80#endif
81 return utcb;
82}
83#endif
84
86{
87 return u->pc;
88}
89
94
96{
97 return u->err >> 26;
98}
99
101{
102 return ((u->err >> 26) & 0x30) == 0x20;
103}
104
106{
107 return (u->pfa & ~7UL) | ((u->err >> 5) & 2);
108}
109
114
115#endif /* ! __L4_SYS__INCLUDE__ARCH_ARM__UTCB_H__ */
unsigned long l4_umword_t
Unsigned machine word.
Definition l4int.h:40
unsigned long l4_addr_t
Address type.
Definition l4int.h:34
struct l4_exc_regs_t l4_exc_regs_t
UTCB structure for exceptions.
L4_utcb_consts_arm
UTCB constants for ARM.
Definition utcb.h:48
struct l4_utcb_t l4_utcb_t
Opaque type for the UTCB.
Definition utcb.h:56
l4_addr_t l4_utcb_exc_pfa(l4_exc_regs_t const *u) L4_NOTHROW
Function to get the L4 style page fault address out of an exception.
Definition utcb.h:112
int l4_utcb_exc_is_ex_regs_exception(l4_exc_regs_t const *u) L4_NOTHROW
Check whether an exception IPC was triggered via l4_thread_ex_regs().
Definition utcb.h:117
int l4_utcb_exc_is_pf(l4_exc_regs_t const *u) L4_NOTHROW
Check whether an exception IPC is a page fault.
Definition utcb.h:107
l4_umword_t l4_utcb_exc_pc(l4_exc_regs_t const *u) L4_NOTHROW
Access function to get the program counter of the exception state.
Definition utcb.h:92
l4_umword_t l4_utcb_exc_typeval(l4_exc_regs_t const *u) L4_NOTHROW
Get the value out of an exception UTCB that describes the type of exception.
Definition utcb.h:102
void l4_utcb_exc_pc_set(l4_exc_regs_t *u, l4_addr_t pc) L4_NOTHROW
Set the program counter register in the exception state.
Definition utcb.h:97
#define L4_NOTHROW
Mark a function declaration and definition as never throwing an exception.
Definition compiler.h:159
#define L4_INLINE
L4 Inline function attribute.
Definition compiler.h:51
Common L4 ABI Data Types.
UTCB structure for exceptions.
Definition utcb.h:28
l4_umword_t r[13]
registers
Definition utcb.h:32
l4_umword_t sp
stack pointer
Definition utcb.h:33
l4_umword_t pfa
page fault address
Definition utcb.h:29
l4_umword_t tpidrurw
Thread-ID register.
Definition utcb.h:39
l4_umword_t ulr
ulr
Definition utcb.h:34
l4_umword_t _dummy1
dummy
Definition utcb.h:35
l4_umword_t err
error code
Definition utcb.h:30
l4_umword_t tpidruro
Thread-ID register.
Definition utcb.h:38
l4_umword_t pc
pc
Definition utcb.h:36
l4_umword_t cpsr
cpsr
Definition utcb.h:37