audio_cal_utils.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2014, 2018, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _AUDIO_CAL_UTILS_H
  6. #define _AUDIO_CAL_UTILS_H
  7. #include <linux/msm_ion.h>
  8. #include <linux/msm_audio_calibration.h>
  9. #include <dsp/msm_audio_ion.h>
  10. #include <dsp/audio_calibration.h>
  11. struct cal_data {
  12. size_t size;
  13. void *kvaddr;
  14. phys_addr_t paddr;
  15. };
  16. struct mem_map_data {
  17. size_t map_size;
  18. int32_t q6map_handle;
  19. int32_t ion_map_handle;
  20. struct dma_buf *dma_buf;
  21. };
  22. struct cal_block_data {
  23. size_t client_info_size;
  24. void *client_info;
  25. void *cal_info;
  26. struct list_head list;
  27. struct cal_data cal_data;
  28. bool cal_stale;
  29. struct mem_map_data map_data;
  30. int32_t buffer_number;
  31. };
  32. struct cal_util_callbacks {
  33. int (*map_cal)
  34. (int32_t cal_type, struct cal_block_data *cal_block);
  35. int (*unmap_cal)
  36. (int32_t cal_type, struct cal_block_data *cal_block);
  37. bool (*match_block)
  38. (struct cal_block_data *cal_block, void *user_data);
  39. };
  40. struct cal_type_info {
  41. struct audio_cal_reg reg;
  42. struct cal_util_callbacks cal_util_callbacks;
  43. };
  44. struct cal_type_data {
  45. struct cal_type_info info;
  46. struct mutex lock;
  47. struct list_head cal_blocks;
  48. };
  49. /* to register & degregister with cal util driver */
  50. int cal_utils_create_cal_types(int num_cal_types,
  51. struct cal_type_data **cal_type,
  52. struct cal_type_info *info);
  53. void cal_utils_destroy_cal_types(int num_cal_types,
  54. struct cal_type_data **cal_type);
  55. /* common functions for callbacks */
  56. int cal_utils_alloc_cal(size_t data_size, void *data,
  57. struct cal_type_data *cal_type,
  58. size_t client_info_size, void *client_info);
  59. int cal_utils_dealloc_cal(size_t data_size, void *data,
  60. struct cal_type_data *cal_type);
  61. int cal_utils_set_cal(size_t data_size, void *data,
  62. struct cal_type_data *cal_type,
  63. size_t client_info_size, void *client_info);
  64. /* use for SSR */
  65. void cal_utils_clear_cal_block_q6maps(int num_cal_types,
  66. struct cal_type_data **cal_type);
  67. /* common matching functions used to add blocks */
  68. bool cal_utils_match_buf_num(struct cal_block_data *cal_block,
  69. void *user_data);
  70. /* common matching functions to find cal blocks */
  71. struct cal_block_data *cal_utils_get_only_cal_block(
  72. struct cal_type_data *cal_type);
  73. /* Size of calibration specific data */
  74. size_t get_cal_info_size(int32_t cal_type);
  75. size_t get_user_cal_type_size(int32_t cal_type);
  76. /* Version of the cal type*/
  77. int32_t cal_utils_get_cal_type_version(void *cal_type_data);
  78. void cal_utils_mark_cal_used(struct cal_block_data *cal_block);
  79. bool cal_utils_is_cal_stale(struct cal_block_data *cal_block);
  80. #endif