bolero_cdc.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. struct macro_ops {
  25. int (*init)(struct snd_soc_codec *codec);
  26. int (*exit)(struct snd_soc_codec *codec);
  27. u16 num_dais;
  28. struct device *dev;
  29. struct snd_soc_dai_driver *dai_ptr;
  30. int (*mclk_fn)(struct device *dev, bool enable);
  31. char __iomem *io_base;
  32. };
  33. #if IS_ENABLED(CONFIG_SND_SOC_BOLERO)
  34. int bolero_register_macro(struct device *dev, u16 macro_id,
  35. struct macro_ops *ops);
  36. void bolero_unregister_macro(struct device *dev, u16 macro_id);
  37. struct device *bolero_get_device_ptr(struct device *dev, u16 macro_id);
  38. #else
  39. static inline int bolero_register_macro(struct device *dev,
  40. u16 macro_id,
  41. struct macro_ops *ops)
  42. {
  43. return 0;
  44. }
  45. static inline void bolero_unregister_macro(struct device *dev, u16 macro_id)
  46. {
  47. }
  48. static inline struct device *bolero_get_device_ptr(struct device *dev,
  49. u16 macro_id)
  50. {
  51. return NULL;
  52. }
  53. #endif /* CONFIG_SND_SOC_BOLERO */
  54. #endif /* BOLERO_CDC_H */