summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/gr_gk20a.h
diff options
context:
space:
mode:
authorDeepak Nibade <dnibade@nvidia.com>2016-03-09 04:21:43 -0500
committerTerje Bergstrom <tbergstrom@nvidia.com>2016-04-19 11:07:03 -0400
commit04e45bc943e9703c26f229dfbe558d94418acbe1 (patch)
tree541c62a32055255e82cc953b79b50c8925903f12 /drivers/gpu/nvgpu/gk20a/gr_gk20a.h
parent9cf7e23f57d8669d99886a3c82d4997b94c35df8 (diff)
gpu: nvgpu: support storing/reading single SM error state
Add support to store error state of single SM before preprocessing SM exception Error state is stored as : struct nvgpu_dbg_gpu_sm_error_state_record { u32 hww_global_esr; u32 hww_warp_esr; u64 hww_warp_esr_pc; u32 hww_global_esr_report_mask; u32 hww_warp_esr_report_mask; } Note that we can safely append new fields to above structure in the future if required Also, add IOCTL NVGPU_DBG_GPU_IOCTL_READ_SINGLE_SM_ERROR_STATE to support reading SM's error state by user space Bug 200156699 Change-Id: I9a62cb01e8a35c720b52d5d202986347706c7308 Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: http://git-master/r/1120329 GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/gr_gk20a.h')
-rw-r--r--drivers/gpu/nvgpu/gk20a/gr_gk20a.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gr_gk20a.h b/drivers/gpu/nvgpu/gk20a/gr_gk20a.h
index c82cf75c..22ff1351 100644
--- a/drivers/gpu/nvgpu/gk20a/gr_gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/gr_gk20a.h
@@ -329,6 +329,7 @@ struct gr_gk20a {
329 u32 fbp_en_mask; 329 u32 fbp_en_mask;
330 u32 no_of_sm; 330 u32 no_of_sm;
331 struct sm_info *sm_to_cluster; 331 struct sm_info *sm_to_cluster;
332 struct nvgpu_dbg_gpu_sm_error_state_record *sm_error_states;
332#if defined(CONFIG_GK20A_CYCLE_STATS) 333#if defined(CONFIG_GK20A_CYCLE_STATS)
333 struct mutex cs_lock; 334 struct mutex cs_lock;
334 struct gk20a_cs_snapshot *cs_data; 335 struct gk20a_cs_snapshot *cs_data;