Loading...
Note: File does not exist in v3.1.
1/*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright © 2008-2018 Intel Corporation
5 */
6
7#ifndef _I915_GPU_ERROR_H_
8#define _I915_GPU_ERROR_H_
9
10#include <linux/atomic.h>
11#include <linux/kref.h>
12#include <linux/ktime.h>
13#include <linux/sched.h>
14
15#include <drm/drm_mm.h>
16
17#include "gt/intel_engine.h"
18#include "gt/intel_engine_types.h"
19#include "gt/intel_gt_types.h"
20#include "gt/uc/intel_uc_fw.h"
21
22#include "intel_device_info.h"
23
24#include "i915_gem.h"
25#include "i915_gem_gtt.h"
26#include "i915_params.h"
27#include "i915_scheduler.h"
28
29struct drm_i915_private;
30struct i915_vma_compress;
31struct intel_engine_capture_vma;
32struct intel_display_snapshot;
33
34struct i915_vma_coredump {
35 struct i915_vma_coredump *next;
36
37 char name[20];
38
39 u64 gtt_offset;
40 u64 gtt_size;
41 u32 gtt_page_sizes;
42
43 int unused;
44 struct list_head page_list;
45};
46
47struct i915_request_coredump {
48 unsigned long flags;
49 pid_t pid;
50 u32 context;
51 u32 seqno;
52 u32 head;
53 u32 tail;
54 struct i915_sched_attr sched_attr;
55};
56
57struct __guc_capture_parsed_output;
58
59struct intel_engine_coredump {
60 const struct intel_engine_cs *engine;
61
62 bool hung;
63 bool simulated;
64 u32 reset_count;
65
66 /* position of active request inside the ring */
67 u32 rq_head, rq_post, rq_tail;
68
69 /* Register state */
70 u32 ccid;
71 u32 start;
72 u32 tail;
73 u32 head;
74 u32 ctl;
75 u32 mode;
76 u32 hws;
77 u32 ipeir;
78 u32 ipehr;
79 u32 esr;
80 u32 bbstate;
81 u32 instpm;
82 u32 instps;
83 u64 bbaddr;
84 u64 acthd;
85 u32 fault_reg;
86 u64 faddr;
87 u32 rc_psmi; /* sleep state */
88 u32 nopid;
89 u32 excc;
90 u32 cmd_cctl;
91 u32 cscmdop;
92 u32 ctx_sr_ctl;
93 u32 dma_faddr_hi;
94 u32 dma_faddr_lo;
95 struct intel_instdone instdone;
96
97 /* GuC matched capture-lists info */
98 struct intel_guc_state_capture *guc_capture;
99 struct __guc_capture_parsed_output *guc_capture_node;
100
101 struct i915_gem_context_coredump {
102 char comm[TASK_COMM_LEN];
103
104 u64 total_runtime;
105 u64 avg_runtime;
106
107 pid_t pid;
108 int active;
109 int guilty;
110 struct i915_sched_attr sched_attr;
111 u32 hwsp_seqno;
112 } context;
113
114 struct i915_vma_coredump *vma;
115
116 struct i915_request_coredump execlist[EXECLIST_MAX_PORTS];
117 unsigned int num_ports;
118
119 struct {
120 u32 gfx_mode;
121 union {
122 u64 pdp[4];
123 u32 pp_dir_base;
124 };
125 } vm_info;
126
127 struct intel_engine_coredump *next;
128};
129
130struct intel_ctb_coredump {
131 u32 raw_head, head;
132 u32 raw_tail, tail;
133 u32 raw_status;
134 u32 desc_offset;
135 u32 cmds_offset;
136 u32 size;
137};
138
139struct intel_gt_coredump {
140 const struct intel_gt *_gt;
141 bool awake;
142 bool simulated;
143
144 struct intel_gt_info info;
145
146 /* Generic register state */
147 u32 eir;
148 u32 pgtbl_er;
149 u32 ier;
150 u32 gtier[6], ngtier;
151 u32 forcewake;
152 u32 error; /* gen6+ */
153 u32 err_int; /* gen7 */
154 u32 fault_data0; /* gen8, gen9 */
155 u32 fault_data1; /* gen8, gen9 */
156 u32 done_reg;
157 u32 gac_eco;
158 u32 gam_ecochk;
159 u32 gab_ctl;
160 u32 gfx_mode;
161 u32 gtt_cache;
162 u32 aux_err; /* gen12 */
163 u32 gam_done; /* gen12 */
164 u32 clock_frequency;
165 u32 clock_period_ns;
166
167 /* Display related */
168 u32 derrmr;
169 u32 sfc_done[I915_MAX_SFC]; /* gen12 */
170
171 u32 nfence;
172 u64 fence[I915_MAX_NUM_FENCES];
173
174 struct intel_engine_coredump *engine;
175
176 struct intel_uc_coredump {
177 struct intel_uc_fw guc_fw;
178 struct intel_uc_fw huc_fw;
179 struct guc_info {
180 struct intel_ctb_coredump ctb[2];
181 struct i915_vma_coredump *vma_ctb;
182 struct i915_vma_coredump *vma_log;
183 u32 timestamp;
184 u16 last_fence;
185 bool is_guc_capture;
186 } guc;
187 } *uc;
188
189 struct intel_gt_coredump *next;
190};
191
192struct i915_gpu_coredump {
193 struct kref ref;
194 ktime_t time;
195 ktime_t boottime;
196 ktime_t uptime;
197 unsigned long capture;
198
199 struct drm_i915_private *i915;
200
201 struct intel_gt_coredump *gt;
202
203 char error_msg[128];
204 bool simulated;
205 bool wakelock;
206 bool suspended;
207 int iommu;
208 u32 reset_count;
209 u32 suspend_count;
210
211 struct intel_device_info device_info;
212 struct intel_runtime_info runtime_info;
213 struct intel_driver_caps driver_caps;
214 struct i915_params params;
215
216 struct scatterlist *sgl, *fit;
217
218 struct intel_display_snapshot *display_snapshot;
219};
220
221struct i915_gpu_error {
222 /* For reset and error_state handling. */
223 spinlock_t lock;
224 /* Protected by the above dev->gpu_error.lock. */
225 struct i915_gpu_coredump *first_error;
226
227 atomic_t pending_fb_pin;
228
229 /** Number of times the device has been reset (global) */
230 atomic_t reset_count;
231
232 /** Number of times an engine has been reset */
233 atomic_t reset_engine_count[MAX_ENGINE_CLASS];
234};
235
236struct drm_i915_error_state_buf {
237 struct drm_i915_private *i915;
238 struct scatterlist *sgl, *cur, *end;
239
240 char *buf;
241 size_t bytes;
242 size_t size;
243 loff_t iter;
244
245 int err;
246};
247
248static inline u32 i915_reset_count(struct i915_gpu_error *error)
249{
250 return atomic_read(&error->reset_count);
251}
252
253static inline u32 i915_reset_engine_count(struct i915_gpu_error *error,
254 const struct intel_engine_cs *engine)
255{
256 return atomic_read(&error->reset_engine_count[engine->class]);
257}
258
259static inline void
260i915_increase_reset_engine_count(struct i915_gpu_error *error,
261 const struct intel_engine_cs *engine)
262{
263 atomic_inc(&error->reset_engine_count[engine->class]);
264}
265
266#define CORE_DUMP_FLAG_NONE 0x0
267#define CORE_DUMP_FLAG_IS_GUC_CAPTURE BIT(0)
268
269#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) && IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM)
270void intel_klog_error_capture(struct intel_gt *gt,
271 intel_engine_mask_t engine_mask);
272#else
273static inline void intel_klog_error_capture(struct intel_gt *gt,
274 intel_engine_mask_t engine_mask)
275{
276}
277#endif
278
279#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
280
281__printf(2, 3)
282void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...);
283
284void i915_capture_error_state(struct intel_gt *gt,
285 intel_engine_mask_t engine_mask, u32 dump_flags);
286
287struct i915_gpu_coredump *
288i915_gpu_coredump_alloc(struct drm_i915_private *i915, gfp_t gfp);
289
290struct intel_gt_coredump *
291intel_gt_coredump_alloc(struct intel_gt *gt, gfp_t gfp, u32 dump_flags);
292
293struct intel_engine_coredump *
294intel_engine_coredump_alloc(struct intel_engine_cs *engine, gfp_t gfp, u32 dump_flags);
295
296struct intel_engine_capture_vma *
297intel_engine_coredump_add_request(struct intel_engine_coredump *ee,
298 struct i915_request *rq,
299 gfp_t gfp);
300
301void intel_engine_coredump_add_vma(struct intel_engine_coredump *ee,
302 struct intel_engine_capture_vma *capture,
303 struct i915_vma_compress *compress);
304
305struct i915_vma_compress *
306i915_vma_capture_prepare(struct intel_gt_coredump *gt);
307
308void i915_vma_capture_finish(struct intel_gt_coredump *gt,
309 struct i915_vma_compress *compress);
310
311void i915_error_state_store(struct i915_gpu_coredump *error);
312
313static inline struct i915_gpu_coredump *
314i915_gpu_coredump_get(struct i915_gpu_coredump *gpu)
315{
316 kref_get(&gpu->ref);
317 return gpu;
318}
319
320ssize_t
321i915_gpu_coredump_copy_to_buffer(struct i915_gpu_coredump *error,
322 char *buf, loff_t offset, size_t count);
323
324void __i915_gpu_coredump_free(struct kref *kref);
325static inline void i915_gpu_coredump_put(struct i915_gpu_coredump *gpu)
326{
327 if (gpu)
328 kref_put(&gpu->ref, __i915_gpu_coredump_free);
329}
330
331void i915_reset_error_state(struct drm_i915_private *i915);
332void i915_disable_error_state(struct drm_i915_private *i915, int err);
333
334void i915_gpu_error_debugfs_register(struct drm_i915_private *i915);
335void i915_gpu_error_sysfs_setup(struct drm_i915_private *i915);
336void i915_gpu_error_sysfs_teardown(struct drm_i915_private *i915);
337
338#else
339
340__printf(2, 3)
341static inline void
342i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...)
343{
344}
345
346static inline void
347i915_capture_error_state(struct intel_gt *gt, intel_engine_mask_t engine_mask, u32 dump_flags)
348{
349}
350
351static inline struct i915_gpu_coredump *
352i915_gpu_coredump_alloc(struct drm_i915_private *i915, gfp_t gfp)
353{
354 return NULL;
355}
356
357static inline struct intel_gt_coredump *
358intel_gt_coredump_alloc(struct intel_gt *gt, gfp_t gfp, u32 dump_flags)
359{
360 return NULL;
361}
362
363static inline struct intel_engine_coredump *
364intel_engine_coredump_alloc(struct intel_engine_cs *engine, gfp_t gfp, u32 dump_flags)
365{
366 return NULL;
367}
368
369static inline struct intel_engine_capture_vma *
370intel_engine_coredump_add_request(struct intel_engine_coredump *ee,
371 struct i915_request *rq,
372 gfp_t gfp)
373{
374 return NULL;
375}
376
377static inline void
378intel_engine_coredump_add_vma(struct intel_engine_coredump *ee,
379 struct intel_engine_capture_vma *capture,
380 struct i915_vma_compress *compress)
381{
382}
383
384static inline struct i915_vma_compress *
385i915_vma_capture_prepare(struct intel_gt_coredump *gt)
386{
387 return NULL;
388}
389
390static inline void
391i915_vma_capture_finish(struct intel_gt_coredump *gt,
392 struct i915_vma_compress *compress)
393{
394}
395
396static inline void
397i915_error_state_store(struct i915_gpu_coredump *error)
398{
399}
400
401static inline void i915_gpu_coredump_put(struct i915_gpu_coredump *gpu)
402{
403}
404
405static inline void i915_reset_error_state(struct drm_i915_private *i915)
406{
407}
408
409static inline void i915_disable_error_state(struct drm_i915_private *i915,
410 int err)
411{
412}
413
414static inline void i915_gpu_error_debugfs_register(struct drm_i915_private *i915)
415{
416}
417
418static inline void i915_gpu_error_sysfs_setup(struct drm_i915_private *i915)
419{
420}
421
422static inline void i915_gpu_error_sysfs_teardown(struct drm_i915_private *i915)
423{
424}
425
426#endif /* IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) */
427
428#endif /* _I915_GPU_ERROR_H_ */