bolero-cdc.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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. CLK_SRC_TX_RCG = 0,
  35. CLK_SRC_VA_RCG,
  36. };
  37. enum {
  38. BOLERO_MACRO_EVT_RX_MUTE = 1, /* for RX mute/unmute */
  39. BOLERO_MACRO_EVT_IMPED_TRUE, /* for imped true */
  40. BOLERO_MACRO_EVT_IMPED_FALSE, /* for imped false */
  41. BOLERO_MACRO_EVT_SSR_DOWN,
  42. BOLERO_MACRO_EVT_SSR_UP,
  43. BOLERO_MACRO_EVT_WAIT_VA_CLK_RESET,
  44. BOLERO_MACRO_EVT_CLK_RESET,
  45. BOLERO_MACRO_EVT_REG_WAKE_IRQ,
  46. BOLERO_MACRO_EVT_RX_COMPANDER_SOFT_RST,
  47. BOLERO_MACRO_EVT_BCS_CLK_OFF,
  48. BOLERO_MACRO_EVT_SSR_GFMUX_UP,
  49. };
  50. enum {
  51. DMIC_TX = 0,
  52. DMIC_VA = 1,
  53. };
  54. struct macro_ops {
  55. int (*init)(struct snd_soc_component *component);
  56. int (*exit)(struct snd_soc_component *component);
  57. u16 num_dais;
  58. struct device *dev;
  59. struct snd_soc_dai_driver *dai_ptr;
  60. int (*mclk_fn)(struct device *dev, bool enable);
  61. int (*event_handler)(struct snd_soc_component *component, u16 event,
  62. u32 data);
  63. int (*reg_wake_irq)(struct snd_soc_component *component, u32 data);
  64. int (*set_port_map)(struct snd_soc_component *component, u32 uc,
  65. u32 size, void *data);
  66. int (*clk_div_get)(struct snd_soc_component *component);
  67. int (*clk_switch)(struct snd_soc_component *component, int clk_src);
  68. int (*reg_evt_listener)(struct snd_soc_component *component, bool en);
  69. int (*clk_enable)(struct snd_soc_component *c, bool en);
  70. char __iomem *io_base;
  71. u16 clk_id_req;
  72. u16 default_clk_id;
  73. };
  74. typedef int (*rsc_clk_cb_t)(struct device *dev, u16 event);
  75. #if IS_ENABLED(CONFIG_SND_SOC_BOLERO)
  76. int bolero_register_res_clk(struct device *dev, rsc_clk_cb_t cb);
  77. void bolero_unregister_res_clk(struct device *dev);
  78. int bolero_register_macro(struct device *dev, u16 macro_id,
  79. struct macro_ops *ops);
  80. void bolero_unregister_macro(struct device *dev, u16 macro_id);
  81. struct device *bolero_get_device_ptr(struct device *dev, u16 macro_id);
  82. struct device *bolero_get_rsc_clk_device_ptr(struct device *dev);
  83. int bolero_info_create_codec_entry(
  84. struct snd_info_entry *codec_root,
  85. struct snd_soc_component *component);
  86. int bolero_register_wake_irq(struct snd_soc_component *component, u32 data);
  87. void bolero_clear_amic_tx_hold(struct device *dev, u16 adc_n);
  88. int bolero_runtime_resume(struct device *dev);
  89. int bolero_runtime_suspend(struct device *dev);
  90. int bolero_set_port_map(struct snd_soc_component *component, u32 size, void *data);
  91. int bolero_tx_clk_switch(struct snd_soc_component *component, int clk_src);
  92. int bolero_register_event_listener(struct snd_soc_component *component,
  93. bool enable);
  94. void bolero_wsa_pa_on(struct device *dev);
  95. bool bolero_check_core_votes(struct device *dev);
  96. int bolero_tx_mclk_enable(struct snd_soc_component *c, bool enable);
  97. int bolero_get_version(struct device *dev);
  98. int bolero_dmic_clk_enable(struct snd_soc_component *component,
  99. u32 dmic, u32 tx_mode, bool enable);
  100. #else
  101. static inline int bolero_register_res_clk(struct device *dev, rsc_clk_cb_t cb)
  102. {
  103. return 0;
  104. }
  105. static inline void bolero_unregister_res_clk(struct device *dev)
  106. {
  107. }
  108. static inline int bolero_register_macro(struct device *dev,
  109. u16 macro_id,
  110. struct macro_ops *ops)
  111. {
  112. return 0;
  113. }
  114. static inline void bolero_unregister_macro(struct device *dev, u16 macro_id)
  115. {
  116. }
  117. static inline struct device *bolero_get_device_ptr(struct device *dev,
  118. u16 macro_id)
  119. {
  120. return NULL;
  121. }
  122. static int bolero_info_create_codec_entry(
  123. struct snd_info_entry *codec_root,
  124. struct snd_soc_component *component)
  125. {
  126. return 0;
  127. }
  128. static inline void bolero_clear_amic_tx_hold(struct device *dev, u16 adc_n)
  129. {
  130. }
  131. static inline int bolero_register_wake_irq(struct snd_soc_component *component,
  132. u32 data)
  133. {
  134. return 0;
  135. }
  136. static inline int bolero_runtime_resume(struct device *dev)
  137. {
  138. return 0;
  139. }
  140. static int bolero_runtime_suspend(struct device *dev)
  141. {
  142. return 0;
  143. }
  144. static inline int bolero_set_port_map(struct snd_soc_component *component,
  145. u32 size, void *data)
  146. {
  147. return 0;
  148. }
  149. static inline int bolero_tx_clk_switch(struct snd_soc_component *component,
  150. int clk_src)
  151. {
  152. return 0;
  153. }
  154. static inline int bolero_register_event_listener(
  155. struct snd_soc_component *component,
  156. bool enable)
  157. {
  158. return 0;
  159. }
  160. static void bolero_wsa_pa_on(struct device *dev)
  161. {
  162. }
  163. static inline bool bolero_check_core_votes(struct device *dev)
  164. {
  165. return false;
  166. }
  167. static int bolero_get_version(struct device *dev)
  168. {
  169. return 0;
  170. }
  171. static int bolero_dmic_clk_enable(struct snd_soc_component *component,
  172. u32 dmic, u32 tx_mode, bool enable)
  173. {
  174. return 0;
  175. }
  176. static int bolero_tx_mclk_enable(struct snd_soc_component *c, bool enable)
  177. {
  178. return 0;
  179. }
  180. #endif /* CONFIG_SND_SOC_BOLERO */
  181. #endif /* BOLERO_CDC_H */