wsa881x.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. /* Copyright (c) 2015-2016, 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 _WSA881X_H
  13. #define _WSA881X_H
  14. #include <linux/regmap.h>
  15. #include <sound/soc.h>
  16. #include <sound/info.h>
  17. #include "wsa881x-registers.h"
  18. #define WSA881X_MAX_SWR_PORTS 4
  19. extern int wsa881x_set_channel_map(struct snd_soc_codec *codec, u8 *port,
  20. u8 num_port, unsigned int *ch_mask,
  21. unsigned int *ch_rate);
  22. extern const u8 wsa881x_reg_readable[WSA881X_CACHE_SIZE];
  23. extern struct regmap_config wsa881x_regmap_config;
  24. extern int wsa881x_codec_info_create_codec_entry(
  25. struct snd_info_entry *codec_root,
  26. struct snd_soc_codec *codec);
  27. void wsa881x_regmap_defaults(struct regmap *regmap, u8 version);
  28. #endif /* _WSA881X_H */