Path: blob/master/sound/hda/codecs/side-codecs/cs35l56_hda.h
52358 views
/* SPDX-License-Identifier: GPL-2.0-only1*2* HDA audio driver for Cirrus Logic CS35L56 smart amp3*4* Copyright (C) 2023 Cirrus Logic, Inc. and5* Cirrus Logic International Semiconductor Ltd.6*/78#ifndef __CS35L56_HDA_H__9#define __CS35L56_HDA_H__1011#include <linux/container_of.h>12#include <linux/device.h>13#include <linux/gpio/consumer.h>14#include <linux/firmware/cirrus/cs_dsp.h>15#include <linux/firmware/cirrus/wmfw.h>16#include <linux/regulator/consumer.h>17#include <linux/workqueue.h>18#include <sound/cs35l56.h>1920struct dentry;2122struct cs35l56_hda {23struct cs35l56_base base;24struct hda_codec *codec;25struct work_struct dsp_work;2627int index;28const char *system_name;29const char *amp_name;3031struct cs_dsp cs_dsp;32bool playing;33bool suspended;34u8 asp_tx_mask;3536struct snd_kcontrol *posture_ctl;37struct snd_kcontrol *volume_ctl;38struct snd_kcontrol *mixer_ctl[4];3940#if IS_ENABLED(CONFIG_SND_DEBUG)41struct dentry *debugfs_root;42#endif43};4445static inline struct cs35l56_hda *cs35l56_hda_from_base(struct cs35l56_base *cs35l56_base)46{47return container_of(cs35l56_base, struct cs35l56_hda, base);48}4950extern const struct dev_pm_ops cs35l56_hda_pm_ops;5152int cs35l56_hda_common_probe(struct cs35l56_hda *cs35l56, int hid, int id);53void cs35l56_hda_remove(struct device *dev);5455#endif /*__CS35L56_HDA_H__*/565758