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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
|
/*
* Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved.
*
* NVIDIA CORPORATION and its licensors retain all intellectual property
* and proprietary rights in and to this software, related documentation
* and any modifications thereto. Any use, reproduction, disclosure or
* distribution of this software and related documentation without an express
* license agreement from NVIDIA CORPORATION is strictly prohibited.
*/
#ifndef __TEGRA_HV_ERRINFO_H__
#define __TEGRA_HV_ERRINFO_H__
/* Supported synchronous and asynchronous errors */
enum err_reason {
REASON_UNDEFINED = 0UL,
REASON_ASYNC_SMMU_CB,
REASON_ASYNC_SMMU_GLOBAL,
REASON_ASYNC_BRIDGE,
REASON_ASYNC_MC,
REASON_ASYNC_MC_T19X,
REASON_ASYNC_CBB,
REASON_SYNC,
REASON_ENUM_SIZE
};
enum err_type {
SYNC = 0UL,
ASYNC
};
struct __attribute__((__packed__)) async_metadata_t {
uint64_t rd_idx;
uint64_t wr_idx;
};
#define NAME_SIZE 64
struct __attribute__((__packed__)) async_bridge_err_t {
char br_name[NAME_SIZE];
unsigned int err_addr;
unsigned int err_status1;
unsigned int err_status2;
unsigned int rw;
unsigned int err_type;
unsigned int length;
unsigned int br_id;
unsigned int src_id;
unsigned int axi_id;
unsigned int count;
unsigned int protection;
unsigned int burst;
unsigned int cache;
};
struct __attribute__((__packed__)) async_cbb_err_t {
char cbb_name[NAME_SIZE];
unsigned int error_logger;
unsigned int errlog0;
char transaction_type[NAME_SIZE];
char error_code[NAME_SIZE];
char error_source[NAME_SIZE];
char error_description[NAME_SIZE];
bool header_format;
unsigned int packet_header_lock;
unsigned int packet_header_len1;
unsigned int errlog1;
unsigned int errlog2;
uint64_t route_id;
char initflow[NAME_SIZE];
char targflow[NAME_SIZE];
unsigned int targ_subrange;
unsigned int seqid;
unsigned int errlog3;
unsigned int errlog4;
uint64_t address;
unsigned int errlog5;
char master_id[NAME_SIZE];
unsigned int non_mod;
unsigned int axi_id;
unsigned int security_group;
uint32_t cache;
uint32_t protection;
unsigned int falconsec;
unsigned int virtual_q_channel;
};
struct __attribute__((__packed__)) async_smmu_err_t {
unsigned int stream_id;
unsigned int cb_id;
unsigned int fsynr0;
unsigned int fsynr1;
uint64_t far;
unsigned int fsr;
};
struct __attribute__((__packed__)) async_mc_err_t {
uint64_t ch_base;
unsigned int int_status;
unsigned int err_status;
uint64_t fault_addr;
unsigned int vcpuid; /* 0xffffU IDLE_vCPU_ID */
unsigned int client_id;
int32_t peripheral_id;
};
struct __attribute__((__packed__)) async_mc_err_t19x_t {
bool vpr_violation;
unsigned int vpr_base[2];
unsigned int vpr_size;
unsigned int vpr_ctrl;
unsigned int vpr_override[4];
bool no_status;
bool two_status;
int client_swgid;
char client_name[NAME_SIZE];
char fault_msg[NAME_SIZE];
unsigned int status;
uint64_t address;
unsigned int secure;
unsigned int write;
};
struct __attribute__((__packed__)) sync_t {
bool is_filled; /* metadata field per vcpu */
unsigned int offending_vcpu_id;
uint32_t esr_el2;
uint64_t elr_el2;
uint64_t far_el2;
uint64_t hpfar_el2;
uint64_t par_hpfar_el2;
uint64_t spsr_el2;
uint64_t elr_el1;
uint64_t far_el1;
uint64_t spsr_el1;
uint32_t esr_el1;
uint32_t fault_instr;
uint64_t gpr_array[31];
};
struct __attribute__((__packed__)) err_data_t {
unsigned int offending_guest_id;
unsigned int err_type;
unsigned int err_reason;
union {
/* Asynchronous */
struct async_bridge_err_t async_bridge_err;
struct async_smmu_err_t async_smmu_err;
struct async_mc_err_t async_mc_err;
struct async_cbb_err_t async_cbb_err;
struct async_mc_err_t19x_t async_mc_err_t19x;
/* Synchronous */
struct sync_t sync;
};
};
/* VM shared memory for error information is allocated contiguously to store
* Asynchronous(async) error information followed by the Synchronous(sync)
* error information. HV has write access and the VM has read access to this
* shared memory. The shared memory layout looks like:
*
* |--async-err-metadata--|--async-errors-array-|--sync-errors-array-|
*
* Size of async errors array = Max errors + 1(to avoid same empty and full
* conditions of the buffer)
* Size of sync errors array = 1 error per VCPU * number of VCPUs on a VM
*
* So for a give VM, shared memory has:
*
* |--------ASyncErrInfo--------------|---------SyncErrInfo-------------------|
* |--------1bufferPerVM--------------|---VCpu0-buffer----|---VCpuN-buffer----|
* |---metadata---|---err_data--------|-metadata+err_data-|-metadata+err_data-|
* |rd_idx|wr_idx|-Err1-|-Err2-|-ErrN-|-is_filled-|-Err1--|-is_filled-|--Err1-|
*/
struct __attribute__((__packed__)) err_info_t {
struct async_metadata_t async_metadata;
struct err_data_t err_data[];
};
#endif
|