mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 02:22:34 +03:00
bug 1648908 This commit adds support for FECS ctxsw tracing. Code is compiled conditionnaly under CONFIG_GK20_CTXSW_TRACE. This feature requires an updated FECS ucode that writes one record to a ring buffer on each context switch. On RM/Kernel side, the GPU driver reads records from the master ring buffer and generates trace entries into a user-facing VM ring buffer. For each record in the master ring buffer, RM/Kernel has to retrieve the vmid+pid of the user process that submitted related work. Features currently implemented: - master ring buffer allocation - debugfs to dump master ring buffer - FECS record per context switch (with both current and new contexts) - dedicated device for ctxsw tracing (access to VM ring buffer) - SOF generation (and access to PTIMER) - VM ring buffer allocation, and reconfiguration - enable/disable tracing at user level - event-based trace filtering - context_ptr to vmid+pid mapping - read system call for ctxsw dev - mmap system call for ctxsw dev (direct access to VM ring buffer) - poll system call for ctxsw dev - save/restore register on ELPG/CG6 - separate user ring from FECS ring handling Features requiring ucode changes: - enable/disable tracing at FECS level - actual busy time on engine (bug 1642354) - master ring buffer threshold interrupt (P1) - API for GPU to CPU timestamp conversion (P1) - vmid/pid/uid based filtering (P1) Change-Id: I8e39c648221ee0fa09d5df8524b03dca83fe24f3 Signed-off-by: Thomas Fleury <tfleury@nvidia.com> Reviewed-on: http://git-master/r/1022737 GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
42 lines
1.5 KiB
C
42 lines
1.5 KiB
C
/*
|
|
* Copyright (c) 2016, NVIDIA CORPORATION. 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 __CTXSW_TRACE_GK20A_H
|
|
#define __CTXSW_TRACE_GK20A_H
|
|
|
|
#define GK20A_CTXSW_TRACE_NUM_DEVS 1
|
|
|
|
struct gk20a;
|
|
struct nvgpu_ctxsw_trace_entry;
|
|
struct channel_gk20a;
|
|
struct channel_ctx_gk20a;
|
|
struct gk20a_ctxsw_dev;
|
|
struct gk20a_fecs_trace;
|
|
|
|
|
|
int gk20a_ctxsw_dev_release(struct inode *inode, struct file *filp);
|
|
int gk20a_ctxsw_dev_open(struct inode *inode, struct file *filp);
|
|
long gk20a_ctxsw_dev_ioctl(struct file *filp,
|
|
unsigned int cmd, unsigned long arg);
|
|
ssize_t gk20a_ctxsw_dev_read(struct file *, char __user *, size_t, loff_t *);
|
|
unsigned int gk20a_ctxsw_dev_poll(struct file *, struct poll_table_struct *);
|
|
int gk20a_ctxsw_dev_mmap(struct file *, struct vm_area_struct *);
|
|
|
|
int gk20a_ctxsw_trace_init(struct gk20a *);
|
|
int gk20a_ctxsw_trace_setup(struct gk20a *, void *ctx_ptr);
|
|
void gk20a_ctxsw_trace_cleanup(struct gk20a *);
|
|
int gk20a_ctxsw_trace_write(struct gk20a *, struct nvgpu_ctxsw_trace_entry *);
|
|
void gk20a_ctxsw_trace_wake_up(struct gk20a *g, int vmid);
|
|
|
|
#endif /* __CTXSW_TRACE_GK20A_H */
|