wcd938x.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _WCD938X_H
  6. #define _WCD938X_H
  7. #include <dt-bindings/sound/audio-codec-port-types.h>
  8. #define WCD938X_MAX_SLAVE_CH_TYPES 13
  9. #define ZERO 0
  10. #define WCD938X_DRV_NAME "wcd938x_codec"
  11. enum {
  12. WCD9380 = 0,
  13. WCD9385 = 5,
  14. };
  15. struct swr_slave_ch_map {
  16. u8 ch_type;
  17. u8 index;
  18. };
  19. static const struct swr_slave_ch_map swr_slv_tx_ch_idx[] = {
  20. {ADC1, 0},
  21. {ADC2, 1},
  22. {ADC3, 2},
  23. {ADC4, 3},
  24. {DMIC0, 4},
  25. {DMIC1, 5},
  26. {MBHC, 6},
  27. {DMIC2, 6},
  28. {DMIC3, 7},
  29. {DMIC4, 8},
  30. {DMIC5, 9},
  31. {DMIC6, 10},
  32. {DMIC7, 11},
  33. };
  34. static int swr_master_ch_map[] = {
  35. ZERO,
  36. SWRM_TX1_CH1,
  37. SWRM_TX1_CH2,
  38. SWRM_TX1_CH3,
  39. SWRM_TX1_CH4,
  40. SWRM_TX2_CH1,
  41. SWRM_TX2_CH2,
  42. SWRM_TX2_CH3,
  43. SWRM_TX2_CH4,
  44. SWRM_TX3_CH1,
  45. SWRM_TX3_CH2,
  46. SWRM_TX3_CH3,
  47. SWRM_TX3_CH4,
  48. SWRM_PCM_IN,
  49. };
  50. #if IS_ENABLED(CONFIG_SND_SOC_WCD938X)
  51. int wcd938x_info_create_codec_entry(struct snd_info_entry *codec_root,
  52. struct snd_soc_component *component);
  53. int wcd938x_get_codec_variant(struct snd_soc_component *component);
  54. int wcd938x_codec_force_enable_micbias_v2(struct snd_soc_component *wcd938x,
  55. int event, int micb_num);
  56. static inline int wcd938x_slave_get_master_ch_val(int ch)
  57. {
  58. int i;
  59. for (i = 0; i < WCD938X_MAX_SLAVE_CH_TYPES; i++)
  60. if (ch == swr_master_ch_map[i])
  61. return i;
  62. return 0;
  63. }
  64. static inline int wcd938x_slave_get_master_ch(int idx)
  65. {
  66. return swr_master_ch_map[idx];
  67. }
  68. static inline int wcd938x_slave_get_slave_ch_val(int ch)
  69. {
  70. int i;
  71. for (i = 0; i < WCD938X_MAX_SLAVE_CH_TYPES; i++)
  72. if (ch == swr_slv_tx_ch_idx[i].ch_type)
  73. return swr_slv_tx_ch_idx[i].index;
  74. return -EINVAL;
  75. }
  76. #else
  77. static inline int wcd938x_info_create_codec_entry(
  78. struct snd_info_entry *codec_root,
  79. struct snd_soc_component *component)
  80. {
  81. return 0;
  82. }
  83. static inline int wcd938x_get_codec_variant(struct snd_soc_component *component)
  84. {
  85. return 0;
  86. }
  87. static inline int wcd938x_codec_force_enable_micbias_v2(
  88. struct snd_soc_component *wcd938x,
  89. int event, int micb_num)
  90. {
  91. return 0;
  92. }
  93. static inline int wcd938x_slave_get_master_ch_val(int ch)
  94. {
  95. return 0;
  96. }
  97. static inline int wcd938x_slave_get_master_ch(int idx)
  98. {
  99. return 0;
  100. }
  101. static inline int wcd938x_slave_get_slave_ch_val(int ch)
  102. {
  103. return 0;
  104. }
  105. #endif /* CONFIG_SND_SOC_WCD938X */
  106. #endif /* _WCD938X_H */