bolero-cdc.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. char __iomem *io_base;
  52. u16 clk_id_req;
  53. u16 default_clk_id;
  54. };
  55. typedef int (*rsc_clk_cb_t)(struct device *dev, u16 event);
  56. #if IS_ENABLED(CONFIG_SND_SOC_BOLERO)
  57. int bolero_register_res_clk(struct device *dev, rsc_clk_cb_t cb);
  58. void bolero_unregister_res_clk(struct device *dev);
  59. int bolero_register_macro(struct device *dev, u16 macro_id,
  60. struct macro_ops *ops);
  61. void bolero_unregister_macro(struct device *dev, u16 macro_id);
  62. struct device *bolero_get_device_ptr(struct device *dev, u16 macro_id);
  63. struct device *bolero_get_rsc_clk_device_ptr(struct device *dev);
  64. int bolero_info_create_codec_entry(
  65. struct snd_info_entry *codec_root,
  66. struct snd_soc_component *component);
  67. int bolero_register_wake_irq(struct snd_soc_component *component, u32 data);
  68. void bolero_clear_amic_tx_hold(struct device *dev, u16 adc_n);
  69. int bolero_runtime_resume(struct device *dev);
  70. int bolero_runtime_suspend(struct device *dev);
  71. int bolero_set_port_map(struct snd_soc_component *component, u32 size, void *data);
  72. #else
  73. static inline int bolero_register_res_clk(struct device *dev, rsc_clk_cb_t cb)
  74. {
  75. return 0;
  76. }
  77. static inline void bolero_unregister_res_clk(struct device *dev)
  78. {
  79. }
  80. static inline int bolero_register_macro(struct device *dev,
  81. u16 macro_id,
  82. struct macro_ops *ops)
  83. {
  84. return 0;
  85. }
  86. static inline void bolero_unregister_macro(struct device *dev, u16 macro_id)
  87. {
  88. }
  89. static inline struct device *bolero_get_device_ptr(struct device *dev,
  90. u16 macro_id)
  91. {
  92. return NULL;
  93. }
  94. static int bolero_info_create_codec_entry(
  95. struct snd_info_entry *codec_root,
  96. struct snd_soc_component *component)
  97. {
  98. return 0;
  99. }
  100. static inline void bolero_clear_amic_tx_hold(struct device *dev, u16 adc_n)
  101. {
  102. }
  103. static inline int bolero_register_wake_irq(struct snd_soc_component *component,
  104. u32 data)
  105. {
  106. return 0;
  107. }
  108. static inline int bolero_runtime_resume(struct device *dev)
  109. {
  110. return 0;
  111. }
  112. static int bolero_runtime_suspend(struct device *dev)
  113. {
  114. return 0;
  115. }
  116. static inline int bolero_set_port_map(struct snd_soc_component *component,
  117. u32 size, void *data)
  118. {
  119. return 0;
  120. }
  121. #endif /* CONFIG_SND_SOC_BOLERO */
  122. #endif /* BOLERO_CDC_H */