1 /* SPDX-License-Identifier: GPL-2.0 */
6 #include <linux/spinlock.h>
7 #include <linux/device.h>
8 #include <linux/mod_devicetable.h>
9 #include <dt-bindings/soc/qcom,apr.h>
10 #include <dt-bindings/soc/qcom,gpr.h>
12 extern const struct bus_type aprbus;
14 #define APR_HDR_LEN(hdr_len) ((hdr_len)/4)
23 #define APR_HDR_FIELD(msg_type, hdr_len, ver)\
24 (((msg_type & 0x3) << 8) | ((hdr_len & 0xF) << 4) | (ver & 0xF))
26 #define APR_HDR_SIZE sizeof(struct apr_hdr)
27 #define APR_SEQ_CMD_HDR_FIELD APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, \
28 APR_HDR_LEN(APR_HDR_SIZE), \
31 #define APR_PKT_VER 0x0
33 /* Command and Response Types */
34 #define APR_MSG_TYPE_EVENT 0x0
35 #define APR_MSG_TYPE_CMD_RSP 0x1
36 #define APR_MSG_TYPE_SEQ_CMD 0x2
37 #define APR_MSG_TYPE_NSEQ_CMD 0x3
38 #define APR_MSG_TYPE_MAX 0x04
40 /* APR Basic Response Message */
41 #define APR_BASIC_RSP_RESULT 0x000110E8
42 #define APR_RSP_ACCEPTED 0x000100BE
44 struct aprv2_ibasic_rsp_result_t {
49 /* hdr field Ver [0:3], Size [4:7], Message type [8:10] */
50 #define APR_HDR_FIELD_VER(h) (h & 0x000F)
51 #define APR_HDR_FIELD_SIZE(h) ((h & 0x00F0) >> 4)
52 #define APR_HDR_FIELD_SIZE_BYTES(h) (((h & 0x00F0) >> 4) * 4)
53 #define APR_HDR_FIELD_MT(h) ((h & 0x0300) >> 8)
83 uint32_t dest_domain:8;
84 uint32_t src_domain:8;
103 #define GPR_HDR_SIZE sizeof(struct gpr_hdr)
104 #define GPR_PKT_VER 0x0
105 #define GPR_PKT_HEADER_WORD_SIZE ((sizeof(struct gpr_pkt) + 3) >> 2)
106 #define GPR_PKT_HEADER_BYTE_SIZE (GPR_PKT_HEADER_WORD_SIZE << 2)
108 #define GPR_BASIC_RSP_RESULT 0x02001005
110 struct gpr_ibasic_rsp_result_t {
115 #define GPR_BASIC_EVT_ACCEPTED 0x02001006
117 struct gpr_ibasic_rsp_accepted_t {
121 /* Bits 0 to 15 -- Minor version, Bits 16 to 31 -- Major version */
122 #define APR_SVC_MAJOR_VERSION(v) ((v >> 16) & 0xFF)
123 #define APR_SVC_MINOR_VERSION(v) (v & 0xFF)
125 typedef int (*gpr_port_cb) (struct gpr_resp_pkt *d, void *priv, int op);
126 struct packet_router;
127 struct pkt_router_svc {
129 gpr_port_cb callback;
130 struct packet_router *pr;
136 typedef struct pkt_router_svc gpr_port_t;
143 char name[APR_NAME_SIZE];
144 const char *service_path;
145 struct pkt_router_svc svc;
146 struct list_head node;
149 typedef struct apr_device gpr_device_t;
151 #define to_apr_device(d) container_of(d, struct apr_device, dev)
152 #define svc_to_apr_device(d) container_of(d, struct apr_device, svc)
155 int (*probe)(struct apr_device *sl);
156 void (*remove)(struct apr_device *sl);
157 int (*callback)(struct apr_device *a,
158 struct apr_resp_pkt *d);
159 int (*gpr_callback)(struct gpr_resp_pkt *d, void *data, int op);
160 struct device_driver driver;
161 const struct apr_device_id *id_table;
164 typedef struct apr_driver gpr_driver_t;
165 #define to_apr_driver(d) container_of(d, struct apr_driver, driver)
168 * use a macro to avoid include chaining to get THIS_MODULE
170 #define apr_driver_register(drv) __apr_driver_register(drv, THIS_MODULE)
172 int __apr_driver_register(struct apr_driver *drv, struct module *owner);
173 void apr_driver_unregister(struct apr_driver *drv);
176 * module_apr_driver() - Helper macro for registering a aprbus driver
177 * @__apr_driver: apr_driver struct
179 * Helper macro for aprbus drivers which do not do anything special in
180 * module init/exit. This eliminates a lot of boilerplate. Each module
181 * may only use this macro once, and calling it replaces module_init()
184 #define module_apr_driver(__apr_driver) \
185 module_driver(__apr_driver, apr_driver_register, \
186 apr_driver_unregister)
187 #define module_gpr_driver(__gpr_driver) module_apr_driver(__gpr_driver)
189 int apr_send_pkt(struct apr_device *adev, struct apr_pkt *pkt);
191 gpr_port_t *gpr_alloc_port(gpr_device_t *gdev, struct device *dev,
192 gpr_port_cb cb, void *priv);
193 void gpr_free_port(gpr_port_t *port);
194 int gpr_send_port_pkt(gpr_port_t *port, struct gpr_pkt *pkt);
195 int gpr_send_pkt(gpr_device_t *gdev, struct gpr_pkt *pkt);
197 #endif /* __QCOM_APR_H_ */