/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. */ #ifndef DCE_DEBUG_PERF_H #define DCE_DEBUG_PERF_H #include #include int dbg_dce_perf_stats_stats_fops_open(struct inode *inode, struct file *file); ssize_t dbg_dce_perf_stats_stats_fops_write(struct file *file, const char __user *user_buf, size_t count, loff_t *ppos); int dbg_dce_perf_stats_help_fops_open(struct inode *inode, struct file *file); ssize_t dbg_dce_perf_format_fops_write(struct file *file, const char __user *user_buf, size_t count, loff_t *ppos); int dbg_dce_perf_format_fops_open(struct inode *inode, struct file *file); int dbg_dce_perf_events_events_fops_open(struct inode *inode, struct file *file); ssize_t dbg_dce_perf_events_events_fops_write(struct file *file, const char __user *user_buf, size_t count, loff_t *ppos); int dbg_dce_perf_events_help_fops_open(struct inode *inode, struct file *file); #endif