q6afecal-hwdep.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2014, 2018, 2020 The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef __Q6AFECAL_HWDEP_H__
  6. #define __Q6AFECAL_HWDEP_H__
  7. #include <audio/sound/msmcal-hwdep.h>
  8. enum q6afe_cal_states {
  9. Q6AFECAL_UNINITIALISED,
  10. Q6AFECAL_INITIALISED,
  11. Q6AFECAL_RECEIVED
  12. };
  13. struct afe_fw_info {
  14. struct firmware_cal *fw[Q6AFE_MAX_CAL];
  15. DECLARE_BITMAP(cal_bit, Q6AFE_MAX_CAL);
  16. /* for calibration tracking */
  17. unsigned long q6afecal_state[Q6AFE_MAX_CAL];
  18. struct mutex lock;
  19. };
  20. struct firmware_cal {
  21. u8 *data;
  22. size_t size;
  23. };
  24. #if IS_ENABLED(CONFIG_AFE_HWDEP)
  25. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  26. int q6afe_cal_create_hwdep(void *fw, int node, void *card);
  27. #else
  28. int q6afe_cal_create_hwdep(void *fw, int node, void *card)
  29. {
  30. return 0;
  31. }
  32. #endif /* CONFIG_AUDIO_QGKI */
  33. struct firmware_cal *q6afecal_get_fw_cal(struct afe_fw_info *fw_data,
  34. enum q6afe_cal_type type);
  35. #else /* CONFIG_AFE_HWDEP */
  36. static inline int q6afe_cal_create_hwdep(void *fw, int node, void *card)
  37. {
  38. return 0;
  39. }
  40. static inline struct firmware_cal *q6afecal_get_fw_cal(
  41. struct afe_fw_info *fw_data,
  42. enum q6afe_cal_type type)
  43. {
  44. return NULL;
  45. }
  46. #endif /* CONFIG_AFE_HWDEP */
  47. #endif /* __Q6AFECAL_HWDEP_H__ */