aboutsummaryrefslogtreecommitdiffstats
path: root/include/os/linux/ioctl_dbg.h
diff options
context:
space:
mode:
authorJoshua Bakita <bakitajoshua@gmail.com>2024-09-25 16:09:09 -0400
committerJoshua Bakita <bakitajoshua@gmail.com>2024-09-25 16:09:09 -0400
commitf347fde22f1297e4f022600d201780d5ead78114 (patch)
tree76be305d6187003a1e0486ff6e91efb1062ae118 /include/os/linux/ioctl_dbg.h
parent8340d234d78a7d0f46c11a584de538148b78b7cb (diff)
Delete no-longer-needed nvgpu headersHEADmasterjbakita-wip
The dependency on these was removed in commit 8340d234.
Diffstat (limited to 'include/os/linux/ioctl_dbg.h')
-rw-r--r--include/os/linux/ioctl_dbg.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/include/os/linux/ioctl_dbg.h b/include/os/linux/ioctl_dbg.h
deleted file mode 100644
index 2e188cc..0000000
--- a/include/os/linux/ioctl_dbg.h
+++ /dev/null
@@ -1,38 +0,0 @@
1/*
2 * Tegra GK20A GPU Debugger Driver
3 *
4 * Copyright (c) 2017-2018, NVIDIA CORPORATION. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18#ifndef DBG_GPU_IOCTL_GK20A_H
19#define DBG_GPU_IOCTL_GK20A_H
20
21struct inode;
22struct file;
23typedef struct poll_table_struct poll_table;
24
25/* NVGPU_DBG_GPU_IOCTL_REG_OPS: the upper limit for the number
26 * of regops */
27#define NVGPU_IOCTL_DBG_REG_OPS_LIMIT 1024
28
29/* module debug driver interface */
30int gk20a_dbg_gpu_dev_release(struct inode *inode, struct file *filp);
31int gk20a_dbg_gpu_dev_open(struct inode *inode, struct file *filp);
32long gk20a_dbg_gpu_dev_ioctl(struct file *filp, unsigned int cmd, unsigned long arg);
33unsigned int gk20a_dbg_gpu_dev_poll(struct file *filep, poll_table *wait);
34
35/* used by profiler driver interface */
36int gk20a_prof_gpu_dev_open(struct inode *inode, struct file *filp);
37
38#endif