q6afecal-hwdep.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * Copyright (c) 2014,2018, 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. #ifndef __Q6AFECAL_HWDEP_H__
  14. #define __Q6AFECAL_HWDEP_H__
  15. #include <sound/msmcal-hwdep.h>
  16. enum q6afe_cal_states {
  17. Q6AFECAL_UNINITIALISED,
  18. Q6AFECAL_INITIALISED,
  19. Q6AFECAL_RECEIVED
  20. };
  21. struct afe_fw_info {
  22. struct firmware_cal *fw[Q6AFE_MAX_CAL];
  23. DECLARE_BITMAP(cal_bit, Q6AFE_MAX_CAL);
  24. /* for calibration tracking */
  25. unsigned long q6afecal_state[Q6AFE_MAX_CAL];
  26. struct mutex lock;
  27. };
  28. struct firmware_cal {
  29. u8 *data;
  30. size_t size;
  31. };
  32. #if IS_ENABLED(CONFIG_AFE_HWDEP)
  33. int q6afe_cal_create_hwdep(void *fw, int node, void *card);
  34. struct firmware_cal *q6afecal_get_fw_cal(struct afe_fw_info *fw_data,
  35. enum q6afe_cal_type type);
  36. #else /* CONFIG_AFE_HWDEP */
  37. static inline int q6afe_cal_create_hwdep(void *fw, int node, void *card)
  38. {
  39. return 0;
  40. }
  41. static inline struct firmware_cal *q6afecal_get_fw_cal(
  42. struct afe_fw_info *fw_data,
  43. enum q6afe_cal_type type)
  44. {
  45. return NULL;
  46. }
  47. #endif /* CONFIG_AFE_HWDEP */
  48. #endif /* __Q6AFECAL_HWDEP_H__ */