android_kernel_xiaomi_sm8450/include/linux/scmi_pmu.h
Amir Vajid 199eef76ac drivers: firmware: pmu_vendor: add cmd to enable tracing
Update pmu_vendor protocol to include a command to enable
tracing on cpucp to improve debugging.

Change-Id: I1210df14bd98a22f8fde74f27fb88b577b5c1f8b
Signed-off-by: Amir Vajid <avajid@codeaurora.org>
2021-11-12 11:00:06 -08:00

44 lines
903 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* SCMI PMU Protocols header
*
* Copyright (c) 2021, The Linux Foundation. All rights reserved.
*/
#ifndef _SCMI_PMU_H
#define _SCMI_PMU_H
#include <linux/bitfield.h>
#include <linux/device.h>
#include <linux/types.h>
#define SCMI_PMU_PROTOCOL 0x86
#define MAX_NUM_CPUS 8
enum cpucp_ev_idx {
CPU_CYC_EVT = 0,
CNT_CYC_EVT,
INST_RETIRED_EVT,
STALL_BACKEND_EVT,
L2D_CACHE_REFILL_EVT,
L2D_WB_EVT,
L3_ACCESS_EVT,
LLCC_CACHE_REFILL_EVT,
MAX_CPUCP_EVT,
};
struct scmi_protocol_handle;
/**
* struct scmi_pmu_vendor_ops - represents the various operations provided
* by SCMI PMU Protocol
*
* @set_pmu_map: sets the PMU map supported by cpucp.
*/
struct scmi_pmu_vendor_ops {
int (*set_pmu_map)(const struct scmi_protocol_handle *ph, void *buf);
int (*set_enable_trace)(const struct scmi_protocol_handle *ph, void *buf);
};
#endif