apr_tal.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2010-2011, 2016-2018 The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef __APR_TAL_H_
  6. #define __APR_TAL_H_
  7. #include <linux/kernel.h>
  8. #include <linux/kthread.h>
  9. #include <linux/uaccess.h>
  10. /* APR Client IDs */
  11. #define APR_CLIENT_AUDIO 0x0
  12. #define APR_CLIENT_VOICE 0x1
  13. #define APR_CLIENT_MAX 0x2
  14. #define APR_DL_SMD 0
  15. #define APR_DL_MAX 1
  16. #define APR_DEST_MODEM 0
  17. #define APR_DEST_QDSP6 1
  18. #define APR_DEST_MAX 2
  19. #if defined(CONFIG_MSM_QDSP6_APRV2_GLINK) || \
  20. defined(CONFIG_MSM_QDSP6_APRV3_GLINK)
  21. #define APR_MAX_BUF 512
  22. #else
  23. #define APR_MAX_BUF 8092
  24. #endif
  25. #define APR_DEFAULT_NUM_OF_INTENTS 20
  26. #define APR_OPEN_TIMEOUT_MS 5000
  27. enum {
  28. /* If client sets the pkt_owner to APR_PKT_OWNER_DRIVER, APR
  29. * driver will allocate a buffer, where the user packet is
  30. * copied into, for each and every single Tx transmission.
  31. * The buffer is thereafter passed to underlying link layer
  32. * and freed upon the notification received from the link layer
  33. * that the packet has been consumed.
  34. */
  35. APR_PKT_OWNER_DRIVER,
  36. /* If client sets the pkt_owner to APR_PKT_OWNER_CLIENT, APR
  37. * will pass the user packet memory address directly to underlying
  38. * link layer. In this case it is the client's responsibility to
  39. * make sure the packet is intact until being notified that the
  40. * packet has been consumed.
  41. */
  42. APR_PKT_OWNER_CLIENT,
  43. };
  44. struct apr_pkt_priv {
  45. /* This property is only applicable for APR over Glink.
  46. * It is ignored in APR over SMD cases.
  47. */
  48. uint8_t pkt_owner;
  49. };
  50. typedef void (*apr_svc_cb_fn)(void *buf, int len, void *priv);
  51. struct apr_svc_ch_dev *apr_tal_open(uint32_t svc, uint32_t dest,
  52. uint32_t dl, apr_svc_cb_fn func, void *priv);
  53. int apr_tal_write(struct apr_svc_ch_dev *apr_ch, void *data,
  54. struct apr_pkt_priv *pkt_priv, int len);
  55. int apr_tal_close(struct apr_svc_ch_dev *apr_ch);
  56. int apr_tal_rx_intents_config(struct apr_svc_ch_dev *apr_ch,
  57. int num_of_intents, uint32_t size);
  58. int apr_tal_init(void);
  59. void apr_tal_exit(void);
  60. int apr_tal_start_rx_rt(struct apr_svc_ch_dev *apr_ch);
  61. int apr_tal_end_rx_rt(struct apr_svc_ch_dev *apr_ch);
  62. struct apr_svc_ch_dev {
  63. void *handle;
  64. spinlock_t w_lock;
  65. spinlock_t r_lock;
  66. struct mutex m_lock;
  67. apr_svc_cb_fn func;
  68. wait_queue_head_t wait;
  69. void *priv;
  70. unsigned int channel_state;
  71. bool if_remote_intent_ready;
  72. };
  73. #endif