q6apm.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __Q6APM_H__
  3. #define __Q6APM_H__
  4. #include <linux/types.h>
  5. #include <linux/slab.h>
  6. #include <linux/wait.h>
  7. #include <linux/kernel.h>
  8. #include <linux/module.h>
  9. #include <linux/sched.h>
  10. #include <linux/of.h>
  11. #include <linux/delay.h>
  12. #include <sound/soc.h>
  13. #include <linux/of_platform.h>
  14. #include <linux/jiffies.h>
  15. #include <linux/soc/qcom/apr.h>
  16. #include <dt-bindings/sound/qcom,q6dsp-lpass-ports.h>
  17. #include "audioreach.h"
  18. #define APM_PORT_MAX 127
  19. #define APM_PORT_MAX_AUDIO_CHAN_CNT 8
  20. #define PCM_CHANNEL_NULL 0
  21. #define PCM_CHANNEL_FL 1 /* Front left channel. */
  22. #define PCM_CHANNEL_FR 2 /* Front right channel. */
  23. #define PCM_CHANNEL_FC 3 /* Front center channel. */
  24. #define PCM_CHANNEL_LS 4 /* Left surround channel. */
  25. #define PCM_CHANNEL_RS 5 /* Right surround channel. */
  26. #define PCM_CHANNEL_LFE 6 /* Low frequency effect channel. */
  27. #define PCM_CHANNEL_CS 7 /* Center surround channel; Rear center ch */
  28. #define PCM_CHANNEL_LB 8 /* Left back channel; Rear left channel. */
  29. #define PCM_CHANNEL_RB 9 /* Right back channel; Rear right channel. */
  30. #define PCM_CHANNELS 10 /* Top surround channel. */
  31. #define APM_TIMESTAMP_FLAG 0x80000000
  32. #define FORMAT_LINEAR_PCM 0x0000
  33. /* APM client callback events */
  34. #define APM_CMD_EOS 0x0003
  35. #define APM_CLIENT_EVENT_CMD_EOS_DONE 0x1003
  36. #define APM_CMD_CLOSE 0x0004
  37. #define APM_CLIENT_EVENT_CMD_CLOSE_DONE 0x1004
  38. #define APM_CLIENT_EVENT_CMD_RUN_DONE 0x1008
  39. #define APM_CLIENT_EVENT_DATA_WRITE_DONE 0x1009
  40. #define APM_CLIENT_EVENT_DATA_READ_DONE 0x100a
  41. #define APM_WRITE_TOKEN_MASK GENMASK(15, 0)
  42. #define APM_WRITE_TOKEN_LEN_MASK GENMASK(31, 16)
  43. #define APM_WRITE_TOKEN_LEN_SHIFT 16
  44. #define APM_MAX_SESSIONS 8
  45. struct q6apm {
  46. struct device *dev;
  47. gpr_port_t *port;
  48. gpr_device_t *gdev;
  49. /* For Graph OPEN/START/STOP/CLOSE operations */
  50. wait_queue_head_t wait;
  51. struct gpr_ibasic_rsp_result_t result;
  52. struct mutex cmd_lock;
  53. struct mutex lock;
  54. uint32_t state;
  55. struct idr graph_idr;
  56. struct idr graph_info_idr;
  57. struct idr sub_graphs_idr;
  58. struct idr containers_idr;
  59. struct idr modules_idr;
  60. };
  61. struct audio_buffer {
  62. phys_addr_t phys;
  63. uint32_t size; /* size of buffer */
  64. };
  65. struct audioreach_graph_data {
  66. struct audio_buffer *buf;
  67. uint32_t num_periods;
  68. uint32_t dsp_buf;
  69. uint32_t mem_map_handle;
  70. };
  71. struct audioreach_graph {
  72. struct audioreach_graph_info *info;
  73. uint32_t id;
  74. int state;
  75. int start_count;
  76. /* Cached Graph data */
  77. void *graph;
  78. struct kref refcount;
  79. struct q6apm *apm;
  80. };
  81. typedef void (*q6apm_cb) (uint32_t opcode, uint32_t token,
  82. void *payload, void *priv);
  83. struct q6apm_graph {
  84. void *priv;
  85. q6apm_cb cb;
  86. uint32_t id;
  87. struct device *dev;
  88. struct q6apm *apm;
  89. gpr_port_t *port;
  90. struct audioreach_graph_data rx_data;
  91. struct audioreach_graph_data tx_data;
  92. struct gpr_ibasic_rsp_result_t result;
  93. wait_queue_head_t cmd_wait;
  94. struct mutex lock;
  95. struct audioreach_graph *ar_graph;
  96. struct audioreach_graph_info *info;
  97. };
  98. /* Graph Operations */
  99. struct q6apm_graph *q6apm_graph_open(struct device *dev, q6apm_cb cb,
  100. void *priv, int graph_id);
  101. int q6apm_graph_close(struct q6apm_graph *graph);
  102. int q6apm_graph_prepare(struct q6apm_graph *graph);
  103. int q6apm_graph_start(struct q6apm_graph *graph);
  104. int q6apm_graph_stop(struct q6apm_graph *graph);
  105. int q6apm_graph_flush(struct q6apm_graph *graph);
  106. /* Media Format */
  107. int q6apm_graph_media_format_pcm(struct q6apm_graph *graph,
  108. struct audioreach_module_config *cfg);
  109. int q6apm_graph_media_format_shmem(struct q6apm_graph *graph,
  110. struct audioreach_module_config *cfg);
  111. /* read/write related */
  112. int q6apm_send_eos_nowait(struct q6apm_graph *graph);
  113. int q6apm_read(struct q6apm_graph *graph);
  114. int q6apm_write_async(struct q6apm_graph *graph, uint32_t len, uint32_t msw_ts,
  115. uint32_t lsw_ts, uint32_t wflags);
  116. /* Memory Map related */
  117. int q6apm_map_memory_regions(struct q6apm_graph *graph,
  118. unsigned int dir, phys_addr_t phys,
  119. size_t period_sz, unsigned int periods);
  120. int q6apm_unmap_memory_regions(struct q6apm_graph *graph,
  121. unsigned int dir);
  122. /* Helpers */
  123. int q6apm_send_cmd_sync(struct q6apm *apm, struct gpr_pkt *pkt,
  124. uint32_t rsp_opcode);
  125. /* Callback for graph specific */
  126. struct audioreach_module *q6apm_find_module_by_mid(struct q6apm_graph *graph,
  127. uint32_t mid);
  128. void q6apm_set_fe_dai_ops(struct snd_soc_dai_driver *dai_drv);
  129. int q6apm_connect_sub_graphs(struct q6apm *apm, u32 src_sgid, u32 dst_sgid,
  130. bool connect);
  131. bool q6apm_is_sub_graphs_connected(struct q6apm *apm, u32 src_sgid,
  132. u32 dst_sgid);
  133. int q6apm_graph_get_rx_shmem_module_iid(struct q6apm_graph *graph);
  134. #endif /* __APM_GRAPH_ */