blob: 95acc337aea5afe84158f363124bb0af59106dc4 [file] [log] [blame]
Takashi Iwaie3d280f2015-02-17 21:46:37 +01001/*
2 * HD-audio core stuff
3 */
4
5#ifndef __SOUND_HDAUDIO_H
6#define __SOUND_HDAUDIO_H
7
8#include <linux/device.h>
Takashi Iwaid068ebc2015-03-02 23:22:59 +01009#include <sound/hda_verbs.h>
10
Takashi Iwai7639a062015-03-03 10:07:24 +010011/* codec node id */
12typedef u16 hda_nid_t;
13
Takashi Iwaid068ebc2015-03-02 23:22:59 +010014struct hdac_bus;
15struct hdac_device;
16struct hdac_driver;
Takashi Iwai3256be62015-02-24 14:59:42 +010017struct hdac_widget_tree;
Takashi Iwaie3d280f2015-02-17 21:46:37 +010018
19/*
20 * exported bus type
21 */
22extern struct bus_type snd_hda_bus_type;
23
24/*
Takashi Iwai71fc4c72015-03-03 17:33:10 +010025 * generic arrays
26 */
27struct snd_array {
28 unsigned int used;
29 unsigned int alloced;
30 unsigned int elem_size;
31 unsigned int alloc_align;
32 void *list;
33};
34
35/*
Takashi Iwaie3d280f2015-02-17 21:46:37 +010036 * HD-audio codec base device
37 */
38struct hdac_device {
39 struct device dev;
40 int type;
Takashi Iwaid068ebc2015-03-02 23:22:59 +010041 struct hdac_bus *bus;
42 unsigned int addr; /* codec address */
43 struct list_head list; /* list point for bus codec_list */
Takashi Iwai7639a062015-03-03 10:07:24 +010044
45 hda_nid_t afg; /* AFG node id */
46 hda_nid_t mfg; /* MFG node id */
47
48 /* ids */
49 unsigned int vendor_id;
50 unsigned int subsystem_id;
51 unsigned int revision_id;
52 unsigned int afg_function_id;
53 unsigned int mfg_function_id;
54 unsigned int afg_unsol:1;
55 unsigned int mfg_unsol:1;
56
57 unsigned int power_caps; /* FG power caps */
58
59 const char *vendor_name; /* codec vendor name */
60 const char *chip_name; /* codec chip name */
61
Takashi Iwai05852442015-03-03 15:40:08 +010062 /* verb exec op override */
63 int (*exec_verb)(struct hdac_device *dev, unsigned int cmd,
64 unsigned int flags, unsigned int *res);
65
Takashi Iwai7639a062015-03-03 10:07:24 +010066 /* widgets */
67 unsigned int num_nodes;
68 hda_nid_t start_nid, end_nid;
69
70 /* misc flags */
71 atomic_t in_pm; /* suspend/resume being performed */
Takashi Iwai3256be62015-02-24 14:59:42 +010072
73 /* sysfs */
74 struct hdac_widget_tree *widgets;
Takashi Iwai4d75faa02015-02-25 14:42:38 +010075
76 /* regmap */
77 struct regmap *regmap;
Takashi Iwai5e56bce2015-02-26 12:29:03 +010078 struct snd_array vendor_verbs;
Takashi Iwai4d75faa02015-02-25 14:42:38 +010079 bool lazy_cache:1; /* don't wake up for writes */
Takashi Iwaifaa75f82015-02-26 08:54:56 +010080 bool caps_overwriting:1; /* caps overwrite being in process */
Takashi Iwai40ba66a2015-03-13 15:56:25 +010081 bool cache_coef:1; /* cache COEF read/write too */
Takashi Iwaie3d280f2015-02-17 21:46:37 +010082};
83
84/* device/driver type used for matching */
85enum {
86 HDA_DEV_CORE,
87 HDA_DEV_LEGACY,
88};
89
Takashi Iwai7639a062015-03-03 10:07:24 +010090/* direction */
91enum {
92 HDA_INPUT, HDA_OUTPUT
93};
94
Takashi Iwaie3d280f2015-02-17 21:46:37 +010095#define dev_to_hdac_dev(_dev) container_of(_dev, struct hdac_device, dev)
96
Takashi Iwai7639a062015-03-03 10:07:24 +010097int snd_hdac_device_init(struct hdac_device *dev, struct hdac_bus *bus,
98 const char *name, unsigned int addr);
99void snd_hdac_device_exit(struct hdac_device *dev);
Takashi Iwai3256be62015-02-24 14:59:42 +0100100int snd_hdac_device_register(struct hdac_device *codec);
101void snd_hdac_device_unregister(struct hdac_device *codec);
Takashi Iwai7639a062015-03-03 10:07:24 +0100102
103int snd_hdac_refresh_widgets(struct hdac_device *codec);
104
105unsigned int snd_hdac_make_cmd(struct hdac_device *codec, hda_nid_t nid,
106 unsigned int verb, unsigned int parm);
Takashi Iwai05852442015-03-03 15:40:08 +0100107int snd_hdac_exec_verb(struct hdac_device *codec, unsigned int cmd,
108 unsigned int flags, unsigned int *res);
Takashi Iwai7639a062015-03-03 10:07:24 +0100109int snd_hdac_read(struct hdac_device *codec, hda_nid_t nid,
110 unsigned int verb, unsigned int parm, unsigned int *res);
Takashi Iwai01ed3c02015-02-26 13:57:47 +0100111int _snd_hdac_read_parm(struct hdac_device *codec, hda_nid_t nid, int parm,
112 unsigned int *res);
Takashi Iwai9ba17b42015-03-03 23:29:47 +0100113int snd_hdac_read_parm_uncached(struct hdac_device *codec, hda_nid_t nid,
114 int parm);
Takashi Iwaifaa75f82015-02-26 08:54:56 +0100115int snd_hdac_override_parm(struct hdac_device *codec, hda_nid_t nid,
116 unsigned int parm, unsigned int val);
Takashi Iwai7639a062015-03-03 10:07:24 +0100117int snd_hdac_get_connections(struct hdac_device *codec, hda_nid_t nid,
118 hda_nid_t *conn_list, int max_conns);
119int snd_hdac_get_sub_nodes(struct hdac_device *codec, hda_nid_t nid,
120 hda_nid_t *start_id);
121
Takashi Iwai01ed3c02015-02-26 13:57:47 +0100122/**
123 * snd_hdac_read_parm - read a codec parameter
124 * @codec: the codec object
125 * @nid: NID to read a parameter
126 * @parm: parameter to read
127 *
128 * Returns -1 for error. If you need to distinguish the error more
129 * strictly, use _snd_hdac_read_parm() directly.
130 */
131static inline int snd_hdac_read_parm(struct hdac_device *codec, hda_nid_t nid,
132 int parm)
133{
134 unsigned int val;
135
136 return _snd_hdac_read_parm(codec, nid, parm, &val) < 0 ? -1 : val;
137}
138
Takashi Iwai7639a062015-03-03 10:07:24 +0100139#ifdef CONFIG_PM
140void snd_hdac_power_up(struct hdac_device *codec);
141void snd_hdac_power_down(struct hdac_device *codec);
142#else
143static inline void snd_hdac_power_up(struct hdac_device *codec) {}
144static inline void snd_hdac_power_down(struct hdac_device *codec) {}
145#endif
146
Takashi Iwaie3d280f2015-02-17 21:46:37 +0100147/*
148 * HD-audio codec base driver
149 */
150struct hdac_driver {
151 struct device_driver driver;
152 int type;
153 int (*match)(struct hdac_device *dev, struct hdac_driver *drv);
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100154 void (*unsol_event)(struct hdac_device *dev, unsigned int event);
Takashi Iwaie3d280f2015-02-17 21:46:37 +0100155};
156
157#define drv_to_hdac_driver(_drv) container_of(_drv, struct hdac_driver, driver)
158
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100159/*
160 * HD-audio bus base driver
161 */
162struct hdac_bus_ops {
163 /* send a single command */
164 int (*command)(struct hdac_bus *bus, unsigned int cmd);
165 /* get a response from the last command */
166 int (*get_response)(struct hdac_bus *bus, unsigned int addr,
167 unsigned int *res);
168};
169
170#define HDA_UNSOL_QUEUE_SIZE 64
171
172struct hdac_bus {
173 struct device *dev;
174 const struct hdac_bus_ops *ops;
175
176 /* codec linked list */
177 struct list_head codec_list;
178 unsigned int num_codecs;
179
180 /* link caddr -> codec */
181 struct hdac_device *caddr_tbl[HDA_MAX_CODEC_ADDRESS + 1];
182
183 /* unsolicited event queue */
184 u32 unsol_queue[HDA_UNSOL_QUEUE_SIZE * 2]; /* ring buffer */
185 unsigned int unsol_rp, unsol_wp;
186 struct work_struct unsol_work;
187
188 /* bit flags of powered codecs */
189 unsigned long codec_powered;
190
191 /* flags */
192 bool sync_write:1; /* sync after verb write */
193
194 /* locks */
195 struct mutex cmd_mutex;
196};
197
198int snd_hdac_bus_init(struct hdac_bus *bus, struct device *dev,
199 const struct hdac_bus_ops *ops);
200void snd_hdac_bus_exit(struct hdac_bus *bus);
201int snd_hdac_bus_exec_verb(struct hdac_bus *bus, unsigned int addr,
202 unsigned int cmd, unsigned int *res);
203int snd_hdac_bus_exec_verb_unlocked(struct hdac_bus *bus, unsigned int addr,
204 unsigned int cmd, unsigned int *res);
205void snd_hdac_bus_queue_event(struct hdac_bus *bus, u32 res, u32 res_ex);
206
207int snd_hdac_bus_add_device(struct hdac_bus *bus, struct hdac_device *codec);
208void snd_hdac_bus_remove_device(struct hdac_bus *bus,
209 struct hdac_device *codec);
210
Takashi Iwai7639a062015-03-03 10:07:24 +0100211static inline void snd_hdac_codec_link_up(struct hdac_device *codec)
212{
213 set_bit(codec->addr, &codec->bus->codec_powered);
214}
215
216static inline void snd_hdac_codec_link_down(struct hdac_device *codec)
217{
218 clear_bit(codec->addr, &codec->bus->codec_powered);
219}
220
Takashi Iwai71fc4c72015-03-03 17:33:10 +0100221/*
222 * generic array helpers
223 */
224void *snd_array_new(struct snd_array *array);
225void snd_array_free(struct snd_array *array);
226static inline void snd_array_init(struct snd_array *array, unsigned int size,
227 unsigned int align)
228{
229 array->elem_size = size;
230 array->alloc_align = align;
231}
232
233static inline void *snd_array_elem(struct snd_array *array, unsigned int idx)
234{
235 return array->list + idx * array->elem_size;
236}
237
238static inline unsigned int snd_array_index(struct snd_array *array, void *ptr)
239{
240 return (unsigned long)(ptr - array->list) / array->elem_size;
241}
242
Takashi Iwaie3d280f2015-02-17 21:46:37 +0100243#endif /* __SOUND_HDAUDIO_H */