bolero-cdc.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. };
  41. struct macro_ops {
  42. int (*init)(struct snd_soc_codec *codec);
  43. int (*exit)(struct snd_soc_codec *codec);
  44. u16 num_dais;
  45. struct device *dev;
  46. struct snd_soc_dai_driver *dai_ptr;
  47. int (*mclk_fn)(struct device *dev, bool enable);
  48. int (*event_handler)(struct snd_soc_codec *codec, u16 event,
  49. u32 data);
  50. char __iomem *io_base;
  51. };
  52. #if IS_ENABLED(CONFIG_SND_SOC_BOLERO)
  53. int bolero_register_macro(struct device *dev, u16 macro_id,
  54. struct macro_ops *ops);
  55. void bolero_unregister_macro(struct device *dev, u16 macro_id);
  56. struct device *bolero_get_device_ptr(struct device *dev, u16 macro_id);
  57. int bolero_request_clock(struct device *dev, u16 macro_id,
  58. enum mclk_mux mclk_mux_id,
  59. bool enable);
  60. int bolero_info_create_codec_entry(
  61. struct snd_info_entry *codec_root,
  62. struct snd_soc_codec *codec);
  63. void bolero_clear_amic_tx_hold(struct device *dev, u16 adc_n);
  64. #else
  65. static inline int bolero_register_macro(struct device *dev,
  66. u16 macro_id,
  67. struct macro_ops *ops)
  68. {
  69. return 0;
  70. }
  71. static inline void bolero_unregister_macro(struct device *dev, u16 macro_id)
  72. {
  73. }
  74. static inline struct device *bolero_get_device_ptr(struct device *dev,
  75. u16 macro_id)
  76. {
  77. return NULL;
  78. }
  79. static inline int bolero_request_clock(struct device *dev, u16 macro_id,
  80. enum mclk_mux mclk_mux_id,
  81. bool enable)
  82. {
  83. return 0;
  84. }
  85. static int bolero_info_create_codec_entry(
  86. struct snd_info_entry *codec_root,
  87. struct snd_soc_codec *codec)
  88. {
  89. return 0;
  90. }
  91. static inline void bolero_clear_amic_tx_hold(struct device *dev, u16 adc_n)
  92. {
  93. }
  94. #endif /* CONFIG_SND_SOC_BOLERO */
  95. #endif /* BOLERO_CDC_H */