blob: 0c4a337c9fc0d266db5afd4d37210a33c889e61e [file] [log] [blame]
Thomas Gleixnerd0fa1172019-05-20 19:07:57 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Universal Interface for Intel High Definition Audio Codec
4 *
5 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/init.h>
9#include <linux/delay.h>
10#include <linux/slab.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010011#include <linux/mutex.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040012#include <linux/module.h>
Takashi Iwaicc72da72015-02-19 16:00:22 +010013#include <linux/pm.h>
14#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <sound/core.h>
Pierre-Louis Bossartbe57bff2018-08-22 15:24:57 -050016#include <sound/hda_codec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <sound/asoundef.h>
Jaroslav Kysela302e9c52006-07-05 17:39:49 +020018#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <sound/initval.h>
Takashi Iwaicd372fb2011-03-03 14:40:14 +010020#include <sound/jack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "hda_local.h"
Jaroslav Kysela123c07a2009-10-21 14:48:23 +020022#include "hda_beep.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020023#include "hda_jack.h"
Takashi Iwai28073142007-07-27 18:58:06 +020024#include <sound/hda_hwdep.h>
Takashi Iwai029d92c2018-12-08 17:31:49 +010025#include <sound/hda_component.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Takashi Iwaifeb20fa2018-06-27 09:03:51 +020027#define codec_in_pm(codec) snd_hdac_is_in_pm(&codec->core)
28#define hda_codec_is_power_on(codec) snd_hdac_is_power_on(&codec->core)
Takashi Iwai7639a062015-03-03 10:07:24 +010029#define codec_has_epss(codec) \
30 ((codec)->core.power_caps & AC_PWRST_EPSS)
31#define codec_has_clkstop(codec) \
32 ((codec)->core.power_caps & AC_PWRST_CLKSTOP)
33
Takashi Iwai33fa35e2008-11-06 16:50:40 +010034/*
Takashi Iwai058524482015-03-03 15:40:08 +010035 * Send and receive a verb - passed to exec_verb override for hdac_device
Takashi Iwaiaa2936f2009-05-26 16:07:57 +020036 */
Takashi Iwai058524482015-03-03 15:40:08 +010037static int codec_exec_verb(struct hdac_device *dev, unsigned int cmd,
38 unsigned int flags, unsigned int *res)
Takashi Iwaiaa2936f2009-05-26 16:07:57 +020039{
Takashi Iwai058524482015-03-03 15:40:08 +010040 struct hda_codec *codec = container_of(dev, struct hda_codec, core);
Takashi Iwaiaa2936f2009-05-26 16:07:57 +020041 struct hda_bus *bus = codec->bus;
Takashi Iwai8dd78332009-06-02 01:16:07 +020042 int err;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +020043
Wu Fengguang6430aee2009-07-17 16:49:19 +080044 if (cmd == ~0)
45 return -1;
46
Takashi Iwai8dd78332009-06-02 01:16:07 +020047 again:
Takashi Iwai664c7152015-04-08 11:43:14 +020048 snd_hda_power_up_pm(codec);
Takashi Iwaid068ebc2015-03-02 23:22:59 +010049 mutex_lock(&bus->core.cmd_mutex);
Takashi Iwai63e51fd72013-06-06 14:20:19 +020050 if (flags & HDA_RW_NO_RESPONSE_FALLBACK)
51 bus->no_response_fallback = 1;
Takashi Iwaid068ebc2015-03-02 23:22:59 +010052 err = snd_hdac_bus_exec_verb_unlocked(&bus->core, codec->core.addr,
53 cmd, res);
Takashi Iwai63e51fd72013-06-06 14:20:19 +020054 bus->no_response_fallback = 0;
Takashi Iwaid068ebc2015-03-02 23:22:59 +010055 mutex_unlock(&bus->core.cmd_mutex);
Takashi Iwai664c7152015-04-08 11:43:14 +020056 snd_hda_power_down_pm(codec);
Takashi Iwaicad372f2015-03-25 17:57:00 +010057 if (!codec_in_pm(codec) && res && err == -EAGAIN) {
Takashi Iwai8dd78332009-06-02 01:16:07 +020058 if (bus->response_reset) {
Takashi Iwai4e76a882014-02-25 12:21:03 +010059 codec_dbg(codec,
60 "resetting BUS due to fatal communication error\n");
Takashi Iwai0a505752015-04-16 23:25:02 +020061 snd_hda_bus_reset(bus);
Takashi Iwai8dd78332009-06-02 01:16:07 +020062 }
63 goto again;
64 }
65 /* clear reset-flag when the communication gets recovered */
Takashi Iwaid846b172012-11-24 11:58:24 +010066 if (!err || codec_in_pm(codec))
Takashi Iwai8dd78332009-06-02 01:16:07 +020067 bus->response_reset = 0;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +020068 return err;
69}
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * snd_hda_sequence_write - sequence writes
73 * @codec: the HDA codec
74 * @seq: VERB array to send
75 *
76 * Send the commands sequentially from the given array.
77 * The array must be terminated with NID=0.
78 */
79void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq)
80{
81 for (; seq->nid; seq++)
82 snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param);
83}
Takashi Iwai2698ea92013-12-18 07:45:52 +010084EXPORT_SYMBOL_GPL(snd_hda_sequence_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Takashi Iwaiee8e7652013-01-03 15:25:11 +010086/* connection list element */
87struct hda_conn_list {
88 struct list_head list;
89 int len;
90 hda_nid_t nid;
Gustavo A. R. Silvabb80b962020-02-11 14:07:39 -060091 hda_nid_t conns[];
Takashi Iwaiee8e7652013-01-03 15:25:11 +010092};
93
Takashi Iwaib2f934a2011-07-04 16:23:26 +020094/* look up the cached results */
Takashi Iwaiee8e7652013-01-03 15:25:11 +010095static struct hda_conn_list *
96lookup_conn_list(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaib2f934a2011-07-04 16:23:26 +020097{
Takashi Iwaiee8e7652013-01-03 15:25:11 +010098 struct hda_conn_list *p;
99 list_for_each_entry(p, &codec->conn_list, list) {
100 if (p->nid == nid)
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200101 return p;
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200102 }
103 return NULL;
104}
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200105
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100106static int add_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
107 const hda_nid_t *list)
108{
109 struct hda_conn_list *p;
110
Takashi Iwaia2d45602019-05-31 11:46:49 +0200111 p = kmalloc(struct_size(p, conns, len), GFP_KERNEL);
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100112 if (!p)
113 return -ENOMEM;
114 p->len = len;
115 p->nid = nid;
116 memcpy(p->conns, list, len * sizeof(hda_nid_t));
117 list_add(&p->list, &codec->conn_list);
118 return 0;
119}
120
121static void remove_conn_list(struct hda_codec *codec)
122{
123 while (!list_empty(&codec->conn_list)) {
124 struct hda_conn_list *p;
125 p = list_first_entry(&codec->conn_list, typeof(*p), list);
126 list_del(&p->list);
127 kfree(p);
128 }
129}
130
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200131/* read the connection and add to the cache */
132static int read_and_add_raw_conns(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200133{
Takashi Iwai4eea3092013-02-07 18:18:19 +0100134 hda_nid_t list[32];
135 hda_nid_t *result = list;
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200136 int len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200137
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200138 len = snd_hda_get_raw_connections(codec, nid, list, ARRAY_SIZE(list));
Takashi Iwai4eea3092013-02-07 18:18:19 +0100139 if (len == -ENOSPC) {
140 len = snd_hda_get_num_raw_conns(codec, nid);
Kees Cook6da2ec52018-06-12 13:55:00 -0700141 result = kmalloc_array(len, sizeof(hda_nid_t), GFP_KERNEL);
Takashi Iwai4eea3092013-02-07 18:18:19 +0100142 if (!result)
143 return -ENOMEM;
144 len = snd_hda_get_raw_connections(codec, nid, result, len);
145 }
146 if (len >= 0)
147 len = snd_hda_override_conn_list(codec, nid, len, result);
148 if (result != list)
149 kfree(result);
150 return len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200151}
Takashi Iwaidce20792011-06-24 14:10:28 +0200152
153/**
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100154 * snd_hda_get_conn_list - get connection list
155 * @codec: the HDA codec
156 * @nid: NID to parse
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100157 * @listp: the pointer to store NID list
158 *
159 * Parses the connection list of the given widget and stores the pointer
160 * to the list of NIDs.
161 *
162 * Returns the number of connections, or a negative error code.
163 *
164 * Note that the returned pointer isn't protected against the list
165 * modification. If snd_hda_override_conn_list() might be called
166 * concurrently, protect with a mutex appropriately.
167 */
168int snd_hda_get_conn_list(struct hda_codec *codec, hda_nid_t nid,
169 const hda_nid_t **listp)
170{
171 bool added = false;
172
173 for (;;) {
174 int err;
175 const struct hda_conn_list *p;
176
177 /* if the connection-list is already cached, read it */
178 p = lookup_conn_list(codec, nid);
179 if (p) {
180 if (listp)
181 *listp = p->conns;
182 return p->len;
183 }
184 if (snd_BUG_ON(added))
185 return -EINVAL;
186
187 err = read_and_add_raw_conns(codec, nid);
188 if (err < 0)
189 return err;
190 added = true;
191 }
192}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100193EXPORT_SYMBOL_GPL(snd_hda_get_conn_list);
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100194
195/**
Takashi Iwaidce20792011-06-24 14:10:28 +0200196 * snd_hda_get_connections - copy connection list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * @codec: the HDA codec
198 * @nid: NID to parse
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200199 * @conn_list: connection list array; when NULL, checks only the size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 * @max_conns: max. number of connections to store
201 *
202 * Parses the connection list of the given widget and stores the list
203 * of NIDs.
204 *
205 * Returns the number of connections, or a negative error code.
206 */
207int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200208 hda_nid_t *conn_list, int max_conns)
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200209{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100210 const hda_nid_t *list;
211 int len = snd_hda_get_conn_list(codec, nid, &list);
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200212
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100213 if (len > 0 && conn_list) {
214 if (len > max_conns) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100215 codec_err(codec, "Too many connections %d for NID 0x%x\n",
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200216 len, nid);
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200217 return -EINVAL;
218 }
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100219 memcpy(conn_list, list, len * sizeof(hda_nid_t));
Takashi Iwaidce20792011-06-24 14:10:28 +0200220 }
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200221
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100222 return len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200223}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100224EXPORT_SYMBOL_GPL(snd_hda_get_connections);
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226/**
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200227 * snd_hda_override_conn_list - add/modify the connection-list to cache
228 * @codec: the HDA codec
229 * @nid: NID to parse
230 * @len: number of connection list entries
231 * @list: the list of connection entries
232 *
233 * Add or modify the given connection-list to the cache. If the corresponding
234 * cache already exists, invalidate it and append a new one.
235 *
236 * Returns zero or a negative error code.
237 */
238int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
239 const hda_nid_t *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100241 struct hda_conn_list *p;
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200242
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100243 p = lookup_conn_list(codec, nid);
244 if (p) {
245 list_del(&p->list);
246 kfree(p);
247 }
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200248
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100249 return add_conn_list(codec, nid, len, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100251EXPORT_SYMBOL_GPL(snd_hda_override_conn_list);
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200252
253/**
Takashi Iwai8d087c72011-06-28 12:45:47 +0200254 * snd_hda_get_conn_index - get the connection index of the given NID
255 * @codec: the HDA codec
256 * @mux: NID containing the list
257 * @nid: NID to select
258 * @recursive: 1 when searching NID recursively, otherwise 0
259 *
260 * Parses the connection list of the widget @mux and checks whether the
261 * widget @nid is present. If it is, return the connection index.
262 * Otherwise it returns -1.
263 */
264int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux,
265 hda_nid_t nid, int recursive)
266{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100267 const hda_nid_t *conn;
Takashi Iwai8d087c72011-06-28 12:45:47 +0200268 int i, nums;
269
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100270 nums = snd_hda_get_conn_list(codec, mux, &conn);
Takashi Iwai8d087c72011-06-28 12:45:47 +0200271 for (i = 0; i < nums; i++)
272 if (conn[i] == nid)
273 return i;
274 if (!recursive)
275 return -1;
Takashi Iwaid94ddd82012-12-20 14:42:42 +0100276 if (recursive > 10) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100277 codec_dbg(codec, "too deep connection for 0x%x\n", nid);
Takashi Iwai8d087c72011-06-28 12:45:47 +0200278 return -1;
279 }
280 recursive++;
Takashi Iwai99e14c92011-09-13 10:33:16 +0200281 for (i = 0; i < nums; i++) {
282 unsigned int type = get_wcaps_type(get_wcaps(codec, conn[i]));
283 if (type == AC_WID_PIN || type == AC_WID_AUD_OUT)
284 continue;
Takashi Iwai8d087c72011-06-28 12:45:47 +0200285 if (snd_hda_get_conn_index(codec, conn[i], nid, recursive) >= 0)
286 return i;
Takashi Iwai99e14c92011-09-13 10:33:16 +0200287 }
Takashi Iwai8d087c72011-06-28 12:45:47 +0200288 return -1;
289}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100290EXPORT_SYMBOL_GPL(snd_hda_get_conn_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Libin Yang13800f32017-01-12 16:04:52 +0800292/**
293 * snd_hda_get_num_devices - get DEVLIST_LEN parameter of the given widget
294 * @codec: the HDA codec
295 * @nid: NID of the pin to parse
296 *
297 * Get the device entry number on the given widget. This is a feature of
298 * DP MST audio. Each pin can have several device entries in it.
299 */
300unsigned int snd_hda_get_num_devices(struct hda_codec *codec, hda_nid_t nid)
Mengdong Linf1aa0682013-08-26 21:35:21 -0400301{
302 unsigned int wcaps = get_wcaps(codec, nid);
303 unsigned int parm;
304
305 if (!codec->dp_mst || !(wcaps & AC_WCAP_DIGITAL) ||
306 get_wcaps_type(wcaps) != AC_WID_PIN)
307 return 0;
308
Dave Airlie132bd962015-06-09 13:39:31 +1000309 parm = snd_hdac_read_parm_uncached(&codec->core, nid, AC_PAR_DEVLIST_LEN);
Takashi Iwai86548442015-06-09 07:22:26 +0200310 if (parm == -1)
Mengdong Linf1aa0682013-08-26 21:35:21 -0400311 parm = 0;
312 return parm & AC_DEV_LIST_LEN_MASK;
313}
Libin Yang13800f32017-01-12 16:04:52 +0800314EXPORT_SYMBOL_GPL(snd_hda_get_num_devices);
Mengdong Linf1aa0682013-08-26 21:35:21 -0400315
316/**
317 * snd_hda_get_devices - copy device list without cache
318 * @codec: the HDA codec
319 * @nid: NID of the pin to parse
320 * @dev_list: device list array
321 * @max_devices: max. number of devices to store
322 *
323 * Copy the device list. This info is dynamic and so not cached.
324 * Currently called only from hda_proc.c, so not exported.
325 */
326int snd_hda_get_devices(struct hda_codec *codec, hda_nid_t nid,
327 u8 *dev_list, int max_devices)
328{
329 unsigned int parm;
330 int i, dev_len, devices;
331
Libin Yang13800f32017-01-12 16:04:52 +0800332 parm = snd_hda_get_num_devices(codec, nid);
Mengdong Linf1aa0682013-08-26 21:35:21 -0400333 if (!parm) /* not multi-stream capable */
334 return 0;
335
336 dev_len = parm + 1;
337 dev_len = dev_len < max_devices ? dev_len : max_devices;
338
339 devices = 0;
340 while (devices < dev_len) {
Takashi Iwaicad372f2015-03-25 17:57:00 +0100341 if (snd_hdac_read(&codec->core, nid,
342 AC_VERB_GET_DEVICE_LIST, devices, &parm))
343 break; /* error */
Mengdong Linf1aa0682013-08-26 21:35:21 -0400344
345 for (i = 0; i < 8; i++) {
346 dev_list[devices] = (u8)parm;
347 parm >>= 4;
348 devices++;
349 if (devices >= dev_len)
350 break;
351 }
352 }
353 return devices;
354}
355
Libin Yang13800f32017-01-12 16:04:52 +0800356/**
357 * snd_hda_get_dev_select - get device entry select on the pin
358 * @codec: the HDA codec
359 * @nid: NID of the pin to get device entry select
360 *
361 * Get the devcie entry select on the pin. Return the device entry
362 * id selected on the pin. Return 0 means the first device entry
363 * is selected or MST is not supported.
364 */
365int snd_hda_get_dev_select(struct hda_codec *codec, hda_nid_t nid)
366{
367 /* not support dp_mst will always return 0, using first dev_entry */
368 if (!codec->dp_mst)
369 return 0;
370
371 return snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DEVICE_SEL, 0);
372}
373EXPORT_SYMBOL_GPL(snd_hda_get_dev_select);
374
375/**
376 * snd_hda_set_dev_select - set device entry select on the pin
377 * @codec: the HDA codec
378 * @nid: NID of the pin to set device entry select
379 * @dev_id: device entry id to be set
380 *
381 * Set the device entry select on the pin nid.
382 */
383int snd_hda_set_dev_select(struct hda_codec *codec, hda_nid_t nid, int dev_id)
384{
385 int ret, num_devices;
386
387 /* not support dp_mst will always return 0, using first dev_entry */
388 if (!codec->dp_mst)
389 return 0;
390
391 /* AC_PAR_DEVLIST_LEN is 0 based. */
392 num_devices = snd_hda_get_num_devices(codec, nid) + 1;
393 /* If Device List Length is 0 (num_device = 1),
394 * the pin is not multi stream capable.
395 * Do nothing in this case.
396 */
397 if (num_devices == 1)
398 return 0;
399
400 /* Behavior of setting index being equal to or greater than
401 * Device List Length is not predictable
402 */
403 if (num_devices <= dev_id)
404 return -EINVAL;
405
406 ret = snd_hda_codec_write(codec, nid, 0,
407 AC_VERB_SET_DEVICE_SEL, dev_id);
408
409 return ret;
410}
411EXPORT_SYMBOL_GPL(snd_hda_set_dev_select);
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413/*
Takashi Iwai54d17402005-11-21 16:33:22 +0100414 * read widget caps for each widget and store in cache
415 */
416static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node)
417{
418 int i;
419 hda_nid_t nid;
420
Kees Cook6da2ec52018-06-12 13:55:00 -0700421 codec->wcaps = kmalloc_array(codec->core.num_nodes, 4, GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200422 if (!codec->wcaps)
Takashi Iwai54d17402005-11-21 16:33:22 +0100423 return -ENOMEM;
Takashi Iwai7639a062015-03-03 10:07:24 +0100424 nid = codec->core.start_nid;
425 for (i = 0; i < codec->core.num_nodes; i++, nid++)
Takashi Iwai9ba17b42015-03-03 23:29:47 +0100426 codec->wcaps[i] = snd_hdac_read_parm_uncached(&codec->core,
427 nid, AC_PAR_AUDIO_WIDGET_CAP);
Takashi Iwai54d17402005-11-21 16:33:22 +0100428 return 0;
429}
430
Takashi Iwai3be14142009-02-20 14:11:16 +0100431/* read all pin default configurations and save codec->init_pins */
432static int read_pin_defaults(struct hda_codec *codec)
433{
Takashi Iwai7639a062015-03-03 10:07:24 +0100434 hda_nid_t nid;
Takashi Iwai3be14142009-02-20 14:11:16 +0100435
Takashi Iwai7639a062015-03-03 10:07:24 +0100436 for_each_hda_codec_node(nid, codec) {
Takashi Iwai3be14142009-02-20 14:11:16 +0100437 struct hda_pincfg *pin;
438 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwaia22d5432009-07-27 12:54:26 +0200439 unsigned int wid_type = get_wcaps_type(wcaps);
Takashi Iwai3be14142009-02-20 14:11:16 +0100440 if (wid_type != AC_WID_PIN)
441 continue;
442 pin = snd_array_new(&codec->init_pins);
443 if (!pin)
444 return -ENOMEM;
445 pin->nid = nid;
446 pin->cfg = snd_hda_codec_read(codec, nid, 0,
447 AC_VERB_GET_CONFIG_DEFAULT, 0);
Libin Yang91520852017-01-12 16:04:53 +0800448 /*
449 * all device entries are the same widget control so far
450 * fixme: if any codec is different, need fix here
451 */
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200452 pin->ctrl = snd_hda_codec_read(codec, nid, 0,
453 AC_VERB_GET_PIN_WIDGET_CONTROL,
454 0);
Takashi Iwai3be14142009-02-20 14:11:16 +0100455 }
456 return 0;
457}
458
459/* look up the given pin config list and return the item matching with NID */
460static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec,
461 struct snd_array *array,
462 hda_nid_t nid)
463{
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +0200464 struct hda_pincfg *pin;
Takashi Iwai3be14142009-02-20 14:11:16 +0100465 int i;
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +0200466
467 snd_array_for_each(array, i, pin) {
Takashi Iwai3be14142009-02-20 14:11:16 +0100468 if (pin->nid == nid)
469 return pin;
470 }
471 return NULL;
472}
473
Takashi Iwai3be14142009-02-20 14:11:16 +0100474/* set the current pin config value for the given NID.
475 * the value is cached, and read via snd_hda_codec_get_pincfg()
476 */
477int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list,
478 hda_nid_t nid, unsigned int cfg)
479{
480 struct hda_pincfg *pin;
481
Takashi Iwaid5657ec2013-04-18 09:59:28 +0200482 /* the check below may be invalid when pins are added by a fixup
483 * dynamically (e.g. via snd_hda_codec_update_widgets()), so disabled
484 * for now
485 */
486 /*
Takashi Iwaib82855a2009-12-27 11:24:56 +0100487 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
488 return -EINVAL;
Takashi Iwaid5657ec2013-04-18 09:59:28 +0200489 */
Takashi Iwaib82855a2009-12-27 11:24:56 +0100490
Takashi Iwai3be14142009-02-20 14:11:16 +0100491 pin = look_up_pincfg(codec, list, nid);
492 if (!pin) {
493 pin = snd_array_new(list);
494 if (!pin)
495 return -ENOMEM;
496 pin->nid = nid;
497 }
498 pin->cfg = cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +0100499 return 0;
500}
501
Takashi Iwaid5191e52009-11-16 14:58:17 +0100502/**
503 * snd_hda_codec_set_pincfg - Override a pin default configuration
504 * @codec: the HDA codec
505 * @nid: NID to set the pin config
506 * @cfg: the pin default config value
507 *
508 * Override a pin default configuration value in the cache.
509 * This value can be read by snd_hda_codec_get_pincfg() in a higher
510 * priority than the real hardware value.
511 */
Takashi Iwai3be14142009-02-20 14:11:16 +0100512int snd_hda_codec_set_pincfg(struct hda_codec *codec,
513 hda_nid_t nid, unsigned int cfg)
514{
Takashi Iwai346ff702009-02-23 09:42:57 +0100515 return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100516}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100517EXPORT_SYMBOL_GPL(snd_hda_codec_set_pincfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100518
Takashi Iwaid5191e52009-11-16 14:58:17 +0100519/**
520 * snd_hda_codec_get_pincfg - Obtain a pin-default configuration
521 * @codec: the HDA codec
522 * @nid: NID to get the pin config
523 *
524 * Get the current pin config value of the given pin NID.
525 * If the pincfg value is cached or overridden via sysfs or driver,
526 * returns the cached value.
527 */
Takashi Iwai3be14142009-02-20 14:11:16 +0100528unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid)
529{
530 struct hda_pincfg *pin;
531
Takashi Iwai648a8d22014-02-25 10:38:13 +0100532#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai09b70e82013-01-10 18:21:56 +0100533 {
534 unsigned int cfg = 0;
535 mutex_lock(&codec->user_mutex);
536 pin = look_up_pincfg(codec, &codec->user_pins, nid);
537 if (pin)
538 cfg = pin->cfg;
539 mutex_unlock(&codec->user_mutex);
540 if (cfg)
541 return cfg;
542 }
Takashi Iwai3be14142009-02-20 14:11:16 +0100543#endif
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100544 pin = look_up_pincfg(codec, &codec->driver_pins, nid);
545 if (pin)
546 return pin->cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +0100547 pin = look_up_pincfg(codec, &codec->init_pins, nid);
548 if (pin)
549 return pin->cfg;
550 return 0;
551}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100552EXPORT_SYMBOL_GPL(snd_hda_codec_get_pincfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100553
Takashi Iwai95a962c2014-10-29 16:03:58 +0100554/**
555 * snd_hda_codec_set_pin_target - remember the current pinctl target value
556 * @codec: the HDA codec
557 * @nid: pin NID
558 * @val: assigned pinctl value
559 *
560 * This function stores the given value to a pinctl target value in the
561 * pincfg table. This isn't always as same as the actually written value
562 * but can be referred at any time via snd_hda_codec_get_pin_target().
563 */
Takashi Iwaid7fdc002013-01-10 08:38:04 +0100564int snd_hda_codec_set_pin_target(struct hda_codec *codec, hda_nid_t nid,
565 unsigned int val)
566{
567 struct hda_pincfg *pin;
568
569 pin = look_up_pincfg(codec, &codec->init_pins, nid);
570 if (!pin)
571 return -EINVAL;
572 pin->target = val;
573 return 0;
574}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100575EXPORT_SYMBOL_GPL(snd_hda_codec_set_pin_target);
Takashi Iwaid7fdc002013-01-10 08:38:04 +0100576
Takashi Iwai95a962c2014-10-29 16:03:58 +0100577/**
578 * snd_hda_codec_get_pin_target - return the current pinctl target value
579 * @codec: the HDA codec
580 * @nid: pin NID
581 */
Takashi Iwaid7fdc002013-01-10 08:38:04 +0100582int snd_hda_codec_get_pin_target(struct hda_codec *codec, hda_nid_t nid)
583{
584 struct hda_pincfg *pin;
585
586 pin = look_up_pincfg(codec, &codec->init_pins, nid);
587 if (!pin)
588 return 0;
589 return pin->target;
590}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100591EXPORT_SYMBOL_GPL(snd_hda_codec_get_pin_target);
Takashi Iwaid7fdc002013-01-10 08:38:04 +0100592
Takashi Iwai92ee6162009-12-27 11:18:59 +0100593/**
594 * snd_hda_shutup_pins - Shut up all pins
595 * @codec: the HDA codec
596 *
597 * Clear all pin controls to shup up before suspend for avoiding click noise.
598 * The controls aren't cached so that they can be resumed properly.
599 */
600void snd_hda_shutup_pins(struct hda_codec *codec)
601{
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +0200602 const struct hda_pincfg *pin;
Takashi Iwai92ee6162009-12-27 11:18:59 +0100603 int i;
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +0200604
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200605 /* don't shut up pins when unloading the driver; otherwise it breaks
606 * the default pin setup at the next load of the driver
607 */
608 if (codec->bus->shutdown)
609 return;
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +0200610 snd_array_for_each(&codec->init_pins, i, pin) {
Takashi Iwai92ee6162009-12-27 11:18:59 +0100611 /* use read here for syncing after issuing each verb */
612 snd_hda_codec_read(codec, pin->nid, 0,
613 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
614 }
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200615 codec->pins_shutup = 1;
Takashi Iwai92ee6162009-12-27 11:18:59 +0100616}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100617EXPORT_SYMBOL_GPL(snd_hda_shutup_pins);
Takashi Iwai92ee6162009-12-27 11:18:59 +0100618
Takashi Iwai2a439522011-07-26 09:52:50 +0200619#ifdef CONFIG_PM
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200620/* Restore the pin controls cleared previously via snd_hda_shutup_pins() */
621static void restore_shutup_pins(struct hda_codec *codec)
622{
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +0200623 const struct hda_pincfg *pin;
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200624 int i;
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +0200625
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200626 if (!codec->pins_shutup)
627 return;
628 if (codec->bus->shutdown)
629 return;
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +0200630 snd_array_for_each(&codec->init_pins, i, pin) {
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200631 snd_hda_codec_write(codec, pin->nid, 0,
632 AC_VERB_SET_PIN_WIDGET_CONTROL,
633 pin->ctrl);
634 }
635 codec->pins_shutup = 0;
636}
Mike Waychison1c7276c2011-04-20 12:04:36 -0700637#endif
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200638
David Henningsson26a6cb62012-10-09 15:04:21 +0200639static void hda_jackpoll_work(struct work_struct *work)
640{
641 struct hda_codec *codec =
642 container_of(work, struct hda_codec, jackpoll_work.work);
David Henningsson26a6cb62012-10-09 15:04:21 +0200643
Takashi Iwai8d6762a2020-04-22 22:37:44 +0200644 /* for non-polling trigger: we need nothing if already powered on */
645 if (!codec->jackpoll_interval && snd_hdac_is_power_on(&codec->core))
646 return;
647
648 /* the power-up/down sequence triggers the runtime resume */
649 snd_hda_power_up_pm(codec);
650 /* update jacks manually if polling is required, too */
651 if (codec->jackpoll_interval) {
652 snd_hda_jack_set_dirty_all(codec);
653 snd_hda_jack_poll_all(codec);
654 }
655 snd_hda_power_down_pm(codec);
Wang Xingchao18e60622013-07-25 23:34:45 -0400656
657 if (!codec->jackpoll_interval)
658 return;
659
Takashi Iwai2f35c632015-02-27 22:43:26 +0100660 schedule_delayed_work(&codec->jackpoll_work,
661 codec->jackpoll_interval);
David Henningsson26a6cb62012-10-09 15:04:21 +0200662}
663
Takashi Iwai3fdf1462012-11-22 08:16:31 +0100664/* release all pincfg lists */
665static void free_init_pincfgs(struct hda_codec *codec)
Takashi Iwai3be14142009-02-20 14:11:16 +0100666{
Takashi Iwai346ff702009-02-23 09:42:57 +0100667 snd_array_free(&codec->driver_pins);
Takashi Iwai648a8d22014-02-25 10:38:13 +0100668#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai346ff702009-02-23 09:42:57 +0100669 snd_array_free(&codec->user_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +0100670#endif
Takashi Iwai3be14142009-02-20 14:11:16 +0100671 snd_array_free(&codec->init_pins);
672}
673
Takashi Iwai54d17402005-11-21 16:33:22 +0100674/*
Takashi Iwaieb541332010-08-06 13:48:11 +0200675 * audio-converter setup caches
676 */
677struct hda_cvt_setup {
678 hda_nid_t nid;
679 u8 stream_tag;
680 u8 channel_id;
681 u16 format_id;
682 unsigned char active; /* cvt is currently used */
683 unsigned char dirty; /* setups should be cleared */
684};
685
686/* get or create a cache entry for the given audio converter NID */
687static struct hda_cvt_setup *
688get_hda_cvt_setup(struct hda_codec *codec, hda_nid_t nid)
689{
690 struct hda_cvt_setup *p;
691 int i;
692
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +0200693 snd_array_for_each(&codec->cvt_setups, i, p) {
Takashi Iwaieb541332010-08-06 13:48:11 +0200694 if (p->nid == nid)
695 return p;
696 }
697 p = snd_array_new(&codec->cvt_setups);
698 if (p)
699 p->nid = nid;
700 return p;
701}
702
703/*
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100704 * PCM device
705 */
706static void release_pcm(struct kref *kref)
707{
708 struct hda_pcm *pcm = container_of(kref, struct hda_pcm, kref);
709
710 if (pcm->pcm)
711 snd_device_free(pcm->codec->card, pcm->pcm);
712 clear_bit(pcm->device, pcm->codec->bus->pcm_dev_bits);
713 kfree(pcm->name);
714 kfree(pcm);
715}
716
717void snd_hda_codec_pcm_put(struct hda_pcm *pcm)
718{
719 kref_put(&pcm->kref, release_pcm);
720}
721EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_put);
722
723struct hda_pcm *snd_hda_codec_pcm_new(struct hda_codec *codec,
724 const char *fmt, ...)
725{
726 struct hda_pcm *pcm;
727 va_list args;
728
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100729 pcm = kzalloc(sizeof(*pcm), GFP_KERNEL);
730 if (!pcm)
731 return NULL;
732
733 pcm->codec = codec;
734 kref_init(&pcm->kref);
Takashi Iwai30e5f002015-04-27 16:39:19 +0200735 va_start(args, fmt);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100736 pcm->name = kvasprintf(GFP_KERNEL, fmt, args);
Takashi Iwai30e5f002015-04-27 16:39:19 +0200737 va_end(args);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100738 if (!pcm->name) {
739 kfree(pcm);
740 return NULL;
741 }
742
743 list_add_tail(&pcm->list, &codec->pcm_list_head);
744 return pcm;
745}
746EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_new);
747
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100748/*
749 * codec destructor
750 */
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100751static void codec_release_pcms(struct hda_codec *codec)
752{
753 struct hda_pcm *pcm, *n;
754
755 list_for_each_entry_safe(pcm, n, &codec->pcm_list_head, list) {
756 list_del_init(&pcm->list);
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100757 if (pcm->pcm)
758 snd_device_disconnect(codec->card, pcm->pcm);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100759 snd_hda_codec_pcm_put(pcm);
760 }
761}
762
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100763void snd_hda_codec_cleanup_for_unbind(struct hda_codec *codec)
764{
Takashi Iwaic4c25332015-03-03 17:22:12 +0100765 if (codec->registered) {
766 /* pm_runtime_put() is called in snd_hdac_device_exit() */
767 pm_runtime_get_noresume(hda_codec_dev(codec));
768 pm_runtime_disable(hda_codec_dev(codec));
769 codec->registered = 0;
770 }
771
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100772 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100773 if (!codec->in_freeing)
774 snd_hda_ctls_clear(codec);
775 codec_release_pcms(codec);
776 snd_hda_detach_beep_device(codec);
777 memset(&codec->patch_ops, 0, sizeof(codec->patch_ops));
778 snd_hda_jack_tbl_clear(codec);
779 codec->proc_widget_hook = NULL;
780 codec->spec = NULL;
781
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100782 /* free only driver_pins so that init_pins + user_pins are restored */
783 snd_array_free(&codec->driver_pins);
784 snd_array_free(&codec->cvt_setups);
785 snd_array_free(&codec->spdif_out);
786 snd_array_free(&codec->verbs);
787 codec->preset = NULL;
Takashi Iwai9ab0cb32020-07-17 17:45:17 +0200788 codec->follower_dig_outs = NULL;
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100789 codec->spdif_status_reset = 0;
790 snd_array_free(&codec->mixers);
791 snd_array_free(&codec->nids);
792 remove_conn_list(codec);
Takashi Iwai4d75faa02015-02-25 14:42:38 +0100793 snd_hdac_regmap_exit(&codec->core);
Takashi Iwaic0f18862021-10-06 16:19:40 +0200794 codec->configured = 0;
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100795}
Kai Vehmanencc1d0cd2020-07-15 20:45:50 +0300796EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup_for_unbind);
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100797
Takashi Iwaid8193872012-08-31 07:54:38 -0700798static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwaibb6ac722009-03-13 09:02:42 +0100799 unsigned int power_state);
800
Takashi Iwai029d92c2018-12-08 17:31:49 +0100801/* enable/disable display power per codec */
Imre Deak30994062021-06-23 16:46:01 +0300802void snd_hda_codec_display_power(struct hda_codec *codec, bool enable)
Takashi Iwai029d92c2018-12-08 17:31:49 +0100803{
804 if (codec->display_power_control)
805 snd_hdac_display_power(&codec->bus->core, codec->addr, enable);
806}
807
Takashi Iwaic4c25332015-03-03 17:22:12 +0100808/* also called from hda_bind.c */
809void snd_hda_codec_register(struct hda_codec *codec)
810{
811 if (codec->registered)
812 return;
813 if (device_is_registered(hda_codec_dev(codec))) {
Imre Deak30994062021-06-23 16:46:01 +0300814 snd_hda_codec_display_power(codec, true);
Takashi Iwaic4c25332015-03-03 17:22:12 +0100815 pm_runtime_enable(hda_codec_dev(codec));
816 /* it was powered up in snd_hda_codec_new(), now all done */
817 snd_hda_power_down(codec);
818 codec->registered = 1;
819 }
820}
821
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100822static int snd_hda_codec_dev_register(struct snd_device *device)
823{
Takashi Iwaic4c25332015-03-03 17:22:12 +0100824 snd_hda_codec_register(device->device_data);
Takashi Iwaid604b392014-02-28 13:42:09 +0100825 return 0;
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100826}
827
Takashi Iwai2565c892014-02-19 11:41:09 +0100828static int snd_hda_codec_dev_free(struct snd_device *device)
829{
Takashi Iwaid56db742015-02-27 23:25:35 +0100830 struct hda_codec *codec = device->device_data;
831
832 codec->in_freeing = 1;
Bard liao4d95c512019-04-28 04:53:39 +0800833 /*
834 * snd_hda_codec_device_new() is used by legacy HDA and ASoC driver.
835 * We can't unregister ASoC device since it will be unregistered in
836 * snd_hdac_ext_bus_device_remove().
837 */
838 if (codec->core.type == HDA_DEV_LEGACY)
839 snd_hdac_device_unregister(&codec->core);
Imre Deak30994062021-06-23 16:46:01 +0300840 snd_hda_codec_display_power(codec, false);
Ranjani Sridharand6947bb2019-05-31 09:01:37 -0700841
842 /*
843 * In the case of ASoC HD-audio bus, the device refcount is released in
844 * snd_hdac_ext_bus_device_remove() explicitly.
845 */
846 if (codec->core.type == HDA_DEV_LEGACY)
847 put_device(hda_codec_dev(codec));
848
Takashi Iwai2565c892014-02-19 11:41:09 +0100849 return 0;
850}
851
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100852static void snd_hda_codec_dev_release(struct device *dev)
853{
Takashi Iwaid56db742015-02-27 23:25:35 +0100854 struct hda_codec *codec = dev_to_hda_codec(dev);
855
856 free_init_pincfgs(codec);
Takashi Iwai7639a062015-03-03 10:07:24 +0100857 snd_hdac_device_exit(&codec->core);
Takashi Iwaid56db742015-02-27 23:25:35 +0100858 snd_hda_sysfs_clear(codec);
Takashi Iwaid56db742015-02-27 23:25:35 +0100859 kfree(codec->modelname);
860 kfree(codec->wcaps);
Ranjani Sridharanef9bec22019-06-26 00:04:50 -0700861
862 /*
863 * In the case of ASoC HD-audio, hda_codec is device managed.
864 * It will be freed when the ASoC device is removed.
865 */
866 if (codec->core.type == HDA_DEV_LEGACY)
867 kfree(codec);
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100868}
869
Rakesh Ughreja24494d32018-06-01 22:53:56 -0500870#define DEV_NAME_LEN 31
871
872static int snd_hda_codec_device_init(struct hda_bus *bus, struct snd_card *card,
873 unsigned int codec_addr, struct hda_codec **codecp)
874{
875 char name[DEV_NAME_LEN];
876 struct hda_codec *codec;
877 int err;
878
879 dev_dbg(card->dev, "%s: entry\n", __func__);
880
881 if (snd_BUG_ON(!bus))
882 return -EINVAL;
883 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
884 return -EINVAL;
885
886 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
887 if (!codec)
888 return -ENOMEM;
889
890 sprintf(name, "hdaudioC%dD%d", card->number, codec_addr);
891 err = snd_hdac_device_init(&codec->core, &bus->core, name, codec_addr);
892 if (err < 0) {
893 kfree(codec);
894 return err;
895 }
896
897 codec->core.type = HDA_DEV_LEGACY;
898 *codecp = codec;
899
900 return err;
901}
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903/**
904 * snd_hda_codec_new - create a HDA codec
905 * @bus: the bus to assign
Pierre-Louis Bossart4f5c2652020-01-13 15:14:04 -0600906 * @card: card for this codec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 * @codec_addr: the codec address
908 * @codecp: the pointer to store the generated codec
909 *
910 * Returns 0 if successful, or a negative error code.
911 */
Takashi Iwai6efdd852015-02-27 16:09:22 +0100912int snd_hda_codec_new(struct hda_bus *bus, struct snd_card *card,
913 unsigned int codec_addr, struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Rakesh Ughreja24494d32018-06-01 22:53:56 -0500915 int ret;
916
917 ret = snd_hda_codec_device_init(bus, card, codec_addr, codecp);
918 if (ret < 0)
919 return ret;
920
921 return snd_hda_codec_device_new(bus, card, codec_addr, *codecp);
922}
923EXPORT_SYMBOL_GPL(snd_hda_codec_new);
924
925int snd_hda_codec_device_new(struct hda_bus *bus, struct snd_card *card,
926 unsigned int codec_addr, struct hda_codec *codec)
927{
Jaroslav Kyselaba443682008-08-13 20:55:32 +0200928 char component[31];
Takashi Iwaid8193872012-08-31 07:54:38 -0700929 hda_nid_t fg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 int err;
Takashi Iwai41f394a2020-01-03 09:16:24 +0100931 static const struct snd_device_ops dev_ops = {
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100932 .dev_register = snd_hda_codec_dev_register,
Takashi Iwai2565c892014-02-19 11:41:09 +0100933 .dev_free = snd_hda_codec_dev_free,
934 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Rakesh Ughreja24494d32018-06-01 22:53:56 -0500936 dev_dbg(card->dev, "%s: entry\n", __func__);
937
Takashi Iwaida3cec32008-08-08 17:12:14 +0200938 if (snd_BUG_ON(!bus))
939 return -EINVAL;
940 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
941 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Takashi Iwai7639a062015-03-03 10:07:24 +0100943 codec->core.dev.release = snd_hda_codec_dev_release;
Takashi Iwai058524482015-03-03 15:40:08 +0100944 codec->core.exec_verb = codec_exec_verb;
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 codec->bus = bus;
Takashi Iwai6efdd852015-02-27 16:09:22 +0100947 codec->card = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +0100949 mutex_init(&codec->spdif_mutex);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +0800950 mutex_init(&codec->control_mutex);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100951 snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32);
952 snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32);
Takashi Iwai3be14142009-02-20 14:11:16 +0100953 snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai346ff702009-02-23 09:42:57 +0100954 snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwaieb541332010-08-06 13:48:11 +0200955 snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8);
Stephen Warren7c935972011-06-01 11:14:17 -0600956 snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16);
Takashi Iwai361dab32012-05-09 14:35:27 +0200957 snd_array_init(&codec->jacktbl, sizeof(struct hda_jack_tbl), 16);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +0100958 snd_array_init(&codec->verbs, sizeof(struct hda_verb *), 8);
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100959 INIT_LIST_HEAD(&codec->conn_list);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100960 INIT_LIST_HEAD(&codec->pcm_list_head);
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100961
David Henningsson26a6cb62012-10-09 15:04:21 +0200962 INIT_DELAYED_WORK(&codec->jackpoll_work, hda_jackpoll_work);
Mengdong Lin7f132922013-11-29 01:48:45 -0500963 codec->depop_delay = -1;
David Henningssonf5662e12014-07-22 14:09:34 +0200964 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Takashi Iwai83012a72012-08-24 18:38:08 +0200966#ifdef CONFIG_PM
Takashi Iwaicc72da72015-02-19 16:00:22 +0100967 codec->power_jiffies = jiffies;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200968#endif
969
Takashi Iwai648a8d22014-02-25 10:38:13 +0100970 snd_hda_sysfs_init(codec);
971
Takashi Iwaic382a9f2012-05-07 15:01:02 +0200972 if (codec->bus->modelname) {
973 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
974 if (!codec->modelname) {
Heloise NH6986a0e2015-07-17 09:42:06 +0800975 err = -ENOMEM;
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100976 goto error;
Takashi Iwaic382a9f2012-05-07 15:01:02 +0200977 }
978 }
979
Takashi Iwai7639a062015-03-03 10:07:24 +0100980 fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Takashi Iwaid8193872012-08-31 07:54:38 -0700981 err = read_widget_caps(codec, fg);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +0100982 if (err < 0)
Takashi Iwai3be14142009-02-20 14:11:16 +0100983 goto error;
Takashi Iwai3be14142009-02-20 14:11:16 +0100984 err = read_pin_defaults(codec);
985 if (err < 0)
986 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +0100987
Takashi Iwaibb6ac722009-03-13 09:02:42 +0100988 /* power-up all before initialization */
Takashi Iwaid8193872012-08-31 07:54:38 -0700989 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwai183ab392019-04-13 10:04:49 +0200990 codec->core.dev.power.power_state = PMSG_ON;
Takashi Iwaibb6ac722009-03-13 09:02:42 +0100991
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200992 snd_hda_codec_proc_new(codec);
993
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200994 snd_hda_create_hwdep(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200995
Takashi Iwai7639a062015-03-03 10:07:24 +0100996 sprintf(component, "HDA:%08x,%08x,%08x", codec->core.vendor_id,
997 codec->core.subsystem_id, codec->core.revision_id);
Takashi Iwai6efdd852015-02-27 16:09:22 +0100998 snd_component_add(card, component);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200999
Takashi Iwai6efdd852015-02-27 16:09:22 +01001000 err = snd_device_new(card, SNDRV_DEV_CODEC, codec, &dev_ops);
Takashi Iwai2565c892014-02-19 11:41:09 +01001001 if (err < 0)
1002 goto error;
1003
Harsha Priyaa0645da2020-09-30 14:41:39 +03001004 /* PM runtime needs to be enabled later after binding codec */
1005 pm_runtime_forbid(&codec->core.dev);
1006
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001007 return 0;
Takashi Iwai3be14142009-02-20 14:11:16 +01001008
1009 error:
Takashi Iwaid56db742015-02-27 23:25:35 +01001010 put_device(hda_codec_dev(codec));
Takashi Iwai3be14142009-02-20 14:11:16 +01001011 return err;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001012}
Rakesh Ughreja24494d32018-06-01 22:53:56 -05001013EXPORT_SYMBOL_GPL(snd_hda_codec_device_new);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001014
Takashi Iwai95a962c2014-10-29 16:03:58 +01001015/**
1016 * snd_hda_codec_update_widgets - Refresh widget caps and pin defaults
1017 * @codec: the HDA codec
1018 *
1019 * Forcibly refresh the all widget caps and the init pin configurations of
1020 * the given codec.
1021 */
Mengdong Lina15d05d2013-02-08 17:09:31 -05001022int snd_hda_codec_update_widgets(struct hda_codec *codec)
1023{
1024 hda_nid_t fg;
1025 int err;
1026
Takashi Iwai774a0752019-07-03 14:35:12 +02001027 err = snd_hdac_refresh_widgets(&codec->core);
Takashi Iwai7639a062015-03-03 10:07:24 +01001028 if (err < 0)
1029 return err;
1030
Mengdong Lina15d05d2013-02-08 17:09:31 -05001031 /* Assume the function group node does not change,
1032 * only the widget nodes may change.
1033 */
1034 kfree(codec->wcaps);
Takashi Iwai7639a062015-03-03 10:07:24 +01001035 fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Mengdong Lina15d05d2013-02-08 17:09:31 -05001036 err = read_widget_caps(codec, fg);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +01001037 if (err < 0)
Mengdong Lina15d05d2013-02-08 17:09:31 -05001038 return err;
Mengdong Lina15d05d2013-02-08 17:09:31 -05001039
1040 snd_array_free(&codec->init_pins);
1041 err = read_pin_defaults(codec);
1042
1043 return err;
1044}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001045EXPORT_SYMBOL_GPL(snd_hda_codec_update_widgets);
Mengdong Lina15d05d2013-02-08 17:09:31 -05001046
Takashi Iwaied360812012-08-08 17:12:52 +02001047/* update the stream-id if changed */
1048static void update_pcm_stream_id(struct hda_codec *codec,
1049 struct hda_cvt_setup *p, hda_nid_t nid,
1050 u32 stream_tag, int channel_id)
1051{
1052 unsigned int oldval, newval;
1053
1054 if (p->stream_tag != stream_tag || p->channel_id != channel_id) {
1055 oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0);
1056 newval = (stream_tag << 4) | channel_id;
1057 if (oldval != newval)
1058 snd_hda_codec_write(codec, nid, 0,
1059 AC_VERB_SET_CHANNEL_STREAMID,
1060 newval);
1061 p->stream_tag = stream_tag;
1062 p->channel_id = channel_id;
1063 }
1064}
1065
1066/* update the format-id if changed */
1067static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p,
1068 hda_nid_t nid, int format)
1069{
1070 unsigned int oldval;
1071
1072 if (p->format_id != format) {
1073 oldval = snd_hda_codec_read(codec, nid, 0,
1074 AC_VERB_GET_STREAM_FORMAT, 0);
1075 if (oldval != format) {
1076 msleep(1);
1077 snd_hda_codec_write(codec, nid, 0,
1078 AC_VERB_SET_STREAM_FORMAT,
1079 format);
1080 }
1081 p->format_id = format;
1082 }
1083}
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085/**
1086 * snd_hda_codec_setup_stream - set up the codec for streaming
1087 * @codec: the CODEC to set up
1088 * @nid: the NID to set up
1089 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1090 * @channel_id: channel id to pass, zero based.
1091 * @format: stream format.
1092 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001093void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1094 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 int channel_id, int format)
1096{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001097 struct hda_codec *c;
Takashi Iwaieb541332010-08-06 13:48:11 +02001098 struct hda_cvt_setup *p;
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001099 int type;
Takashi Iwaieb541332010-08-06 13:48:11 +02001100 int i;
1101
Takashi Iwai0ba21762007-04-16 11:29:14 +02001102 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +02001103 return;
1104
Takashi Iwai4e76a882014-02-25 12:21:03 +01001105 codec_dbg(codec,
1106 "hda_codec_setup_stream: NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
1107 nid, stream_tag, channel_id, format);
Takashi Iwaieb541332010-08-06 13:48:11 +02001108 p = get_hda_cvt_setup(codec, nid);
Takashi Iwai6c35ae32013-05-10 13:39:50 +02001109 if (!p)
Takashi Iwaieb541332010-08-06 13:48:11 +02001110 return;
Takashi Iwaied360812012-08-08 17:12:52 +02001111
Takashi Iwaie6feb5d2015-03-16 21:32:11 +01001112 if (codec->patch_ops.stream_pm)
1113 codec->patch_ops.stream_pm(codec, nid, true);
Takashi Iwaied360812012-08-08 17:12:52 +02001114 if (codec->pcm_format_first)
1115 update_pcm_format(codec, p, nid, format);
1116 update_pcm_stream_id(codec, p, nid, stream_tag, channel_id);
1117 if (!codec->pcm_format_first)
1118 update_pcm_format(codec, p, nid, format);
1119
Takashi Iwaieb541332010-08-06 13:48:11 +02001120 p->active = 1;
1121 p->dirty = 0;
1122
1123 /* make other inactive cvts with the same stream-tag dirty */
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001124 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001125 list_for_each_codec(c, codec->bus) {
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02001126 snd_array_for_each(&c->cvt_setups, i, p) {
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001127 if (!p->active && p->stream_tag == stream_tag &&
David Henningsson54c2a892012-02-01 12:05:41 +01001128 get_wcaps_type(get_wcaps(c, p->nid)) == type)
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001129 p->dirty = 1;
1130 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001133EXPORT_SYMBOL_GPL(snd_hda_codec_setup_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Takashi Iwaif0cea792010-08-13 11:56:53 +02001135static void really_cleanup_stream(struct hda_codec *codec,
1136 struct hda_cvt_setup *q);
1137
Takashi Iwaid5191e52009-11-16 14:58:17 +01001138/**
Takashi Iwaif0cea792010-08-13 11:56:53 +02001139 * __snd_hda_codec_cleanup_stream - clean up the codec for closing
Takashi Iwaid5191e52009-11-16 14:58:17 +01001140 * @codec: the CODEC to clean up
1141 * @nid: the NID to clean up
Takashi Iwaif0cea792010-08-13 11:56:53 +02001142 * @do_now: really clean up the stream instead of clearing the active flag
Takashi Iwaid5191e52009-11-16 14:58:17 +01001143 */
Takashi Iwaif0cea792010-08-13 11:56:53 +02001144void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid,
1145 int do_now)
Takashi Iwai888afa12008-03-18 09:57:50 +01001146{
Takashi Iwaieb541332010-08-06 13:48:11 +02001147 struct hda_cvt_setup *p;
1148
Takashi Iwai888afa12008-03-18 09:57:50 +01001149 if (!nid)
1150 return;
1151
Takashi Iwai0e7adbe2010-10-25 10:37:11 +02001152 if (codec->no_sticky_stream)
1153 do_now = 1;
1154
Takashi Iwai4e76a882014-02-25 12:21:03 +01001155 codec_dbg(codec, "hda_codec_cleanup_stream: NID=0x%x\n", nid);
Takashi Iwaieb541332010-08-06 13:48:11 +02001156 p = get_hda_cvt_setup(codec, nid);
Takashi Iwai6c35ae32013-05-10 13:39:50 +02001157 if (p) {
Takashi Iwaif0cea792010-08-13 11:56:53 +02001158 /* here we just clear the active flag when do_now isn't set;
1159 * actual clean-ups will be done later in
1160 * purify_inactive_streams() called from snd_hda_codec_prpapre()
1161 */
1162 if (do_now)
1163 really_cleanup_stream(codec, p);
1164 else
1165 p->active = 0;
1166 }
Takashi Iwai888afa12008-03-18 09:57:50 +01001167}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001168EXPORT_SYMBOL_GPL(__snd_hda_codec_cleanup_stream);
Takashi Iwai888afa12008-03-18 09:57:50 +01001169
Takashi Iwaieb541332010-08-06 13:48:11 +02001170static void really_cleanup_stream(struct hda_codec *codec,
1171 struct hda_cvt_setup *q)
1172{
1173 hda_nid_t nid = q->nid;
Takashi Iwai218264a2011-09-27 17:33:45 +02001174 if (q->stream_tag || q->channel_id)
1175 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1176 if (q->format_id)
1177 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0
1178);
Takashi Iwaieb541332010-08-06 13:48:11 +02001179 memset(q, 0, sizeof(*q));
1180 q->nid = nid;
Takashi Iwaie6feb5d2015-03-16 21:32:11 +01001181 if (codec->patch_ops.stream_pm)
1182 codec->patch_ops.stream_pm(codec, nid, false);
Takashi Iwaieb541332010-08-06 13:48:11 +02001183}
1184
1185/* clean up the all conflicting obsolete streams */
1186static void purify_inactive_streams(struct hda_codec *codec)
1187{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001188 struct hda_codec *c;
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02001189 struct hda_cvt_setup *p;
Takashi Iwaieb541332010-08-06 13:48:11 +02001190 int i;
1191
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001192 list_for_each_codec(c, codec->bus) {
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02001193 snd_array_for_each(&c->cvt_setups, i, p) {
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001194 if (p->dirty)
1195 really_cleanup_stream(c, p);
1196 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001197 }
1198}
1199
Takashi Iwai2a439522011-07-26 09:52:50 +02001200#ifdef CONFIG_PM
Takashi Iwaieb541332010-08-06 13:48:11 +02001201/* clean up all streams; called from suspend */
1202static void hda_cleanup_all_streams(struct hda_codec *codec)
1203{
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02001204 struct hda_cvt_setup *p;
Takashi Iwaieb541332010-08-06 13:48:11 +02001205 int i;
1206
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02001207 snd_array_for_each(&codec->cvt_setups, i, p) {
Takashi Iwaieb541332010-08-06 13:48:11 +02001208 if (p->stream_tag)
1209 really_cleanup_stream(codec, p);
1210 }
1211}
Mike Waychison1c7276c2011-04-20 12:04:36 -07001212#endif
Takashi Iwaieb541332010-08-06 13:48:11 +02001213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214/*
1215 * amp access functions
1216 */
1217
Takashi Iwaid5191e52009-11-16 14:58:17 +01001218/**
1219 * query_amp_caps - query AMP capabilities
1220 * @codec: the HD-auio codec
1221 * @nid: the NID to query
1222 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1223 *
1224 * Query AMP capabilities for the given widget and direction.
1225 * Returns the obtained capability bits.
1226 *
1227 * When cap bits have been already read, this doesn't read again but
1228 * returns the cached value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 */
Matthew Ranostay09a99952008-01-24 11:49:21 +01001230u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Takashi Iwaifaa75f82015-02-26 08:54:56 +01001232 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
1233 nid = codec->core.afg;
1234 return snd_hda_param_read(codec, nid,
1235 direction == HDA_OUTPUT ?
1236 AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001238EXPORT_SYMBOL_GPL(query_amp_caps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Takashi Iwaid5191e52009-11-16 14:58:17 +01001240/**
David Henningsson861a04e2014-09-23 10:38:17 +02001241 * snd_hda_check_amp_caps - query AMP capabilities
1242 * @codec: the HD-audio codec
1243 * @nid: the NID to query
1244 * @dir: either #HDA_INPUT or #HDA_OUTPUT
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001245 * @bits: bit mask to check the result
David Henningsson861a04e2014-09-23 10:38:17 +02001246 *
1247 * Check whether the widget has the given amp capability for the direction.
1248 */
1249bool snd_hda_check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
1250 int dir, unsigned int bits)
1251{
1252 if (!nid)
1253 return false;
1254 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
1255 if (query_amp_caps(codec, nid, dir) & bits)
1256 return true;
1257 return false;
1258}
1259EXPORT_SYMBOL_GPL(snd_hda_check_amp_caps);
1260
1261/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001262 * snd_hda_override_amp_caps - Override the AMP capabilities
1263 * @codec: the CODEC to clean up
1264 * @nid: the NID to clean up
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001265 * @dir: either #HDA_INPUT or #HDA_OUTPUT
Takashi Iwaid5191e52009-11-16 14:58:17 +01001266 * @caps: the capability bits to set
1267 *
1268 * Override the cached AMP caps bits value by the given one.
1269 * This function is useful if the driver needs to adjust the AMP ranges,
1270 * e.g. limit to 0dB, etc.
1271 *
1272 * Returns zero if successful or a negative error code.
1273 */
Takashi Iwai897cc182007-05-29 19:01:37 +02001274int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1275 unsigned int caps)
1276{
Takashi Iwaifaa75f82015-02-26 08:54:56 +01001277 unsigned int parm;
1278
1279 snd_hda_override_wcaps(codec, nid,
1280 get_wcaps(codec, nid) | AC_WCAP_AMP_OVRD);
1281 parm = dir == HDA_OUTPUT ? AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP;
1282 return snd_hdac_override_parm(&codec->core, nid, parm, caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001283}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001284EXPORT_SYMBOL_GPL(snd_hda_override_amp_caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001285
Takashi Iwai1a462be2020-01-09 10:01:04 +01001286static unsigned int encode_amp(struct hda_codec *codec, hda_nid_t nid,
1287 int ch, int dir, int idx)
1288{
1289 unsigned int cmd = snd_hdac_regmap_encode_amp(nid, ch, dir, idx);
1290
1291 /* enable fake mute if no h/w mute but min=mute */
1292 if ((query_amp_caps(codec, nid, dir) &
1293 (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE)) == AC_AMPCAP_MIN_MUTE)
1294 cmd |= AC_AMP_FAKE_MUTE;
1295 return cmd;
1296}
1297
Takashi Iwaid5191e52009-11-16 14:58:17 +01001298/**
Takashi Iwaia686ec42015-06-11 10:51:28 +02001299 * snd_hda_codec_amp_update - update the AMP mono value
1300 * @codec: HD-audio codec
1301 * @nid: NID to read the AMP value
1302 * @ch: channel to update (0 or 1)
1303 * @dir: #HDA_INPUT or #HDA_OUTPUT
1304 * @idx: the index value (only for input direction)
1305 * @mask: bit mask to set
1306 * @val: the bits value to set
1307 *
1308 * Update the AMP values for the given channel, direction and index.
1309 */
1310int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid,
1311 int ch, int dir, int idx, int mask, int val)
1312{
Takashi Iwai1a462be2020-01-09 10:01:04 +01001313 unsigned int cmd = encode_amp(codec, nid, ch, dir, idx);
Takashi Iwaia686ec42015-06-11 10:51:28 +02001314
Takashi Iwaia686ec42015-06-11 10:51:28 +02001315 return snd_hdac_regmap_update_raw(&codec->core, cmd, mask, val);
1316}
1317EXPORT_SYMBOL_GPL(snd_hda_codec_amp_update);
1318
1319/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001320 * snd_hda_codec_amp_stereo - update the AMP stereo values
1321 * @codec: HD-audio codec
1322 * @nid: NID to read the AMP value
1323 * @direction: #HDA_INPUT or #HDA_OUTPUT
1324 * @idx: the index value (only for input direction)
1325 * @mask: bit mask to set
1326 * @val: the bits value to set
1327 *
1328 * Update the AMP values like snd_hda_codec_amp_update(), but for a
1329 * stereo widget with the same mask and value.
Takashi Iwai47fd8302007-08-10 17:11:07 +02001330 */
1331int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1332 int direction, int idx, int mask, int val)
1333{
1334 int ch, ret = 0;
Takashi Iwai467126462010-03-29 09:19:38 +02001335
1336 if (snd_BUG_ON(mask & ~0xff))
1337 mask &= 0xff;
Takashi Iwai47fd8302007-08-10 17:11:07 +02001338 for (ch = 0; ch < 2; ch++)
1339 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1340 idx, mask, val);
1341 return ret;
1342}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001343EXPORT_SYMBOL_GPL(snd_hda_codec_amp_stereo);
Takashi Iwai47fd8302007-08-10 17:11:07 +02001344
Takashi Iwai95a962c2014-10-29 16:03:58 +01001345/**
1346 * snd_hda_codec_amp_init - initialize the AMP value
1347 * @codec: the HDA codec
1348 * @nid: NID to read the AMP value
1349 * @ch: channel (left=0 or right=1)
1350 * @dir: #HDA_INPUT or #HDA_OUTPUT
1351 * @idx: the index value (only for input direction)
1352 * @mask: bit mask to set
1353 * @val: the bits value to set
1354 *
1355 * Works like snd_hda_codec_amp_update() but it writes the value only at
Takashi Iwai280e57d2012-12-14 10:32:21 +01001356 * the first access. If the amp was already initialized / updated beforehand,
1357 * this does nothing.
1358 */
1359int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch,
1360 int dir, int idx, int mask, int val)
1361{
Takashi Iwai1a462be2020-01-09 10:01:04 +01001362 unsigned int cmd = encode_amp(codec, nid, ch, dir, idx);
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01001363
1364 if (!codec->core.regmap)
1365 return -EINVAL;
Takashi Iwai1a462be2020-01-09 10:01:04 +01001366 return snd_hdac_regmap_update_raw_once(&codec->core, cmd, mask, val);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001367}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001368EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001369
Takashi Iwai95a962c2014-10-29 16:03:58 +01001370/**
1371 * snd_hda_codec_amp_init_stereo - initialize the stereo AMP value
1372 * @codec: the HDA codec
1373 * @nid: NID to read the AMP value
1374 * @dir: #HDA_INPUT or #HDA_OUTPUT
1375 * @idx: the index value (only for input direction)
1376 * @mask: bit mask to set
1377 * @val: the bits value to set
1378 *
1379 * Call snd_hda_codec_amp_init() for both stereo channels.
1380 */
Takashi Iwai280e57d2012-12-14 10:32:21 +01001381int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid,
1382 int dir, int idx, int mask, int val)
1383{
1384 int ch, ret = 0;
1385
1386 if (snd_BUG_ON(mask & ~0xff))
1387 mask &= 0xff;
1388 for (ch = 0; ch < 2; ch++)
1389 ret |= snd_hda_codec_amp_init(codec, nid, ch, dir,
1390 idx, mask, val);
1391 return ret;
1392}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001393EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init_stereo);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001394
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001395static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir,
1396 unsigned int ofs)
1397{
1398 u32 caps = query_amp_caps(codec, nid, dir);
1399 /* get num steps */
1400 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1401 if (ofs < caps)
1402 caps -= ofs;
1403 return caps;
1404}
1405
Takashi Iwaid5191e52009-11-16 14:58:17 +01001406/**
1407 * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001408 * @kcontrol: referred ctl element
1409 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001410 *
1411 * The control element is supposed to have the private_value field
1412 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1413 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001414int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
1415 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
1417 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1418 u16 nid = get_amp_nid(kcontrol);
1419 u8 chs = get_amp_channels(kcontrol);
1420 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001421 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001423 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1424 uinfo->count = chs == 3 ? 2 : 1;
1425 uinfo->value.integer.min = 0;
1426 uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs);
1427 if (!uinfo->value.integer.max) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001428 codec_warn(codec,
1429 "num_steps = 0 for NID=0x%x (ctl = %s)\n",
1430 nid, kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 return -EINVAL;
1432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 return 0;
1434}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001435EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001437
1438static inline unsigned int
1439read_amp_value(struct hda_codec *codec, hda_nid_t nid,
1440 int ch, int dir, int idx, unsigned int ofs)
1441{
1442 unsigned int val;
1443 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1444 val &= HDA_AMP_VOLMASK;
1445 if (val >= ofs)
1446 val -= ofs;
1447 else
1448 val = 0;
1449 return val;
1450}
1451
1452static inline int
1453update_amp_value(struct hda_codec *codec, hda_nid_t nid,
1454 int ch, int dir, int idx, unsigned int ofs,
1455 unsigned int val)
1456{
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001457 unsigned int maxval;
1458
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001459 if (val > 0)
1460 val += ofs;
Takashi Iwai7ccc3ef2010-07-26 17:00:15 +02001461 /* ofs = 0: raw max value */
1462 maxval = get_amp_max_value(codec, nid, dir, 0);
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001463 if (val > maxval)
1464 val = maxval;
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01001465 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx,
1466 HDA_AMP_VOLMASK, val);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001467}
1468
Takashi Iwaid5191e52009-11-16 14:58:17 +01001469/**
1470 * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001471 * @kcontrol: ctl element
1472 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001473 *
1474 * The control element is supposed to have the private_value field
1475 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1476 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001477int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1478 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
1480 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1481 hda_nid_t nid = get_amp_nid(kcontrol);
1482 int chs = get_amp_channels(kcontrol);
1483 int dir = get_amp_direction(kcontrol);
1484 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001485 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 long *valp = ucontrol->value.integer.value;
1487
1488 if (chs & 1)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001489 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001491 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 return 0;
1493}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001494EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Takashi Iwaid5191e52009-11-16 14:58:17 +01001496/**
1497 * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001498 * @kcontrol: ctl element
1499 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001500 *
1501 * The control element is supposed to have the private_value field
1502 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1503 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001504int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1505 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
1507 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1508 hda_nid_t nid = get_amp_nid(kcontrol);
1509 int chs = get_amp_channels(kcontrol);
1510 int dir = get_amp_direction(kcontrol);
1511 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001512 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 long *valp = ucontrol->value.integer.value;
1514 int change = 0;
1515
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001516 if (chs & 1) {
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001517 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001518 valp++;
1519 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001520 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001521 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 return change;
1523}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001524EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Takashi Iwai99b5c5b2017-05-10 12:29:37 +02001526/* inquiry the amp caps and convert to TLV */
1527static void get_ctl_amp_tlv(struct snd_kcontrol *kcontrol, unsigned int *tlv)
1528{
1529 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1530 hda_nid_t nid = get_amp_nid(kcontrol);
1531 int dir = get_amp_direction(kcontrol);
1532 unsigned int ofs = get_amp_offset(kcontrol);
1533 bool min_mute = get_amp_min_mute(kcontrol);
1534 u32 caps, val1, val2;
1535
1536 caps = query_amp_caps(codec, nid, dir);
1537 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1538 val2 = (val2 + 1) * 25;
1539 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
1540 val1 += ofs;
1541 val1 = ((int)val1) * ((int)val2);
1542 if (min_mute || (caps & AC_AMPCAP_MIN_MUTE))
1543 val2 |= TLV_DB_SCALE_MUTE;
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001544 tlv[SNDRV_CTL_TLVO_TYPE] = SNDRV_CTL_TLVT_DB_SCALE;
1545 tlv[SNDRV_CTL_TLVO_LEN] = 2 * sizeof(unsigned int);
1546 tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] = val1;
1547 tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP] = val2;
Takashi Iwai99b5c5b2017-05-10 12:29:37 +02001548}
1549
Takashi Iwaid5191e52009-11-16 14:58:17 +01001550/**
Takashi Iwaif0049e12017-05-10 12:34:09 +02001551 * snd_hda_mixer_amp_tlv - TLV callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001552 * @kcontrol: ctl element
1553 * @op_flag: operation flag
1554 * @size: byte size of input TLV
1555 * @_tlv: TLV data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001556 *
1557 * The control element is supposed to have the private_value field
1558 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1559 */
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001560int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1561 unsigned int size, unsigned int __user *_tlv)
1562{
Takashi Iwai99b5c5b2017-05-10 12:29:37 +02001563 unsigned int tlv[4];
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001564
1565 if (size < 4 * sizeof(unsigned int))
1566 return -ENOMEM;
Takashi Iwai99b5c5b2017-05-10 12:29:37 +02001567 get_ctl_amp_tlv(kcontrol, tlv);
1568 if (copy_to_user(_tlv, tlv, sizeof(tlv)))
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001569 return -EFAULT;
1570 return 0;
1571}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001572EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001573
Takashi Iwaid5191e52009-11-16 14:58:17 +01001574/**
1575 * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control
1576 * @codec: HD-audio codec
1577 * @nid: NID of a reference widget
1578 * @dir: #HDA_INPUT or #HDA_OUTPUT
1579 * @tlv: TLV data to be stored, at least 4 elements
1580 *
1581 * Set (static) TLV data for a virtual master volume using the AMP caps
1582 * obtained from the reference NID.
1583 * The volume range is recalculated as if the max volume is 0dB.
Takashi Iwai2134ea42008-01-10 16:53:55 +01001584 */
1585void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1586 unsigned int *tlv)
1587{
1588 u32 caps;
1589 int nums, step;
1590
1591 caps = query_amp_caps(codec, nid, dir);
1592 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1593 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1594 step = (step + 1) * 25;
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001595 tlv[SNDRV_CTL_TLVO_TYPE] = SNDRV_CTL_TLVT_DB_SCALE;
1596 tlv[SNDRV_CTL_TLVO_LEN] = 2 * sizeof(unsigned int);
1597 tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] = -nums * step;
1598 tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP] = step;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001599}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001600EXPORT_SYMBOL_GPL(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001601
1602/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01001603static struct snd_kcontrol *
Takashi Iwaidcda5802012-10-12 17:24:51 +02001604find_mixer_ctl(struct hda_codec *codec, const char *name, int dev, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001605{
1606 struct snd_ctl_elem_id id;
1607 memset(&id, 0, sizeof(id));
1608 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwaidcda5802012-10-12 17:24:51 +02001609 id.device = dev;
Takashi Iwai09f99702008-02-04 12:31:13 +01001610 id.index = idx;
Takashi Iwai18cb7102009-04-16 10:22:24 +02001611 if (snd_BUG_ON(strlen(name) >= sizeof(id.name)))
1612 return NULL;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001613 strcpy(id.name, name);
Takashi Iwai6efdd852015-02-27 16:09:22 +01001614 return snd_ctl_find_id(codec->card, &id);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001615}
1616
Takashi Iwaid5191e52009-11-16 14:58:17 +01001617/**
1618 * snd_hda_find_mixer_ctl - Find a mixer control element with the given name
1619 * @codec: HD-audio codec
1620 * @name: ctl id name string
1621 *
1622 * Get the control element with the given id string and IFACE_MIXER.
1623 */
Takashi Iwai09f99702008-02-04 12:31:13 +01001624struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1625 const char *name)
1626{
Takashi Iwaidcda5802012-10-12 17:24:51 +02001627 return find_mixer_ctl(codec, name, 0, 0);
Takashi Iwai09f99702008-02-04 12:31:13 +01001628}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001629EXPORT_SYMBOL_GPL(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01001630
Takashi Iwaidcda5802012-10-12 17:24:51 +02001631static int find_empty_mixer_ctl_idx(struct hda_codec *codec, const char *name,
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01001632 int start_idx)
Takashi Iwai1afe2062010-12-23 10:17:52 +01001633{
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01001634 int i, idx;
1635 /* 16 ctlrs should be large enough */
1636 for (i = 0, idx = start_idx; i < 16; i++, idx++) {
1637 if (!find_mixer_ctl(codec, name, 0, idx))
Takashi Iwai1afe2062010-12-23 10:17:52 +01001638 return idx;
1639 }
1640 return -EBUSY;
1641}
1642
Takashi Iwaid5191e52009-11-16 14:58:17 +01001643/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001644 * snd_hda_ctl_add - Add a control element and assign to the codec
Takashi Iwaid5191e52009-11-16 14:58:17 +01001645 * @codec: HD-audio codec
1646 * @nid: corresponding NID (optional)
1647 * @kctl: the control element to assign
1648 *
1649 * Add the given control element to an array inside the codec instance.
1650 * All control elements belonging to a codec are supposed to be added
1651 * by this function so that a proper clean-up works at the free or
1652 * reconfiguration time.
1653 *
1654 * If non-zero @nid is passed, the NID is assigned to the control element.
1655 * The assignment is shown in the codec proc file.
1656 *
1657 * snd_hda_ctl_add() checks the control subdev id field whether
1658 * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001659 * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit
1660 * specifies if kctl->private_value is a HDA amplifier value.
Takashi Iwaid5191e52009-11-16 14:58:17 +01001661 */
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001662int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
1663 struct snd_kcontrol *kctl)
Takashi Iwaid13bd412008-07-30 15:01:45 +02001664{
1665 int err;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001666 unsigned short flags = 0;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001667 struct hda_nid_item *item;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001668
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001669 if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) {
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001670 flags |= HDA_NID_ITEM_AMP;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001671 if (nid == 0)
1672 nid = get_amp_nid_(kctl->private_value);
1673 }
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001674 if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0)
1675 nid = kctl->id.subdevice & 0xffff;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001676 if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG))
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01001677 kctl->id.subdevice = 0;
Takashi Iwai6efdd852015-02-27 16:09:22 +01001678 err = snd_ctl_add(codec->card, kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001679 if (err < 0)
1680 return err;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001681 item = snd_array_new(&codec->mixers);
1682 if (!item)
Takashi Iwaid13bd412008-07-30 15:01:45 +02001683 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001684 item->kctl = kctl;
1685 item->nid = nid;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001686 item->flags = flags;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001687 return 0;
1688}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001689EXPORT_SYMBOL_GPL(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001690
Takashi Iwaid5191e52009-11-16 14:58:17 +01001691/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001692 * snd_hda_add_nid - Assign a NID to a control element
1693 * @codec: HD-audio codec
1694 * @nid: corresponding NID (optional)
1695 * @kctl: the control element to assign
1696 * @index: index to kctl
1697 *
1698 * Add the given control element to an array inside the codec instance.
1699 * This function is used when #snd_hda_ctl_add cannot be used for 1:1
1700 * NID:KCTL mapping - for example "Capture Source" selector.
1701 */
1702int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
1703 unsigned int index, hda_nid_t nid)
1704{
1705 struct hda_nid_item *item;
1706
1707 if (nid > 0) {
1708 item = snd_array_new(&codec->nids);
1709 if (!item)
1710 return -ENOMEM;
1711 item->kctl = kctl;
1712 item->index = index;
1713 item->nid = nid;
1714 return 0;
1715 }
Takashi Iwai4e76a882014-02-25 12:21:03 +01001716 codec_err(codec, "no NID for mapping control %s:%d:%d\n",
1717 kctl->id.name, kctl->id.index, index);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001718 return -EINVAL;
1719}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001720EXPORT_SYMBOL_GPL(snd_hda_add_nid);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001721
1722/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001723 * snd_hda_ctls_clear - Clear all controls assigned to the given codec
1724 * @codec: HD-audio codec
1725 */
Takashi Iwaid13bd412008-07-30 15:01:45 +02001726void snd_hda_ctls_clear(struct hda_codec *codec)
1727{
1728 int i;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001729 struct hda_nid_item *items = codec->mixers.list;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001730 for (i = 0; i < codec->mixers.used; i++)
Takashi Iwai6efdd852015-02-27 16:09:22 +01001731 snd_ctl_remove(codec->card, items[i].kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001732 snd_array_free(&codec->mixers);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001733 snd_array_free(&codec->nids);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001734}
1735
Takashi Iwai95a962c2014-10-29 16:03:58 +01001736/**
1737 * snd_hda_lock_devices - pseudo device locking
1738 * @bus: the BUS
1739 *
Takashi Iwaia65d6292009-02-23 16:57:04 +01001740 * toggle card->shutdown to allow/disallow the device access (as a hack)
1741 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001742int snd_hda_lock_devices(struct hda_bus *bus)
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001743{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001744 struct snd_card *card = bus->card;
1745 struct hda_codec *codec;
1746
Takashi Iwaia65d6292009-02-23 16:57:04 +01001747 spin_lock(&card->files_lock);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001748 if (card->shutdown)
1749 goto err_unlock;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001750 card->shutdown = 1;
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001751 if (!list_empty(&card->ctl_files))
1752 goto err_clear;
1753
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001754 list_for_each_codec(codec, bus) {
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01001755 struct hda_pcm *cpcm;
1756 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001757 if (!cpcm->pcm)
1758 continue;
1759 if (cpcm->pcm->streams[0].substream_opened ||
1760 cpcm->pcm->streams[1].substream_opened)
1761 goto err_clear;
1762 }
1763 }
Takashi Iwaia65d6292009-02-23 16:57:04 +01001764 spin_unlock(&card->files_lock);
1765 return 0;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001766
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001767 err_clear:
1768 card->shutdown = 0;
1769 err_unlock:
1770 spin_unlock(&card->files_lock);
1771 return -EINVAL;
1772}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001773EXPORT_SYMBOL_GPL(snd_hda_lock_devices);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001774
Takashi Iwai95a962c2014-10-29 16:03:58 +01001775/**
1776 * snd_hda_unlock_devices - pseudo device unlocking
1777 * @bus: the BUS
1778 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001779void snd_hda_unlock_devices(struct hda_bus *bus)
Takashi Iwaia65d6292009-02-23 16:57:04 +01001780{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001781 struct snd_card *card = bus->card;
1782
Takashi Iwaia65d6292009-02-23 16:57:04 +01001783 spin_lock(&card->files_lock);
1784 card->shutdown = 0;
1785 spin_unlock(&card->files_lock);
1786}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001787EXPORT_SYMBOL_GPL(snd_hda_unlock_devices);
Takashi Iwaia65d6292009-02-23 16:57:04 +01001788
Takashi Iwaid5191e52009-11-16 14:58:17 +01001789/**
1790 * snd_hda_codec_reset - Clear all objects assigned to the codec
1791 * @codec: HD-audio codec
1792 *
1793 * This frees the all PCM and control elements assigned to the codec, and
1794 * clears the caches and restores the pin default configurations.
1795 *
1796 * When a device is being used, it returns -EBSY. If successfully freed,
1797 * returns zero.
1798 */
Takashi Iwaia65d6292009-02-23 16:57:04 +01001799int snd_hda_codec_reset(struct hda_codec *codec)
1800{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001801 struct hda_bus *bus = codec->bus;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001802
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001803 if (snd_hda_lock_devices(bus) < 0)
Takashi Iwaia65d6292009-02-23 16:57:04 +01001804 return -EBUSY;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001805
1806 /* OK, let it free */
Takashi Iwai25063182020-12-09 16:01:19 +01001807 device_release_driver(hda_codec_dev(codec));
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001808
Takashi Iwaia65d6292009-02-23 16:57:04 +01001809 /* allow device access again */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001810 snd_hda_unlock_devices(bus);
Takashi Iwaia65d6292009-02-23 16:57:04 +01001811 return 0;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001812}
1813
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001814typedef int (*map_follower_func_t)(struct hda_codec *, void *, struct snd_kcontrol *);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001815
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001816/* apply the function to all matching follower ctls in the mixer list */
1817static int map_followers(struct hda_codec *codec, const char * const *followers,
1818 const char *suffix, map_follower_func_t func, void *data)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001819{
1820 struct hda_nid_item *items;
1821 const char * const *s;
1822 int i, err;
1823
1824 items = codec->mixers.list;
1825 for (i = 0; i < codec->mixers.used; i++) {
1826 struct snd_kcontrol *sctl = items[i].kctl;
Takashi Iwaica16ec02013-10-28 12:00:35 +01001827 if (!sctl || sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001828 continue;
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001829 for (s = followers; *s; s++) {
Takashi Iwai9322ca52012-02-03 14:28:01 +01001830 char tmpname[sizeof(sctl->id.name)];
1831 const char *name = *s;
1832 if (suffix) {
1833 snprintf(tmpname, sizeof(tmpname), "%s %s",
1834 name, suffix);
1835 name = tmpname;
1836 }
Takashi Iwai9322ca52012-02-03 14:28:01 +01001837 if (!strcmp(sctl->id.name, name)) {
Takashi Iwai6194b992014-06-06 18:12:16 +02001838 err = func(codec, data, sctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001839 if (err)
1840 return err;
1841 break;
1842 }
1843 }
1844 }
1845 return 0;
1846}
1847
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001848static int check_follower_present(struct hda_codec *codec,
1849 void *data, struct snd_kcontrol *sctl)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001850{
1851 return 1;
1852}
1853
Takashi Iwai18478e82012-03-09 17:51:10 +01001854/* call kctl->put with the given value(s) */
1855static int put_kctl_with_value(struct snd_kcontrol *kctl, int val)
1856{
1857 struct snd_ctl_elem_value *ucontrol;
1858 ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL);
1859 if (!ucontrol)
1860 return -ENOMEM;
1861 ucontrol->value.integer.value[0] = val;
1862 ucontrol->value.integer.value[1] = val;
1863 kctl->put(kctl, ucontrol);
1864 kfree(ucontrol);
1865 return 0;
1866}
1867
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001868struct follower_init_arg {
Takashi Iwaia91d6612017-10-16 11:39:28 +02001869 struct hda_codec *codec;
1870 int step;
1871};
1872
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001873/* initialize the follower volume with 0dB via snd_ctl_apply_vmaster_followers() */
1874static int init_follower_0dB(struct snd_kcontrol *follower,
1875 struct snd_kcontrol *kctl,
1876 void *_arg)
Takashi Iwai18478e82012-03-09 17:51:10 +01001877{
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001878 struct follower_init_arg *arg = _arg;
Takashi Iwaia91d6612017-10-16 11:39:28 +02001879 int _tlv[4];
1880 const int *tlv = NULL;
1881 int step;
1882 int val;
1883
1884 if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
1885 if (kctl->tlv.c != snd_hda_mixer_amp_tlv) {
1886 codec_err(arg->codec,
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001887 "Unexpected TLV callback for follower %s:%d\n",
Takashi Iwaia91d6612017-10-16 11:39:28 +02001888 kctl->id.name, kctl->id.index);
1889 return 0; /* ignore */
1890 }
1891 get_ctl_amp_tlv(kctl, _tlv);
1892 tlv = _tlv;
1893 } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ)
1894 tlv = kctl->tlv.p;
1895
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001896 if (!tlv || tlv[SNDRV_CTL_TLVO_TYPE] != SNDRV_CTL_TLVT_DB_SCALE)
Takashi Iwaia91d6612017-10-16 11:39:28 +02001897 return 0;
1898
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001899 step = tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP];
Takashi Iwaia91d6612017-10-16 11:39:28 +02001900 step &= ~TLV_DB_SCALE_MUTE;
1901 if (!step)
1902 return 0;
1903 if (arg->step && arg->step != step) {
1904 codec_err(arg->codec,
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001905 "Mismatching dB step for vmaster follower (%d!=%d)\n",
Takashi Iwaia91d6612017-10-16 11:39:28 +02001906 arg->step, step);
1907 return 0;
1908 }
1909
1910 arg->step = step;
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001911 val = -tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] / step;
Takashi Iwaia91d6612017-10-16 11:39:28 +02001912 if (val > 0) {
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001913 put_kctl_with_value(follower, val);
Takashi Iwaia91d6612017-10-16 11:39:28 +02001914 return val;
1915 }
1916
Takashi Iwai18478e82012-03-09 17:51:10 +01001917 return 0;
1918}
1919
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001920/* unmute the follower via snd_ctl_apply_vmaster_followers() */
1921static int init_follower_unmute(struct snd_kcontrol *follower,
1922 struct snd_kcontrol *kctl,
1923 void *_arg)
Takashi Iwai18478e82012-03-09 17:51:10 +01001924{
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001925 return put_kctl_with_value(follower, 1);
Takashi Iwai18478e82012-03-09 17:51:10 +01001926}
1927
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001928static int add_follower(struct hda_codec *codec,
1929 void *data, struct snd_kcontrol *follower)
Takashi Iwaie8750942014-06-30 14:02:39 +02001930{
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001931 return snd_ctl_add_follower(data, follower);
Takashi Iwaie8750942014-06-30 14:02:39 +02001932}
1933
Takashi Iwaid5191e52009-11-16 14:58:17 +01001934/**
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001935 * __snd_hda_add_vmaster - create a virtual master control and add followers
Takashi Iwaid5191e52009-11-16 14:58:17 +01001936 * @codec: HD-audio codec
1937 * @name: vmaster control name
1938 * @tlv: TLV data (optional)
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001939 * @followers: follower control names (optional)
1940 * @suffix: suffix string to each follower name (optional)
1941 * @init_follower_vol: initialize followers to unmute/0dB
Ranjani Sridharan618fad32021-04-09 14:46:16 -07001942 * @access: kcontrol access rights
Takashi Iwai29e58532012-03-12 12:25:03 +01001943 * @ctl_ret: store the vmaster kcontrol in return
Takashi Iwaid5191e52009-11-16 14:58:17 +01001944 *
1945 * Create a virtual master control with the given name. The TLV data
1946 * must be either NULL or a valid data.
1947 *
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001948 * @followers is a NULL-terminated array of strings, each of which is a
1949 * follower control name. All controls with these names are assigned to
Takashi Iwaid5191e52009-11-16 14:58:17 +01001950 * the new virtual master control.
1951 *
1952 * This function returns zero if successful or a negative error code.
1953 */
Takashi Iwai18478e82012-03-09 17:51:10 +01001954int __snd_hda_add_vmaster(struct hda_codec *codec, char *name,
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001955 unsigned int *tlv, const char * const *followers,
1956 const char *suffix, bool init_follower_vol,
Jaroslav Kyselae65bf992021-03-17 18:29:43 +01001957 unsigned int access, struct snd_kcontrol **ctl_ret)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001958{
1959 struct snd_kcontrol *kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001960 int err;
1961
Takashi Iwai29e58532012-03-12 12:25:03 +01001962 if (ctl_ret)
1963 *ctl_ret = NULL;
1964
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001965 err = map_followers(codec, followers, suffix, check_follower_present, NULL);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001966 if (err != 1) {
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001967 codec_dbg(codec, "No follower found for %s\n", name);
Takashi Iwai2f085542008-02-22 18:43:50 +01001968 return 0;
1969 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001970 kctl = snd_ctl_make_virtual_master(name, tlv);
1971 if (!kctl)
1972 return -ENOMEM;
Jaroslav Kyselae65bf992021-03-17 18:29:43 +01001973 kctl->vd[0].access |= access;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001974 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001975 if (err < 0)
1976 return err;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01001977
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001978 err = map_followers(codec, followers, suffix, add_follower, kctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001979 if (err < 0)
1980 return err;
Takashi Iwai18478e82012-03-09 17:51:10 +01001981
1982 /* init with master mute & zero volume */
1983 put_kctl_with_value(kctl, 0);
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001984 if (init_follower_vol) {
1985 struct follower_init_arg arg = {
Takashi Iwaia91d6612017-10-16 11:39:28 +02001986 .codec = codec,
1987 .step = 0,
1988 };
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001989 snd_ctl_apply_vmaster_followers(kctl,
1990 tlv ? init_follower_0dB : init_follower_unmute,
1991 &arg);
Takashi Iwai485e3e0c2013-11-04 15:51:00 +01001992 }
Takashi Iwai18478e82012-03-09 17:51:10 +01001993
Takashi Iwai29e58532012-03-12 12:25:03 +01001994 if (ctl_ret)
1995 *ctl_ret = kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001996 return 0;
1997}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001998EXPORT_SYMBOL_GPL(__snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001999
Takashi Iwaiee52e562015-04-27 10:36:11 +02002000/* meta hook to call each driver's vmaster hook */
2001static void vmaster_hook(void *private_data, int enabled)
2002{
2003 struct hda_vmaster_mute_hook *hook = private_data;
2004
Takashi Iwaiee52e562015-04-27 10:36:11 +02002005 hook->hook(hook->codec, enabled);
2006}
2007
Takashi Iwai95a962c2014-10-29 16:03:58 +01002008/**
Jaroslav Kyselae65bf992021-03-17 18:29:43 +01002009 * snd_hda_add_vmaster_hook - Add a vmaster hw specific hook
Takashi Iwai95a962c2014-10-29 16:03:58 +01002010 * @codec: the HDA codec
2011 * @hook: the vmaster hook object
Takashi Iwai95a962c2014-10-29 16:03:58 +01002012 *
Jaroslav Kyselae65bf992021-03-17 18:29:43 +01002013 * Add a hw specific hook (like EAPD) with the given vmaster switch kctl.
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002014 */
2015int snd_hda_add_vmaster_hook(struct hda_codec *codec,
Jaroslav Kyselae65bf992021-03-17 18:29:43 +01002016 struct hda_vmaster_mute_hook *hook)
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002017{
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002018 if (!hook->hook || !hook->sw_kctl)
2019 return 0;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002020 hook->codec = codec;
Takashi Iwaiee52e562015-04-27 10:36:11 +02002021 snd_ctl_add_vmaster_hook(hook->sw_kctl, vmaster_hook, hook);
Jaroslav Kyselae65bf992021-03-17 18:29:43 +01002022 return 0;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002023}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002024EXPORT_SYMBOL_GPL(snd_hda_add_vmaster_hook);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002025
Takashi Iwai95a962c2014-10-29 16:03:58 +01002026/**
2027 * snd_hda_sync_vmaster_hook - Sync vmaster hook
2028 * @hook: the vmaster hook
2029 *
2030 * Call the hook with the current value for synchronization.
2031 * Should be called in init callback.
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002032 */
2033void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook)
2034{
2035 if (!hook->hook || !hook->codec)
2036 return;
Takashi Iwai594813f2013-04-17 18:16:05 +02002037 /* don't call vmaster hook in the destructor since it might have
2038 * been already destroyed
2039 */
2040 if (hook->codec->bus->shutdown)
2041 return;
Takashi Iwaiee52e562015-04-27 10:36:11 +02002042 snd_ctl_sync_vmaster_hook(hook->sw_kctl);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002043}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002044EXPORT_SYMBOL_GPL(snd_hda_sync_vmaster_hook);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002045
2046
Takashi Iwaid5191e52009-11-16 14:58:17 +01002047/**
2048 * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002049 * @kcontrol: referred ctl element
2050 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002051 *
2052 * The control element is supposed to have the private_value field
2053 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2054 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002055int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
2056 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057{
2058 int chs = get_amp_channels(kcontrol);
2059
2060 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2061 uinfo->count = chs == 3 ? 2 : 1;
2062 uinfo->value.integer.min = 0;
2063 uinfo->value.integer.max = 1;
2064 return 0;
2065}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002066EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Takashi Iwaid5191e52009-11-16 14:58:17 +01002068/**
2069 * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002070 * @kcontrol: ctl element
2071 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002072 *
2073 * The control element is supposed to have the private_value field
2074 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2075 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002076int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
2077 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078{
2079 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2080 hda_nid_t nid = get_amp_nid(kcontrol);
2081 int chs = get_amp_channels(kcontrol);
2082 int dir = get_amp_direction(kcontrol);
2083 int idx = get_amp_index(kcontrol);
2084 long *valp = ucontrol->value.integer.value;
2085
2086 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002087 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002088 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002090 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002091 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 return 0;
2093}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002094EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Takashi Iwaid5191e52009-11-16 14:58:17 +01002096/**
2097 * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002098 * @kcontrol: ctl element
2099 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002100 *
2101 * The control element is supposed to have the private_value field
2102 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2103 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002104int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
2105 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106{
2107 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2108 hda_nid_t nid = get_amp_nid(kcontrol);
2109 int chs = get_amp_channels(kcontrol);
2110 int dir = get_amp_direction(kcontrol);
2111 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 long *valp = ucontrol->value.integer.value;
2113 int change = 0;
2114
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002115 if (chs & 1) {
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01002116 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
2117 HDA_AMP_MUTE,
2118 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002119 valp++;
2120 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002121 if (chs & 2)
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01002122 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
2123 HDA_AMP_MUTE,
2124 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002125 hda_call_check_power_status(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 return change;
2127}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002128EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Takashi Iwai532d5382007-07-27 19:02:40 +02002130/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 * SPDIF out controls
2132 */
2133
Takashi Iwai0ba21762007-04-16 11:29:14 +02002134static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
2135 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136{
2137 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
2138 uinfo->count = 1;
2139 return 0;
2140}
2141
Takashi Iwai0ba21762007-04-16 11:29:14 +02002142static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
2143 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
2145 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2146 IEC958_AES0_NONAUDIO |
2147 IEC958_AES0_CON_EMPHASIS_5015 |
2148 IEC958_AES0_CON_NOT_COPYRIGHT;
2149 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
2150 IEC958_AES1_CON_ORIGINAL;
2151 return 0;
2152}
2153
Takashi Iwai0ba21762007-04-16 11:29:14 +02002154static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
2155 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
2157 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2158 IEC958_AES0_NONAUDIO |
2159 IEC958_AES0_PRO_EMPHASIS_5015;
2160 return 0;
2161}
2162
Takashi Iwai0ba21762007-04-16 11:29:14 +02002163static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
2164 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165{
2166 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06002167 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002168 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Takashi Iwai08605062018-04-24 16:53:24 +02002170 if (WARN_ON(codec->spdif_out.used <= idx))
2171 return -EINVAL;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002172 mutex_lock(&codec->spdif_mutex);
2173 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c935972011-06-01 11:14:17 -06002174 ucontrol->value.iec958.status[0] = spdif->status & 0xff;
2175 ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff;
2176 ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff;
2177 ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002178 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 return 0;
2181}
2182
2183/* convert from SPDIF status bits to HDA SPDIF bits
2184 * bit 0 (DigEn) is always set zero (to be filled later)
2185 */
2186static unsigned short convert_from_spdif_status(unsigned int sbits)
2187{
2188 unsigned short val = 0;
2189
2190 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002191 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002193 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002195 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
2196 IEC958_AES0_PRO_EMPHASIS_5015)
2197 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002199 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
2200 IEC958_AES0_CON_EMPHASIS_5015)
2201 val |= AC_DIG1_EMPHASIS;
2202 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
2203 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02002205 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
2207 }
2208 return val;
2209}
2210
2211/* convert to SPDIF status bits from HDA SPDIF bits
2212 */
2213static unsigned int convert_to_spdif_status(unsigned short val)
2214{
2215 unsigned int sbits = 0;
2216
Takashi Iwai0ba21762007-04-16 11:29:14 +02002217 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002219 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 sbits |= IEC958_AES0_PROFESSIONAL;
2221 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwaia686fd12013-03-20 15:42:00 +01002222 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
2224 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002225 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002227 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002229 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
2231 sbits |= val & (0x7f << 8);
2232 }
2233 return sbits;
2234}
2235
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02002236/* set digital convert verbs both for the given NID and its followers */
Takashi Iwai2f728532008-09-25 16:32:41 +02002237static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaia551d912015-02-26 12:34:49 +01002238 int mask, int val)
Takashi Iwai2f728532008-09-25 16:32:41 +02002239{
Takashi Iwaidda14412011-05-02 11:29:30 +02002240 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02002241
Takashi Iwaia551d912015-02-26 12:34:49 +01002242 snd_hdac_regmap_update(&codec->core, nid, AC_VERB_SET_DIGI_CONVERT_1,
2243 mask, val);
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02002244 d = codec->follower_dig_outs;
Takashi Iwai2f728532008-09-25 16:32:41 +02002245 if (!d)
2246 return;
2247 for (; *d; d++)
Takashi Iwai7d4b5e92015-04-16 15:14:53 +02002248 snd_hdac_regmap_update(&codec->core, *d,
Takashi Iwaia551d912015-02-26 12:34:49 +01002249 AC_VERB_SET_DIGI_CONVERT_1, mask, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02002250}
2251
2252static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
2253 int dig1, int dig2)
2254{
Takashi Iwaia551d912015-02-26 12:34:49 +01002255 unsigned int mask = 0;
2256 unsigned int val = 0;
2257
2258 if (dig1 != -1) {
2259 mask |= 0xff;
2260 val = dig1;
2261 }
2262 if (dig2 != -1) {
2263 mask |= 0xff00;
2264 val |= dig2 << 8;
2265 }
2266 set_dig_out(codec, nid, mask, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02002267}
2268
Takashi Iwai0ba21762007-04-16 11:29:14 +02002269static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
2270 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
2272 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06002273 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002274 struct hda_spdif_out *spdif;
2275 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 unsigned short val;
2277 int change;
2278
Takashi Iwai08605062018-04-24 16:53:24 +02002279 if (WARN_ON(codec->spdif_out.used <= idx))
2280 return -EINVAL;
Ingo Molnar62932df2006-01-16 16:34:20 +01002281 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002282 spdif = snd_array_elem(&codec->spdif_out, idx);
2283 nid = spdif->nid;
Stephen Warren7c935972011-06-01 11:14:17 -06002284 spdif->status = ucontrol->value.iec958.status[0] |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
2286 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
2287 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
Stephen Warren7c935972011-06-01 11:14:17 -06002288 val = convert_from_spdif_status(spdif->status);
2289 val |= spdif->ctls & 1;
2290 change = spdif->ctls != val;
2291 spdif->ctls = val;
Stephen Warren74b654c2011-06-01 11:14:18 -06002292 if (change && nid != (u16)-1)
Takashi Iwai2f728532008-09-25 16:32:41 +02002293 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Ingo Molnar62932df2006-01-16 16:34:20 +01002294 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 return change;
2296}
2297
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002298#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
Takashi Iwai0ba21762007-04-16 11:29:14 +02002300static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
2301 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302{
2303 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06002304 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002305 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
Takashi Iwai08605062018-04-24 16:53:24 +02002307 if (WARN_ON(codec->spdif_out.used <= idx))
2308 return -EINVAL;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002309 mutex_lock(&codec->spdif_mutex);
2310 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c935972011-06-01 11:14:17 -06002311 ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002312 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 return 0;
2314}
2315
Stephen Warren74b654c2011-06-01 11:14:18 -06002316static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid,
2317 int dig1, int dig2)
2318{
2319 set_dig_out_convert(codec, nid, dig1, dig2);
2320 /* unmute amp switch (if any) */
2321 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
2322 (dig1 & AC_DIG1_ENABLE))
2323 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2324 HDA_AMP_MUTE, 0);
2325}
2326
Takashi Iwai0ba21762007-04-16 11:29:14 +02002327static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
2328 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329{
2330 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06002331 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002332 struct hda_spdif_out *spdif;
2333 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 unsigned short val;
2335 int change;
2336
Takashi Iwai08605062018-04-24 16:53:24 +02002337 if (WARN_ON(codec->spdif_out.used <= idx))
2338 return -EINVAL;
Ingo Molnar62932df2006-01-16 16:34:20 +01002339 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002340 spdif = snd_array_elem(&codec->spdif_out, idx);
2341 nid = spdif->nid;
Stephen Warren7c935972011-06-01 11:14:17 -06002342 val = spdif->ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02002344 val |= AC_DIG1_ENABLE;
Stephen Warren7c935972011-06-01 11:14:17 -06002345 change = spdif->ctls != val;
Stephen Warren74b654c2011-06-01 11:14:18 -06002346 spdif->ctls = val;
2347 if (change && nid != (u16)-1)
2348 set_spdif_ctls(codec, nid, val & 0xff, -1);
Ingo Molnar62932df2006-01-16 16:34:20 +01002349 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 return change;
2351}
2352
Takashi Iwai35ace5e2020-01-03 09:16:52 +01002353static const struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 {
2355 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2356 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002357 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 .info = snd_hda_spdif_mask_info,
2359 .get = snd_hda_spdif_cmask_get,
2360 },
2361 {
2362 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2363 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002364 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 .info = snd_hda_spdif_mask_info,
2366 .get = snd_hda_spdif_pmask_get,
2367 },
2368 {
2369 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002370 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 .info = snd_hda_spdif_mask_info,
2372 .get = snd_hda_spdif_default_get,
2373 .put = snd_hda_spdif_default_put,
2374 },
2375 {
2376 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002377 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 .info = snd_hda_spdif_out_switch_info,
2379 .get = snd_hda_spdif_out_switch_get,
2380 .put = snd_hda_spdif_out_switch_put,
2381 },
2382 { } /* end */
2383};
2384
2385/**
Takashi Iwaidcda5802012-10-12 17:24:51 +02002386 * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 * @codec: the HDA codec
Takashi Iwaidcda5802012-10-12 17:24:51 +02002388 * @associated_nid: NID that new ctls associated with
2389 * @cvt_nid: converter NID
2390 * @type: HDA_PCM_TYPE_*
2391 * Creates controls related with the digital output.
2392 * Called from each patch supporting the digital out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 *
2394 * Returns 0 if successful, or a negative error code.
2395 */
Takashi Iwaidcda5802012-10-12 17:24:51 +02002396int snd_hda_create_dig_out_ctls(struct hda_codec *codec,
2397 hda_nid_t associated_nid,
2398 hda_nid_t cvt_nid,
2399 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400{
2401 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002402 struct snd_kcontrol *kctl;
Takashi Iwai35ace5e2020-01-03 09:16:52 +01002403 const struct snd_kcontrol_new *dig_mix;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002404 int idx = 0;
Takashi Iwaia551d912015-02-26 12:34:49 +01002405 int val = 0;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002406 const int spdif_index = 16;
Stephen Warren7c935972011-06-01 11:14:17 -06002407 struct hda_spdif_out *spdif;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002408 struct hda_bus *bus = codec->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002410 if (bus->primary_dig_out_type == HDA_PCM_TYPE_HDMI &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02002411 type == HDA_PCM_TYPE_SPDIF) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002412 idx = spdif_index;
2413 } else if (bus->primary_dig_out_type == HDA_PCM_TYPE_SPDIF &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02002414 type == HDA_PCM_TYPE_HDMI) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002415 /* suppose a single SPDIF device */
2416 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2417 kctl = find_mixer_ctl(codec, dig_mix->name, 0, 0);
2418 if (!kctl)
2419 break;
2420 kctl->id.index = spdif_index;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002421 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002422 bus->primary_dig_out_type = HDA_PCM_TYPE_HDMI;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002423 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002424 if (!bus->primary_dig_out_type)
2425 bus->primary_dig_out_type = type;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002426
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002427 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", idx);
Takashi Iwai1afe2062010-12-23 10:17:52 +01002428 if (idx < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01002429 codec_err(codec, "too many IEC958 outputs\n");
Takashi Iwai09f99702008-02-04 12:31:13 +01002430 return -EBUSY;
2431 }
Stephen Warren7c935972011-06-01 11:14:17 -06002432 spdif = snd_array_new(&codec->spdif_out);
Mengdong Lin25336e82013-03-07 14:10:25 -05002433 if (!spdif)
2434 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2436 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01002437 if (!kctl)
2438 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01002439 kctl->id.index = idx;
Stephen Warren7c935972011-06-01 11:14:17 -06002440 kctl->private_value = codec->spdif_out.used - 1;
Stephen Warren74b654c2011-06-01 11:14:18 -06002441 err = snd_hda_ctl_add(codec, associated_nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002442 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 return err;
2444 }
Stephen Warren74b654c2011-06-01 11:14:18 -06002445 spdif->nid = cvt_nid;
Takashi Iwaia551d912015-02-26 12:34:49 +01002446 snd_hdac_regmap_read(&codec->core, cvt_nid,
2447 AC_VERB_GET_DIGI_CONVERT_1, &val);
2448 spdif->ctls = val;
Stephen Warren7c935972011-06-01 11:14:17 -06002449 spdif->status = convert_to_spdif_status(spdif->ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 return 0;
2451}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002452EXPORT_SYMBOL_GPL(snd_hda_create_dig_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Takashi Iwai95a962c2014-10-29 16:03:58 +01002454/**
2455 * snd_hda_spdif_out_of_nid - get the hda_spdif_out entry from the given NID
2456 * @codec: the HDA codec
2457 * @nid: widget NID
2458 *
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002459 * call within spdif_mutex lock
2460 */
Stephen Warren7c935972011-06-01 11:14:17 -06002461struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec,
2462 hda_nid_t nid)
2463{
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02002464 struct hda_spdif_out *spdif;
Stephen Warren7c935972011-06-01 11:14:17 -06002465 int i;
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02002466
2467 snd_array_for_each(&codec->spdif_out, i, spdif) {
Stephen Warren7c935972011-06-01 11:14:17 -06002468 if (spdif->nid == nid)
2469 return spdif;
2470 }
2471 return NULL;
2472}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002473EXPORT_SYMBOL_GPL(snd_hda_spdif_out_of_nid);
Stephen Warren7c935972011-06-01 11:14:17 -06002474
Takashi Iwai95a962c2014-10-29 16:03:58 +01002475/**
2476 * snd_hda_spdif_ctls_unassign - Unassign the given SPDIF ctl
2477 * @codec: the HDA codec
2478 * @idx: the SPDIF ctl index
2479 *
2480 * Unassign the widget from the given SPDIF control.
2481 */
Stephen Warren74b654c2011-06-01 11:14:18 -06002482void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx)
2483{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002484 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06002485
Takashi Iwai08605062018-04-24 16:53:24 +02002486 if (WARN_ON(codec->spdif_out.used <= idx))
2487 return;
Stephen Warren74b654c2011-06-01 11:14:18 -06002488 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002489 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06002490 spdif->nid = (u16)-1;
2491 mutex_unlock(&codec->spdif_mutex);
2492}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002493EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_unassign);
Stephen Warren74b654c2011-06-01 11:14:18 -06002494
Takashi Iwai95a962c2014-10-29 16:03:58 +01002495/**
2496 * snd_hda_spdif_ctls_assign - Assign the SPDIF controls to the given NID
2497 * @codec: the HDA codec
2498 * @idx: the SPDIF ctl idx
2499 * @nid: widget NID
2500 *
2501 * Assign the widget to the SPDIF control with the given index.
2502 */
Stephen Warren74b654c2011-06-01 11:14:18 -06002503void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid)
2504{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002505 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06002506 unsigned short val;
2507
Takashi Iwai08605062018-04-24 16:53:24 +02002508 if (WARN_ON(codec->spdif_out.used <= idx))
2509 return;
Stephen Warren74b654c2011-06-01 11:14:18 -06002510 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002511 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06002512 if (spdif->nid != nid) {
2513 spdif->nid = nid;
2514 val = spdif->ctls;
2515 set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff);
2516 }
2517 mutex_unlock(&codec->spdif_mutex);
2518}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002519EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_assign);
Stephen Warren74b654c2011-06-01 11:14:18 -06002520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521/*
Takashi Iwai9a081602008-02-12 18:37:26 +01002522 * SPDIF sharing with analog output
2523 */
2524static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
2525 struct snd_ctl_elem_value *ucontrol)
2526{
2527 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2528 ucontrol->value.integer.value[0] = mout->share_spdif;
2529 return 0;
2530}
2531
2532static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
2533 struct snd_ctl_elem_value *ucontrol)
2534{
2535 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2536 mout->share_spdif = !!ucontrol->value.integer.value[0];
2537 return 0;
2538}
2539
Bhumika Goyalf3b827e2017-02-20 00:18:09 +05302540static const struct snd_kcontrol_new spdif_share_sw = {
Takashi Iwai9a081602008-02-12 18:37:26 +01002541 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2542 .name = "IEC958 Default PCM Playback Switch",
2543 .info = snd_ctl_boolean_mono_info,
2544 .get = spdif_share_sw_get,
2545 .put = spdif_share_sw_put,
2546};
2547
Takashi Iwaid5191e52009-11-16 14:58:17 +01002548/**
2549 * snd_hda_create_spdif_share_sw - create Default PCM switch
2550 * @codec: the HDA codec
2551 * @mout: multi-out instance
2552 */
Takashi Iwai9a081602008-02-12 18:37:26 +01002553int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
2554 struct hda_multi_out *mout)
2555{
Mengdong Lin4c7a5482013-03-07 14:11:05 -05002556 struct snd_kcontrol *kctl;
2557
Takashi Iwai9a081602008-02-12 18:37:26 +01002558 if (!mout->dig_out_nid)
2559 return 0;
Mengdong Lin4c7a5482013-03-07 14:11:05 -05002560
2561 kctl = snd_ctl_new1(&spdif_share_sw, mout);
2562 if (!kctl)
2563 return -ENOMEM;
Takashi Iwai9a081602008-02-12 18:37:26 +01002564 /* ATTENTION: here mout is passed as private_data, instead of codec */
Mengdong Lin4c7a5482013-03-07 14:11:05 -05002565 return snd_hda_ctl_add(codec, mout->dig_out_nid, kctl);
Takashi Iwai9a081602008-02-12 18:37:26 +01002566}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002567EXPORT_SYMBOL_GPL(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01002568
2569/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 * SPDIF input
2571 */
2572
2573#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
2574
Takashi Iwai0ba21762007-04-16 11:29:14 +02002575static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
2576 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577{
2578 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2579
2580 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
2581 return 0;
2582}
2583
Takashi Iwai0ba21762007-04-16 11:29:14 +02002584static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
2585 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586{
2587 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2588 hda_nid_t nid = kcontrol->private_value;
2589 unsigned int val = !!ucontrol->value.integer.value[0];
2590 int change;
2591
Ingo Molnar62932df2006-01-16 16:34:20 +01002592 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002594 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 codec->spdif_in_enable = val;
Takashi Iwaia551d912015-02-26 12:34:49 +01002596 snd_hdac_regmap_write(&codec->core, nid,
2597 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002599 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 return change;
2601}
2602
Takashi Iwai0ba21762007-04-16 11:29:14 +02002603static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
2604 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605{
2606 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2607 hda_nid_t nid = kcontrol->private_value;
Takashi Iwaia551d912015-02-26 12:34:49 +01002608 unsigned int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 unsigned int sbits;
2610
Takashi Iwaia551d912015-02-26 12:34:49 +01002611 snd_hdac_regmap_read(&codec->core, nid,
2612 AC_VERB_GET_DIGI_CONVERT_1, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 sbits = convert_to_spdif_status(val);
2614 ucontrol->value.iec958.status[0] = sbits;
2615 ucontrol->value.iec958.status[1] = sbits >> 8;
2616 ucontrol->value.iec958.status[2] = sbits >> 16;
2617 ucontrol->value.iec958.status[3] = sbits >> 24;
2618 return 0;
2619}
2620
Takashi Iwai35ace5e2020-01-03 09:16:52 +01002621static const struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 {
2623 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002624 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 .info = snd_hda_spdif_in_switch_info,
2626 .get = snd_hda_spdif_in_switch_get,
2627 .put = snd_hda_spdif_in_switch_put,
2628 },
2629 {
2630 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2631 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002632 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 .info = snd_hda_spdif_mask_info,
2634 .get = snd_hda_spdif_in_status_get,
2635 },
2636 { } /* end */
2637};
2638
2639/**
2640 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
2641 * @codec: the HDA codec
2642 * @nid: audio in widget NID
2643 *
2644 * Creates controls related with the SPDIF input.
2645 * Called from each patch supporting the SPDIF in.
2646 *
2647 * Returns 0 if successful, or a negative error code.
2648 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002649int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650{
2651 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002652 struct snd_kcontrol *kctl;
Takashi Iwai35ace5e2020-01-03 09:16:52 +01002653 const struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01002654 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
Takashi Iwaidcda5802012-10-12 17:24:51 +02002656 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01002657 if (idx < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01002658 codec_err(codec, "too many IEC958 inputs\n");
Takashi Iwai09f99702008-02-04 12:31:13 +01002659 return -EBUSY;
2660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
2662 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaic8dcdf82009-02-06 16:21:20 +01002663 if (!kctl)
2664 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 kctl->private_value = nid;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002666 err = snd_hda_ctl_add(codec, nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002667 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 return err;
2669 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002670 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01002671 snd_hda_codec_read(codec, nid, 0,
2672 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02002673 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 return 0;
2675}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002676EXPORT_SYMBOL_GPL(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
Takashi Iwai95a962c2014-10-29 16:03:58 +01002678/**
2679 * snd_hda_codec_set_power_to_all - Set the power state to all widgets
2680 * @codec: the HDA codec
2681 * @fg: function group (not used now)
2682 * @power_state: the power state to set (AC_PWRST_*)
2683 *
2684 * Set the given power state to all widgets that have the power control.
2685 * If the codec has power_filter set, it evaluates the power state and
2686 * filter out if it's unchanged as D3.
2687 */
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002688void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg,
Takashi Iwai9419ab62013-01-24 17:23:35 +01002689 unsigned int power_state)
Takashi Iwai54d17402005-11-21 16:33:22 +01002690{
Takashi Iwai7639a062015-03-03 10:07:24 +01002691 hda_nid_t nid;
Takashi Iwai54d17402005-11-21 16:33:22 +01002692
Takashi Iwai7639a062015-03-03 10:07:24 +01002693 for_each_hda_codec_node(nid, codec) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002694 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9419ab62013-01-24 17:23:35 +01002695 unsigned int state = power_state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002696 if (!(wcaps & AC_WCAP_POWER))
2697 continue;
Takashi Iwai9419ab62013-01-24 17:23:35 +01002698 if (codec->power_filter) {
2699 state = codec->power_filter(codec, nid, power_state);
2700 if (state != power_state && power_state == AC_PWRST_D3)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002701 continue;
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002702 }
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002703 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
Takashi Iwai9419ab62013-01-24 17:23:35 +01002704 state);
Takashi Iwai54d17402005-11-21 16:33:22 +01002705 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002706}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002707EXPORT_SYMBOL_GPL(snd_hda_codec_set_power_to_all);
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002708
Takashi Iwai95a962c2014-10-29 16:03:58 +01002709/**
2710 * snd_hda_codec_eapd_power_filter - A power filter callback for EAPD
2711 * @codec: the HDA codec
2712 * @nid: widget NID
2713 * @power_state: power state to evalue
2714 *
2715 * Don't power down the widget if it controls eapd and EAPD_BTLENABLE is set.
2716 * This can be used a codec power_filter callback.
2717 */
Takashi Iwaiba615b82013-03-13 14:47:21 +01002718unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec,
2719 hda_nid_t nid,
2720 unsigned int power_state)
Takashi Iwai9419ab62013-01-24 17:23:35 +01002721{
Takashi Iwai7639a062015-03-03 10:07:24 +01002722 if (nid == codec->core.afg || nid == codec->core.mfg)
Takashi Iwaidfc6e462014-01-13 16:09:57 +01002723 return power_state;
Takashi Iwai9419ab62013-01-24 17:23:35 +01002724 if (power_state == AC_PWRST_D3 &&
2725 get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN &&
2726 (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) {
2727 int eapd = snd_hda_codec_read(codec, nid, 0,
2728 AC_VERB_GET_EAPD_BTLENABLE, 0);
2729 if (eapd & 0x02)
2730 return AC_PWRST_D0;
2731 }
2732 return power_state;
2733}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002734EXPORT_SYMBOL_GPL(snd_hda_codec_eapd_power_filter);
Takashi Iwai9419ab62013-01-24 17:23:35 +01002735
Takashi Iwai432c6412012-08-28 09:59:20 -07002736/*
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002737 * set power state of the codec, and return the power state
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002738 */
Takashi Iwaid8193872012-08-31 07:54:38 -07002739static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002740 unsigned int power_state)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002741{
Takashi Iwai7639a062015-03-03 10:07:24 +01002742 hda_nid_t fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Wang Xingchao09617ce2012-06-08 10:26:08 +08002743 int count;
2744 unsigned int state;
Takashi Iwai63e51fd72013-06-06 14:20:19 +02002745 int flags = 0;
Wang Xingchao09617ce2012-06-08 10:26:08 +08002746
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002747 /* this delay seems necessary to avoid click noise at power-down */
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08002748 if (power_state == AC_PWRST_D3) {
Mengdong Lin7f132922013-11-29 01:48:45 -05002749 if (codec->depop_delay < 0)
Takashi Iwai7639a062015-03-03 10:07:24 +01002750 msleep(codec_has_epss(codec) ? 10 : 100);
Mengdong Lin7f132922013-11-29 01:48:45 -05002751 else if (codec->depop_delay > 0)
2752 msleep(codec->depop_delay);
Takashi Iwai63e51fd72013-06-06 14:20:19 +02002753 flags = HDA_RW_NO_RESPONSE_FALLBACK;
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08002754 }
Wang Xingchao09617ce2012-06-08 10:26:08 +08002755
2756 /* repeat power states setting at most 10 times*/
2757 for (count = 0; count < 10; count++) {
Takashi Iwai432c6412012-08-28 09:59:20 -07002758 if (codec->patch_ops.set_power_state)
2759 codec->patch_ops.set_power_state(codec, fg,
2760 power_state);
2761 else {
Takashi Iwaidfc6e462014-01-13 16:09:57 +01002762 state = power_state;
2763 if (codec->power_filter)
2764 state = codec->power_filter(codec, fg, state);
2765 if (state == power_state || power_state != AC_PWRST_D3)
2766 snd_hda_codec_read(codec, fg, flags,
2767 AC_VERB_SET_POWER_STATE,
2768 state);
Takashi Iwai9419ab62013-01-24 17:23:35 +01002769 snd_hda_codec_set_power_to_all(codec, fg, power_state);
Takashi Iwai432c6412012-08-28 09:59:20 -07002770 }
Abhijeet Kumar3b5b8992018-01-23 23:00:52 +05302771 state = snd_hda_sync_power_state(codec, fg, power_state);
Wang Xingchao09617ce2012-06-08 10:26:08 +08002772 if (!(state & AC_PWRST_ERROR))
2773 break;
2774 }
Mengdong Linb8dfc4622012-08-23 17:32:30 +08002775
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002776 return state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002777}
Takashi Iwai54d17402005-11-21 16:33:22 +01002778
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002779/* sync power states of all widgets;
2780 * this is called at the end of codec parsing
2781 */
2782static void sync_power_up_states(struct hda_codec *codec)
2783{
Takashi Iwai7639a062015-03-03 10:07:24 +01002784 hda_nid_t nid;
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002785
Takashi Iwaiba615b82013-03-13 14:47:21 +01002786 /* don't care if no filter is used */
2787 if (!codec->power_filter)
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002788 return;
2789
Takashi Iwai7639a062015-03-03 10:07:24 +01002790 for_each_hda_codec_node(nid, codec) {
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002791 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9040d102013-01-24 17:47:17 +01002792 unsigned int target;
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002793 if (!(wcaps & AC_WCAP_POWER))
2794 continue;
2795 target = codec->power_filter(codec, nid, AC_PWRST_D0);
2796 if (target == AC_PWRST_D0)
2797 continue;
Takashi Iwai9040d102013-01-24 17:47:17 +01002798 if (!snd_hda_check_power_state(codec, nid, target))
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002799 snd_hda_codec_write(codec, nid, 0,
2800 AC_VERB_SET_POWER_STATE, target);
2801 }
2802}
2803
Takashi Iwai648a8d22014-02-25 10:38:13 +01002804#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai11aeff02008-07-30 15:01:46 +02002805/* execute additional init verbs */
2806static void hda_exec_init_verbs(struct hda_codec *codec)
2807{
2808 if (codec->init_verbs.list)
2809 snd_hda_sequence_write(codec, codec->init_verbs.list);
2810}
2811#else
2812static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
2813#endif
2814
Takashi Iwai2a439522011-07-26 09:52:50 +02002815#ifdef CONFIG_PM
Takashi Iwaicc72da72015-02-19 16:00:22 +01002816/* update the power on/off account with the current jiffies */
2817static void update_power_acct(struct hda_codec *codec, bool on)
2818{
2819 unsigned long delta = jiffies - codec->power_jiffies;
2820
2821 if (on)
2822 codec->power_on_acct += delta;
2823 else
2824 codec->power_off_acct += delta;
2825 codec->power_jiffies += delta;
2826}
2827
2828void snd_hda_update_power_acct(struct hda_codec *codec)
2829{
2830 update_power_acct(codec, hda_codec_is_power_on(codec));
2831}
2832
Takashi Iwaicb53c622007-08-10 17:21:45 +02002833/*
2834 * call suspend and power-down; used both from PM and power-save
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002835 * this function returns the power state in the end
Takashi Iwaicb53c622007-08-10 17:21:45 +02002836 */
Takashi Iwaicc72da72015-02-19 16:00:22 +01002837static unsigned int hda_call_codec_suspend(struct hda_codec *codec)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002838{
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002839 unsigned int state;
2840
Takashi Iwaifeb20fa2018-06-27 09:03:51 +02002841 snd_hdac_enter_pm(&codec->core);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002842 if (codec->patch_ops.suspend)
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002843 codec->patch_ops.suspend(codec);
Takashi Iwaieb541332010-08-06 13:48:11 +02002844 hda_cleanup_all_streams(codec);
Takashi Iwaid8193872012-08-31 07:54:38 -07002845 state = hda_set_power_state(codec, AC_PWRST_D3);
Takashi Iwaicc72da72015-02-19 16:00:22 +01002846 update_power_acct(codec, true);
Takashi Iwaifeb20fa2018-06-27 09:03:51 +02002847 snd_hdac_leave_pm(&codec->core);
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002848 return state;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002849}
2850
2851/*
2852 * kick up codec; used both from PM and power-save
2853 */
2854static void hda_call_codec_resume(struct hda_codec *codec)
2855{
Takashi Iwaifeb20fa2018-06-27 09:03:51 +02002856 snd_hdac_enter_pm(&codec->core);
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01002857 if (codec->core.regmap)
2858 regcache_mark_dirty(codec->core.regmap);
2859
Takashi Iwaicc72da72015-02-19 16:00:22 +01002860 codec->power_jiffies = jiffies;
Takashi Iwaicc72da72015-02-19 16:00:22 +01002861
Takashi Iwaid8193872012-08-31 07:54:38 -07002862 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwaiac0547d2010-07-05 16:50:13 +02002863 restore_shutup_pins(codec);
Takashi Iwai11aeff02008-07-30 15:01:46 +02002864 hda_exec_init_verbs(codec);
Takashi Iwai31614bb2013-01-23 15:58:40 +01002865 snd_hda_jack_set_dirty_all(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002866 if (codec->patch_ops.resume)
2867 codec->patch_ops.resume(codec);
2868 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02002869 if (codec->patch_ops.init)
2870 codec->patch_ops.init(codec);
Takashi Iwai1a462be2020-01-09 10:01:04 +01002871 snd_hda_regmap_sync(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002872 }
David Henningsson26a6cb62012-10-09 15:04:21 +02002873
2874 if (codec->jackpoll_interval)
2875 hda_jackpoll_work(&codec->jackpoll_work.work);
Takashi Iwai31614bb2013-01-23 15:58:40 +01002876 else
David Henningsson26a6cb62012-10-09 15:04:21 +02002877 snd_hda_jack_report_sync(codec);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002878 codec->core.dev.power.power_state = PMSG_ON;
Takashi Iwaifeb20fa2018-06-27 09:03:51 +02002879 snd_hdac_leave_pm(&codec->core);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002880}
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002881
Kai-Heng Feng2b73649c2021-01-19 23:21:43 +08002882static int hda_codec_runtime_suspend(struct device *dev)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002883{
2884 struct hda_codec *codec = dev_to_hda_codec(dev);
Takashi Iwaicc72da72015-02-19 16:00:22 +01002885 unsigned int state;
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002886
Ranjani Sridharan7fcd9bb2020-07-28 16:10:11 -07002887 /* Nothing to do if card registration fails and the component driver never probes */
2888 if (!codec->card)
2889 return 0;
2890
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002891 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwaicc72da72015-02-19 16:00:22 +01002892 state = hda_call_codec_suspend(codec);
Takashi Iwai57cb54e2018-06-21 13:33:53 +02002893 if (codec->link_down_at_suspend ||
2894 (codec_has_clkstop(codec) && codec_has_epss(codec) &&
2895 (state & AC_PWRST_CLK_STOP_OK)))
Takashi Iwai7639a062015-03-03 10:07:24 +01002896 snd_hdac_codec_link_down(&codec->core);
Imre Deak30994062021-06-23 16:46:01 +03002897 snd_hda_codec_display_power(codec, false);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002898 return 0;
2899}
2900
Kai-Heng Feng2b73649c2021-01-19 23:21:43 +08002901static int hda_codec_runtime_resume(struct device *dev)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002902{
Takashi Iwai55ed9cd2015-02-19 17:35:32 +01002903 struct hda_codec *codec = dev_to_hda_codec(dev);
2904
Ranjani Sridharan7fcd9bb2020-07-28 16:10:11 -07002905 /* Nothing to do if card registration fails and the component driver never probes */
2906 if (!codec->card)
2907 return 0;
2908
Imre Deak30994062021-06-23 16:46:01 +03002909 snd_hda_codec_display_power(codec, true);
Takashi Iwai7639a062015-03-03 10:07:24 +01002910 snd_hdac_codec_link_up(&codec->core);
Takashi Iwai55ed9cd2015-02-19 17:35:32 +01002911 hda_call_codec_resume(codec);
Takashi Iwaicc72da72015-02-19 16:00:22 +01002912 pm_runtime_mark_last_busy(dev);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002913 return 0;
2914}
Kai-Heng Feng215a22e2020-10-27 21:00:36 +08002915
Takashi Iwai2a439522011-07-26 09:52:50 +02002916#endif /* CONFIG_PM */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002917
Takashi Iwai98081ca2019-01-29 14:03:33 +01002918#ifdef CONFIG_PM_SLEEP
Kai-Heng Feng215a22e2020-10-27 21:00:36 +08002919static int hda_codec_pm_prepare(struct device *dev)
2920{
Hui Wangb8b90c12021-06-02 22:54:24 +08002921 dev->power.power_state = PMSG_SUSPEND;
Kai-Heng Feng215a22e2020-10-27 21:00:36 +08002922 return pm_runtime_suspended(dev);
2923}
2924
2925static void hda_codec_pm_complete(struct device *dev)
Hui Wangb5a236c2019-03-19 09:28:44 +08002926{
Takashi Iwai4914da22019-07-16 08:56:51 +02002927 struct hda_codec *codec = dev_to_hda_codec(dev);
Hui Wangb5a236c2019-03-19 09:28:44 +08002928
Hui Wangb8b90c12021-06-02 22:54:24 +08002929 /* If no other pm-functions are called between prepare() and complete() */
2930 if (dev->power.power_state.event == PM_EVENT_SUSPEND)
2931 dev->power.power_state = PMSG_RESUME;
2932
Kai-Heng Feng215a22e2020-10-27 21:00:36 +08002933 if (pm_runtime_suspended(dev) && (codec->jackpoll_interval ||
2934 hda_codec_need_resume(codec) || codec->forced_resume))
2935 pm_request_resume(dev);
Hui Wangb5a236c2019-03-19 09:28:44 +08002936}
2937
Takashi Iwai98081ca2019-01-29 14:03:33 +01002938static int hda_codec_pm_suspend(struct device *dev)
2939{
2940 dev->power.power_state = PMSG_SUSPEND;
Kai-Heng Feng2b73649c2021-01-19 23:21:43 +08002941 return pm_runtime_force_suspend(dev);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002942}
2943
2944static int hda_codec_pm_resume(struct device *dev)
2945{
2946 dev->power.power_state = PMSG_RESUME;
Kai-Heng Feng2b73649c2021-01-19 23:21:43 +08002947 return pm_runtime_force_resume(dev);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002948}
2949
2950static int hda_codec_pm_freeze(struct device *dev)
2951{
2952 dev->power.power_state = PMSG_FREEZE;
Kai-Heng Feng2b73649c2021-01-19 23:21:43 +08002953 return pm_runtime_force_suspend(dev);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002954}
2955
2956static int hda_codec_pm_thaw(struct device *dev)
2957{
2958 dev->power.power_state = PMSG_THAW;
Kai-Heng Feng2b73649c2021-01-19 23:21:43 +08002959 return pm_runtime_force_resume(dev);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002960}
2961
2962static int hda_codec_pm_restore(struct device *dev)
2963{
2964 dev->power.power_state = PMSG_RESTORE;
Kai-Heng Feng2b73649c2021-01-19 23:21:43 +08002965 return pm_runtime_force_resume(dev);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002966}
2967#endif /* CONFIG_PM_SLEEP */
2968
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002969/* referred in hda_bind.c */
2970const struct dev_pm_ops hda_codec_driver_pm = {
Takashi Iwai98081ca2019-01-29 14:03:33 +01002971#ifdef CONFIG_PM_SLEEP
Kai-Heng Feng215a22e2020-10-27 21:00:36 +08002972 .prepare = hda_codec_pm_prepare,
2973 .complete = hda_codec_pm_complete,
Takashi Iwai98081ca2019-01-29 14:03:33 +01002974 .suspend = hda_codec_pm_suspend,
2975 .resume = hda_codec_pm_resume,
2976 .freeze = hda_codec_pm_freeze,
2977 .thaw = hda_codec_pm_thaw,
2978 .poweroff = hda_codec_pm_suspend,
2979 .restore = hda_codec_pm_restore,
2980#endif /* CONFIG_PM_SLEEP */
Takashi Iwaicc72da72015-02-19 16:00:22 +01002981 SET_RUNTIME_PM_OPS(hda_codec_runtime_suspend, hda_codec_runtime_resume,
2982 NULL)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002983};
Takashi Iwai54d17402005-11-21 16:33:22 +01002984
Takashi Iwaib98444e2021-08-13 10:12:29 +02002985/* suspend the codec at shutdown; called from driver's shutdown callback */
2986void snd_hda_codec_shutdown(struct hda_codec *codec)
2987{
2988 struct hda_pcm *cpcm;
2989
Takashi Iwaib98444e2021-08-13 10:12:29 +02002990 list_for_each_entry(cpcm, &codec->pcm_list_head, list)
2991 snd_pcm_suspend_all(cpcm->pcm);
2992
Takashi Iwai2eaf1632021-08-26 17:47:52 +02002993 pm_runtime_force_suspend(hda_codec_dev(codec));
2994 pm_runtime_disable(hda_codec_dev(codec));
Takashi Iwaib98444e2021-08-13 10:12:29 +02002995}
2996
Takashi Iwai9c9a5172012-07-31 11:35:35 +02002997/*
2998 * add standard channel maps if not specified
2999 */
3000static int add_std_chmaps(struct hda_codec *codec)
3001{
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003002 struct hda_pcm *pcm;
3003 int str, err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003004
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003005 list_for_each_entry(pcm, &codec->pcm_list_head, list) {
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003006 for (str = 0; str < 2; str++) {
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003007 struct hda_pcm_stream *hinfo = &pcm->stream[str];
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003008 struct snd_pcm_chmap *chmap;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003009 const struct snd_pcm_chmap_elem *elem;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003010
Takashi Iwaib25cf302015-08-26 14:21:14 +02003011 if (!pcm->pcm || pcm->own_chmap || !hinfo->substreams)
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003012 continue;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003013 elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003014 err = snd_pcm_add_chmap_ctls(pcm->pcm, str, elem,
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003015 hinfo->channels_max,
3016 0, &chmap);
3017 if (err < 0)
3018 return err;
3019 chmap->channel_mask = SND_PCM_CHMAP_MASK_2468;
3020 }
3021 }
3022 return 0;
3023}
3024
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003025/* default channel maps for 2.1 speakers;
3026 * since HD-audio supports only stereo, odd number channels are omitted
3027 */
3028const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = {
3029 { .channels = 2,
3030 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
3031 { .channels = 4,
3032 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
3033 SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } },
3034 { }
3035};
3036EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps);
3037
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003038int snd_hda_codec_build_controls(struct hda_codec *codec)
3039{
3040 int err = 0;
Takashi Iwai11aeff02008-07-30 15:01:46 +02003041 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003042 /* continue to initialize... */
3043 if (codec->patch_ops.init)
3044 err = codec->patch_ops.init(codec);
3045 if (!err && codec->patch_ops.build_controls)
3046 err = codec->patch_ops.build_controls(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003047 if (err < 0)
3048 return err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003049
3050 /* we create chmaps here instead of build_pcms */
3051 err = add_std_chmaps(codec);
3052 if (err < 0)
3053 return err;
3054
David Henningsson26a6cb62012-10-09 15:04:21 +02003055 if (codec->jackpoll_interval)
3056 hda_jackpoll_work(&codec->jackpoll_work.work);
3057 else
3058 snd_hda_jack_report_sync(codec); /* call at the last init point */
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003059 sync_power_up_states(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 return 0;
3061}
Rakesh Ughreja24494d32018-06-01 22:53:56 -05003062EXPORT_SYMBOL_GPL(snd_hda_codec_build_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 * PCM stuff
3066 */
3067static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
3068 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003069 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070{
3071 return 0;
3072}
3073
3074static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
3075 struct hda_codec *codec,
3076 unsigned int stream_tag,
3077 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003078 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079{
3080 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
3081 return 0;
3082}
3083
3084static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
3085 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003086 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087{
Takashi Iwai888afa12008-03-18 09:57:50 +01003088 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 return 0;
3090}
3091
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003092static int set_pcm_default_values(struct hda_codec *codec,
3093 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003095 int err;
3096
Takashi Iwai0ba21762007-04-16 11:29:14 +02003097 /* query support PCM information from the given NID */
3098 if (info->nid && (!info->rates || !info->formats)) {
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003099 err = snd_hda_query_supported_pcm(codec, info->nid,
Takashi Iwai0ba21762007-04-16 11:29:14 +02003100 info->rates ? NULL : &info->rates,
3101 info->formats ? NULL : &info->formats,
3102 info->maxbps ? NULL : &info->maxbps);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003103 if (err < 0)
3104 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 }
3106 if (info->ops.open == NULL)
3107 info->ops.open = hda_pcm_default_open_close;
3108 if (info->ops.close == NULL)
3109 info->ops.close = hda_pcm_default_open_close;
3110 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02003111 if (snd_BUG_ON(!info->nid))
3112 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 info->ops.prepare = hda_pcm_default_prepare;
3114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02003116 if (snd_BUG_ON(!info->nid))
3117 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 info->ops.cleanup = hda_pcm_default_cleanup;
3119 }
3120 return 0;
3121}
3122
Takashi Iwaieb541332010-08-06 13:48:11 +02003123/*
3124 * codec prepare/cleanup entries
3125 */
Takashi Iwai95a962c2014-10-29 16:03:58 +01003126/**
3127 * snd_hda_codec_prepare - Prepare a stream
3128 * @codec: the HDA codec
3129 * @hinfo: PCM information
3130 * @stream: stream tag to assign
3131 * @format: format id to assign
3132 * @substream: PCM substream to assign
3133 *
3134 * Calls the prepare callback set by the codec with the given arguments.
3135 * Clean up the inactive streams when successful.
3136 */
Takashi Iwaieb541332010-08-06 13:48:11 +02003137int snd_hda_codec_prepare(struct hda_codec *codec,
3138 struct hda_pcm_stream *hinfo,
3139 unsigned int stream,
3140 unsigned int format,
3141 struct snd_pcm_substream *substream)
3142{
3143 int ret;
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003144 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwai61ca4102015-02-27 17:57:55 +01003145 if (hinfo->ops.prepare)
3146 ret = hinfo->ops.prepare(hinfo, codec, stream, format,
3147 substream);
3148 else
3149 ret = -ENODEV;
Takashi Iwaieb541332010-08-06 13:48:11 +02003150 if (ret >= 0)
3151 purify_inactive_streams(codec);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003152 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02003153 return ret;
3154}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003155EXPORT_SYMBOL_GPL(snd_hda_codec_prepare);
Takashi Iwaieb541332010-08-06 13:48:11 +02003156
Takashi Iwai95a962c2014-10-29 16:03:58 +01003157/**
Kai Vehmanen95ce82a2020-07-15 20:45:51 +03003158 * snd_hda_codec_cleanup - Clean up stream resources
Takashi Iwai95a962c2014-10-29 16:03:58 +01003159 * @codec: the HDA codec
3160 * @hinfo: PCM information
3161 * @substream: PCM substream
3162 *
3163 * Calls the cleanup callback set by the codec with the given arguments.
3164 */
Takashi Iwaieb541332010-08-06 13:48:11 +02003165void snd_hda_codec_cleanup(struct hda_codec *codec,
3166 struct hda_pcm_stream *hinfo,
3167 struct snd_pcm_substream *substream)
3168{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003169 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwai61ca4102015-02-27 17:57:55 +01003170 if (hinfo->ops.cleanup)
3171 hinfo->ops.cleanup(hinfo, codec, substream);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003172 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02003173}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003174EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup);
Takashi Iwaieb541332010-08-06 13:48:11 +02003175
Takashi Iwaid5191e52009-11-16 14:58:17 +01003176/* global */
Jaroslav Kyselae3303232009-11-10 14:53:02 +01003177const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = {
3178 "Audio", "SPDIF", "HDMI", "Modem"
3179};
3180
Takashi Iwai176d5332008-07-30 15:01:44 +02003181/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003182 * get the empty PCM device number to assign
3183 */
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003184static int get_empty_pcm_device(struct hda_bus *bus, unsigned int type)
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003185{
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003186 /* audio device indices; not linear to keep compatibility */
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003187 /* assigned to static slots up to dev#10; if more needed, assign
3188 * the later slot dynamically (when CONFIG_SND_DYNAMIC_MINORS=y)
3189 */
Takashi Iwaibf823262020-01-05 15:47:24 +01003190 static const int audio_idx[HDA_PCM_NTYPES][5] = {
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003191 [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 },
3192 [HDA_PCM_TYPE_SPDIF] = { 1, -1 },
Wu Fengguang92608ba2009-10-30 11:40:03 +01003193 [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 },
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003194 [HDA_PCM_TYPE_MODEM] = { 6, -1 },
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003195 };
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003196 int i;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003197
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003198 if (type >= HDA_PCM_NTYPES) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01003199 dev_err(bus->card->dev, "Invalid PCM type %d\n", type);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003200 return -EINVAL;
3201 }
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003202
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003203 for (i = 0; audio_idx[type][i] >= 0; i++) {
3204#ifndef CONFIG_SND_DYNAMIC_MINORS
3205 if (audio_idx[type][i] >= 8)
3206 break;
3207#endif
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003208 if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits))
3209 return audio_idx[type][i];
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003210 }
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003211
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003212#ifdef CONFIG_SND_DYNAMIC_MINORS
Takashi Iwai01b65bf2011-11-24 14:31:46 +01003213 /* non-fixed slots starting from 10 */
3214 for (i = 10; i < 32; i++) {
3215 if (!test_and_set_bit(i, bus->pcm_dev_bits))
3216 return i;
3217 }
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003218#endif
Takashi Iwai01b65bf2011-11-24 14:31:46 +01003219
Takashi Iwai4e76a882014-02-25 12:21:03 +01003220 dev_warn(bus->card->dev, "Too many %s devices\n",
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003221 snd_hda_pcm_type_name[type]);
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003222#ifndef CONFIG_SND_DYNAMIC_MINORS
Takashi Iwai4e76a882014-02-25 12:21:03 +01003223 dev_warn(bus->card->dev,
3224 "Consider building the kernel with CONFIG_SND_DYNAMIC_MINORS=y\n");
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003225#endif
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003226 return -EAGAIN;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003227}
3228
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003229/* call build_pcms ops of the given codec and set up the default parameters */
3230int snd_hda_codec_parse_pcms(struct hda_codec *codec)
Takashi Iwai176d5332008-07-30 15:01:44 +02003231{
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003232 struct hda_pcm *cpcm;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003233 int err;
Takashi Iwai176d5332008-07-30 15:01:44 +02003234
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003235 if (!list_empty(&codec->pcm_list_head))
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003236 return 0; /* already parsed */
3237
3238 if (!codec->patch_ops.build_pcms)
3239 return 0;
3240
3241 err = codec->patch_ops.build_pcms(codec);
3242 if (err < 0) {
3243 codec_err(codec, "cannot build PCMs for #%d (error %d)\n",
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003244 codec->core.addr, err);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003245 return err;
3246 }
3247
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003248 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003249 int stream;
3250
3251 for (stream = 0; stream < 2; stream++) {
3252 struct hda_pcm_stream *info = &cpcm->stream[stream];
3253
3254 if (!info->substreams)
3255 continue;
Takashi Iwai176d5332008-07-30 15:01:44 +02003256 err = set_pcm_default_values(codec, info);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003257 if (err < 0) {
3258 codec_warn(codec,
3259 "fail to setup default for PCM %s\n",
3260 cpcm->name);
Takashi Iwai176d5332008-07-30 15:01:44 +02003261 return err;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003262 }
Takashi Iwai176d5332008-07-30 15:01:44 +02003263 }
3264 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003265
3266 return 0;
Takashi Iwai176d5332008-07-30 15:01:44 +02003267}
Rakesh Ughreja24494d32018-06-01 22:53:56 -05003268EXPORT_SYMBOL_GPL(snd_hda_codec_parse_pcms);
Takashi Iwai176d5332008-07-30 15:01:44 +02003269
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003270/* assign all PCMs of the given codec */
3271int snd_hda_codec_build_pcms(struct hda_codec *codec)
3272{
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003273 struct hda_bus *bus = codec->bus;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003274 struct hda_pcm *cpcm;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003275 int dev, err;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003276
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003277 err = snd_hda_codec_parse_pcms(codec);
Takashi Iwaid2896192015-10-20 16:23:55 +02003278 if (err < 0)
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003279 return err;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003280
3281 /* attach a new PCM streams */
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003282 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003283 if (cpcm->pcm)
3284 continue; /* already attached */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003285 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
Takashi Iwai41b5b012009-01-20 18:21:23 +01003286 continue; /* no substreams assigned */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003287
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003288 dev = get_empty_pcm_device(bus, cpcm->pcm_type);
Wang YanQing1f7f51a2017-09-03 21:18:49 +08003289 if (dev < 0) {
3290 cpcm->device = SNDRV_PCM_INVALID_DEVICE;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003291 continue; /* no fatal error */
Wang YanQing1f7f51a2017-09-03 21:18:49 +08003292 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003293 cpcm->device = dev;
Takashi Iwai0a505752015-04-16 23:25:02 +02003294 err = snd_hda_attach_pcm_stream(bus, codec, cpcm);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003295 if (err < 0) {
3296 codec_err(codec,
3297 "cannot attach PCM stream %d for codec #%d\n",
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003298 dev, codec->core.addr);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003299 continue; /* no fatal error */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003300 }
3301 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003302
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003303 return 0;
3304}
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 * snd_hda_add_new_ctls - create controls from the array
3308 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003309 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 *
3311 * This helper function creates and add new controls in the given array.
3312 * The array must be terminated with an empty entry as terminator.
3313 *
3314 * Returns 0 if successful, or a negative error code.
3315 */
Takashi Iwai031024e2011-05-02 11:29:30 +02003316int snd_hda_add_new_ctls(struct hda_codec *codec,
3317 const struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318{
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01003319 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320
3321 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003322 struct snd_kcontrol *kctl;
Takashi Iwai1afe2062010-12-23 10:17:52 +01003323 int addr = 0, idx = 0;
Takashi Iwaiebd836e2018-07-25 23:00:51 +02003324 if (knew->iface == (__force snd_ctl_elem_iface_t)-1)
3325 continue; /* skip this codec private value */
Takashi Iwai1afe2062010-12-23 10:17:52 +01003326 for (;;) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003327 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003328 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01003329 return -ENOMEM;
Takashi Iwai1afe2062010-12-23 10:17:52 +01003330 if (addr > 0)
3331 kctl->id.device = addr;
3332 if (idx > 0)
3333 kctl->id.index = idx;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01003334 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003335 if (!err)
3336 break;
3337 /* try first with another device index corresponding to
3338 * the codec addr; if it still fails (or it's the
3339 * primary codec), then try another control index
3340 */
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003341 if (!addr && codec->core.addr)
3342 addr = codec->core.addr;
Takashi Iwai1afe2062010-12-23 10:17:52 +01003343 else if (!idx && !knew->index) {
3344 idx = find_empty_mixer_ctl_idx(codec,
Takashi Iwaidcda5802012-10-12 17:24:51 +02003345 knew->name, 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003346 if (idx <= 0)
3347 return err;
3348 } else
Takashi Iwai54d17402005-11-21 16:33:22 +01003349 return err;
3350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 }
3352 return 0;
3353}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003354EXPORT_SYMBOL_GPL(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355
Takashi Iwai83012a72012-08-24 18:38:08 +02003356#ifdef CONFIG_PM
Takashi Iwaibb573922015-02-20 09:26:04 +01003357static void codec_set_power_save(struct hda_codec *codec, int delay)
Takashi Iwaicc72da72015-02-19 16:00:22 +01003358{
3359 struct device *dev = hda_codec_dev(codec);
Takashi Iwaicc72da72015-02-19 16:00:22 +01003360
Lu, Han2377c3c2015-06-09 16:50:38 +08003361 if (delay == 0 && codec->auto_runtime_pm)
3362 delay = 3000;
3363
Takashi Iwaicc72da72015-02-19 16:00:22 +01003364 if (delay > 0) {
3365 pm_runtime_set_autosuspend_delay(dev, delay);
3366 pm_runtime_use_autosuspend(dev);
3367 pm_runtime_allow(dev);
3368 if (!pm_runtime_suspended(dev))
3369 pm_runtime_mark_last_busy(dev);
3370 } else {
3371 pm_runtime_dont_use_autosuspend(dev);
3372 pm_runtime_forbid(dev);
3373 }
3374}
Takashi Iwaibb573922015-02-20 09:26:04 +01003375
3376/**
3377 * snd_hda_set_power_save - reprogram autosuspend for the given delay
3378 * @bus: HD-audio bus
3379 * @delay: autosuspend delay in msec, 0 = off
3380 *
3381 * Synchronize the runtime PM autosuspend state from the power_save option.
3382 */
3383void snd_hda_set_power_save(struct hda_bus *bus, int delay)
3384{
3385 struct hda_codec *c;
3386
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003387 list_for_each_codec(c, bus)
Takashi Iwaibb573922015-02-20 09:26:04 +01003388 codec_set_power_save(c, delay);
3389}
3390EXPORT_SYMBOL_GPL(snd_hda_set_power_save);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003391
Takashi Iwaid5191e52009-11-16 14:58:17 +01003392/**
3393 * snd_hda_check_amp_list_power - Check the amp list and update the power
3394 * @codec: HD-audio codec
3395 * @check: the object containing an AMP list and the status
3396 * @nid: NID to check / update
3397 *
3398 * Check whether the given NID is in the amp list. If it's in the list,
Randy Dunlapc7fabbc2020-08-05 19:19:26 -07003399 * check the current AMP status, and update the power-status according
Takashi Iwaid5191e52009-11-16 14:58:17 +01003400 * to the mute status.
3401 *
3402 * This function is supposed to be set or called from the check_power_status
3403 * patch ops.
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003404 */
Takashi Iwaicb53c622007-08-10 17:21:45 +02003405int snd_hda_check_amp_list_power(struct hda_codec *codec,
3406 struct hda_loopback_check *check,
3407 hda_nid_t nid)
3408{
Takashi Iwai031024e2011-05-02 11:29:30 +02003409 const struct hda_amp_list *p;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003410 int ch, v;
3411
3412 if (!check->amplist)
3413 return 0;
3414 for (p = check->amplist; p->nid; p++) {
3415 if (p->nid == nid)
3416 break;
3417 }
3418 if (!p->nid)
3419 return 0; /* nothing changed */
3420
3421 for (p = check->amplist; p->nid; p++) {
3422 for (ch = 0; ch < 2; ch++) {
3423 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
3424 p->idx);
3425 if (!(v & HDA_AMP_MUTE) && v > 0) {
3426 if (!check->power_on) {
3427 check->power_on = 1;
Takashi Iwai664c7152015-04-08 11:43:14 +02003428 snd_hda_power_up_pm(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003429 }
3430 return 1;
3431 }
3432 }
3433 }
3434 if (check->power_on) {
3435 check->power_on = 0;
Takashi Iwai664c7152015-04-08 11:43:14 +02003436 snd_hda_power_down_pm(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003437 }
3438 return 0;
3439}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003440EXPORT_SYMBOL_GPL(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003441#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003443/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 * input MUX helper
3445 */
Takashi Iwaid5191e52009-11-16 14:58:17 +01003446
3447/**
Pierre-Louis Bossart3531ba22021-03-01 11:46:17 -06003448 * snd_hda_input_mux_info - Info callback helper for the input-mux enum
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003449 * @imux: imux helper object
3450 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01003451 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003452int snd_hda_input_mux_info(const struct hda_input_mux *imux,
3453 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454{
3455 unsigned int index;
3456
3457 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3458 uinfo->count = 1;
3459 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003460 if (!imux->num_items)
3461 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 index = uinfo->value.enumerated.item;
3463 if (index >= imux->num_items)
3464 index = imux->num_items - 1;
3465 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
3466 return 0;
3467}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003468EXPORT_SYMBOL_GPL(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469
Takashi Iwaid5191e52009-11-16 14:58:17 +01003470/**
Pierre-Louis Bossart3531ba22021-03-01 11:46:17 -06003471 * snd_hda_input_mux_put - Put callback helper for the input-mux enum
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003472 * @codec: the HDA codec
3473 * @imux: imux helper object
3474 * @ucontrol: pointer to get/store the data
3475 * @nid: input mux NID
3476 * @cur_val: pointer to get/store the current imux value
Takashi Iwaid5191e52009-11-16 14:58:17 +01003477 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003478int snd_hda_input_mux_put(struct hda_codec *codec,
3479 const struct hda_input_mux *imux,
3480 struct snd_ctl_elem_value *ucontrol,
3481 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 unsigned int *cur_val)
3483{
3484 unsigned int idx;
3485
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003486 if (!imux->num_items)
3487 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 idx = ucontrol->value.enumerated.item[0];
3489 if (idx >= imux->num_items)
3490 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003491 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003493 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
3494 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 *cur_val = idx;
3496 return 1;
3497}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003498EXPORT_SYMBOL_GPL(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499
3500
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003501/**
3502 * snd_hda_enum_helper_info - Helper for simple enum ctls
3503 * @kcontrol: ctl element
3504 * @uinfo: pointer to get/store the data
3505 * @num_items: number of enum items
3506 * @texts: enum item string array
3507 *
Takashi Iwaidda415d2012-11-30 18:34:38 +01003508 * process kcontrol info callback of a simple string enum array
3509 * when @num_items is 0 or @texts is NULL, assume a boolean enum array
3510 */
3511int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol,
3512 struct snd_ctl_elem_info *uinfo,
3513 int num_items, const char * const *texts)
3514{
3515 static const char * const texts_default[] = {
3516 "Disabled", "Enabled"
3517 };
3518
3519 if (!texts || !num_items) {
3520 num_items = 2;
3521 texts = texts_default;
3522 }
3523
Takashi Iwai3ff72212014-10-20 18:17:28 +02003524 return snd_ctl_enum_info(uinfo, 1, num_items, texts);
Takashi Iwaidda415d2012-11-30 18:34:38 +01003525}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003526EXPORT_SYMBOL_GPL(snd_hda_enum_helper_info);
Takashi Iwaidda415d2012-11-30 18:34:38 +01003527
3528/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 * Multi-channel / digital-out PCM helper functions
3530 */
3531
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003532/* setup SPDIF output stream */
3533static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
3534 unsigned int stream_tag, unsigned int format)
3535{
Laurence Darby3bef1c32012-11-03 17:00:06 +00003536 struct hda_spdif_out *spdif;
3537 unsigned int curr_fmt;
3538 bool reset;
Stephen Warren7c935972011-06-01 11:14:17 -06003539
Laurence Darby3bef1c32012-11-03 17:00:06 +00003540 spdif = snd_hda_spdif_out_of_nid(codec, nid);
Libin Yang960a5812016-06-16 11:13:25 +08003541 /* Add sanity check to pass klockwork check.
3542 * This should never happen.
3543 */
3544 if (WARN_ON(spdif == NULL))
3545 return;
3546
Laurence Darby3bef1c32012-11-03 17:00:06 +00003547 curr_fmt = snd_hda_codec_read(codec, nid, 0,
3548 AC_VERB_GET_STREAM_FORMAT, 0);
3549 reset = codec->spdif_status_reset &&
3550 (spdif->ctls & AC_DIG1_ENABLE) &&
3551 curr_fmt != format;
3552
3553 /* turn off SPDIF if needed; otherwise the IEC958 bits won't be
3554 updated */
3555 if (reset)
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003556 set_dig_out_convert(codec, nid,
Stephen Warren7c935972011-06-01 11:14:17 -06003557 spdif->ctls & ~AC_DIG1_ENABLE & 0xff,
Takashi Iwai2f728532008-09-25 16:32:41 +02003558 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003559 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02003560 if (codec->follower_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02003561 const hda_nid_t *d;
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02003562 for (d = codec->follower_dig_outs; *d; d++)
Takashi Iwai2f728532008-09-25 16:32:41 +02003563 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
3564 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003565 }
Takashi Iwai2f728532008-09-25 16:32:41 +02003566 /* turn on again (if needed) */
Laurence Darby3bef1c32012-11-03 17:00:06 +00003567 if (reset)
Takashi Iwai2f728532008-09-25 16:32:41 +02003568 set_dig_out_convert(codec, nid,
Stephen Warren7c935972011-06-01 11:14:17 -06003569 spdif->ctls & 0xff, -1);
Takashi Iwai2f728532008-09-25 16:32:41 +02003570}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003571
Takashi Iwai2f728532008-09-25 16:32:41 +02003572static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
3573{
3574 snd_hda_codec_cleanup_stream(codec, nid);
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02003575 if (codec->follower_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02003576 const hda_nid_t *d;
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02003577 for (d = codec->follower_dig_outs; *d; d++)
Takashi Iwai2f728532008-09-25 16:32:41 +02003578 snd_hda_codec_cleanup_stream(codec, *d);
3579 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003580}
3581
Takashi Iwaid5191e52009-11-16 14:58:17 +01003582/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01003583 * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003584 * @codec: the HDA codec
3585 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003587int snd_hda_multi_out_dig_open(struct hda_codec *codec,
3588 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589{
Ingo Molnar62932df2006-01-16 16:34:20 +01003590 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02003591 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
3592 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02003593 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01003595 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 return 0;
3597}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003598EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599
Takashi Iwaid5191e52009-11-16 14:58:17 +01003600/**
3601 * snd_hda_multi_out_dig_prepare - prepare the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003602 * @codec: the HDA codec
3603 * @mout: hda_multi_out object
3604 * @stream_tag: stream tag to assign
3605 * @format: format id to assign
3606 * @substream: PCM substream to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01003607 */
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003608int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
3609 struct hda_multi_out *mout,
3610 unsigned int stream_tag,
3611 unsigned int format,
3612 struct snd_pcm_substream *substream)
3613{
3614 mutex_lock(&codec->spdif_mutex);
3615 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
3616 mutex_unlock(&codec->spdif_mutex);
3617 return 0;
3618}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003619EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003620
Takashi Iwaid5191e52009-11-16 14:58:17 +01003621/**
3622 * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003623 * @codec: the HDA codec
3624 * @mout: hda_multi_out object
Takashi Iwaid5191e52009-11-16 14:58:17 +01003625 */
Takashi Iwai9411e212009-02-13 11:32:28 +01003626int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
3627 struct hda_multi_out *mout)
3628{
3629 mutex_lock(&codec->spdif_mutex);
3630 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3631 mutex_unlock(&codec->spdif_mutex);
3632 return 0;
3633}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003634EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_cleanup);
Takashi Iwai9411e212009-02-13 11:32:28 +01003635
Takashi Iwaid5191e52009-11-16 14:58:17 +01003636/**
3637 * snd_hda_multi_out_dig_close - release the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003638 * @codec: the HDA codec
3639 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003641int snd_hda_multi_out_dig_close(struct hda_codec *codec,
3642 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643{
Ingo Molnar62932df2006-01-16 16:34:20 +01003644 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01003646 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 return 0;
3648}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003649EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650
Takashi Iwaid5191e52009-11-16 14:58:17 +01003651/**
3652 * snd_hda_multi_out_analog_open - open analog outputs
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003653 * @codec: the HDA codec
3654 * @mout: hda_multi_out object
3655 * @substream: PCM substream to assign
3656 * @hinfo: PCM information to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01003657 *
3658 * Open analog outputs and set up the hw-constraints.
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02003659 * If the digital outputs can be opened as follower, open the digital
Takashi Iwaid5191e52009-11-16 14:58:17 +01003660 * outputs, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003662int snd_hda_multi_out_analog_open(struct hda_codec *codec,
3663 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01003664 struct snd_pcm_substream *substream,
3665 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666{
Takashi Iwai9a081602008-02-12 18:37:26 +01003667 struct snd_pcm_runtime *runtime = substream->runtime;
3668 runtime->hw.channels_max = mout->max_channels;
3669 if (mout->dig_out_nid) {
3670 if (!mout->analog_rates) {
3671 mout->analog_rates = hinfo->rates;
3672 mout->analog_formats = hinfo->formats;
3673 mout->analog_maxbps = hinfo->maxbps;
3674 } else {
3675 runtime->hw.rates = mout->analog_rates;
3676 runtime->hw.formats = mout->analog_formats;
3677 hinfo->maxbps = mout->analog_maxbps;
3678 }
3679 if (!mout->spdif_rates) {
3680 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
3681 &mout->spdif_rates,
3682 &mout->spdif_formats,
3683 &mout->spdif_maxbps);
3684 }
3685 mutex_lock(&codec->spdif_mutex);
3686 if (mout->share_spdif) {
Takashi Iwai022b4662009-07-03 23:03:30 +02003687 if ((runtime->hw.rates & mout->spdif_rates) &&
3688 (runtime->hw.formats & mout->spdif_formats)) {
3689 runtime->hw.rates &= mout->spdif_rates;
3690 runtime->hw.formats &= mout->spdif_formats;
3691 if (mout->spdif_maxbps < hinfo->maxbps)
3692 hinfo->maxbps = mout->spdif_maxbps;
3693 } else {
3694 mout->share_spdif = 0;
3695 /* FIXME: need notify? */
3696 }
Takashi Iwai9a081602008-02-12 18:37:26 +01003697 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02003698 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 return snd_pcm_hw_constraint_step(substream->runtime, 0,
3701 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
3702}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003703EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
Takashi Iwaid5191e52009-11-16 14:58:17 +01003705/**
3706 * snd_hda_multi_out_analog_prepare - Preapre the analog outputs.
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003707 * @codec: the HDA codec
3708 * @mout: hda_multi_out object
3709 * @stream_tag: stream tag to assign
3710 * @format: format id to assign
3711 * @substream: PCM substream to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01003712 *
3713 * Set up the i/o for analog out.
3714 * When the digital out is available, copy the front out to digital out, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003716int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
3717 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 unsigned int stream_tag,
3719 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003720 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721{
Takashi Iwaidda14412011-05-02 11:29:30 +02003722 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 int chs = substream->runtime->channels;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003724 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 int i;
3726
Ingo Molnar62932df2006-01-16 16:34:20 +01003727 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003728 spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid);
Takashi Iwai9a081602008-02-12 18:37:26 +01003729 if (mout->dig_out_nid && mout->share_spdif &&
3730 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Libin Yang960a5812016-06-16 11:13:25 +08003731 if (chs == 2 && spdif != NULL &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02003732 snd_hda_is_supported_format(codec, mout->dig_out_nid,
3733 format) &&
Stephen Warren7c935972011-06-01 11:14:17 -06003734 !(spdif->status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003736 setup_dig_out_stream(codec, mout->dig_out_nid,
3737 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 } else {
3739 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02003740 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 }
3742 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003743 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744
3745 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003746 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
3747 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003748 if (!mout->no_share_stream &&
3749 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003751 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
3752 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003753 /* extra outputs copied from front */
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02003754 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
3755 if (!mout->no_share_stream && mout->hp_out_nid[i])
3756 snd_hda_codec_setup_stream(codec,
3757 mout->hp_out_nid[i],
3758 stream_tag, 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003759
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 /* surrounds */
3761 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02003762 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003763 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3764 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003765 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003766 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3767 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 }
David Henningssoncd4035e2013-10-10 09:01:25 +02003769
3770 /* extra surrounds */
3771 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) {
3772 int ch = 0;
3773 if (!mout->extra_out_nid[i])
3774 break;
3775 if (chs >= (i + 1) * 2)
3776 ch = i * 2;
3777 else if (!mout->no_share_stream)
3778 break;
3779 snd_hda_codec_setup_stream(codec, mout->extra_out_nid[i],
3780 stream_tag, ch, format);
3781 }
3782
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 return 0;
3784}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003785EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
Takashi Iwaid5191e52009-11-16 14:58:17 +01003787/**
3788 * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003789 * @codec: the HDA codec
3790 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003792int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
3793 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794{
Takashi Iwaidda14412011-05-02 11:29:30 +02003795 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 int i;
3797
3798 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01003799 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01003801 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02003802 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
3803 if (mout->hp_out_nid[i])
3804 snd_hda_codec_cleanup_stream(codec,
3805 mout->hp_out_nid[i]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003806 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
3807 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01003808 snd_hda_codec_cleanup_stream(codec,
3809 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01003810 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02003812 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 mout->dig_out_used = 0;
3814 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003815 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 return 0;
3817}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003818EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819
Takashi Iwai47408602012-04-20 13:06:53 +02003820/**
3821 * snd_hda_get_default_vref - Get the default (mic) VREF pin bits
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003822 * @codec: the HDA codec
3823 * @pin: referred pin NID
Takashi Iwai47408602012-04-20 13:06:53 +02003824 *
3825 * Guess the suitable VREF pin bits to be set as the pin-control value.
3826 * Note: the function doesn't set the AC_PINCTL_IN_EN bit.
3827 */
3828unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin)
3829{
3830 unsigned int pincap;
3831 unsigned int oldval;
3832 oldval = snd_hda_codec_read(codec, pin, 0,
3833 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3834 pincap = snd_hda_query_pin_caps(codec, pin);
3835 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
3836 /* Exception: if the default pin setup is vref50, we give it priority */
3837 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
3838 return AC_PINCTL_VREF_80;
3839 else if (pincap & AC_PINCAP_VREF_50)
3840 return AC_PINCTL_VREF_50;
3841 else if (pincap & AC_PINCAP_VREF_100)
3842 return AC_PINCTL_VREF_100;
3843 else if (pincap & AC_PINCAP_VREF_GRD)
3844 return AC_PINCTL_VREF_GRD;
3845 return AC_PINCTL_VREF_HIZ;
3846}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003847EXPORT_SYMBOL_GPL(snd_hda_get_default_vref);
Takashi Iwai47408602012-04-20 13:06:53 +02003848
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003849/**
3850 * snd_hda_correct_pin_ctl - correct the pin ctl value for matching with the pin cap
3851 * @codec: the HDA codec
3852 * @pin: referred pin NID
3853 * @val: pin ctl value to audit
3854 */
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01003855unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec,
3856 hda_nid_t pin, unsigned int val)
3857{
Takashi Iwaibf823262020-01-05 15:47:24 +01003858 static const unsigned int cap_lists[][2] = {
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01003859 { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 },
3860 { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 },
3861 { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 },
3862 { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD },
3863 };
3864 unsigned int cap;
3865
3866 if (!val)
3867 return 0;
3868 cap = snd_hda_query_pin_caps(codec, pin);
3869 if (!cap)
3870 return val; /* don't know what to do... */
3871
3872 if (val & AC_PINCTL_OUT_EN) {
3873 if (!(cap & AC_PINCAP_OUT))
3874 val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3875 else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV))
3876 val &= ~AC_PINCTL_HP_EN;
3877 }
3878
3879 if (val & AC_PINCTL_IN_EN) {
3880 if (!(cap & AC_PINCAP_IN))
3881 val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN);
3882 else {
3883 unsigned int vcap, vref;
3884 int i;
3885 vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
3886 vref = val & AC_PINCTL_VREFEN;
3887 for (i = 0; i < ARRAY_SIZE(cap_lists); i++) {
3888 if (vref == cap_lists[i][0] &&
3889 !(vcap & cap_lists[i][1])) {
3890 if (i == ARRAY_SIZE(cap_lists) - 1)
3891 vref = AC_PINCTL_VREF_HIZ;
3892 else
3893 vref = cap_lists[i + 1][0];
3894 }
3895 }
3896 val &= ~AC_PINCTL_VREFEN;
3897 val |= vref;
3898 }
3899 }
3900
3901 return val;
3902}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003903EXPORT_SYMBOL_GPL(snd_hda_correct_pin_ctl);
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01003904
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003905/**
Pierre-Louis Bossart3531ba22021-03-01 11:46:17 -06003906 * _snd_hda_set_pin_ctl - Helper to set pin ctl value
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003907 * @codec: the HDA codec
3908 * @pin: referred pin NID
3909 * @val: pin control value to set
3910 * @cached: access over codec pinctl cache or direct write
3911 *
3912 * This function is a helper to set a pin ctl value more safely.
3913 * It corrects the pin ctl value via snd_hda_correct_pin_ctl(), stores the
3914 * value in pin target array via snd_hda_codec_set_pin_target(), then
Takashi Iwai401caff2018-06-27 11:43:09 +02003915 * actually writes the value via either snd_hda_codec_write_cache() or
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003916 * snd_hda_codec_write() depending on @cached flag.
3917 */
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003918int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin,
3919 unsigned int val, bool cached)
3920{
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01003921 val = snd_hda_correct_pin_ctl(codec, pin, val);
Takashi Iwaid7fdc002013-01-10 08:38:04 +01003922 snd_hda_codec_set_pin_target(codec, pin, val);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003923 if (cached)
Takashi Iwai401caff2018-06-27 11:43:09 +02003924 return snd_hda_codec_write_cache(codec, pin, 0,
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003925 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
3926 else
3927 return snd_hda_codec_write(codec, pin, 0,
3928 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
3929}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003930EXPORT_SYMBOL_GPL(_snd_hda_set_pin_ctl);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003931
Takashi Iwai990061c2010-09-09 22:08:44 +02003932/**
3933 * snd_hda_add_imux_item - Add an item to input_mux
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003934 * @codec: the HDA codec
3935 * @imux: imux helper object
3936 * @label: the name of imux item to assign
3937 * @index: index number of imux item to assign
3938 * @type_idx: pointer to store the resultant label index
Takashi Iwai990061c2010-09-09 22:08:44 +02003939 *
3940 * When the same label is used already in the existing items, the number
3941 * suffix is appended to the label. This label index number is stored
3942 * to type_idx when non-NULL pointer is given.
3943 */
Takashi Iwai6194b992014-06-06 18:12:16 +02003944int snd_hda_add_imux_item(struct hda_codec *codec,
3945 struct hda_input_mux *imux, const char *label,
Takashi Iwai10a20af2010-09-09 16:28:02 +02003946 int index, int *type_idx)
3947{
3948 int i, label_idx = 0;
3949 if (imux->num_items >= HDA_MAX_NUM_INPUTS) {
Takashi Iwai6194b992014-06-06 18:12:16 +02003950 codec_err(codec, "hda_codec: Too many imux items!\n");
Takashi Iwai10a20af2010-09-09 16:28:02 +02003951 return -EINVAL;
3952 }
3953 for (i = 0; i < imux->num_items; i++) {
3954 if (!strncmp(label, imux->items[i].label, strlen(label)))
3955 label_idx++;
3956 }
3957 if (type_idx)
3958 *type_idx = label_idx;
3959 if (label_idx > 0)
3960 snprintf(imux->items[imux->num_items].label,
3961 sizeof(imux->items[imux->num_items].label),
3962 "%s %d", label, label_idx);
3963 else
Joe Perches75b1a8f2021-01-04 09:17:34 -08003964 strscpy(imux->items[imux->num_items].label, label,
Takashi Iwai10a20af2010-09-09 16:28:02 +02003965 sizeof(imux->items[imux->num_items].label));
3966 imux->items[imux->num_items].index = index;
3967 imux->num_items++;
3968 return 0;
3969}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003970EXPORT_SYMBOL_GPL(snd_hda_add_imux_item);
Takashi Iwaid7b1ae92010-08-30 13:00:16 +02003971
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972/**
Takashi Iwai0a505752015-04-16 23:25:02 +02003973 * snd_hda_bus_reset_codecs - Reset the bus
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003974 * @bus: HD-audio bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 */
Takashi Iwai0a505752015-04-16 23:25:02 +02003976void snd_hda_bus_reset_codecs(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003978 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003980 list_for_each_codec(codec, bus) {
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003981 /* FIXME: maybe a better way needed for forced reset */
Takashi Iwai16037642018-08-30 15:13:16 +02003982 if (current_work() != &codec->jackpoll_work.work)
3983 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003984#ifdef CONFIG_PM
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05003985 if (hda_codec_is_power_on(codec)) {
Takashi Iwaicc72da72015-02-19 16:00:22 +01003986 hda_call_codec_suspend(codec);
Mengdong Lin12edb892013-11-26 23:32:23 -05003987 hda_call_codec_resume(codec);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003988 }
3989#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991}
Takashi Iwaib2e18592008-07-30 15:01:44 +02003992
Takashi Iwaid5191e52009-11-16 14:58:17 +01003993/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01003994 * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer
3995 * @pcm: PCM caps bits
3996 * @buf: the string buffer to write
3997 * @buflen: the max buffer length
3998 *
3999 * used by hda_proc.c and hda_eld.c
4000 */
Takashi Iwaib2022262008-11-21 21:24:03 +01004001void snd_print_pcm_bits(int pcm, char *buf, int buflen)
4002{
Takashi Iwaibf823262020-01-05 15:47:24 +01004003 static const unsigned int bits[] = { 8, 16, 20, 24, 32 };
Takashi Iwaib2022262008-11-21 21:24:03 +01004004 int i, j;
4005
4006 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
4007 if (pcm & (AC_SUPPCM_BITS_8 << i))
Takashi Iwai44eeb082020-02-18 10:14:09 +01004008 j += scnprintf(buf + j, buflen - j, " %d", bits[i]);
Takashi Iwaib2022262008-11-21 21:24:03 +01004009
4010 buf[j] = '\0'; /* necessary when j == 0 */
4011}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004012EXPORT_SYMBOL_GPL(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01004013
4014MODULE_DESCRIPTION("HDA codec core");
4015MODULE_LICENSE("GPL");