audio_calibration.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* Copyright (c) 2014, 2017 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_CALIBRATION_H
  14. #define _AUDIO_CALIBRATION_H
  15. #include <linux/msm_audio_calibration.h>
  16. /* Used by driver in buffer_number field to notify client
  17. * To update all blocks, for example: freeing all memory
  18. */
  19. #define ALL_CAL_BLOCKS -1
  20. struct audio_cal_callbacks {
  21. int (*alloc)(int32_t cal_type, size_t data_size, void *data);
  22. int (*dealloc)(int32_t cal_type, size_t data_size, void *data);
  23. int (*pre_cal)(int32_t cal_type, size_t data_size, void *data);
  24. int (*set_cal)(int32_t cal_type, size_t data_size, void *data);
  25. int (*get_cal)(int32_t cal_type, size_t data_size, void *data);
  26. int (*post_cal)(int32_t cal_type, size_t data_size, void *data);
  27. };
  28. struct audio_cal_reg {
  29. int32_t cal_type;
  30. struct audio_cal_callbacks callbacks;
  31. };
  32. int audio_cal_register(int num_cal_types, struct audio_cal_reg *reg_data);
  33. int audio_cal_deregister(int num_cal_types, struct audio_cal_reg *reg_data);
  34. #endif