wsa884x.h 1.4 KB

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