wsa884x.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /* Copyright (c) 2015-2019, The Linux Foundation. All rights reserved.
  3. * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
  4. */
  5. #ifndef _WSA884X_H
  6. #define _WSA884X_H
  7. #include <linux/regmap.h>
  8. #include <sound/soc.h>
  9. #include <sound/info.h>
  10. #include "wsa884x-registers.h"
  11. #include "wsa884x-reg-masks.h"
  12. #include "wsa884x-reg-shifts.h"
  13. #define WSA884X_MAX_SWR_PORTS 6
  14. #if IS_ENABLED(CONFIG_SND_SOC_WSA884X)
  15. int wsa884x_set_channel_map(struct snd_soc_component *component,
  16. u8 *port, u8 num_port, unsigned int *ch_mask,
  17. unsigned int *ch_rate, u8 *port_type);
  18. int wsa884x_codec_info_create_codec_entry(
  19. struct snd_info_entry *codec_root,
  20. struct snd_soc_component *component);
  21. int wsa884x_codec_get_dev_num(struct snd_soc_component *component);
  22. #else
  23. static int wsa884x_set_channel_map(struct snd_soc_component *component,
  24. u8 *port, u8 num_port, unsigned int *ch_mask,
  25. unsigned int *ch_rate, u8 *port_type)
  26. {
  27. return 0;
  28. }
  29. static int wsa884x_codec_info_create_codec_entry(
  30. struct snd_info_entry *codec_root,
  31. struct snd_soc_component *component)
  32. {
  33. return 0;
  34. }
  35. static int wsa884x_codec_get_dev_num(struct snd_soc_component *component)
  36. {
  37. return 0;
  38. }
  39. #endif
  40. #endif /* _WSA884X_H */