wcd9360.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*
  2. * Copyright (c) 2015-2018, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #ifndef __WCD9360_H__
  14. #define __WCD9360_H__
  15. #include <dsp/apr_audio-v2.h>
  16. #include "wcd9360-dsp-cntl.h"
  17. #include "../wcd9xxx-slimslave.h"
  18. #include "../wcd9xxx-common-v2.h"
  19. #define WCD9360_REGISTER_START_OFFSET 0x800
  20. #define WCD9360_SB_PGD_PORT_RX_BASE 0x40
  21. #define WCD9360_SB_PGD_PORT_TX_BASE 0x50
  22. #define WCD9360_RX_PORT_START_NUMBER 16
  23. #define WCD9360_DMIC_CLK_DIV_2 0x0
  24. #define WCD9360_DMIC_CLK_DIV_3 0x1
  25. #define WCD9360_DMIC_CLK_DIV_4 0x2
  26. #define WCD9360_DMIC_CLK_DIV_6 0x3
  27. #define WCD9360_DMIC_CLK_DIV_8 0x4
  28. #define WCD9360_DMIC_CLK_DIV_16 0x5
  29. #define WCD9360_DMIC_CLK_DRIVE_DEFAULT 0x02
  30. #define WCD9360_ANC_DMIC_X2_FULL_RATE 1
  31. #define WCD9360_ANC_DMIC_X2_HALF_RATE 0
  32. #define PAHU_MAX_MICBIAS 4
  33. #define PAHU_NUM_INTERPOLATORS 10
  34. #define MAX_ON_DEMAND_SUPPLY_NAME_LENGTH 64
  35. /* Convert from vout ctl to micbias voltage in mV */
  36. #define WCD_VOUT_CTL_TO_MICB(v) (1000 + v * 50)
  37. /* Number of input and output Slimbus port */
  38. enum {
  39. WCD9360_RX0 = 0,
  40. WCD9360_RX1,
  41. WCD9360_RX2,
  42. WCD9360_RX3,
  43. WCD9360_RX4,
  44. WCD9360_RX5,
  45. WCD9360_RX6,
  46. WCD9360_RX7,
  47. WCD9360_RX_MAX,
  48. };
  49. enum {
  50. WCD9360_TX0 = 0,
  51. WCD9360_TX1,
  52. WCD9360_TX2,
  53. WCD9360_TX3,
  54. WCD9360_TX4,
  55. WCD9360_TX5,
  56. WCD9360_TX6,
  57. WCD9360_TX7,
  58. WCD9360_TX8,
  59. WCD9360_TX9,
  60. WCD9360_TX10,
  61. WCD9360_TX11,
  62. WCD9360_TX12,
  63. WCD9360_TX13,
  64. WCD9360_TX14,
  65. WCD9360_TX15,
  66. WCD9360_TX_MAX,
  67. };
  68. enum {
  69. INTERP_EAR = 0,
  70. /* Headset and Lineout are not avalible in pahu */
  71. INTERP_HPHL_NA,
  72. INTERP_HPHR_NA,
  73. INTERP_LO1_NA,
  74. INTERP_LO2_NA,
  75. INTERP_LO3_NA,
  76. INTERP_LO4_NA,
  77. INTERP_SPKR1,
  78. INTERP_SPKR2,
  79. INTERP_AUX,
  80. INTERP_MAX,
  81. };
  82. /*
  83. * Selects compander and smart boost settings
  84. * for a given speaker mode
  85. */
  86. enum {
  87. WCD9360_SPKR_MODE_DEFAULT,
  88. WCD9360_SPKR_MODE_1, /* COMP Gain = 12dB, Smartboost Max = 5.5V */
  89. };
  90. /*
  91. * Rx path gain offsets
  92. */
  93. enum {
  94. WCD9360_RX_GAIN_OFFSET_M1P5_DB,
  95. WCD9360_RX_GAIN_OFFSET_0_DB,
  96. };
  97. enum {
  98. MIC_BIAS_1 = 1,
  99. MIC_BIAS_2,
  100. MIC_BIAS_3,
  101. MIC_BIAS_4
  102. };
  103. enum {
  104. MICB_PULLUP_ENABLE,
  105. MICB_PULLUP_DISABLE,
  106. MICB_ENABLE,
  107. MICB_DISABLE,
  108. };
  109. /*
  110. * Dai data structure holds the
  111. * dai specific info like rate,
  112. * channel number etc.
  113. */
  114. struct pahu_codec_dai_data {
  115. u32 rate;
  116. u32 *ch_num;
  117. u32 ch_act;
  118. u32 ch_tot;
  119. };
  120. /*
  121. * Structure used to update codec
  122. * register defaults after reset
  123. */
  124. struct pahu_reg_mask_val {
  125. u16 reg;
  126. u8 mask;
  127. u8 val;
  128. };
  129. extern void *pahu_get_afe_config(struct snd_soc_codec *codec,
  130. enum afe_config_type config_type);
  131. extern int pahu_cdc_mclk_enable(struct snd_soc_codec *codec, bool enable);
  132. extern int pahu_cdc_mclk_tx_enable(struct snd_soc_codec *codec, bool enable);
  133. extern int pahu_set_spkr_mode(struct snd_soc_codec *codec, int mode);
  134. extern int pahu_set_spkr_gain_offset(struct snd_soc_codec *codec, int offset);
  135. extern struct wcd_dsp_cntl *pahu_get_wcd_dsp_cntl(struct device *dev);
  136. extern int wcd9360_get_micb_vout_ctl_val(u32 micb_mv);
  137. extern int pahu_codec_info_create_codec_entry(
  138. struct snd_info_entry *codec_root,
  139. struct snd_soc_codec *codec);
  140. #endif