bolero-cdc.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /* Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
  3. */
  4. #ifndef BOLERO_CDC_H
  5. #define BOLERO_CDC_H
  6. #include <sound/soc.h>
  7. #include <linux/regmap.h>
  8. #define BOLERO_VERSION_1_0 0x0001
  9. #define BOLERO_VERSION_1_1 0x0002
  10. #define BOLERO_VERSION_1_2 0x0003
  11. #define BOLERO_VERSION_2_0 0x0004
  12. #define BOLERO_VERSION_2_1 0x0005
  13. enum {
  14. START_MACRO,
  15. TX_MACRO = START_MACRO,
  16. RX_MACRO,
  17. WSA_MACRO,
  18. VA_MACRO,
  19. MAX_MACRO
  20. };
  21. enum mclk_mux {
  22. MCLK_MUX0,
  23. MCLK_MUX1,
  24. MCLK_MUX_MAX
  25. };
  26. enum {
  27. BOLERO_ADC0 = 1,
  28. BOLERO_ADC1,
  29. BOLERO_ADC2,
  30. BOLERO_ADC3,
  31. BOLERO_ADC_MAX
  32. };
  33. enum {
  34. BOLERO_MACRO_EVT_RX_MUTE = 1, /* for RX mute/unmute */
  35. BOLERO_MACRO_EVT_IMPED_TRUE, /* for imped true */
  36. BOLERO_MACRO_EVT_IMPED_FALSE, /* for imped false */
  37. BOLERO_MACRO_EVT_SSR_DOWN,
  38. BOLERO_MACRO_EVT_SSR_UP,
  39. BOLERO_MACRO_EVT_WAIT_VA_CLK_RESET,
  40. BOLERO_MACRO_EVT_CLK_RESET,
  41. BOLERO_MACRO_EVT_REG_WAKE_IRQ,
  42. BOLERO_MACRO_EVT_RX_COMPANDER_SOFT_RST,
  43. BOLERO_MACRO_EVT_BCS_CLK_OFF,
  44. BOLERO_MACRO_EVT_SSR_GFMUX_UP,
  45. BOLERO_MACRO_EVT_PRE_SSR_UP,
  46. BOLERO_MACRO_EVT_RX_PA_GAIN_UPDATE,
  47. };
  48. enum {
  49. DMIC_TX = 0,
  50. DMIC_VA = 1,
  51. };
  52. struct macro_ops {
  53. int (*init)(struct snd_soc_component *component);
  54. int (*exit)(struct snd_soc_component *component);
  55. u16 num_dais;
  56. struct device *dev;
  57. struct snd_soc_dai_driver *dai_ptr;
  58. int (*mclk_fn)(struct device *dev, bool enable);
  59. int (*event_handler)(struct snd_soc_component *component, u16 event,
  60. u32 data);
  61. int (*reg_wake_irq)(struct snd_soc_component *component, u32 data);
  62. int (*set_port_map)(struct snd_soc_component *component, u32 uc,
  63. u32 size, void *data);
  64. int (*clk_div_get)(struct snd_soc_component *component);
  65. int (*reg_evt_listener)(struct snd_soc_component *component, bool en);
  66. int (*clk_enable)(struct snd_soc_component *c, bool en);
  67. char __iomem *io_base;
  68. u16 clk_id_req;
  69. u16 default_clk_id;
  70. };
  71. typedef int (*rsc_clk_cb_t)(struct device *dev, u16 event);
  72. #if IS_ENABLED(CONFIG_SND_SOC_BOLERO)
  73. int bolero_register_res_clk(struct device *dev, rsc_clk_cb_t cb);
  74. void bolero_unregister_res_clk(struct device *dev);
  75. bool bolero_is_va_macro_registered(struct device *dev);
  76. int bolero_register_macro(struct device *dev, u16 macro_id,
  77. struct macro_ops *ops);
  78. void bolero_unregister_macro(struct device *dev, u16 macro_id);
  79. struct device *bolero_get_device_ptr(struct device *dev, u16 macro_id);
  80. struct device *bolero_get_rsc_clk_device_ptr(struct device *dev);
  81. int bolero_info_create_codec_entry(
  82. struct snd_info_entry *codec_root,
  83. struct snd_soc_component *component);
  84. int bolero_register_wake_irq(struct snd_soc_component *component, u32 data);
  85. void bolero_clear_amic_tx_hold(struct device *dev, u16 adc_n);
  86. int bolero_runtime_resume(struct device *dev);
  87. int bolero_runtime_suspend(struct device *dev);
  88. int bolero_set_port_map(struct snd_soc_component *component, u32 size, void *data);
  89. int bolero_register_event_listener(struct snd_soc_component *component,
  90. bool enable);
  91. void bolero_wsa_pa_on(struct device *dev);
  92. bool bolero_check_core_votes(struct device *dev);
  93. int bolero_tx_mclk_enable(struct snd_soc_component *c, bool enable);
  94. int bolero_get_version(struct device *dev);
  95. int bolero_dmic_clk_enable(struct snd_soc_component *component,
  96. u32 dmic, u32 tx_mode, bool enable);
  97. #else
  98. static inline int bolero_register_res_clk(struct device *dev, rsc_clk_cb_t cb)
  99. {
  100. return 0;
  101. }
  102. static inline void bolero_unregister_res_clk(struct device *dev)
  103. {
  104. }
  105. static bool bolero_is_va_macro_registered(struct device *dev)
  106. {
  107. return false;
  108. }
  109. static inline int bolero_register_macro(struct device *dev,
  110. u16 macro_id,
  111. struct macro_ops *ops)
  112. {
  113. return 0;
  114. }
  115. static inline void bolero_unregister_macro(struct device *dev, u16 macro_id)
  116. {
  117. }
  118. static inline struct device *bolero_get_device_ptr(struct device *dev,
  119. u16 macro_id)
  120. {
  121. return NULL;
  122. }
  123. static int bolero_info_create_codec_entry(
  124. struct snd_info_entry *codec_root,
  125. struct snd_soc_component *component)
  126. {
  127. return 0;
  128. }
  129. static inline void bolero_clear_amic_tx_hold(struct device *dev, u16 adc_n)
  130. {
  131. }
  132. static inline int bolero_register_wake_irq(struct snd_soc_component *component,
  133. u32 data)
  134. {
  135. return 0;
  136. }
  137. static inline int bolero_runtime_resume(struct device *dev)
  138. {
  139. return 0;
  140. }
  141. static int bolero_runtime_suspend(struct device *dev)
  142. {
  143. return 0;
  144. }
  145. static inline int bolero_set_port_map(struct snd_soc_component *component,
  146. u32 size, void *data)
  147. {
  148. return 0;
  149. }
  150. static inline int bolero_register_event_listener(
  151. struct snd_soc_component *component,
  152. bool enable)
  153. {
  154. return 0;
  155. }
  156. static void bolero_wsa_pa_on(struct device *dev)
  157. {
  158. }
  159. static inline bool bolero_check_core_votes(struct device *dev)
  160. {
  161. return false;
  162. }
  163. static int bolero_get_version(struct device *dev)
  164. {
  165. return 0;
  166. }
  167. static int bolero_dmic_clk_enable(struct snd_soc_component *component,
  168. u32 dmic, u32 tx_mode, bool enable)
  169. {
  170. return 0;
  171. }
  172. static int bolero_tx_mclk_enable(struct snd_soc_component *c, bool enable)
  173. {
  174. return 0;
  175. }
  176. #endif /* CONFIG_SND_SOC_BOLERO */
  177. #endif /* BOLERO_CDC_H */