audio_cal_utils.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* Copyright (c) 2014, 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 ion_client *ion_client;
  29. struct ion_handle *ion_handle;
  30. };
  31. struct cal_block_data {
  32. size_t client_info_size;
  33. void *client_info;
  34. void *cal_info;
  35. struct list_head list;
  36. struct cal_data cal_data;
  37. struct mem_map_data map_data;
  38. int32_t buffer_number;
  39. };
  40. struct cal_util_callbacks {
  41. int (*map_cal)
  42. (int32_t cal_type, struct cal_block_data *cal_block);
  43. int (*unmap_cal)
  44. (int32_t cal_type, struct cal_block_data *cal_block);
  45. bool (*match_block)
  46. (struct cal_block_data *cal_block, void *user_data);
  47. };
  48. struct cal_type_info {
  49. struct audio_cal_reg reg;
  50. struct cal_util_callbacks cal_util_callbacks;
  51. };
  52. struct cal_type_data {
  53. struct cal_type_info info;
  54. struct mutex lock;
  55. struct list_head cal_blocks;
  56. };
  57. /* to register & degregister with cal util driver */
  58. int cal_utils_create_cal_types(int num_cal_types,
  59. struct cal_type_data **cal_type,
  60. struct cal_type_info *info);
  61. void cal_utils_destroy_cal_types(int num_cal_types,
  62. struct cal_type_data **cal_type);
  63. /* common functions for callbacks */
  64. int cal_utils_alloc_cal(size_t data_size, void *data,
  65. struct cal_type_data *cal_type,
  66. size_t client_info_size, void *client_info);
  67. int cal_utils_dealloc_cal(size_t data_size, void *data,
  68. struct cal_type_data *cal_type);
  69. int cal_utils_set_cal(size_t data_size, void *data,
  70. struct cal_type_data *cal_type,
  71. size_t client_info_size, void *client_info);
  72. /* use for SSR */
  73. void cal_utils_clear_cal_block_q6maps(int num_cal_types,
  74. struct cal_type_data **cal_type);
  75. /* common matching functions used to add blocks */
  76. bool cal_utils_match_buf_num(struct cal_block_data *cal_block,
  77. void *user_data);
  78. /* common matching functions to find cal blocks */
  79. struct cal_block_data *cal_utils_get_only_cal_block(
  80. struct cal_type_data *cal_type);
  81. /* Size of calibration specific data */
  82. size_t get_cal_info_size(int32_t cal_type);
  83. size_t get_user_cal_type_size(int32_t cal_type);
  84. /* Version of the cal type*/
  85. int32_t cal_utils_get_cal_type_version(void *cal_type_data);
  86. #endif