Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Bjorn Andersson | bde440e | 2017-01-27 02:28:32 -0800 | [diff] [blame] | 2 | #ifndef __RPROC_QCOM_COMMON_H__ |
| 3 | #define __RPROC_QCOM_COMMON_H__ |
| 4 | |
Bjorn Andersson | b90fcfc | 2017-01-27 07:04:54 -0800 | [diff] [blame] | 5 | #include <linux/remoteproc.h> |
| 6 | #include "remoteproc_internal.h" |
Bjorn Andersson | 1fb82ee | 2017-08-27 21:51:38 -0700 | [diff] [blame] | 7 | #include <linux/soc/qcom/qmi.h> |
| 8 | |
| 9 | struct qcom_sysmon; |
Bjorn Andersson | b90fcfc | 2017-01-27 07:04:54 -0800 | [diff] [blame] | 10 | |
Bjorn Andersson | eea0702 | 2017-08-29 16:13:35 -0700 | [diff] [blame] | 11 | struct qcom_rproc_glink { |
| 12 | struct rproc_subdev subdev; |
| 13 | |
| 14 | struct device *dev; |
| 15 | struct device_node *node; |
| 16 | struct qcom_glink *edge; |
| 17 | }; |
| 18 | |
Bjorn Andersson | b90fcfc | 2017-01-27 07:04:54 -0800 | [diff] [blame] | 19 | struct qcom_rproc_subdev { |
| 20 | struct rproc_subdev subdev; |
| 21 | |
| 22 | struct device *dev; |
| 23 | struct device_node *node; |
| 24 | struct qcom_smd_edge *edge; |
| 25 | }; |
Bjorn Andersson | bde440e | 2017-01-27 02:28:32 -0800 | [diff] [blame] | 26 | |
Bjorn Andersson | 1e140df | 2017-07-24 22:56:43 -0700 | [diff] [blame] | 27 | struct qcom_rproc_ssr { |
| 28 | struct rproc_subdev subdev; |
| 29 | |
| 30 | const char *name; |
| 31 | }; |
| 32 | |
Bjorn Andersson | eea0702 | 2017-08-29 16:13:35 -0700 | [diff] [blame] | 33 | void qcom_add_glink_subdev(struct rproc *rproc, struct qcom_rproc_glink *glink); |
| 34 | void qcom_remove_glink_subdev(struct rproc *rproc, struct qcom_rproc_glink *glink); |
| 35 | |
Sarangdhar Joshi | dcb57ed | 2018-01-05 16:04:20 -0800 | [diff] [blame] | 36 | int qcom_register_dump_segments(struct rproc *rproc, const struct firmware *fw); |
| 37 | |
Bjorn Andersson | b90fcfc | 2017-01-27 07:04:54 -0800 | [diff] [blame] | 38 | void qcom_add_smd_subdev(struct rproc *rproc, struct qcom_rproc_subdev *smd); |
| 39 | void qcom_remove_smd_subdev(struct rproc *rproc, struct qcom_rproc_subdev *smd); |
| 40 | |
Bjorn Andersson | 1e140df | 2017-07-24 22:56:43 -0700 | [diff] [blame] | 41 | void qcom_add_ssr_subdev(struct rproc *rproc, struct qcom_rproc_ssr *ssr, |
| 42 | const char *ssr_name); |
| 43 | void qcom_remove_ssr_subdev(struct rproc *rproc, struct qcom_rproc_ssr *ssr); |
| 44 | |
Bjorn Andersson | 1fb82ee | 2017-08-27 21:51:38 -0700 | [diff] [blame] | 45 | #if IS_ENABLED(CONFIG_QCOM_SYSMON) |
| 46 | struct qcom_sysmon *qcom_add_sysmon_subdev(struct rproc *rproc, |
| 47 | const char *name, |
| 48 | int ssctl_instance); |
| 49 | void qcom_remove_sysmon_subdev(struct qcom_sysmon *sysmon); |
| 50 | #else |
| 51 | static inline struct qcom_sysmon *qcom_add_sysmon_subdev(struct rproc *rproc, |
| 52 | const char *name, |
| 53 | int ssctl_instance) |
| 54 | { |
| 55 | return NULL; |
| 56 | } |
| 57 | |
| 58 | static inline void qcom_remove_sysmon_subdev(struct qcom_sysmon *sysmon) |
| 59 | { |
| 60 | } |
| 61 | #endif |
| 62 | |
Bjorn Andersson | bde440e | 2017-01-27 02:28:32 -0800 | [diff] [blame] | 63 | #endif |