wcd937x.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /* Copyright (c) 2018, 2020 The Linux Foundation. All rights reserved.
  3. */
  4. #ifndef _WCD937X_H
  5. #define _WCD937X_H
  6. #include <dt-bindings/sound/audio-codec-port-types.h>
  7. #define WCD937X_MAX_SLAVE_CH_TYPES 10
  8. #define ZERO 0
  9. struct swr_slave_ch_map {
  10. u8 ch_type;
  11. u8 index;
  12. };
  13. static const struct swr_slave_ch_map swr_slv_tx_ch_idx[] = {
  14. {ADC1, 0},
  15. {ADC2, 1},
  16. {ADC3, 2},
  17. {DMIC0, 3},
  18. {DMIC1, 4},
  19. {MBHC, 5},
  20. {DMIC2, 6},
  21. {DMIC3, 7},
  22. {DMIC4, 8},
  23. {DMIC5, 9},
  24. };
  25. static int swr_master_ch_map[] = {
  26. ZERO,
  27. SWRM_TX1_CH1,
  28. SWRM_TX1_CH2,
  29. SWRM_TX1_CH3,
  30. SWRM_TX1_CH4,
  31. SWRM_TX2_CH1,
  32. SWRM_TX2_CH2,
  33. SWRM_TX2_CH3,
  34. SWRM_TX2_CH4,
  35. SWRM_TX3_CH1,
  36. SWRM_TX3_CH2,
  37. SWRM_TX3_CH3,
  38. SWRM_TX3_CH4,
  39. SWRM_PCM_IN,
  40. };
  41. #ifdef CONFIG_SND_SOC_WCD937X
  42. extern int wcd937x_info_create_codec_entry(struct snd_info_entry *codec_root,
  43. struct snd_soc_component *component);
  44. static inline int wcd937x_slave_get_master_ch_val(int ch)
  45. {
  46. int i;
  47. for (i = 0; i < WCD937X_MAX_SLAVE_CH_TYPES; i++)
  48. if (ch == swr_master_ch_map[i])
  49. return i;
  50. return 0;
  51. }
  52. static inline int wcd937x_slave_get_master_ch(int idx)
  53. {
  54. return swr_master_ch_map[idx];
  55. }
  56. static inline int wcd937x_slave_get_slave_ch_val(int ch)
  57. {
  58. int i;
  59. for (i = 0; i < WCD937X_MAX_SLAVE_CH_TYPES; i++)
  60. if (ch == swr_slv_tx_ch_idx[i].ch_type)
  61. return swr_slv_tx_ch_idx[i].index;
  62. return -EINVAL;
  63. }
  64. #else
  65. extern int wcd937x_info_create_codec_entry(struct snd_info_entry *codec_root,
  66. struct snd_soc_component *component)
  67. {
  68. return 0;
  69. }
  70. static inline int wcd937x_slave_get_master_ch_val(int ch)
  71. {
  72. return 0;
  73. }
  74. static inline int wcd937x_slave_get_master_ch(int idx)
  75. {
  76. return 0;
  77. }
  78. static inline int wcd937x_slave_get_slave_ch_val(int ch)
  79. {
  80. return 0;
  81. }
  82. #endif /* CONFIG_SND_SOC_WCD937X */
  83. #endif