rtac.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * Copyright (c) 2011, 2013-2015, 2017-2018, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. */
  14. #ifndef __RTAC_H__
  15. #define __RTAC_H__
  16. #include <dsp/apr_audio-v2.h>
  17. /* Voice Modes */
  18. #define RTAC_CVP 0
  19. #define RTAC_CVS 1
  20. #define RTAC_VOICE_MODES 2
  21. #define RTAC_MAX_ACTIVE_DEVICES 4
  22. #define RTAC_MAX_ACTIVE_POPP 8
  23. #define DEFAULT_APP_TYPE 0x00011130
  24. enum {
  25. ADM_RTAC_CAL,
  26. ASM_RTAC_CAL,
  27. VOICE_RTAC_CAL,
  28. AFE_RTAC_CAL,
  29. MAX_RTAC_BLOCKS
  30. };
  31. struct rtac_cal_mem_map_data {
  32. uint32_t map_size;
  33. uint32_t map_handle;
  34. struct dma_buf *dma_buf;
  35. };
  36. struct rtac_cal_data {
  37. size_t size;
  38. void *kvaddr;
  39. phys_addr_t paddr;
  40. };
  41. struct rtac_cal_block_data {
  42. struct rtac_cal_mem_map_data map_data;
  43. struct rtac_cal_data cal_data;
  44. };
  45. struct rtac_popp_data {
  46. uint32_t popp;
  47. uint32_t popp_topology;
  48. uint32_t app_type;
  49. };
  50. struct rtac_adm_data {
  51. uint32_t topology_id;
  52. uint32_t afe_topology;
  53. uint32_t afe_port;
  54. uint32_t copp;
  55. uint32_t num_of_popp;
  56. uint32_t app_type;
  57. uint32_t acdb_dev_id;
  58. struct rtac_popp_data popp[RTAC_MAX_ACTIVE_POPP];
  59. };
  60. struct rtac_adm {
  61. uint32_t num_of_dev;
  62. struct rtac_adm_data device[RTAC_MAX_ACTIVE_DEVICES];
  63. };
  64. void rtac_add_adm_device(u32 port_id, u32 copp_id, u32 path_id, u32 popp_id,
  65. u32 app_type, u32 acdb_dev_id);
  66. void rtac_remove_adm_device(u32 port_id, u32 copp_id);
  67. void rtac_remove_popp_from_adm_devices(u32 popp_id);
  68. void rtac_add_voice(u32 cvs_handle, u32 cvp_handle, u32 rx_afe_port,
  69. u32 tx_afe_port, u32 rx_acdb_id, u32 tx_acdb_id, u32 session_id);
  70. void rtac_remove_voice(u32 cvs_handle);
  71. void rtac_set_adm_handle(void *handle);
  72. bool rtac_make_adm_callback(uint32_t *payload, u32 payload_size);
  73. void rtac_copy_adm_payload_to_user(void *payload, u32 payload_size);
  74. void rtac_set_asm_handle(u32 session_id, void *handle);
  75. bool rtac_make_asm_callback(u32 session_id, uint32_t *payload,
  76. u32 payload_size);
  77. void rtac_copy_asm_payload_to_user(void *payload, u32 payload_size);
  78. void rtac_set_voice_handle(u32 mode, void *handle);
  79. bool rtac_make_voice_callback(u32 mode, uint32_t *payload, u32 payload_size);
  80. void rtac_copy_voice_payload_to_user(void *payload, u32 payload_size);
  81. int rtac_clear_mapping(uint32_t cal_type);
  82. bool rtac_make_afe_callback(uint32_t *payload, u32 payload_size);
  83. void rtac_set_afe_handle(void *handle);
  84. void get_rtac_adm_data(struct rtac_adm *adm_data);
  85. void rtac_update_afe_topology(u32 port_id);
  86. #endif