apr.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2010-2017, 2019, 2020, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef __APR_H_
  6. #define __APR_H_
  7. #include <linux/mutex.h>
  8. #include <soc/qcom/subsystem_notif.h>
  9. enum apr_subsys_state {
  10. APR_SUBSYS_DOWN,
  11. APR_SUBSYS_UP,
  12. APR_SUBSYS_LOADED,
  13. APR_SUBSYS_UNKNOWN,
  14. };
  15. struct apr_q6 {
  16. void *pil;
  17. atomic_t q6_state;
  18. atomic_t modem_state;
  19. struct mutex lock;
  20. /*
  21. * ToDo - Multiple client support to be added.
  22. * And checking for state UNKNOWN currently.
  23. */
  24. void (*state_notify_cb)(enum apr_subsys_state state,
  25. void *client_handle);
  26. void *client_handle;
  27. };
  28. struct apr_hdr {
  29. uint16_t hdr_field;
  30. uint16_t pkt_size;
  31. uint8_t src_svc;
  32. uint8_t src_domain;
  33. uint16_t src_port;
  34. uint8_t dest_svc;
  35. uint8_t dest_domain;
  36. uint16_t dest_port;
  37. uint32_t token;
  38. uint32_t opcode;
  39. };
  40. #define APR_HDR_LEN(hdr_len) ((hdr_len)/4)
  41. #define APR_PKT_SIZE(hdr_len, payload_len) ((hdr_len) + (payload_len))
  42. #define APR_HDR_FIELD(msg_type, hdr_len, ver)\
  43. (((msg_type & 0x3) << 8) | ((hdr_len & 0xF) << 4) | (ver & 0xF))
  44. #define APR_HDR_SIZE sizeof(struct apr_hdr)
  45. /* Version */
  46. #define APR_PKT_VER 0x0
  47. /* Command and Response Types */
  48. #define APR_MSG_TYPE_EVENT 0x0
  49. #define APR_MSG_TYPE_CMD_RSP 0x1
  50. #define APR_MSG_TYPE_SEQ_CMD 0x2
  51. #define APR_MSG_TYPE_NSEQ_CMD 0x3
  52. #define APR_MSG_TYPE_MAX 0x04
  53. /* APR Basic Response Message */
  54. #define APR_BASIC_RSP_RESULT 0x000110E8
  55. #define APR_RSP_ACCEPTED 0x000100BE
  56. /* Domain IDs */
  57. #define APR_DOMAIN_SIM 0x1
  58. #define APR_DOMAIN_PC 0x2
  59. #define APR_DOMAIN_MODEM 0x3
  60. #define APR_DOMAIN_ADSP 0x4
  61. #define APR_DOMAIN_APPS 0x5
  62. #define APR_DOMAIN_MAX 0x6
  63. /* ADSP service IDs */
  64. #define APR_SVC_TEST_CLIENT 0x2
  65. #define APR_SVC_ADSP_CORE 0x3
  66. #define APR_SVC_AFE 0x4
  67. #define APR_SVC_VSM 0x5
  68. #define APR_SVC_VPM 0x6
  69. #define APR_SVC_ASM 0x7
  70. #define APR_SVC_ADM 0x8
  71. #define APR_SVC_ADSP_MVM 0x09
  72. #define APR_SVC_ADSP_CVS 0x0A
  73. #define APR_SVC_ADSP_CVP 0x0B
  74. #define APR_SVC_USM 0x0C
  75. #define APR_SVC_LSM 0x0D
  76. #define APR_SVC_VIDC 0x16
  77. #define APR_SVC_MAX 0x17
  78. /* Modem Service IDs */
  79. #define APR_SVC_MVS 0x3
  80. #define APR_SVC_MVM 0x4
  81. #define APR_SVC_CVS 0x5
  82. #define APR_SVC_CVP 0x6
  83. #define APR_SVC_SRD 0x7
  84. /* APR Port IDs */
  85. #define APR_MAX_PORTS 0x80
  86. #define APR_NAME_MAX 0x40
  87. #define RESET_EVENTS 0x000130D7
  88. #define LPASS_RESTART_EVENT 0x1000
  89. #define LPASS_RESTART_READY 0x1001
  90. struct apr_client_data {
  91. uint16_t reset_event;
  92. uint16_t reset_proc;
  93. uint16_t payload_size;
  94. uint16_t hdr_len;
  95. uint16_t msg_type;
  96. uint16_t src;
  97. uint16_t dest_svc;
  98. uint16_t src_port;
  99. uint16_t dest_port;
  100. uint32_t token;
  101. uint32_t opcode;
  102. void *payload;
  103. };
  104. typedef int32_t (*apr_fn)(struct apr_client_data *data, void *priv);
  105. struct apr_svc {
  106. uint16_t id;
  107. uint16_t dest_id;
  108. uint16_t client_id;
  109. uint16_t dest_domain;
  110. uint8_t rvd;
  111. uint8_t port_cnt;
  112. uint8_t svc_cnt;
  113. uint8_t need_reset;
  114. apr_fn port_fn[APR_MAX_PORTS];
  115. void *port_priv[APR_MAX_PORTS];
  116. apr_fn fn;
  117. void *priv;
  118. struct mutex m_lock;
  119. spinlock_t w_lock;
  120. uint8_t pkt_owner;
  121. #ifdef CONFIG_MSM_QDSP6_APRV2_VM
  122. uint16_t vm_dest_svc;
  123. uint32_t vm_handle;
  124. #endif
  125. };
  126. struct apr_client {
  127. uint8_t id;
  128. uint8_t svc_cnt;
  129. uint8_t rvd;
  130. struct mutex m_lock;
  131. struct apr_svc_ch_dev *handle;
  132. struct apr_svc svc[APR_SVC_MAX];
  133. };
  134. struct apr_rx_intents {
  135. int num_of_intents;
  136. uint32_t size;
  137. };
  138. struct apr_pkt_cfg {
  139. uint8_t pkt_owner;
  140. struct apr_rx_intents intents;
  141. };
  142. int apr_load_adsp_image(void);
  143. struct apr_client *apr_get_client(int dest_id, int client_id);
  144. int apr_wait_for_device_up(int dest_id);
  145. int apr_get_svc(const char *svc_name, int dest_id, int *client_id,
  146. int *svc_idx, int *svc_id);
  147. void apr_cb_func(void *buf, int len, void *priv);
  148. struct apr_svc *apr_register(char *dest, char *svc_name, apr_fn svc_fn,
  149. uint32_t src_port, void *priv);
  150. inline int apr_fill_hdr(void *handle, uint32_t *buf, uint16_t src_port,
  151. uint16_t msg_type, uint16_t dest_port,
  152. uint32_t token, uint32_t opcode, uint16_t len);
  153. int apr_send_pkt(void *handle, uint32_t *buf);
  154. int apr_deregister(void *handle);
  155. void subsys_notif_register(char *client_name, int domain,
  156. struct notifier_block *nb);
  157. void subsys_notif_deregister(char *client_name);
  158. int apr_get_dest_id(char *dest);
  159. uint16_t apr_get_data_src(struct apr_hdr *hdr);
  160. void change_q6_state(int state);
  161. void q6audio_dsp_not_responding(void);
  162. void apr_reset(void *handle);
  163. enum apr_subsys_state apr_get_subsys_state(void);
  164. enum apr_subsys_state apr_get_modem_state(void);
  165. void apr_set_modem_state(enum apr_subsys_state state);
  166. enum apr_subsys_state apr_get_q6_state(void);
  167. int apr_set_q6_state(enum apr_subsys_state state);
  168. void apr_set_subsys_state(void);
  169. const char *apr_get_lpass_subsys_name(void);
  170. uint16_t apr_get_reset_domain(uint16_t proc);
  171. int apr_start_rx_rt(void *handle);
  172. int apr_end_rx_rt(void *handle);
  173. void apr_register_adsp_state_cb(void *adsp_cb, void *client_handle);
  174. #endif