rtac.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Copyright (c) 2011, 2013-2015, 2017, 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 ion_client *ion_client;
  35. struct ion_handle *ion_handle;
  36. };
  37. struct rtac_cal_data {
  38. size_t size;
  39. void *kvaddr;
  40. phys_addr_t paddr;
  41. };
  42. struct rtac_cal_block_data {
  43. struct rtac_cal_mem_map_data map_data;
  44. struct rtac_cal_data cal_data;
  45. };
  46. struct rtac_popp_data {
  47. uint32_t popp;
  48. uint32_t popp_topology;
  49. uint32_t app_type;
  50. };
  51. struct rtac_adm_data {
  52. uint32_t topology_id;
  53. uint32_t afe_topology;
  54. uint32_t afe_port;
  55. uint32_t copp;
  56. uint32_t num_of_popp;
  57. uint32_t app_type;
  58. uint32_t acdb_dev_id;
  59. struct rtac_popp_data popp[RTAC_MAX_ACTIVE_POPP];
  60. };
  61. struct rtac_adm {
  62. uint32_t num_of_dev;
  63. struct rtac_adm_data device[RTAC_MAX_ACTIVE_DEVICES];
  64. };
  65. void rtac_add_adm_device(u32 port_id, u32 copp_id, u32 path_id, u32 popp_id,
  66. u32 app_type, u32 acdb_dev_id);
  67. void rtac_remove_adm_device(u32 port_id, u32 copp_id);
  68. void rtac_remove_popp_from_adm_devices(u32 popp_id);
  69. void rtac_add_voice(u32 cvs_handle, u32 cvp_handle, u32 rx_afe_port,
  70. u32 tx_afe_port, u32 rx_acdb_id, u32 tx_acdb_id, u32 session_id);
  71. void rtac_remove_voice(u32 cvs_handle);
  72. void rtac_set_adm_handle(void *handle);
  73. bool rtac_make_adm_callback(uint32_t *payload, u32 payload_size);
  74. void rtac_copy_adm_payload_to_user(void *payload, u32 payload_size);
  75. void rtac_set_asm_handle(u32 session_id, void *handle);
  76. bool rtac_make_asm_callback(u32 session_id, uint32_t *payload,
  77. u32 payload_size);
  78. void rtac_copy_asm_payload_to_user(void *payload, u32 payload_size);
  79. void rtac_set_voice_handle(u32 mode, void *handle);
  80. bool rtac_make_voice_callback(u32 mode, uint32_t *payload, u32 payload_size);
  81. void rtac_copy_voice_payload_to_user(void *payload, u32 payload_size);
  82. int rtac_clear_mapping(uint32_t cal_type);
  83. bool rtac_make_afe_callback(uint32_t *payload, u32 payload_size);
  84. void rtac_set_afe_handle(void *handle);
  85. void get_rtac_adm_data(struct rtac_adm *adm_data);
  86. void rtac_update_afe_topology(u32 port_id);
  87. #endif