summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/io_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common/io_common.c')
-rw-r--r--drivers/gpu/nvgpu/common/io_common.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/common/io_common.c b/drivers/gpu/nvgpu/common/io_common.c
new file mode 100644
index 00000000..e7041eb7
--- /dev/null
+++ b/drivers/gpu/nvgpu/common/io_common.c
@@ -0,0 +1,29 @@
1/*
2 * Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 */
13
14#include <nvgpu/io.h>
15#include <nvgpu/types.h>
16
17#include "gk20a/gk20a.h"
18
19void nvgpu_writel_check(struct gk20a *g, u32 r, u32 v)
20{
21 u32 read_val = 0U;
22
23 nvgpu_writel(g, r, v);
24 read_val = nvgpu_readl(g, r);
25 if (v != read_val) {
26 nvgpu_log(g, gpu_dbg_reg, "r=0x%x rd=0x%x wr=0x%x (mismatch)",
27 r, read_val, v);
28 }
29}