bolero-cdc.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /* Copyright (c) 2018, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #ifndef BOLERO_CDC_H
  13. #define BOLERO_CDC_H
  14. #include <sound/soc.h>
  15. #include <linux/regmap.h>
  16. enum {
  17. START_MACRO,
  18. TX_MACRO = START_MACRO,
  19. RX_MACRO,
  20. WSA_MACRO,
  21. VA_MACRO,
  22. MAX_MACRO
  23. };
  24. enum mclk_mux {
  25. MCLK_MUX0,
  26. MCLK_MUX1,
  27. MCLK_MUX_MAX
  28. };
  29. enum {
  30. BOLERO_ADC0 = 1,
  31. BOLERO_ADC1,
  32. BOLERO_ADC2,
  33. BOLERO_ADC3,
  34. BOLERO_ADC_MAX
  35. };
  36. enum {
  37. BOLERO_MACRO_EVT_RX_MUTE = 1, /* for RX mute/unmute */
  38. BOLERO_MACRO_EVT_IMPED_TRUE, /* for imped true */
  39. BOLERO_MACRO_EVT_IMPED_FALSE, /* for imped false */
  40. BOLERO_MACRO_EVT_SSR_DOWN,
  41. BOLERO_MACRO_EVT_SSR_UP,
  42. BOLERO_MACRO_EVT_WAIT_VA_CLK_RESET,
  43. BOLERO_MACRO_EVT_REG_WAKE_IRQ
  44. };
  45. struct macro_ops {
  46. int (*init)(struct snd_soc_codec *codec);
  47. int (*exit)(struct snd_soc_codec *codec);
  48. u16 num_dais;
  49. struct device *dev;
  50. struct snd_soc_dai_driver *dai_ptr;
  51. int (*mclk_fn)(struct device *dev, bool enable);
  52. int (*event_handler)(struct snd_soc_codec *codec, u16 event,
  53. u32 data);
  54. int (*reg_wake_irq)(struct snd_soc_codec *codec, u32 data);
  55. char __iomem *io_base;
  56. };
  57. #if IS_ENABLED(CONFIG_SND_SOC_BOLERO)
  58. int bolero_register_macro(struct device *dev, u16 macro_id,
  59. struct macro_ops *ops);
  60. void bolero_unregister_macro(struct device *dev, u16 macro_id);
  61. struct device *bolero_get_device_ptr(struct device *dev, u16 macro_id);
  62. int bolero_request_clock(struct device *dev, u16 macro_id,
  63. enum mclk_mux mclk_mux_id,
  64. bool enable);
  65. int bolero_info_create_codec_entry(
  66. struct snd_info_entry *codec_root,
  67. struct snd_soc_codec *codec);
  68. int bolero_register_wake_irq(struct snd_soc_codec *codec, u32 data);
  69. void bolero_clear_amic_tx_hold(struct device *dev, u16 adc_n);
  70. #else
  71. static inline int bolero_register_macro(struct device *dev,
  72. u16 macro_id,
  73. struct macro_ops *ops)
  74. {
  75. return 0;
  76. }
  77. static inline void bolero_unregister_macro(struct device *dev, u16 macro_id)
  78. {
  79. }
  80. static inline struct device *bolero_get_device_ptr(struct device *dev,
  81. u16 macro_id)
  82. {
  83. return NULL;
  84. }
  85. static inline int bolero_request_clock(struct device *dev, u16 macro_id,
  86. enum mclk_mux mclk_mux_id,
  87. bool enable)
  88. {
  89. return 0;
  90. }
  91. static int bolero_info_create_codec_entry(
  92. struct snd_info_entry *codec_root,
  93. struct snd_soc_codec *codec)
  94. {
  95. return 0;
  96. }
  97. static inline void bolero_clear_amic_tx_hold(struct device *dev, u16 adc_n)
  98. {
  99. }
  100. static inline int bolero_register_wake_irq(struct snd_soc_codec *codec,
  101. u32 data)
  102. {
  103. return 0;
  104. }
  105. #endif /* CONFIG_SND_SOC_BOLERO */
  106. #endif /* BOLERO_CDC_H */