wsa883x.h 1002 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /* Copyright (c) 2015-2019, The Linux Foundation. All rights reserved.
  3. */
  4. #ifndef _WSA883X_H
  5. #define _WSA883X_H
  6. #include <linux/regmap.h>
  7. #include <sound/soc.h>
  8. #include <sound/info.h>
  9. #include "wsa883x-registers.h"
  10. #define WSA883X_MAX_SWR_PORTS 4
  11. #if IS_ENABLED(CONFIG_SND_SOC_WSA883X)
  12. int wsa883x_set_channel_map(struct snd_soc_component *component,
  13. u8 *port, u8 num_port, unsigned int *ch_mask,
  14. unsigned int *ch_rate, u8 *port_type);
  15. int wsa883x_codec_info_create_codec_entry(
  16. struct snd_info_entry *codec_root,
  17. struct snd_soc_component *component);
  18. #else
  19. static int wsa883x_set_channel_map(struct snd_soc_component *component,
  20. u8 *port, u8 num_port, unsigned int *ch_mask,
  21. unsigned int *ch_rate, u8 *port_type)
  22. {
  23. return 0;
  24. }
  25. static int wsa883x_codec_info_create_codec_entry(
  26. struct snd_info_entry *codec_root,
  27. struct snd_soc_component *component)
  28. {
  29. return 0;
  30. }
  31. #endif
  32. #endif /* _WSA883X_H */