2 * SPDX-License-Identifier: MIT
4 * Copyright � 2008-2018 Intel Corporation
7 #ifndef _I915_GPU_ERROR_H_
8 #define _I915_GPU_ERROR_H_
10 #include <linux/atomic.h>
11 #include <linux/kref.h>
12 #include <linux/ktime.h>
13 #include <linux/sched.h>
15 #include <drm/drm_mm.h>
17 #include "gt/intel_engine.h"
18 #include "gt/uc/intel_uc_fw.h"
20 #include "intel_device_info.h"
23 #include "i915_gem_gtt.h"
24 #include "i915_params.h"
25 #include "i915_scheduler.h"
27 struct drm_i915_private
;
28 struct i915_vma_compress
;
29 struct intel_engine_capture_vma
;
30 struct intel_overlay_error_state
;
31 struct intel_display_error_state
;
33 struct i915_vma_coredump
{
34 struct i915_vma_coredump
*next
;
48 struct i915_request_coredump
{
56 struct i915_sched_attr sched_attr
;
59 struct intel_engine_coredump
{
60 const struct intel_engine_cs
*engine
;
65 /* position of active request inside the ring */
66 u32 rq_head
, rq_post
, rq_tail
;
85 u32 rc_psmi
; /* sleep state */
86 struct intel_instdone instdone
;
88 struct i915_gem_context_coredump
{
89 char comm
[TASK_COMM_LEN
];
93 struct i915_sched_attr sched_attr
;
96 struct i915_vma_coredump
*vma
;
98 struct i915_request_coredump execlist
[EXECLIST_MAX_PORTS
];
99 unsigned int num_ports
;
109 struct intel_engine_coredump
*next
;
112 struct intel_gt_coredump
{
113 const struct intel_gt
*_gt
;
117 /* Generic register state */
121 u32 gtier
[6], ngtier
;
124 u32 error
; /* gen6+ */
125 u32 err_int
; /* gen7 */
126 u32 fault_data0
; /* gen8, gen9 */
127 u32 fault_data1
; /* gen8, gen9 */
134 u32 aux_err
; /* gen12 */
135 u32 sfc_done
[GEN12_SFC_DONE_MAX
]; /* gen12 */
136 u32 gam_done
; /* gen12 */
139 u64 fence
[I915_MAX_NUM_FENCES
];
141 struct intel_engine_coredump
*engine
;
143 struct intel_uc_coredump
{
144 struct intel_uc_fw guc_fw
;
145 struct intel_uc_fw huc_fw
;
146 struct i915_vma_coredump
*guc_log
;
149 struct intel_gt_coredump
*next
;
152 struct i915_gpu_coredump
{
157 unsigned long capture
;
159 struct drm_i915_private
*i915
;
161 struct intel_gt_coredump
*gt
;
171 struct intel_device_info device_info
;
172 struct intel_runtime_info runtime_info
;
173 struct intel_driver_caps driver_caps
;
174 struct i915_params params
;
176 struct intel_overlay_error_state
*overlay
;
177 struct intel_display_error_state
*display
;
179 struct scatterlist
*sgl
, *fit
;
182 struct i915_gpu_error
{
183 /* For reset and error_state handling. */
185 /* Protected by the above dev->gpu_error.lock. */
186 struct i915_gpu_coredump
*first_error
;
188 atomic_t pending_fb_pin
;
190 /** Number of times the device has been reset (global) */
191 atomic_t reset_count
;
193 /** Number of times an engine has been reset */
194 atomic_t reset_engine_count
[I915_NUM_ENGINES
];
197 struct drm_i915_error_state_buf
{
198 struct drm_i915_private
*i915
;
199 struct scatterlist
*sgl
, *cur
, *end
;
209 #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
212 void i915_error_printf(struct drm_i915_error_state_buf
*e
, const char *f
, ...);
214 struct i915_gpu_coredump
*i915_gpu_coredump(struct drm_i915_private
*i915
);
215 void i915_capture_error_state(struct drm_i915_private
*i915
);
217 struct i915_gpu_coredump
*
218 i915_gpu_coredump_alloc(struct drm_i915_private
*i915
, gfp_t gfp
);
220 struct intel_gt_coredump
*
221 intel_gt_coredump_alloc(struct intel_gt
*gt
, gfp_t gfp
);
223 struct intel_engine_coredump
*
224 intel_engine_coredump_alloc(struct intel_engine_cs
*engine
, gfp_t gfp
);
226 struct intel_engine_capture_vma
*
227 intel_engine_coredump_add_request(struct intel_engine_coredump
*ee
,
228 struct i915_request
*rq
,
231 void intel_engine_coredump_add_vma(struct intel_engine_coredump
*ee
,
232 struct intel_engine_capture_vma
*capture
,
233 struct i915_vma_compress
*compress
);
235 struct i915_vma_compress
*
236 i915_vma_capture_prepare(struct intel_gt_coredump
*gt
);
238 void i915_vma_capture_finish(struct intel_gt_coredump
*gt
,
239 struct i915_vma_compress
*compress
);
241 void i915_error_state_store(struct i915_gpu_coredump
*error
);
243 static inline struct i915_gpu_coredump
*
244 i915_gpu_coredump_get(struct i915_gpu_coredump
*gpu
)
251 i915_gpu_coredump_copy_to_buffer(struct i915_gpu_coredump
*error
,
252 char *buf
, loff_t offset
, size_t count
);
254 void __i915_gpu_coredump_free(struct kref
*kref
);
255 static inline void i915_gpu_coredump_put(struct i915_gpu_coredump
*gpu
)
258 kref_put(&gpu
->ref
, __i915_gpu_coredump_free
);
261 struct i915_gpu_coredump
*i915_first_error_state(struct drm_i915_private
*i915
);
262 void i915_reset_error_state(struct drm_i915_private
*i915
);
263 void i915_disable_error_state(struct drm_i915_private
*i915
, int err
);
267 static inline void i915_capture_error_state(struct drm_i915_private
*i915
)
271 static inline struct i915_gpu_coredump
*
272 i915_gpu_coredump_alloc(struct drm_i915_private
*i915
, gfp_t gfp
)
277 static inline struct intel_gt_coredump
*
278 intel_gt_coredump_alloc(struct intel_gt
*gt
, gfp_t gfp
)
283 static inline struct intel_engine_coredump
*
284 intel_engine_coredump_alloc(struct intel_engine_cs
*engine
, gfp_t gfp
)
289 static inline struct intel_engine_capture_vma
*
290 intel_engine_coredump_add_request(struct intel_engine_coredump
*ee
,
291 struct i915_request
*rq
,
298 intel_engine_coredump_add_vma(struct intel_engine_coredump
*ee
,
299 struct intel_engine_capture_vma
*capture
,
300 struct i915_vma_compress
*compress
)
304 static inline struct i915_vma_compress
*
305 i915_vma_capture_prepare(struct intel_gt_coredump
*gt
)
311 i915_vma_capture_finish(struct intel_gt_coredump
*gt
,
312 struct i915_vma_compress
*compress
)
317 i915_error_state_store(struct drm_i915_private
*i915
,
318 struct i915_gpu_coredump
*error
)
322 static inline struct i915_gpu_coredump
*
323 i915_first_error_state(struct drm_i915_private
*i915
)
325 return ERR_PTR(-ENODEV
);
328 static inline void i915_reset_error_state(struct drm_i915_private
*i915
)
332 static inline void i915_disable_error_state(struct drm_i915_private
*i915
,
337 #endif /* IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) */
339 #endif /* _I915_GPU_ERROR_H_ */