audio_cal_utils.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /* Copyright (c) 2014, 2018, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. */
  13. #ifndef _AUDIO_CAL_UTILS_H
  14. #define _AUDIO_CAL_UTILS_H
  15. #include <linux/msm_ion.h>
  16. #include <linux/msm_audio_calibration.h>
  17. #include <dsp/msm_audio_ion.h>
  18. #include <dsp/audio_calibration.h>
  19. struct cal_data {
  20. size_t size;
  21. void *kvaddr;
  22. phys_addr_t paddr;
  23. };
  24. struct mem_map_data {
  25. size_t map_size;
  26. int32_t q6map_handle;
  27. int32_t ion_map_handle;
  28. struct dma_buf *dma_buf;
  29. };
  30. struct cal_block_data {
  31. size_t client_info_size;
  32. void *client_info;
  33. void *cal_info;
  34. struct list_head list;
  35. struct cal_data cal_data;
  36. struct mem_map_data map_data;
  37. int32_t buffer_number;
  38. };
  39. struct cal_util_callbacks {
  40. int (*map_cal)
  41. (int32_t cal_type, struct cal_block_data *cal_block);
  42. int (*unmap_cal)
  43. (int32_t cal_type, struct cal_block_data *cal_block);
  44. bool (*match_block)
  45. (struct cal_block_data *cal_block, void *user_data);
  46. };
  47. struct cal_type_info {
  48. struct audio_cal_reg reg;
  49. struct cal_util_callbacks cal_util_callbacks;
  50. };
  51. struct cal_type_data {
  52. struct cal_type_info info;
  53. struct mutex lock;
  54. struct list_head cal_blocks;
  55. };
  56. /* to register & degregister with cal util driver */
  57. int cal_utils_create_cal_types(int num_cal_types,
  58. struct cal_type_data **cal_type,
  59. struct cal_type_info *info);
  60. void cal_utils_destroy_cal_types(int num_cal_types,
  61. struct cal_type_data **cal_type);
  62. /* common functions for callbacks */
  63. int cal_utils_alloc_cal(size_t data_size, void *data,
  64. struct cal_type_data *cal_type,
  65. size_t client_info_size, void *client_info);
  66. int cal_utils_dealloc_cal(size_t data_size, void *data,
  67. struct cal_type_data *cal_type);
  68. int cal_utils_set_cal(size_t data_size, void *data,
  69. struct cal_type_data *cal_type,
  70. size_t client_info_size, void *client_info);
  71. /* use for SSR */
  72. void cal_utils_clear_cal_block_q6maps(int num_cal_types,
  73. struct cal_type_data **cal_type);
  74. /* common matching functions used to add blocks */
  75. bool cal_utils_match_buf_num(struct cal_block_data *cal_block,
  76. void *user_data);
  77. /* common matching functions to find cal blocks */
  78. struct cal_block_data *cal_utils_get_only_cal_block(
  79. struct cal_type_data *cal_type);
  80. /* Size of calibration specific data */
  81. size_t get_cal_info_size(int32_t cal_type);
  82. size_t get_user_cal_type_size(int32_t cal_type);
  83. /* Version of the cal type*/
  84. int32_t cal_utils_get_cal_type_version(void *cal_type_data);
  85. #endif