hc
2024-03-26 e0728245c89800c2038c23308f2d88969d5b41c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
 */
 
#ifndef __SOC_QCOM_RPMH_H__
#define __SOC_QCOM_RPMH_H__
 
#include <soc/qcom/tcs.h>
#include <linux/platform_device.h>
 
 
#if IS_ENABLED(CONFIG_QCOM_RPMH)
int rpmh_write(const struct device *dev, enum rpmh_state state,
          const struct tcs_cmd *cmd, u32 n);
 
int rpmh_write_async(const struct device *dev, enum rpmh_state state,
            const struct tcs_cmd *cmd, u32 n);
 
int rpmh_write_batch(const struct device *dev, enum rpmh_state state,
            const struct tcs_cmd *cmd, u32 *n);
 
void rpmh_invalidate(const struct device *dev);
 
#else
 
static inline int rpmh_write(const struct device *dev, enum rpmh_state state,
                const struct tcs_cmd *cmd, u32 n)
{ return -ENODEV; }
 
static inline int rpmh_write_async(const struct device *dev,
                  enum rpmh_state state,
                  const struct tcs_cmd *cmd, u32 n)
{ return -ENODEV; }
 
static inline int rpmh_write_batch(const struct device *dev,
                  enum rpmh_state state,
                  const struct tcs_cmd *cmd, u32 *n)
{ return -ENODEV; }
 
static inline void rpmh_invalidate(const struct device *dev)
{
}
 
#endif /* CONFIG_QCOM_RPMH */
 
#endif /* __SOC_QCOM_RPMH_H__ */