Files
linux-nv-oot/drivers/platform/tegra/dce/dce-admin-debug.c
Mahesh Kumar 873e421d95 platform: dce: Add Debugfs support for Perf
Add debugfs nodes
 - start/stop perf stats.
 - read perf stat stats
 - set the format type as csv or xml

Add debugfs to capture perf events
 - Can enable specific perf events
through debugfs node.

Signed-off-by: Mahesh Kumar <mahkumar@nvidia.com>
Change-Id: I0a7833d7a8f04296ba3806f4f2a218175080d2e2
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvidia/+/2765513
Reviewed-by: svc_kernel_abi <svc_kernel_abi@nvidia.com>
Reviewed-by: Arun Swain <arswain@nvidia.com>
Reviewed-by: Vinod Gopalakrishnakurup <vinodg@nvidia.com>
Tested-by: Vinod Gopalakrishnakurup <vinodg@nvidia.com>
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
2023-04-14 19:36:09 +00:00

165 lines
4.0 KiB
C

// SPDX-License-Identifier: GPL-2.0-only
/*
* 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.
*/
#include <dce.h>
#include <dce-mailbox.h>
#include <dce-util-common.h>
#include <dce-client-ipc-internal.h>
#include <interface/dce-core-interface-errors.h>
#include <interface/dce-interface.h>
#include <interface/dce-admin-cmds.h>
/**
* dce_admin_send_cmd_set_perf_stat - Start/stop DCE perf data collection.
*
* @d - Pointer to tegra_dce struct.
* @msg - Pointer to dce_ipc_msg struct.
* @start_perf - Bool to indicate start/stop of perf data collection
*
* Return - 0 if successful
*/
int dce_admin_send_cmd_set_perf_stat(struct tegra_dce *d,
struct dce_ipc_message *msg,
bool start_perf)
{
int ret = -1;
struct dce_admin_ipc_cmd *req_msg;
struct dce_admin_ipc_resp *resp_msg;
if (!msg || !msg->tx.data || !msg->rx.data)
goto out;
/* return if dce bootstrap not completed */
if (!dce_is_bootstrap_done(d)) {
dce_err(d, "Admin Bootstrap not yet done");
goto out;
}
req_msg = (struct dce_admin_ipc_cmd *)(msg->tx.data);
resp_msg = (struct dce_admin_ipc_resp *) (msg->rx.data);
if (start_perf == true)
req_msg->cmd = (uint32_t)DCE_ADMIN_CMD_PERF_START;
else
req_msg->cmd = (uint32_t)DCE_ADMIN_CMD_PERF_STOP;
ret = dce_admin_send_msg(d, msg);
if (ret) {
dce_err(d, "Error sending set perf msg : [%d]", ret);
goto out;
}
out:
return ret;
}
/**
* dce_admin_send_cmd_get_perf_stat - Get DCE perf data.
*
* @d - Pointer to tegra_dce struct.
* @msg - Pointer to dce_ipc_msg struct.
*
* Return - 0 if successful
*/
int dce_admin_send_cmd_get_perf_stat(struct tegra_dce *d,
struct dce_ipc_message *msg)
{
int ret = -1;
struct dce_admin_ipc_cmd *req_msg;
struct dce_admin_ipc_resp *resp_msg;
if (!msg || !msg->tx.data || !msg->rx.data)
goto out;
/* return if dce bootstrap not completed */
if (!dce_is_bootstrap_done(d)) {
dce_err(d, "Admin Bootstrap not yet done");
goto out;
}
req_msg = (struct dce_admin_ipc_cmd *)(msg->tx.data);
resp_msg = (struct dce_admin_ipc_resp *) (msg->rx.data);
req_msg->cmd = (uint32_t)DCE_ADMIN_CMD_PERF_RESULTS;
ret = dce_admin_send_msg(d, msg);
if (ret) {
dce_err(d, "Error sending get perf msg : [%d]", ret);
goto out;
}
out:
return ret;
}
int dce_admin_send_cmd_get_perf_events(struct tegra_dce *d,
struct dce_ipc_message *msg)
{
int ret = -1;
struct dce_admin_ipc_cmd *req_msg;
struct dce_admin_ipc_resp *resp_msg;
if (!msg || !msg->tx.data || !msg->rx.data)
goto out;
/* return if dce bootstrap not completed */
if (!dce_is_bootstrap_done(d)) {
dce_err(d, "Admin Bootstrap not yet done");
goto out;
}
req_msg = (struct dce_admin_ipc_cmd *)(msg->tx.data);
resp_msg = (struct dce_admin_ipc_resp *) (msg->rx.data);
req_msg->cmd = (uint32_t)DCE_ADMIN_CMD_PERF_GET_EVENTS;
ret = dce_admin_send_msg(d, msg);
if (ret) {
dce_err(d, "Error sending get perf events msg : [%d]", ret);
goto out;
}
out:
return ret;
}
int dce_admin_send_cmd_clear_perf_events(struct tegra_dce *d,
struct dce_ipc_message *msg)
{
int ret = -1;
struct dce_admin_ipc_cmd *req_msg;
if (!msg || !msg->tx.data || !msg->rx.data)
goto out;
/* return if dce bootstrap not completed */
if (!dce_is_bootstrap_done(d)) {
dce_err(d, "Admin Bootstrap not yet done");
goto out;
}
req_msg = (struct dce_admin_ipc_cmd *)(msg->tx.data);
req_msg->cmd = (uint32_t)DCE_ADMIN_CMD_PERF_CLEAR_EVENTS;
ret = dce_admin_send_msg(d, msg);
if (ret) {
dce_err(d, "Error sending clear perf events msg : [%d]", ret);
goto out;
}
out:
return ret;
}