Loading...
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/uc/intel_uc_fw.h"
19
20#include "intel_device_info.h"
21
22#include "i915_gem.h"
23#include "i915_gem_gtt.h"
24#include "i915_params.h"
25#include "i915_scheduler.h"
26
27struct drm_i915_private;
28struct intel_overlay_error_state;
29struct intel_display_error_state;
30
31struct i915_gpu_state {
32 struct kref ref;
33 ktime_t time;
34 ktime_t boottime;
35 ktime_t uptime;
36 unsigned long capture;
37 unsigned long epoch;
38
39 struct drm_i915_private *i915;
40
41 char error_msg[128];
42 bool simulated;
43 bool awake;
44 bool wakelock;
45 bool suspended;
46 int iommu;
47 u32 reset_count;
48 u32 suspend_count;
49 struct intel_device_info device_info;
50 struct intel_runtime_info runtime_info;
51 struct intel_driver_caps driver_caps;
52 struct i915_params params;
53
54 struct i915_error_uc {
55 struct intel_uc_fw guc_fw;
56 struct intel_uc_fw huc_fw;
57 struct drm_i915_error_object *guc_log;
58 } uc;
59
60 /* Generic register state */
61 u32 eir;
62 u32 pgtbl_er;
63 u32 ier;
64 u32 gtier[6], ngtier;
65 u32 ccid;
66 u32 derrmr;
67 u32 forcewake;
68 u32 error; /* gen6+ */
69 u32 err_int; /* gen7 */
70 u32 fault_data0; /* gen8, gen9 */
71 u32 fault_data1; /* gen8, gen9 */
72 u32 done_reg;
73 u32 gac_eco;
74 u32 gam_ecochk;
75 u32 gab_ctl;
76 u32 gfx_mode;
77
78 u32 nfence;
79 u64 fence[I915_MAX_NUM_FENCES];
80 struct intel_overlay_error_state *overlay;
81 struct intel_display_error_state *display;
82
83 struct drm_i915_error_engine {
84 const struct intel_engine_cs *engine;
85
86 /* Software tracked state */
87 bool idle;
88 unsigned long hangcheck_timestamp;
89 int num_requests;
90 u32 reset_count;
91
92 /* position of active request inside the ring */
93 u32 rq_head, rq_post, rq_tail;
94
95 /* our own tracking of ring head and tail */
96 u32 cpu_ring_head;
97 u32 cpu_ring_tail;
98
99 /* Register state */
100 u32 start;
101 u32 tail;
102 u32 head;
103 u32 ctl;
104 u32 mode;
105 u32 hws;
106 u32 ipeir;
107 u32 ipehr;
108 u32 bbstate;
109 u32 instpm;
110 u32 instps;
111 u64 bbaddr;
112 u64 acthd;
113 u32 fault_reg;
114 u64 faddr;
115 u32 rc_psmi; /* sleep state */
116 struct intel_instdone instdone;
117
118 struct drm_i915_error_context {
119 char comm[TASK_COMM_LEN];
120 pid_t pid;
121 u32 hw_id;
122 int active;
123 int guilty;
124 struct i915_sched_attr sched_attr;
125 } context;
126
127 struct drm_i915_error_object {
128 u64 gtt_offset;
129 u64 gtt_size;
130 int num_pages;
131 int page_count;
132 int unused;
133 u32 *pages[0];
134 } *ringbuffer, *batchbuffer, *wa_batchbuffer, *ctx, *hws_page;
135
136 struct drm_i915_error_object **user_bo;
137 long user_bo_count;
138
139 struct drm_i915_error_object *wa_ctx;
140 struct drm_i915_error_object *default_state;
141
142 struct drm_i915_error_request {
143 unsigned long flags;
144 long jiffies;
145 pid_t pid;
146 u32 context;
147 u32 seqno;
148 u32 start;
149 u32 head;
150 u32 tail;
151 struct i915_sched_attr sched_attr;
152 } *requests, execlist[EXECLIST_MAX_PORTS];
153 unsigned int num_ports;
154
155 struct {
156 u32 gfx_mode;
157 union {
158 u64 pdp[4];
159 u32 pp_dir_base;
160 };
161 } vm_info;
162
163 struct drm_i915_error_engine *next;
164 } *engine;
165
166 struct scatterlist *sgl, *fit;
167};
168
169struct i915_gpu_error {
170 /* For reset and error_state handling. */
171 spinlock_t lock;
172 /* Protected by the above dev->gpu_error.lock. */
173 struct i915_gpu_state *first_error;
174
175 atomic_t pending_fb_pin;
176
177 /** Number of times the device has been reset (global) */
178 atomic_t reset_count;
179
180 /** Number of times an engine has been reset */
181 atomic_t reset_engine_count[I915_NUM_ENGINES];
182};
183
184struct drm_i915_error_state_buf {
185 struct drm_i915_private *i915;
186 struct scatterlist *sgl, *cur, *end;
187
188 char *buf;
189 size_t bytes;
190 size_t size;
191 loff_t iter;
192
193 int err;
194};
195
196#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
197
198__printf(2, 3)
199void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...);
200
201struct i915_gpu_state *i915_capture_gpu_state(struct drm_i915_private *i915);
202void i915_capture_error_state(struct drm_i915_private *dev_priv,
203 intel_engine_mask_t engine_mask,
204 const char *error_msg);
205
206static inline struct i915_gpu_state *
207i915_gpu_state_get(struct i915_gpu_state *gpu)
208{
209 kref_get(&gpu->ref);
210 return gpu;
211}
212
213ssize_t i915_gpu_state_copy_to_buffer(struct i915_gpu_state *error,
214 char *buf, loff_t offset, size_t count);
215
216void __i915_gpu_state_free(struct kref *kref);
217static inline void i915_gpu_state_put(struct i915_gpu_state *gpu)
218{
219 if (gpu)
220 kref_put(&gpu->ref, __i915_gpu_state_free);
221}
222
223struct i915_gpu_state *i915_first_error_state(struct drm_i915_private *i915);
224void i915_reset_error_state(struct drm_i915_private *i915);
225void i915_disable_error_state(struct drm_i915_private *i915, int err);
226
227#else
228
229static inline void i915_capture_error_state(struct drm_i915_private *dev_priv,
230 u32 engine_mask,
231 const char *error_msg)
232{
233}
234
235static inline struct i915_gpu_state *
236i915_first_error_state(struct drm_i915_private *i915)
237{
238 return ERR_PTR(-ENODEV);
239}
240
241static inline void i915_reset_error_state(struct drm_i915_private *i915)
242{
243}
244
245static inline void i915_disable_error_state(struct drm_i915_private *i915,
246 int err)
247{
248}
249
250#endif /* IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) */
251
252#endif /* _I915_GPU_ERROR_H_ */
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_gt_types.h"
19#include "gt/uc/intel_uc_fw.h"
20
21#include "intel_device_info.h"
22
23#include "i915_gem.h"
24#include "i915_gem_gtt.h"
25#include "i915_params.h"
26#include "i915_scheduler.h"
27
28struct drm_i915_private;
29struct i915_vma_compress;
30struct intel_engine_capture_vma;
31struct intel_overlay_error_state;
32struct intel_display_error_state;
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 num_pages;
44 int page_count;
45 int unused;
46 u32 *pages[];
47};
48
49struct i915_request_coredump {
50 unsigned long flags;
51 pid_t pid;
52 u32 context;
53 u32 seqno;
54 u32 head;
55 u32 tail;
56 struct i915_sched_attr sched_attr;
57};
58
59struct intel_engine_coredump {
60 const struct intel_engine_cs *engine;
61
62 bool simulated;
63 u32 reset_count;
64
65 /* position of active request inside the ring */
66 u32 rq_head, rq_post, rq_tail;
67
68 /* Register state */
69 u32 ccid;
70 u32 start;
71 u32 tail;
72 u32 head;
73 u32 ctl;
74 u32 mode;
75 u32 hws;
76 u32 ipeir;
77 u32 ipehr;
78 u32 esr;
79 u32 bbstate;
80 u32 instpm;
81 u32 instps;
82 u64 bbaddr;
83 u64 acthd;
84 u32 fault_reg;
85 u64 faddr;
86 u32 rc_psmi; /* sleep state */
87 struct intel_instdone instdone;
88
89 struct i915_gem_context_coredump {
90 char comm[TASK_COMM_LEN];
91
92 u64 total_runtime;
93 u32 avg_runtime;
94
95 pid_t pid;
96 int active;
97 int guilty;
98 struct i915_sched_attr sched_attr;
99 } context;
100
101 struct i915_vma_coredump *vma;
102
103 struct i915_request_coredump execlist[EXECLIST_MAX_PORTS];
104 unsigned int num_ports;
105
106 struct {
107 u32 gfx_mode;
108 union {
109 u64 pdp[4];
110 u32 pp_dir_base;
111 };
112 } vm_info;
113
114 struct intel_engine_coredump *next;
115};
116
117struct intel_gt_coredump {
118 const struct intel_gt *_gt;
119 bool awake;
120 bool simulated;
121
122 struct intel_gt_info info;
123
124 /* Generic register state */
125 u32 eir;
126 u32 pgtbl_er;
127 u32 ier;
128 u32 gtier[6], ngtier;
129 u32 derrmr;
130 u32 forcewake;
131 u32 error; /* gen6+ */
132 u32 err_int; /* gen7 */
133 u32 fault_data0; /* gen8, gen9 */
134 u32 fault_data1; /* gen8, gen9 */
135 u32 done_reg;
136 u32 gac_eco;
137 u32 gam_ecochk;
138 u32 gab_ctl;
139 u32 gfx_mode;
140 u32 gtt_cache;
141 u32 aux_err; /* gen12 */
142 u32 sfc_done[GEN12_SFC_DONE_MAX]; /* gen12 */
143 u32 gam_done; /* gen12 */
144
145 u32 nfence;
146 u64 fence[I915_MAX_NUM_FENCES];
147
148 struct intel_engine_coredump *engine;
149
150 struct intel_uc_coredump {
151 struct intel_uc_fw guc_fw;
152 struct intel_uc_fw huc_fw;
153 struct i915_vma_coredump *guc_log;
154 } *uc;
155
156 struct intel_gt_coredump *next;
157};
158
159struct i915_gpu_coredump {
160 struct kref ref;
161 ktime_t time;
162 ktime_t boottime;
163 ktime_t uptime;
164 unsigned long capture;
165
166 struct drm_i915_private *i915;
167
168 struct intel_gt_coredump *gt;
169
170 char error_msg[128];
171 bool simulated;
172 bool wakelock;
173 bool suspended;
174 int iommu;
175 u32 reset_count;
176 u32 suspend_count;
177
178 struct intel_device_info device_info;
179 struct intel_runtime_info runtime_info;
180 struct intel_driver_caps driver_caps;
181 struct i915_params params;
182
183 struct intel_overlay_error_state *overlay;
184 struct intel_display_error_state *display;
185
186 struct scatterlist *sgl, *fit;
187};
188
189struct i915_gpu_error {
190 /* For reset and error_state handling. */
191 spinlock_t lock;
192 /* Protected by the above dev->gpu_error.lock. */
193 struct i915_gpu_coredump *first_error;
194
195 atomic_t pending_fb_pin;
196
197 /** Number of times the device has been reset (global) */
198 atomic_t reset_count;
199
200 /** Number of times an engine has been reset */
201 atomic_t reset_engine_count[I915_NUM_ENGINES];
202};
203
204struct drm_i915_error_state_buf {
205 struct drm_i915_private *i915;
206 struct scatterlist *sgl, *cur, *end;
207
208 char *buf;
209 size_t bytes;
210 size_t size;
211 loff_t iter;
212
213 int err;
214};
215
216#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
217
218__printf(2, 3)
219void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...);
220
221struct i915_gpu_coredump *i915_gpu_coredump(struct drm_i915_private *i915);
222void i915_capture_error_state(struct drm_i915_private *i915);
223
224struct i915_gpu_coredump *
225i915_gpu_coredump_alloc(struct drm_i915_private *i915, gfp_t gfp);
226
227struct intel_gt_coredump *
228intel_gt_coredump_alloc(struct intel_gt *gt, gfp_t gfp);
229
230struct intel_engine_coredump *
231intel_engine_coredump_alloc(struct intel_engine_cs *engine, gfp_t gfp);
232
233struct intel_engine_capture_vma *
234intel_engine_coredump_add_request(struct intel_engine_coredump *ee,
235 struct i915_request *rq,
236 gfp_t gfp);
237
238void intel_engine_coredump_add_vma(struct intel_engine_coredump *ee,
239 struct intel_engine_capture_vma *capture,
240 struct i915_vma_compress *compress);
241
242struct i915_vma_compress *
243i915_vma_capture_prepare(struct intel_gt_coredump *gt);
244
245void i915_vma_capture_finish(struct intel_gt_coredump *gt,
246 struct i915_vma_compress *compress);
247
248void i915_error_state_store(struct i915_gpu_coredump *error);
249
250static inline struct i915_gpu_coredump *
251i915_gpu_coredump_get(struct i915_gpu_coredump *gpu)
252{
253 kref_get(&gpu->ref);
254 return gpu;
255}
256
257ssize_t
258i915_gpu_coredump_copy_to_buffer(struct i915_gpu_coredump *error,
259 char *buf, loff_t offset, size_t count);
260
261void __i915_gpu_coredump_free(struct kref *kref);
262static inline void i915_gpu_coredump_put(struct i915_gpu_coredump *gpu)
263{
264 if (gpu)
265 kref_put(&gpu->ref, __i915_gpu_coredump_free);
266}
267
268struct i915_gpu_coredump *i915_first_error_state(struct drm_i915_private *i915);
269void i915_reset_error_state(struct drm_i915_private *i915);
270void i915_disable_error_state(struct drm_i915_private *i915, int err);
271
272#else
273
274static inline void i915_capture_error_state(struct drm_i915_private *i915)
275{
276}
277
278static inline struct i915_gpu_coredump *
279i915_gpu_coredump_alloc(struct drm_i915_private *i915, gfp_t gfp)
280{
281 return NULL;
282}
283
284static inline struct intel_gt_coredump *
285intel_gt_coredump_alloc(struct intel_gt *gt, gfp_t gfp)
286{
287 return NULL;
288}
289
290static inline struct intel_engine_coredump *
291intel_engine_coredump_alloc(struct intel_engine_cs *engine, gfp_t gfp)
292{
293 return NULL;
294}
295
296static inline struct intel_engine_capture_vma *
297intel_engine_coredump_add_request(struct intel_engine_coredump *ee,
298 struct i915_request *rq,
299 gfp_t gfp)
300{
301 return NULL;
302}
303
304static inline void
305intel_engine_coredump_add_vma(struct intel_engine_coredump *ee,
306 struct intel_engine_capture_vma *capture,
307 struct i915_vma_compress *compress)
308{
309}
310
311static inline struct i915_vma_compress *
312i915_vma_capture_prepare(struct intel_gt_coredump *gt)
313{
314 return NULL;
315}
316
317static inline void
318i915_vma_capture_finish(struct intel_gt_coredump *gt,
319 struct i915_vma_compress *compress)
320{
321}
322
323static inline void
324i915_error_state_store(struct i915_gpu_coredump *error)
325{
326}
327
328static inline void i915_gpu_coredump_put(struct i915_gpu_coredump *gpu)
329{
330}
331
332static inline struct i915_gpu_coredump *
333i915_first_error_state(struct drm_i915_private *i915)
334{
335 return ERR_PTR(-ENODEV);
336}
337
338static inline void i915_reset_error_state(struct drm_i915_private *i915)
339{
340}
341
342static inline void i915_disable_error_state(struct drm_i915_private *i915,
343 int err)
344{
345}
346
347#endif /* IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) */
348
349#endif /* _I915_GPU_ERROR_H_ */