bolero-cdc.h 4.7 KB

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