summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b')
-rw-r--r--drivers/gpu/nvgpu/gm20b/gr_gm20b.c124
-rw-r--r--drivers/gpu/nvgpu/gm20b/hw_gr_gm20b.h164
2 files changed, 288 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/gr_gm20b.c b/drivers/gpu/nvgpu/gm20b/gr_gm20b.c
index 84391377..79e46421 100644
--- a/drivers/gpu/nvgpu/gm20b/gr_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/gr_gm20b.c
@@ -23,6 +23,7 @@
23 23
24#include "gr_gm20b.h" 24#include "gr_gm20b.h"
25#include "hw_gr_gm20b.h" 25#include "hw_gr_gm20b.h"
26#include "hw_fifo_gm20b.h"
26#include "hw_fb_gm20b.h" 27#include "hw_fb_gm20b.h"
27#include "hw_proj_gm20b.h" 28#include "hw_proj_gm20b.h"
28#include "hw_ctxsw_prog_gm20b.h" 29#include "hw_ctxsw_prog_gm20b.h"
@@ -814,6 +815,128 @@ static void gr_gm20b_update_ctxsw_preemption_mode(struct gk20a *g,
814 gk20a_dbg_fn("done"); 815 gk20a_dbg_fn("done");
815} 816}
816 817
818static int gr_gm20b_dump_gr_status_regs(struct gk20a *g,
819 struct gk20a_debug_output *o)
820{
821 struct gr_gk20a *gr = &g->gr;
822
823 gk20a_debug_output(o, "NV_PGRAPH_STATUS: 0x%x\n",
824 gk20a_readl(g, gr_status_r()));
825 gk20a_debug_output(o, "NV_PGRAPH_STATUS1: 0x%x\n",
826 gk20a_readl(g, gr_status_1_r()));
827 gk20a_debug_output(o, "NV_PGRAPH_STATUS2: 0x%x\n",
828 gk20a_readl(g, gr_status_2_r()));
829 gk20a_debug_output(o, "NV_PGRAPH_ENGINE_STATUS: 0x%x\n",
830 gk20a_readl(g, gr_engine_status_r()));
831 gk20a_debug_output(o, "NV_PGRAPH_GRFIFO_STATUS : 0x%x\n",
832 gk20a_readl(g, gr_gpfifo_status_r()));
833 gk20a_debug_output(o, "NV_PGRAPH_GRFIFO_CONTROL : 0x%x\n",
834 gk20a_readl(g, gr_gpfifo_ctl_r()));
835 gk20a_debug_output(o, "NV_PGRAPH_PRI_FECS_HOST_INT_STATUS : 0x%x\n",
836 gk20a_readl(g, gr_fecs_host_int_status_r()));
837 gk20a_debug_output(o, "NV_PGRAPH_EXCEPTION : 0x%x\n",
838 gk20a_readl(g, gr_exception_r()));
839 gk20a_debug_output(o, "NV_PGRAPH_FECS_INTR : 0x%x\n",
840 gk20a_readl(g, gr_fecs_intr_r()));
841 gk20a_debug_output(o, "NV_PFIFO_ENGINE_STATUS(GR) : 0x%x\n",
842 gk20a_readl(g, fifo_engine_status_r(ENGINE_GR_GK20A)));
843 gk20a_debug_output(o, "NV_PGRAPH_ACTIVITY0: 0x%x\n",
844 gk20a_readl(g, gr_activity_0_r()));
845 gk20a_debug_output(o, "NV_PGRAPH_ACTIVITY1: 0x%x\n",
846 gk20a_readl(g, gr_activity_1_r()));
847 gk20a_debug_output(o, "NV_PGRAPH_ACTIVITY2: 0x%x\n",
848 gk20a_readl(g, gr_activity_2_r()));
849 gk20a_debug_output(o, "NV_PGRAPH_ACTIVITY4: 0x%x\n",
850 gk20a_readl(g, gr_activity_4_r()));
851 gk20a_debug_output(o, "NV_PGRAPH_PRI_SKED_ACTIVITY: 0x%x\n",
852 gk20a_readl(g, gr_pri_sked_activity_r()));
853 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPC0_GPCCS_GPC_ACTIVITY0: 0x%x\n",
854 gk20a_readl(g, gr_pri_gpc0_gpccs_gpc_activity0_r()));
855 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPC0_GPCCS_GPC_ACTIVITY1: 0x%x\n",
856 gk20a_readl(g, gr_pri_gpc0_gpccs_gpc_activity1_r()));
857 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPC0_GPCCS_GPC_ACTIVITY2: 0x%x\n",
858 gk20a_readl(g, gr_pri_gpc0_gpccs_gpc_activity2_r()));
859 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPC0_GPCCS_GPC_ACTIVITY3: 0x%x\n",
860 gk20a_readl(g, gr_pri_gpc0_gpccs_gpc_activity3_r()));
861 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPC0_TPC0_TPCCS_TPC_ACTIVITY0: 0x%x\n",
862 gk20a_readl(g, gr_pri_gpc0_tpc0_tpccs_tpc_activity_0_r()));
863 if (gr->gpc_tpc_count[0] == 2)
864 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPC0_TPC1_TPCCS_TPC_ACTIVITY0: 0x%x\n",
865 gk20a_readl(g, gr_pri_gpc0_tpc1_tpccs_tpc_activity_0_r()));
866 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPC0_TPCS_TPCCS_TPC_ACTIVITY0: 0x%x\n",
867 gk20a_readl(g, gr_pri_gpc0_tpcs_tpccs_tpc_activity_0_r()));
868 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPCS_GPCCS_GPC_ACTIVITY0: 0x%x\n",
869 gk20a_readl(g, gr_pri_gpcs_gpccs_gpc_activity_0_r()));
870 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPCS_GPCCS_GPC_ACTIVITY1: 0x%x\n",
871 gk20a_readl(g, gr_pri_gpcs_gpccs_gpc_activity_1_r()));
872 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPCS_GPCCS_GPC_ACTIVITY2: 0x%x\n",
873 gk20a_readl(g, gr_pri_gpcs_gpccs_gpc_activity_2_r()));
874 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPCS_GPCCS_GPC_ACTIVITY3: 0x%x\n",
875 gk20a_readl(g, gr_pri_gpcs_gpccs_gpc_activity_3_r()));
876 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPCS_TPC0_TPCCS_TPC_ACTIVITY0: 0x%x\n",
877 gk20a_readl(g, gr_pri_gpcs_tpc0_tpccs_tpc_activity_0_r()));
878 if (gr->gpc_tpc_count[0] == 2)
879 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPCS_TPC1_TPCCS_TPC_ACTIVITY0: 0x%x\n",
880 gk20a_readl(g, gr_pri_gpcs_tpc1_tpccs_tpc_activity_0_r()));
881 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPCS_TPCS_TPCCS_TPC_ACTIVITY0: 0x%x\n",
882 gk20a_readl(g, gr_pri_gpcs_tpcs_tpccs_tpc_activity_0_r()));
883 gk20a_debug_output(o, "NV_PGRAPH_PRI_BE0_BECS_BE_ACTIVITY0: 0x%x\n",
884 gk20a_readl(g, gr_pri_be0_becs_be_activity0_r()));
885 gk20a_debug_output(o, "NV_PGRAPH_PRI_BE1_BECS_BE_ACTIVITY0: 0x%x\n",
886 gk20a_readl(g, gr_pri_be1_becs_be_activity0_r()));
887 gk20a_debug_output(o, "NV_PGRAPH_PRI_BES_BECS_BE_ACTIVITY0: 0x%x\n",
888 gk20a_readl(g, gr_pri_bes_becs_be_activity0_r()));
889 gk20a_debug_output(o, "NV_PGRAPH_PRI_DS_MPIPE_STATUS: 0x%x\n",
890 gk20a_readl(g, gr_pri_ds_mpipe_status_r()));
891 gk20a_debug_output(o, "NV_PGRAPH_PRI_FE_GO_IDLE_ON_STATUS: 0x%x\n",
892 gk20a_readl(g, gr_pri_fe_go_idle_on_status_r()));
893 gk20a_debug_output(o, "NV_PGRAPH_PRI_FE_GO_IDLE_TIMEOUT : 0x%x\n",
894 gk20a_readl(g, gr_fe_go_idle_timeout_r()));
895 gk20a_debug_output(o, "NV_PGRAPH_PRI_FE_GO_IDLE_CHECK : 0x%x\n",
896 gk20a_readl(g, gr_pri_fe_go_idle_check_r()));
897 gk20a_debug_output(o, "NV_PGRAPH_PRI_FE_GO_IDLE_INFO : 0x%x\n",
898 gk20a_readl(g, gr_pri_fe_go_idle_info_r()));
899 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPC0_TPC0_TEX_M_TEX_SUBUNITS_STATUS: 0x%x\n",
900 gk20a_readl(g, gr_pri_gpc0_tpc0_tex_m_tex_subunits_status_r()));
901 gk20a_debug_output(o, "NV_PGRAPH_PRI_CWD_FS: 0x%x\n",
902 gk20a_readl(g, gr_cwd_fs_r()));
903 gk20a_debug_output(o, "NV_PGRAPH_PRI_FE_TPC_FS: 0x%x\n",
904 gk20a_readl(g, gr_fe_tpc_fs_r()));
905 gk20a_debug_output(o, "NV_PGRAPH_PRI_CWD_GPC_TPC_ID(0): 0x%x\n",
906 gk20a_readl(g, gr_cwd_gpc_tpc_id_r(0)));
907 gk20a_debug_output(o, "NV_PGRAPH_PRI_CWD_SM_ID(0): 0x%x\n",
908 gk20a_readl(g, gr_cwd_sm_id_r(0)));
909 gk20a_debug_output(o, "NV_PGRAPH_PRI_FECS_CTXSW_STATUS_FE_0: 0x%x\n",
910 gk20a_readl(g, gr_fecs_ctxsw_status_fe_0_r()));
911 gk20a_debug_output(o, "NV_PGRAPH_PRI_FECS_CTXSW_STATUS_1: 0x%x\n",
912 gk20a_readl(g, gr_fecs_ctxsw_status_1_r()));
913 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPC0_GPCCS_CTXSW_STATUS_GPC_0: 0x%x\n",
914 gk20a_readl(g, gr_gpc0_gpccs_ctxsw_status_gpc_0_r()));
915 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPC0_GPCCS_CTXSW_STATUS_1: 0x%x\n",
916 gk20a_readl(g, gr_gpc0_gpccs_ctxsw_status_1_r()));
917 gk20a_debug_output(o, "NV_PGRAPH_PRI_FECS_CTXSW_IDLESTATE : 0x%x\n",
918 gk20a_readl(g, gr_fecs_ctxsw_idlestate_r()));
919 gk20a_debug_output(o, "NV_PGRAPH_PRI_GPC0_GPCCS_CTXSW_IDLESTATE : 0x%x\n",
920 gk20a_readl(g, gr_gpc0_gpccs_ctxsw_idlestate_r()));
921 gk20a_debug_output(o, "NV_PGRAPH_PRI_FECS_CURRENT_CTX : 0x%x\n",
922 gk20a_readl(g, gr_fecs_current_ctx_r()));
923 gk20a_debug_output(o, "NV_PGRAPH_PRI_FECS_NEW_CTX : 0x%x\n",
924 gk20a_readl(g, gr_fecs_new_ctx_r()));
925 gk20a_debug_output(o, "NV_PGRAPH_PRI_BE0_CROP_STATUS1 : 0x%x\n",
926 gk20a_readl(g, gr_pri_be0_crop_status1_r()));
927 gk20a_debug_output(o, "NV_PGRAPH_PRI_BES_CROP_STATUS1 : 0x%x\n",
928 gk20a_readl(g, gr_pri_bes_crop_status1_r()));
929 gk20a_debug_output(o, "NV_PGRAPH_PRI_BE0_ZROP_STATUS : 0x%x\n",
930 gk20a_readl(g, gr_pri_be0_zrop_status_r()));
931 gk20a_debug_output(o, "NV_PGRAPH_PRI_BE0_ZROP_STATUS2 : 0x%x\n",
932 gk20a_readl(g, gr_pri_be0_zrop_status2_r()));
933 gk20a_debug_output(o, "NV_PGRAPH_PRI_BES_ZROP_STATUS : 0x%x\n",
934 gk20a_readl(g, gr_pri_bes_zrop_status_r()));
935 gk20a_debug_output(o, "NV_PGRAPH_PRI_BES_ZROP_STATUS2 : 0x%x\n",
936 gk20a_readl(g, gr_pri_bes_zrop_status2_r()));
937 return 0;
938}
939
817void gm20b_init_gr(struct gpu_ops *gops) 940void gm20b_init_gr(struct gpu_ops *gops)
818{ 941{
819 gops->gr.init_gpc_mmu = gr_gm20b_init_gpc_mmu; 942 gops->gr.init_gpc_mmu = gr_gm20b_init_gpc_mmu;
@@ -857,4 +980,5 @@ void gm20b_init_gr(struct gpu_ops *gops)
857 gops->gr.free_gr_ctx = gr_gk20a_free_gr_ctx; 980 gops->gr.free_gr_ctx = gr_gk20a_free_gr_ctx;
858 gops->gr.update_ctxsw_preemption_mode = 981 gops->gr.update_ctxsw_preemption_mode =
859 gr_gm20b_update_ctxsw_preemption_mode; 982 gr_gm20b_update_ctxsw_preemption_mode;
983 gops->gr.dump_gr_regs = gr_gm20b_dump_gr_status_regs;
860} 984}
diff --git a/drivers/gpu/nvgpu/gm20b/hw_gr_gm20b.h b/drivers/gpu/nvgpu/gm20b/hw_gr_gm20b.h
index 23b5226a..9c33321f 100644
--- a/drivers/gpu/nvgpu/gm20b/hw_gr_gm20b.h
+++ b/drivers/gpu/nvgpu/gm20b/hw_gr_gm20b.h
@@ -222,6 +222,10 @@ static inline u32 gr_gpfifo_ctl_semaphore_access_enabled_f(void)
222{ 222{
223 return 0x10000; 223 return 0x10000;
224} 224}
225static inline u32 gr_gpfifo_status_r(void)
226{
227 return 0x00400504;
228}
225static inline u32 gr_trapped_addr_r(void) 229static inline u32 gr_trapped_addr_r(void)
226{ 230{
227 return 0x00400704; 231 return 0x00400704;
@@ -266,6 +270,14 @@ static inline u32 gr_status_mask_r(void)
266{ 270{
267 return 0x00400610; 271 return 0x00400610;
268} 272}
273static inline u32 gr_status_1_r(void)
274{
275 return 0x00400604;
276}
277static inline u32 gr_status_2_r(void)
278{
279 return 0x00400608;
280}
269static inline u32 gr_engine_status_r(void) 281static inline u32 gr_engine_status_r(void)
270{ 282{
271 return 0x0040060c; 283 return 0x0040060c;
@@ -274,6 +286,138 @@ static inline u32 gr_engine_status_value_busy_f(void)
274{ 286{
275 return 0x1; 287 return 0x1;
276} 288}
289static inline u32 gr_activity_0_r(void)
290{
291 return 0x00400380;
292}
293static inline u32 gr_activity_1_r(void)
294{
295 return 0x00400384;
296}
297static inline u32 gr_activity_2_r(void)
298{
299 return 0x00400388;
300}
301static inline u32 gr_activity_4_r(void)
302{
303 return 0x00400390;
304}
305static inline u32 gr_pri_sked_activity_r(void)
306{
307 return 0x00407054;
308}
309static inline u32 gr_pri_gpc0_gpccs_gpc_activity0_r(void)
310{
311 return 0x00502c80;
312}
313static inline u32 gr_pri_gpc0_gpccs_gpc_activity1_r(void)
314{
315 return 0x00502c84;
316}
317static inline u32 gr_pri_gpc0_gpccs_gpc_activity2_r(void)
318{
319 return 0x00502c88;
320}
321static inline u32 gr_pri_gpc0_gpccs_gpc_activity3_r(void)
322{
323 return 0x00502c8c;
324}
325static inline u32 gr_pri_gpc0_tpc0_tpccs_tpc_activity_0_r(void)
326{
327 return 0x00504500;
328}
329static inline u32 gr_pri_gpc0_tpc1_tpccs_tpc_activity_0_r(void)
330{
331 return 0x00504d00;
332}
333static inline u32 gr_pri_gpc0_tpcs_tpccs_tpc_activity_0_r(void)
334{
335 return 0x00501d00;
336}
337static inline u32 gr_pri_gpcs_gpccs_gpc_activity_0_r(void)
338{
339 return 0x0041ac80;
340}
341static inline u32 gr_pri_gpcs_gpccs_gpc_activity_1_r(void)
342{
343 return 0x0041ac84;
344}
345static inline u32 gr_pri_gpcs_gpccs_gpc_activity_2_r(void)
346{
347 return 0x0041ac88;
348}
349static inline u32 gr_pri_gpcs_gpccs_gpc_activity_3_r(void)
350{
351 return 0x0041ac8c;
352}
353static inline u32 gr_pri_gpcs_tpc0_tpccs_tpc_activity_0_r(void)
354{
355 return 0x0041c500;
356}
357static inline u32 gr_pri_gpcs_tpc1_tpccs_tpc_activity_0_r(void)
358{
359 return 0x0041cd00;
360}
361static inline u32 gr_pri_gpcs_tpcs_tpccs_tpc_activity_0_r(void)
362{
363 return 0x00419d00;
364}
365static inline u32 gr_pri_be0_becs_be_activity0_r(void)
366{
367 return 0x00410200;
368}
369static inline u32 gr_pri_be1_becs_be_activity0_r(void)
370{
371 return 0x00410600;
372}
373static inline u32 gr_pri_bes_becs_be_activity0_r(void)
374{
375 return 0x00408a00;
376}
377static inline u32 gr_pri_ds_mpipe_status_r(void)
378{
379 return 0x00405858;
380}
381static inline u32 gr_pri_fe_go_idle_on_status_r(void)
382{
383 return 0x00404150;
384}
385static inline u32 gr_pri_fe_go_idle_check_r(void)
386{
387 return 0x00404158;
388}
389static inline u32 gr_pri_fe_go_idle_info_r(void)
390{
391 return 0x00404194;
392}
393static inline u32 gr_pri_gpc0_tpc0_tex_m_tex_subunits_status_r(void)
394{
395 return 0x00504238;
396}
397static inline u32 gr_pri_be0_crop_status1_r(void)
398{
399 return 0x00410134;
400}
401static inline u32 gr_pri_bes_crop_status1_r(void)
402{
403 return 0x00408934;
404}
405static inline u32 gr_pri_be0_zrop_status_r(void)
406{
407 return 0x00410048;
408}
409static inline u32 gr_pri_be0_zrop_status2_r(void)
410{
411 return 0x0041004c;
412}
413static inline u32 gr_pri_bes_zrop_status_r(void)
414{
415 return 0x00408848;
416}
417static inline u32 gr_pri_bes_zrop_status2_r(void)
418{
419 return 0x0040884c;
420}
277static inline u32 gr_pipe_bundle_address_r(void) 421static inline u32 gr_pipe_bundle_address_r(void)
278{ 422{
279 return 0x00400200; 423 return 0x00400200;
@@ -1062,6 +1206,26 @@ static inline u32 gr_fecs_arb_ctx_cmd_cmd_v(u32 r)
1062{ 1206{
1063 return (r >> 0) & 0x1f; 1207 return (r >> 0) & 0x1f;
1064} 1208}
1209static inline u32 gr_fecs_ctxsw_status_fe_0_r(void)
1210{
1211 return 0x00409c00;
1212}
1213static inline u32 gr_gpc0_gpccs_ctxsw_status_gpc_0_r(void)
1214{
1215 return 0x00502c04;
1216}
1217static inline u32 gr_gpc0_gpccs_ctxsw_status_1_r(void)
1218{
1219 return 0x00502400;
1220}
1221static inline u32 gr_fecs_ctxsw_idlestate_r(void)
1222{
1223 return 0x00409420;
1224}
1225static inline u32 gr_gpc0_gpccs_ctxsw_idlestate_r(void)
1226{
1227 return 0x00502420;
1228}
1065static inline u32 gr_rstr2d_gpc_map0_r(void) 1229static inline u32 gr_rstr2d_gpc_map0_r(void)
1066{ 1230{
1067 return 0x0040780c; 1231 return 0x0040780c;