summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a
diff options
context:
space:
mode:
authorSunny He <suhe@nvidia.com>2017-06-21 15:08:08 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-08-24 12:34:52 -0400
commitcc64606a535edd9fd96487631f8ef583226fc575 (patch)
treee639f1496ab22b35fde90643abd2ddfc28a27bf5 /drivers/gpu/nvgpu/gk20a
parent4b5b67d6d83430d8d670660b1dfc9cf024d60d88 (diff)
gpu: nvgpu: debugfs code to dump HAL functions
Prints addresses of device-specific HAL functions to debugfs file hal/gops. The list of functions is produced by dumping the contents of the gpu_ops substruct of the gk20a struct. This interface makes the assumption that there are only function pointers in gpu_ops. Companion Python script nvgpu_debug_hal.py analyzes gk20a.h to determine operation counts and prettyify debugfs interface's output. Jira NVGPU-107 Change-Id: I0910e86638d144979e8630bbc5b330bccfd3ad94 Signed-off-by: Sunny He <suhe@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1542990 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a')
-rw-r--r--drivers/gpu/nvgpu/gk20a/gk20a.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gk20a.h b/drivers/gpu/nvgpu/gk20a/gk20a.h
index 15e81291..121dd962 100644
--- a/drivers/gpu/nvgpu/gk20a/gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/gk20a.h
@@ -130,6 +130,11 @@ enum gk20a_cbc_op {
130 130
131enum nvgpu_unit; 131enum nvgpu_unit;
132 132
133/*
134 * gpu_ops should only contain function pointers! Non-function pointer members
135 * should go in struct gk20a or be implemented with the boolean flag API defined
136 * in nvgpu/enabled.h
137 */
133struct gpu_ops { 138struct gpu_ops {
134 struct { 139 struct {
135 int (*determine_L2_size_bytes)(struct gk20a *gk20a); 140 int (*determine_L2_size_bytes)(struct gk20a *gk20a);