aboutsummaryrefslogtreecommitdiff
path: root/aarch64/common/interop.h
blob: c4ac039ce64769337a8e23c45b7244dbb2567362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef _INTEROP_H
#define _INTEROP_H
#include <stdint.h>
#include <stddef.h>

#define OP_MAP_NSEC_EL0 0
#define OP_MAP_SEC_EL0  1
#define OP_MAP_NSEC_EL1 2
#define OP_MAP_SEC_EL1  4
#define OP_MAP_EL3      8
#define OP_MAP_ALL \
            (OP_MAP_SEC_EL0 | OP_MAP_NSEC_EL1 | OP_MAP_SEC_EL1 | OP_MAP_EL3)

typedef struct {
    uint32_t type;
    size_t len;
    void *addr;
} op_alloc_mem_t;

typedef struct {
    uint32_t type;
    size_t len;
    void *va;
    void *pa;
} op_map_mem_t;

typedef struct {
    uintptr_t func_id;
    uintptr_t arg;
    uintptr_t ret;
} op_dispatch_t;

typedef enum {
    CURRENTEL = 1,
    CPTR_EL3,
    CPACR,
    SCR,
    SCTLR,
} op_reg_key_t;

typedef struct {
    uint64_t key;
    uint64_t data;
    uint64_t el;
} op_data_t;

typedef struct {
    uint64_t orig;
    uint64_t val;
    uint64_t count;
    uint64_t fail;
} op_test_t;
#endif