msm_common.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /* Copyright (c) 2020-2021, 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. #ifndef _MSM_COMMON_H_
  13. #define _MSM_COMMON_H_
  14. #include <sound/soc.h>
  15. #include <sound/pcm.h>
  16. enum {
  17. MI2S = 0,
  18. TDM,
  19. AUXPCM,
  20. };
  21. enum {
  22. PRI_MI2S_TDM_AUXPCM = 0,
  23. SEC_MI2S_TDM_AUXPCM,
  24. TER_MI2S_TDM_AUXPCM,
  25. QUAT_MI2S_TDM_AUXPCM,
  26. QUIN_MI2S_TDM_AUXPCM,
  27. SEN_MI2S_TDM_AUXPCM,
  28. MI2S_TDM_AUXPCM_MAX,
  29. };
  30. typedef enum snd_card_status_t {
  31. SND_CARD_STATUS_OFFLINE = 0,
  32. SND_CARD_STATUS_ONLINE = 1,
  33. } snd_card_status_t;
  34. struct msm_common_pdata {
  35. uint8_t *aud_dev_state;
  36. struct kobject aud_dev_kobj;
  37. uint8_t dsp_sessions_closed;
  38. uint32_t num_aud_devs;
  39. struct device_node *mi2s_gpio_p[MI2S_TDM_AUXPCM_MAX];
  40. struct mutex lock[MI2S_TDM_AUXPCM_MAX];
  41. u32 tdm_max_slots; /* Max TDM slots used */
  42. atomic_t mi2s_gpio_ref_cnt[MI2S_TDM_AUXPCM_MAX];
  43. atomic_t lpass_intf_clk_ref_cnt[MI2S_TDM_AUXPCM_MAX];
  44. atomic_t lpass_audio_hw_vote_ref_cnt;
  45. struct clk *lpass_audio_hw_vote;
  46. uint32_t is_audio_hw_vote_required[MI2S_TDM_AUXPCM_MAX];
  47. uint32_t tdm_clk_attribute[MI2S_TDM_AUXPCM_MAX];
  48. uint32_t mi2s_clk_attribute[MI2S_TDM_AUXPCM_MAX];
  49. };
  50. int snd_card_notify_user(snd_card_status_t card_status);
  51. int snd_card_set_card_status(snd_card_status_t card_status);
  52. struct msm_common_pdata *msm_common_get_pdata(struct snd_soc_card *card);
  53. void msm_common_set_pdata(struct snd_soc_card *card,
  54. struct msm_common_pdata *pdata);
  55. int snd_card_sysfs_init(void);
  56. int msm_common_snd_hw_params(struct snd_pcm_substream *substream,
  57. struct snd_pcm_hw_params *params);
  58. int msm_common_snd_startup(struct snd_pcm_substream *substream);
  59. void msm_common_snd_shutdown(struct snd_pcm_substream *substream);
  60. int msm_common_snd_init(struct platform_device *pdev,
  61. struct snd_soc_card *card);
  62. void msm_common_snd_deinit(struct msm_common_pdata *pdata);
  63. int msm_common_dai_link_init(struct snd_soc_pcm_runtime *rtd);
  64. #endif