msm_common.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. SEP_MI2S_TDM_AUXPCM,
  29. MI2S_TDM_AUXPCM_MAX,
  30. };
  31. typedef enum snd_card_status_t {
  32. SND_CARD_STATUS_OFFLINE = 0,
  33. SND_CARD_STATUS_ONLINE = 1,
  34. } snd_card_status_t;
  35. struct msm_common_pdata {
  36. uint8_t *aud_dev_state;
  37. struct kobject aud_dev_kobj;
  38. uint8_t dsp_sessions_closed;
  39. uint32_t num_aud_devs;
  40. struct device_node *mi2s_gpio_p[MI2S_TDM_AUXPCM_MAX];
  41. struct mutex lock[MI2S_TDM_AUXPCM_MAX];
  42. u32 tdm_max_slots; /* Max TDM slots used */
  43. atomic_t mi2s_gpio_ref_cnt[MI2S_TDM_AUXPCM_MAX];
  44. atomic_t lpass_intf_clk_ref_cnt[MI2S_TDM_AUXPCM_MAX];
  45. atomic_t lpass_audio_hw_vote_ref_cnt;
  46. struct clk *lpass_audio_hw_vote;
  47. uint32_t is_audio_hw_vote_required[MI2S_TDM_AUXPCM_MAX];
  48. uint32_t tdm_clk_attribute[MI2S_TDM_AUXPCM_MAX];
  49. uint32_t mi2s_clk_attribute[MI2S_TDM_AUXPCM_MAX];
  50. };
  51. int snd_card_notify_user(snd_card_status_t card_status);
  52. int snd_card_set_card_status(snd_card_status_t card_status);
  53. struct msm_common_pdata *msm_common_get_pdata(struct snd_soc_card *card);
  54. void msm_common_set_pdata(struct snd_soc_card *card,
  55. struct msm_common_pdata *pdata);
  56. int snd_card_sysfs_init(void);
  57. int msm_common_snd_hw_params(struct snd_pcm_substream *substream,
  58. struct snd_pcm_hw_params *params);
  59. int msm_common_snd_startup(struct snd_pcm_substream *substream);
  60. void msm_common_snd_shutdown(struct snd_pcm_substream *substream);
  61. int msm_common_snd_init(struct platform_device *pdev,
  62. struct snd_soc_card *card);
  63. void msm_common_snd_deinit(struct msm_common_pdata *pdata);
  64. int msm_common_dai_link_init(struct snd_soc_pcm_runtime *rtd);
  65. #endif