wsa883x.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. int wsa883x_codec_get_dev_num(struct snd_soc_component *component);
  19. #else
  20. static int wsa883x_set_channel_map(struct snd_soc_component *component,
  21. u8 *port, u8 num_port, unsigned int *ch_mask,
  22. unsigned int *ch_rate, u8 *port_type)
  23. {
  24. return 0;
  25. }
  26. static int wsa883x_codec_info_create_codec_entry(
  27. struct snd_info_entry *codec_root,
  28. struct snd_soc_component *component)
  29. {
  30. return 0;
  31. }
  32. static int wsa883x_codec_get_dev_num(struct snd_soc_component *component)
  33. {
  34. return 0;
  35. }
  36. #endif
  37. #endif /* _WSA883X_H */