android_kernel_samsung_sm8650/include/linux/scmi_c1dcvs.h
Amir Vajid edb19769c0 drivers: soc: dcvs: Add snapshot of dcvs drivers
Add snapshot of dcvs drivers from msm-5.15 commit
250869d2bdc2192 ("sched: improve the scheduler")'.

Change-Id: I3c38cb8d90deaa140f29f8bbdbad2e1e5989eb31
Signed-off-by: Amir Vajid <quic_avajid@quicinc.com>
2022-09-23 13:13:02 -07:00

49 lines
1.5 KiB
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* scmi c1dcvs protocols header
*
* Copyright (c) 2021, The Linux Foundation. All rights reserved.
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
*/
#ifndef _SCMI_C1DCVS_H
#define _SCMI_C1DCVS_H
#include <linux/bitfield.h>
#include <linux/device.h>
#include <linux/types.h>
#define SCMI_C1DCVS_PROTOCOL 0x87
struct scmi_protocol_handle;
/**
* struct scmi_c1dcvs_vendor_ops - represents the various operations provided
* by scmi c1dcvs protocol
*/
struct scmi_c1dcvs_vendor_ops {
int (*set_enable_c1dcvs)(const struct scmi_protocol_handle *ph, void *buf);
int (*get_enable_c1dcvs)(const struct scmi_protocol_handle *ph, void *buf);
int (*set_enable_trace)(const struct scmi_protocol_handle *ph, void *buf);
int (*get_enable_trace)(const struct scmi_protocol_handle *ph, void *buf);
int (*set_ipc_thresh)(const struct scmi_protocol_handle *ph, void *buf);
int (*get_ipc_thresh)(const struct scmi_protocol_handle *ph, void *buf);
int (*set_efreq_thresh)(const struct scmi_protocol_handle *ph, void *buf);
int (*get_efreq_thresh)(const struct scmi_protocol_handle *ph, void *buf);
int (*set_hysteresis)(const struct scmi_protocol_handle *ph, void *buf);
int (*get_hysteresis)(const struct scmi_protocol_handle *ph, void *buf);
};
#if IS_ENABLED(CONFIG_QTI_C1DCVS_SCMI_CLIENT)
int c1dcvs_enable(bool enable);
#else
static inline int c1dcvs_enable(bool enable)
{
return -ENODEV;
}
#endif
#endif /* _SCMI_C1DCVS_H */