cs35l56_hda.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* SPDX-License-Identifier: GPL-2.0-only
  2. *
  3. * HDA audio driver for Cirrus Logic CS35L56 smart amp
  4. *
  5. * Copyright (C) 2023 Cirrus Logic, Inc. and
  6. * Cirrus Logic International Semiconductor Ltd.
  7. */
  8. #ifndef __CS35L56_HDA_H__
  9. #define __CS35L56_HDA_H__
  10. #include <linux/device.h>
  11. #include <linux/gpio/consumer.h>
  12. #include <linux/firmware/cirrus/cs_dsp.h>
  13. #include <linux/firmware/cirrus/wmfw.h>
  14. #include <linux/regulator/consumer.h>
  15. #include <linux/workqueue.h>
  16. #include <sound/cs35l56.h>
  17. struct dentry;
  18. struct cs35l56_hda {
  19. struct cs35l56_base base;
  20. struct hda_codec *codec;
  21. struct work_struct dsp_work;
  22. int index;
  23. const char *system_name;
  24. const char *amp_name;
  25. struct cs_dsp cs_dsp;
  26. bool playing;
  27. bool suspended;
  28. u8 asp_tx_mask;
  29. struct snd_kcontrol *posture_ctl;
  30. struct snd_kcontrol *volume_ctl;
  31. struct snd_kcontrol *mixer_ctl[4];
  32. #if IS_ENABLED(CONFIG_SND_DEBUG)
  33. struct dentry *debugfs_root;
  34. #endif
  35. };
  36. extern const struct dev_pm_ops cs35l56_hda_pm_ops;
  37. int cs35l56_hda_common_probe(struct cs35l56_hda *cs35l56, int hid, int id);
  38. void cs35l56_hda_remove(struct device *dev);
  39. #endif /*__CS35L56_HDA_H__*/