bolero-cdc.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /* Copyright (c) 2018-2019, 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. enum {
  9. START_MACRO,
  10. TX_MACRO = START_MACRO,
  11. RX_MACRO,
  12. WSA_MACRO,
  13. VA_MACRO,
  14. MAX_MACRO
  15. };
  16. enum mclk_mux {
  17. MCLK_MUX0,
  18. MCLK_MUX1,
  19. MCLK_MUX_MAX
  20. };
  21. enum {
  22. BOLERO_ADC0 = 1,
  23. BOLERO_ADC1,
  24. BOLERO_ADC2,
  25. BOLERO_ADC3,
  26. BOLERO_ADC_MAX
  27. };
  28. enum {
  29. BOLERO_MACRO_EVT_RX_MUTE = 1, /* for RX mute/unmute */
  30. BOLERO_MACRO_EVT_IMPED_TRUE, /* for imped true */
  31. BOLERO_MACRO_EVT_IMPED_FALSE, /* for imped false */
  32. BOLERO_MACRO_EVT_SSR_DOWN,
  33. BOLERO_MACRO_EVT_SSR_UP,
  34. BOLERO_MACRO_EVT_WAIT_VA_CLK_RESET,
  35. BOLERO_MACRO_EVT_CLK_RESET,
  36. BOLERO_MACRO_EVT_REG_WAKE_IRQ,
  37. BOLERO_MACRO_EVT_RX_COMPANDER_SOFT_RST
  38. };
  39. struct macro_ops {
  40. int (*init)(struct snd_soc_component *component);
  41. int (*exit)(struct snd_soc_component *component);
  42. u16 num_dais;
  43. struct device *dev;
  44. struct snd_soc_dai_driver *dai_ptr;
  45. int (*mclk_fn)(struct device *dev, bool enable);
  46. int (*event_handler)(struct snd_soc_component *component, u16 event,
  47. u32 data);
  48. int (*reg_wake_irq)(struct snd_soc_component *component, u32 data);
  49. int (*set_port_map)(struct snd_soc_component *component, u32 uc,
  50. u32 size, void *data);
  51. int (*clk_switch)(struct snd_soc_component *component);
  52. int (*reg_evt_listener)(struct snd_soc_component *component, bool en);
  53. char __iomem *io_base;
  54. u16 clk_id_req;
  55. u16 default_clk_id;
  56. };
  57. typedef int (*rsc_clk_cb_t)(struct device *dev, u16 event);
  58. #if IS_ENABLED(CONFIG_SND_SOC_BOLERO)
  59. int bolero_register_res_clk(struct device *dev, rsc_clk_cb_t cb);
  60. void bolero_unregister_res_clk(struct device *dev);
  61. int bolero_register_macro(struct device *dev, u16 macro_id,
  62. struct macro_ops *ops);
  63. void bolero_unregister_macro(struct device *dev, u16 macro_id);
  64. struct device *bolero_get_device_ptr(struct device *dev, u16 macro_id);
  65. struct device *bolero_get_rsc_clk_device_ptr(struct device *dev);
  66. int bolero_info_create_codec_entry(
  67. struct snd_info_entry *codec_root,
  68. struct snd_soc_component *component);
  69. int bolero_register_wake_irq(struct snd_soc_component *component, u32 data);
  70. void bolero_clear_amic_tx_hold(struct device *dev, u16 adc_n);
  71. int bolero_runtime_resume(struct device *dev);
  72. int bolero_runtime_suspend(struct device *dev);
  73. int bolero_set_port_map(struct snd_soc_component *component, u32 size, void *data);
  74. int bolero_tx_clk_switch(struct snd_soc_component *component);
  75. int bolero_register_event_listener(struct snd_soc_component *component,
  76. bool enable);
  77. void bolero_wsa_pa_on(struct device *dev);
  78. #else
  79. static inline int bolero_register_res_clk(struct device *dev, rsc_clk_cb_t cb)
  80. {
  81. return 0;
  82. }
  83. static inline void bolero_unregister_res_clk(struct device *dev)
  84. {
  85. }
  86. static inline int bolero_register_macro(struct device *dev,
  87. u16 macro_id,
  88. struct macro_ops *ops)
  89. {
  90. return 0;
  91. }
  92. static inline void bolero_unregister_macro(struct device *dev, u16 macro_id)
  93. {
  94. }
  95. static inline struct device *bolero_get_device_ptr(struct device *dev,
  96. u16 macro_id)
  97. {
  98. return NULL;
  99. }
  100. static int bolero_info_create_codec_entry(
  101. struct snd_info_entry *codec_root,
  102. struct snd_soc_component *component)
  103. {
  104. return 0;
  105. }
  106. static inline void bolero_clear_amic_tx_hold(struct device *dev, u16 adc_n)
  107. {
  108. }
  109. static inline int bolero_register_wake_irq(struct snd_soc_component *component,
  110. u32 data)
  111. {
  112. return 0;
  113. }
  114. static inline int bolero_runtime_resume(struct device *dev)
  115. {
  116. return 0;
  117. }
  118. static int bolero_runtime_suspend(struct device *dev)
  119. {
  120. return 0;
  121. }
  122. static inline int bolero_set_port_map(struct snd_soc_component *component,
  123. u32 size, void *data)
  124. {
  125. return 0;
  126. }
  127. static inline int bolero_tx_clk_switch(struct snd_soc_component *component)
  128. {
  129. return 0;
  130. }
  131. static inline int bolero_register_event_listener(
  132. struct snd_soc_component *component,
  133. bool enable)
  134. {
  135. return 0;
  136. }
  137. static void bolero_wsa_pa_on(struct device *dev)
  138. {
  139. }
  140. #endif /* CONFIG_SND_SOC_BOLERO */
  141. #endif /* BOLERO_CDC_H */