aqt1000-api.h 1.0 KB

12345678910111213141516171819202122232425262728
  1. /* Copyright (c) 2018, 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 AQT1000_API_H
  13. #define AQT1000_API_H
  14. #include <linux/kernel.h>
  15. #include <linux/module.h>
  16. #include <linux/of_device.h>
  17. #include <sound/soc.h>
  18. extern int aqt_mbhc_micb_adjust_voltage(struct snd_soc_codec *codec,
  19. int volt, int micb_num);
  20. extern int aqt_cdc_mclk_enable(struct snd_soc_codec *codec, bool enable);
  21. extern int aqt_get_micb_vout_ctl_val(u32 micb_mv);
  22. extern int aqt_micbias_control(struct snd_soc_codec *codec, int micb_num,
  23. int req, bool is_dapm);
  24. #endif /* AQT1000_API_H */