If clock-support is enabled for smcinvoke, a notification will be sent to qseecom to enable/disable clocks when smcinvoke sends an invoke command. Change-Id: Ie36b43b009e9855785189272002f48fca719125d Signed-off-by: Amanpreet Kaur <quic_amankaur@quicinc.com> Signed-off-by: Ravi Kumar Bokka <quic_c_rbokka@quicinc.com>
60 lines
1.7 KiB
C
60 lines
1.7 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2012-2021, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __QSEECOM_KERNEL_H_
|
|
#define __QSEECOM_KERNEL_H_
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/qseecom.h>
|
|
|
|
#define QSEECOM_ALIGN_SIZE 0x40
|
|
#define QSEECOM_ALIGN_MASK (QSEECOM_ALIGN_SIZE - 1)
|
|
#define QSEECOM_ALIGN(x) \
|
|
((x + QSEECOM_ALIGN_MASK) & (~QSEECOM_ALIGN_MASK))
|
|
|
|
/*
|
|
* struct qseecom_handle -
|
|
* Handle to the qseecom device for kernel clients
|
|
* @sbuf - shared buffer pointer
|
|
* @sbbuf_len - shared buffer size
|
|
*/
|
|
struct qseecom_handle {
|
|
void *dev; /* in/out */
|
|
unsigned char *sbuf; /* in/out */
|
|
uint32_t sbuf_len; /* in/out */
|
|
};
|
|
|
|
int qseecom_start_app(struct qseecom_handle **handle,
|
|
char *app_name, uint32_t size);
|
|
int qseecom_shutdown_app(struct qseecom_handle **handle);
|
|
int qseecom_send_command(struct qseecom_handle *handle, void *send_buf,
|
|
uint32_t sbuf_len, void *resp_buf, uint32_t rbuf_len);
|
|
|
|
int qseecom_set_bandwidth(struct qseecom_handle *handle, bool high);
|
|
#if IS_ENABLED(CONFIG_QSEECOM)
|
|
int qseecom_process_listener_from_smcinvoke(uint32_t *result,
|
|
u64 *response_type, unsigned int *data);
|
|
/*
|
|
* If clock-support is enabled for smcinvoke,
|
|
* a notification will be sent to qseecom to enable/disable
|
|
* clocks when smcinvoke sends an invoke command
|
|
*/
|
|
int qseecom_set_msm_bus_request_from_smcinvoke(enum qseecom_bandwidth_request_mode mode);
|
|
#else
|
|
static inline int qseecom_process_listener_from_smcinvoke(uint32_t *result,
|
|
u64 *response_type, unsigned int *data)
|
|
{
|
|
return -EOPNOTSUPP;
|
|
}
|
|
static inline int qseecom_set_msm_bus_request_from_smcinvoke(
|
|
enum qseecom_bandwidth_request_mode mode)
|
|
{
|
|
return -EOPNOTSUPP;
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* __QSEECOM_KERNEL_H_ */
|