summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/regops_gk20a.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/regops_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/regops_gk20a.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/regops_gk20a.c b/drivers/gpu/nvgpu/gk20a/regops_gk20a.c
index f0cf5205..06cd5051 100644
--- a/drivers/gpu/nvgpu/gk20a/regops_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/regops_gk20a.c
@@ -22,9 +22,6 @@
22 * DEALINGS IN THE SOFTWARE. 22 * DEALINGS IN THE SOFTWARE.
23 */ 23 */
24 24
25#include <linux/err.h>
26#include <uapi/linux/nvgpu.h>
27
28#include "gk20a.h" 25#include "gk20a.h"
29#include "gr_gk20a.h" 26#include "gr_gk20a.h"
30#include "dbg_gpu_gk20a.h" 27#include "dbg_gpu_gk20a.h"
@@ -377,12 +374,12 @@ static const u32 gk20a_qctl_whitelist_ranges_count =
377 374
378static bool validate_reg_ops(struct dbg_session_gk20a *dbg_s, 375static bool validate_reg_ops(struct dbg_session_gk20a *dbg_s,
379 u32 *ctx_rd_count, u32 *ctx_wr_count, 376 u32 *ctx_rd_count, u32 *ctx_wr_count,
380 struct nvgpu_dbg_gpu_reg_op *ops, 377 struct nvgpu_dbg_reg_op *ops,
381 u32 op_count); 378 u32 op_count);
382 379
383 380
384int exec_regops_gk20a(struct dbg_session_gk20a *dbg_s, 381int exec_regops_gk20a(struct dbg_session_gk20a *dbg_s,
385 struct nvgpu_dbg_gpu_reg_op *ops, 382 struct nvgpu_dbg_reg_op *ops,
386 u64 num_ops) 383 u64 num_ops)
387{ 384{
388 int err = 0; 385 int err = 0;
@@ -519,7 +516,7 @@ int exec_regops_gk20a(struct dbg_session_gk20a *dbg_s,
519 516
520 517
521static int validate_reg_op_info(struct dbg_session_gk20a *dbg_s, 518static int validate_reg_op_info(struct dbg_session_gk20a *dbg_s,
522 struct nvgpu_dbg_gpu_reg_op *op) 519 struct nvgpu_dbg_reg_op *op)
523{ 520{
524 int err = 0; 521 int err = 0;
525 522
@@ -559,7 +556,7 @@ static int validate_reg_op_info(struct dbg_session_gk20a *dbg_s,
559} 556}
560 557
561static bool check_whitelists(struct dbg_session_gk20a *dbg_s, 558static bool check_whitelists(struct dbg_session_gk20a *dbg_s,
562 struct nvgpu_dbg_gpu_reg_op *op, u32 offset) 559 struct nvgpu_dbg_reg_op *op, u32 offset)
563{ 560{
564 struct gk20a *g = dbg_s->g; 561 struct gk20a *g = dbg_s->g;
565 bool valid = false; 562 bool valid = false;
@@ -630,7 +627,7 @@ static bool check_whitelists(struct dbg_session_gk20a *dbg_s,
630 627
631/* note: the op here has already been through validate_reg_op_info */ 628/* note: the op here has already been through validate_reg_op_info */
632static int validate_reg_op_offset(struct dbg_session_gk20a *dbg_s, 629static int validate_reg_op_offset(struct dbg_session_gk20a *dbg_s,
633 struct nvgpu_dbg_gpu_reg_op *op) 630 struct nvgpu_dbg_reg_op *op)
634{ 631{
635 int err; 632 int err;
636 u32 buf_offset_lo, buf_offset_addr, num_offsets, offset; 633 u32 buf_offset_lo, buf_offset_addr, num_offsets, offset;
@@ -689,7 +686,7 @@ static int validate_reg_op_offset(struct dbg_session_gk20a *dbg_s,
689 686
690static bool validate_reg_ops(struct dbg_session_gk20a *dbg_s, 687static bool validate_reg_ops(struct dbg_session_gk20a *dbg_s,
691 u32 *ctx_rd_count, u32 *ctx_wr_count, 688 u32 *ctx_rd_count, u32 *ctx_wr_count,
692 struct nvgpu_dbg_gpu_reg_op *ops, 689 struct nvgpu_dbg_reg_op *ops,
693 u32 op_count) 690 u32 op_count)
694{ 691{
695 u32 i; 692 u32 i;