blob: 7a717e15115697987adb430568a626f69963346b [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 Iwai9a6246f2015-02-27 18:17:28 +0100794}
Kai Vehmanencc1d0cd2020-07-15 20:45:50 +0300795EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup_for_unbind);
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100796
Takashi Iwaid8193872012-08-31 07:54:38 -0700797static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwaibb6ac722009-03-13 09:02:42 +0100798 unsigned int power_state);
799
Takashi Iwai029d92c2018-12-08 17:31:49 +0100800/* enable/disable display power per codec */
Imre Deak30994062021-06-23 16:46:01 +0300801void snd_hda_codec_display_power(struct hda_codec *codec, bool enable)
Takashi Iwai029d92c2018-12-08 17:31:49 +0100802{
803 if (codec->display_power_control)
804 snd_hdac_display_power(&codec->bus->core, codec->addr, enable);
805}
806
Takashi Iwaic4c25332015-03-03 17:22:12 +0100807/* also called from hda_bind.c */
808void snd_hda_codec_register(struct hda_codec *codec)
809{
810 if (codec->registered)
811 return;
812 if (device_is_registered(hda_codec_dev(codec))) {
Imre Deak30994062021-06-23 16:46:01 +0300813 snd_hda_codec_display_power(codec, true);
Takashi Iwaic4c25332015-03-03 17:22:12 +0100814 pm_runtime_enable(hda_codec_dev(codec));
815 /* it was powered up in snd_hda_codec_new(), now all done */
816 snd_hda_power_down(codec);
817 codec->registered = 1;
818 }
819}
820
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100821static int snd_hda_codec_dev_register(struct snd_device *device)
822{
Takashi Iwaic4c25332015-03-03 17:22:12 +0100823 snd_hda_codec_register(device->device_data);
Takashi Iwaid604b392014-02-28 13:42:09 +0100824 return 0;
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100825}
826
Takashi Iwai2565c892014-02-19 11:41:09 +0100827static int snd_hda_codec_dev_free(struct snd_device *device)
828{
Takashi Iwaid56db742015-02-27 23:25:35 +0100829 struct hda_codec *codec = device->device_data;
830
831 codec->in_freeing = 1;
Bard liao4d95c512019-04-28 04:53:39 +0800832 /*
833 * snd_hda_codec_device_new() is used by legacy HDA and ASoC driver.
834 * We can't unregister ASoC device since it will be unregistered in
835 * snd_hdac_ext_bus_device_remove().
836 */
837 if (codec->core.type == HDA_DEV_LEGACY)
838 snd_hdac_device_unregister(&codec->core);
Imre Deak30994062021-06-23 16:46:01 +0300839 snd_hda_codec_display_power(codec, false);
Ranjani Sridharand6947bb2019-05-31 09:01:37 -0700840
841 /*
842 * In the case of ASoC HD-audio bus, the device refcount is released in
843 * snd_hdac_ext_bus_device_remove() explicitly.
844 */
845 if (codec->core.type == HDA_DEV_LEGACY)
846 put_device(hda_codec_dev(codec));
847
Takashi Iwai2565c892014-02-19 11:41:09 +0100848 return 0;
849}
850
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100851static void snd_hda_codec_dev_release(struct device *dev)
852{
Takashi Iwaid56db742015-02-27 23:25:35 +0100853 struct hda_codec *codec = dev_to_hda_codec(dev);
854
855 free_init_pincfgs(codec);
Takashi Iwai7639a062015-03-03 10:07:24 +0100856 snd_hdac_device_exit(&codec->core);
Takashi Iwaid56db742015-02-27 23:25:35 +0100857 snd_hda_sysfs_clear(codec);
Takashi Iwaid56db742015-02-27 23:25:35 +0100858 kfree(codec->modelname);
859 kfree(codec->wcaps);
Ranjani Sridharanef9bec22019-06-26 00:04:50 -0700860
861 /*
862 * In the case of ASoC HD-audio, hda_codec is device managed.
863 * It will be freed when the ASoC device is removed.
864 */
865 if (codec->core.type == HDA_DEV_LEGACY)
866 kfree(codec);
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100867}
868
Rakesh Ughreja24494d32018-06-01 22:53:56 -0500869#define DEV_NAME_LEN 31
870
871static int snd_hda_codec_device_init(struct hda_bus *bus, struct snd_card *card,
872 unsigned int codec_addr, struct hda_codec **codecp)
873{
874 char name[DEV_NAME_LEN];
875 struct hda_codec *codec;
876 int err;
877
878 dev_dbg(card->dev, "%s: entry\n", __func__);
879
880 if (snd_BUG_ON(!bus))
881 return -EINVAL;
882 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
883 return -EINVAL;
884
885 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
886 if (!codec)
887 return -ENOMEM;
888
889 sprintf(name, "hdaudioC%dD%d", card->number, codec_addr);
890 err = snd_hdac_device_init(&codec->core, &bus->core, name, codec_addr);
891 if (err < 0) {
892 kfree(codec);
893 return err;
894 }
895
896 codec->core.type = HDA_DEV_LEGACY;
897 *codecp = codec;
898
899 return err;
900}
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902/**
903 * snd_hda_codec_new - create a HDA codec
904 * @bus: the bus to assign
Pierre-Louis Bossart4f5c2652020-01-13 15:14:04 -0600905 * @card: card for this codec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 * @codec_addr: the codec address
907 * @codecp: the pointer to store the generated codec
908 *
909 * Returns 0 if successful, or a negative error code.
910 */
Takashi Iwai6efdd852015-02-27 16:09:22 +0100911int snd_hda_codec_new(struct hda_bus *bus, struct snd_card *card,
912 unsigned int codec_addr, struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Rakesh Ughreja24494d32018-06-01 22:53:56 -0500914 int ret;
915
916 ret = snd_hda_codec_device_init(bus, card, codec_addr, codecp);
917 if (ret < 0)
918 return ret;
919
920 return snd_hda_codec_device_new(bus, card, codec_addr, *codecp);
921}
922EXPORT_SYMBOL_GPL(snd_hda_codec_new);
923
924int snd_hda_codec_device_new(struct hda_bus *bus, struct snd_card *card,
925 unsigned int codec_addr, struct hda_codec *codec)
926{
Jaroslav Kyselaba443682008-08-13 20:55:32 +0200927 char component[31];
Takashi Iwaid8193872012-08-31 07:54:38 -0700928 hda_nid_t fg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 int err;
Takashi Iwai41f394a2020-01-03 09:16:24 +0100930 static const struct snd_device_ops dev_ops = {
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100931 .dev_register = snd_hda_codec_dev_register,
Takashi Iwai2565c892014-02-19 11:41:09 +0100932 .dev_free = snd_hda_codec_dev_free,
933 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Rakesh Ughreja24494d32018-06-01 22:53:56 -0500935 dev_dbg(card->dev, "%s: entry\n", __func__);
936
Takashi Iwaida3cec32008-08-08 17:12:14 +0200937 if (snd_BUG_ON(!bus))
938 return -EINVAL;
939 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
940 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Takashi Iwai7639a062015-03-03 10:07:24 +0100942 codec->core.dev.release = snd_hda_codec_dev_release;
Takashi Iwai058524482015-03-03 15:40:08 +0100943 codec->core.exec_verb = codec_exec_verb;
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 codec->bus = bus;
Takashi Iwai6efdd852015-02-27 16:09:22 +0100946 codec->card = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +0100948 mutex_init(&codec->spdif_mutex);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +0800949 mutex_init(&codec->control_mutex);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100950 snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32);
951 snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32);
Takashi Iwai3be14142009-02-20 14:11:16 +0100952 snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai346ff702009-02-23 09:42:57 +0100953 snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwaieb541332010-08-06 13:48:11 +0200954 snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8);
Stephen Warren7c935972011-06-01 11:14:17 -0600955 snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16);
Takashi Iwai361dab32012-05-09 14:35:27 +0200956 snd_array_init(&codec->jacktbl, sizeof(struct hda_jack_tbl), 16);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +0100957 snd_array_init(&codec->verbs, sizeof(struct hda_verb *), 8);
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100958 INIT_LIST_HEAD(&codec->conn_list);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100959 INIT_LIST_HEAD(&codec->pcm_list_head);
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100960
David Henningsson26a6cb62012-10-09 15:04:21 +0200961 INIT_DELAYED_WORK(&codec->jackpoll_work, hda_jackpoll_work);
Mengdong Lin7f132922013-11-29 01:48:45 -0500962 codec->depop_delay = -1;
David Henningssonf5662e12014-07-22 14:09:34 +0200963 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Takashi Iwai83012a72012-08-24 18:38:08 +0200965#ifdef CONFIG_PM
Takashi Iwaicc72da72015-02-19 16:00:22 +0100966 codec->power_jiffies = jiffies;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200967#endif
968
Takashi Iwai648a8d22014-02-25 10:38:13 +0100969 snd_hda_sysfs_init(codec);
970
Takashi Iwaic382a9f2012-05-07 15:01:02 +0200971 if (codec->bus->modelname) {
972 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
973 if (!codec->modelname) {
Heloise NH6986a0e2015-07-17 09:42:06 +0800974 err = -ENOMEM;
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100975 goto error;
Takashi Iwaic382a9f2012-05-07 15:01:02 +0200976 }
977 }
978
Takashi Iwai7639a062015-03-03 10:07:24 +0100979 fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Takashi Iwaid8193872012-08-31 07:54:38 -0700980 err = read_widget_caps(codec, fg);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +0100981 if (err < 0)
Takashi Iwai3be14142009-02-20 14:11:16 +0100982 goto error;
Takashi Iwai3be14142009-02-20 14:11:16 +0100983 err = read_pin_defaults(codec);
984 if (err < 0)
985 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +0100986
Takashi Iwaibb6ac722009-03-13 09:02:42 +0100987 /* power-up all before initialization */
Takashi Iwaid8193872012-08-31 07:54:38 -0700988 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwai183ab392019-04-13 10:04:49 +0200989 codec->core.dev.power.power_state = PMSG_ON;
Takashi Iwaibb6ac722009-03-13 09:02:42 +0100990
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200991 snd_hda_codec_proc_new(codec);
992
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200993 snd_hda_create_hwdep(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200994
Takashi Iwai7639a062015-03-03 10:07:24 +0100995 sprintf(component, "HDA:%08x,%08x,%08x", codec->core.vendor_id,
996 codec->core.subsystem_id, codec->core.revision_id);
Takashi Iwai6efdd852015-02-27 16:09:22 +0100997 snd_component_add(card, component);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200998
Takashi Iwai6efdd852015-02-27 16:09:22 +0100999 err = snd_device_new(card, SNDRV_DEV_CODEC, codec, &dev_ops);
Takashi Iwai2565c892014-02-19 11:41:09 +01001000 if (err < 0)
1001 goto error;
1002
Harsha Priyaa0645da2020-09-30 14:41:39 +03001003 /* PM runtime needs to be enabled later after binding codec */
1004 pm_runtime_forbid(&codec->core.dev);
1005
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001006 return 0;
Takashi Iwai3be14142009-02-20 14:11:16 +01001007
1008 error:
Takashi Iwaid56db742015-02-27 23:25:35 +01001009 put_device(hda_codec_dev(codec));
Takashi Iwai3be14142009-02-20 14:11:16 +01001010 return err;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001011}
Rakesh Ughreja24494d32018-06-01 22:53:56 -05001012EXPORT_SYMBOL_GPL(snd_hda_codec_device_new);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001013
Takashi Iwai95a962c2014-10-29 16:03:58 +01001014/**
1015 * snd_hda_codec_update_widgets - Refresh widget caps and pin defaults
1016 * @codec: the HDA codec
1017 *
1018 * Forcibly refresh the all widget caps and the init pin configurations of
1019 * the given codec.
1020 */
Mengdong Lina15d05d2013-02-08 17:09:31 -05001021int snd_hda_codec_update_widgets(struct hda_codec *codec)
1022{
1023 hda_nid_t fg;
1024 int err;
1025
Takashi Iwai774a0752019-07-03 14:35:12 +02001026 err = snd_hdac_refresh_widgets(&codec->core);
Takashi Iwai7639a062015-03-03 10:07:24 +01001027 if (err < 0)
1028 return err;
1029
Mengdong Lina15d05d2013-02-08 17:09:31 -05001030 /* Assume the function group node does not change,
1031 * only the widget nodes may change.
1032 */
1033 kfree(codec->wcaps);
Takashi Iwai7639a062015-03-03 10:07:24 +01001034 fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Mengdong Lina15d05d2013-02-08 17:09:31 -05001035 err = read_widget_caps(codec, fg);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +01001036 if (err < 0)
Mengdong Lina15d05d2013-02-08 17:09:31 -05001037 return err;
Mengdong Lina15d05d2013-02-08 17:09:31 -05001038
1039 snd_array_free(&codec->init_pins);
1040 err = read_pin_defaults(codec);
1041
1042 return err;
1043}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001044EXPORT_SYMBOL_GPL(snd_hda_codec_update_widgets);
Mengdong Lina15d05d2013-02-08 17:09:31 -05001045
Takashi Iwaied360812012-08-08 17:12:52 +02001046/* update the stream-id if changed */
1047static void update_pcm_stream_id(struct hda_codec *codec,
1048 struct hda_cvt_setup *p, hda_nid_t nid,
1049 u32 stream_tag, int channel_id)
1050{
1051 unsigned int oldval, newval;
1052
1053 if (p->stream_tag != stream_tag || p->channel_id != channel_id) {
1054 oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0);
1055 newval = (stream_tag << 4) | channel_id;
1056 if (oldval != newval)
1057 snd_hda_codec_write(codec, nid, 0,
1058 AC_VERB_SET_CHANNEL_STREAMID,
1059 newval);
1060 p->stream_tag = stream_tag;
1061 p->channel_id = channel_id;
1062 }
1063}
1064
1065/* update the format-id if changed */
1066static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p,
1067 hda_nid_t nid, int format)
1068{
1069 unsigned int oldval;
1070
1071 if (p->format_id != format) {
1072 oldval = snd_hda_codec_read(codec, nid, 0,
1073 AC_VERB_GET_STREAM_FORMAT, 0);
1074 if (oldval != format) {
1075 msleep(1);
1076 snd_hda_codec_write(codec, nid, 0,
1077 AC_VERB_SET_STREAM_FORMAT,
1078 format);
1079 }
1080 p->format_id = format;
1081 }
1082}
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084/**
1085 * snd_hda_codec_setup_stream - set up the codec for streaming
1086 * @codec: the CODEC to set up
1087 * @nid: the NID to set up
1088 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1089 * @channel_id: channel id to pass, zero based.
1090 * @format: stream format.
1091 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001092void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1093 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 int channel_id, int format)
1095{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001096 struct hda_codec *c;
Takashi Iwaieb541332010-08-06 13:48:11 +02001097 struct hda_cvt_setup *p;
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001098 int type;
Takashi Iwaieb541332010-08-06 13:48:11 +02001099 int i;
1100
Takashi Iwai0ba21762007-04-16 11:29:14 +02001101 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +02001102 return;
1103
Takashi Iwai4e76a882014-02-25 12:21:03 +01001104 codec_dbg(codec,
1105 "hda_codec_setup_stream: NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
1106 nid, stream_tag, channel_id, format);
Takashi Iwaieb541332010-08-06 13:48:11 +02001107 p = get_hda_cvt_setup(codec, nid);
Takashi Iwai6c35ae32013-05-10 13:39:50 +02001108 if (!p)
Takashi Iwaieb541332010-08-06 13:48:11 +02001109 return;
Takashi Iwaied360812012-08-08 17:12:52 +02001110
Takashi Iwaie6feb5d2015-03-16 21:32:11 +01001111 if (codec->patch_ops.stream_pm)
1112 codec->patch_ops.stream_pm(codec, nid, true);
Takashi Iwaied360812012-08-08 17:12:52 +02001113 if (codec->pcm_format_first)
1114 update_pcm_format(codec, p, nid, format);
1115 update_pcm_stream_id(codec, p, nid, stream_tag, channel_id);
1116 if (!codec->pcm_format_first)
1117 update_pcm_format(codec, p, nid, format);
1118
Takashi Iwaieb541332010-08-06 13:48:11 +02001119 p->active = 1;
1120 p->dirty = 0;
1121
1122 /* make other inactive cvts with the same stream-tag dirty */
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001123 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001124 list_for_each_codec(c, codec->bus) {
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02001125 snd_array_for_each(&c->cvt_setups, i, p) {
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001126 if (!p->active && p->stream_tag == stream_tag &&
David Henningsson54c2a892012-02-01 12:05:41 +01001127 get_wcaps_type(get_wcaps(c, p->nid)) == type)
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001128 p->dirty = 1;
1129 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001132EXPORT_SYMBOL_GPL(snd_hda_codec_setup_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Takashi Iwaif0cea792010-08-13 11:56:53 +02001134static void really_cleanup_stream(struct hda_codec *codec,
1135 struct hda_cvt_setup *q);
1136
Takashi Iwaid5191e52009-11-16 14:58:17 +01001137/**
Takashi Iwaif0cea792010-08-13 11:56:53 +02001138 * __snd_hda_codec_cleanup_stream - clean up the codec for closing
Takashi Iwaid5191e52009-11-16 14:58:17 +01001139 * @codec: the CODEC to clean up
1140 * @nid: the NID to clean up
Takashi Iwaif0cea792010-08-13 11:56:53 +02001141 * @do_now: really clean up the stream instead of clearing the active flag
Takashi Iwaid5191e52009-11-16 14:58:17 +01001142 */
Takashi Iwaif0cea792010-08-13 11:56:53 +02001143void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid,
1144 int do_now)
Takashi Iwai888afa12008-03-18 09:57:50 +01001145{
Takashi Iwaieb541332010-08-06 13:48:11 +02001146 struct hda_cvt_setup *p;
1147
Takashi Iwai888afa12008-03-18 09:57:50 +01001148 if (!nid)
1149 return;
1150
Takashi Iwai0e7adbe2010-10-25 10:37:11 +02001151 if (codec->no_sticky_stream)
1152 do_now = 1;
1153
Takashi Iwai4e76a882014-02-25 12:21:03 +01001154 codec_dbg(codec, "hda_codec_cleanup_stream: NID=0x%x\n", nid);
Takashi Iwaieb541332010-08-06 13:48:11 +02001155 p = get_hda_cvt_setup(codec, nid);
Takashi Iwai6c35ae32013-05-10 13:39:50 +02001156 if (p) {
Takashi Iwaif0cea792010-08-13 11:56:53 +02001157 /* here we just clear the active flag when do_now isn't set;
1158 * actual clean-ups will be done later in
1159 * purify_inactive_streams() called from snd_hda_codec_prpapre()
1160 */
1161 if (do_now)
1162 really_cleanup_stream(codec, p);
1163 else
1164 p->active = 0;
1165 }
Takashi Iwai888afa12008-03-18 09:57:50 +01001166}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001167EXPORT_SYMBOL_GPL(__snd_hda_codec_cleanup_stream);
Takashi Iwai888afa12008-03-18 09:57:50 +01001168
Takashi Iwaieb541332010-08-06 13:48:11 +02001169static void really_cleanup_stream(struct hda_codec *codec,
1170 struct hda_cvt_setup *q)
1171{
1172 hda_nid_t nid = q->nid;
Takashi Iwai218264a2011-09-27 17:33:45 +02001173 if (q->stream_tag || q->channel_id)
1174 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1175 if (q->format_id)
1176 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0
1177);
Takashi Iwaieb541332010-08-06 13:48:11 +02001178 memset(q, 0, sizeof(*q));
1179 q->nid = nid;
Takashi Iwaie6feb5d2015-03-16 21:32:11 +01001180 if (codec->patch_ops.stream_pm)
1181 codec->patch_ops.stream_pm(codec, nid, false);
Takashi Iwaieb541332010-08-06 13:48:11 +02001182}
1183
1184/* clean up the all conflicting obsolete streams */
1185static void purify_inactive_streams(struct hda_codec *codec)
1186{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001187 struct hda_codec *c;
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02001188 struct hda_cvt_setup *p;
Takashi Iwaieb541332010-08-06 13:48:11 +02001189 int i;
1190
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001191 list_for_each_codec(c, codec->bus) {
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02001192 snd_array_for_each(&c->cvt_setups, i, p) {
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001193 if (p->dirty)
1194 really_cleanup_stream(c, p);
1195 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001196 }
1197}
1198
Takashi Iwai2a439522011-07-26 09:52:50 +02001199#ifdef CONFIG_PM
Takashi Iwaieb541332010-08-06 13:48:11 +02001200/* clean up all streams; called from suspend */
1201static void hda_cleanup_all_streams(struct hda_codec *codec)
1202{
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02001203 struct hda_cvt_setup *p;
Takashi Iwaieb541332010-08-06 13:48:11 +02001204 int i;
1205
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02001206 snd_array_for_each(&codec->cvt_setups, i, p) {
Takashi Iwaieb541332010-08-06 13:48:11 +02001207 if (p->stream_tag)
1208 really_cleanup_stream(codec, p);
1209 }
1210}
Mike Waychison1c7276c2011-04-20 12:04:36 -07001211#endif
Takashi Iwaieb541332010-08-06 13:48:11 +02001212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213/*
1214 * amp access functions
1215 */
1216
Takashi Iwaid5191e52009-11-16 14:58:17 +01001217/**
1218 * query_amp_caps - query AMP capabilities
1219 * @codec: the HD-auio codec
1220 * @nid: the NID to query
1221 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1222 *
1223 * Query AMP capabilities for the given widget and direction.
1224 * Returns the obtained capability bits.
1225 *
1226 * When cap bits have been already read, this doesn't read again but
1227 * returns the cached value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 */
Matthew Ranostay09a99952008-01-24 11:49:21 +01001229u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230{
Takashi Iwaifaa75f82015-02-26 08:54:56 +01001231 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
1232 nid = codec->core.afg;
1233 return snd_hda_param_read(codec, nid,
1234 direction == HDA_OUTPUT ?
1235 AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001237EXPORT_SYMBOL_GPL(query_amp_caps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Takashi Iwaid5191e52009-11-16 14:58:17 +01001239/**
David Henningsson861a04e2014-09-23 10:38:17 +02001240 * snd_hda_check_amp_caps - query AMP capabilities
1241 * @codec: the HD-audio codec
1242 * @nid: the NID to query
1243 * @dir: either #HDA_INPUT or #HDA_OUTPUT
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001244 * @bits: bit mask to check the result
David Henningsson861a04e2014-09-23 10:38:17 +02001245 *
1246 * Check whether the widget has the given amp capability for the direction.
1247 */
1248bool snd_hda_check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
1249 int dir, unsigned int bits)
1250{
1251 if (!nid)
1252 return false;
1253 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
1254 if (query_amp_caps(codec, nid, dir) & bits)
1255 return true;
1256 return false;
1257}
1258EXPORT_SYMBOL_GPL(snd_hda_check_amp_caps);
1259
1260/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001261 * snd_hda_override_amp_caps - Override the AMP capabilities
1262 * @codec: the CODEC to clean up
1263 * @nid: the NID to clean up
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001264 * @dir: either #HDA_INPUT or #HDA_OUTPUT
Takashi Iwaid5191e52009-11-16 14:58:17 +01001265 * @caps: the capability bits to set
1266 *
1267 * Override the cached AMP caps bits value by the given one.
1268 * This function is useful if the driver needs to adjust the AMP ranges,
1269 * e.g. limit to 0dB, etc.
1270 *
1271 * Returns zero if successful or a negative error code.
1272 */
Takashi Iwai897cc182007-05-29 19:01:37 +02001273int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1274 unsigned int caps)
1275{
Takashi Iwaifaa75f82015-02-26 08:54:56 +01001276 unsigned int parm;
1277
1278 snd_hda_override_wcaps(codec, nid,
1279 get_wcaps(codec, nid) | AC_WCAP_AMP_OVRD);
1280 parm = dir == HDA_OUTPUT ? AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP;
1281 return snd_hdac_override_parm(&codec->core, nid, parm, caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001282}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001283EXPORT_SYMBOL_GPL(snd_hda_override_amp_caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001284
Takashi Iwai1a462be2020-01-09 10:01:04 +01001285static unsigned int encode_amp(struct hda_codec *codec, hda_nid_t nid,
1286 int ch, int dir, int idx)
1287{
1288 unsigned int cmd = snd_hdac_regmap_encode_amp(nid, ch, dir, idx);
1289
1290 /* enable fake mute if no h/w mute but min=mute */
1291 if ((query_amp_caps(codec, nid, dir) &
1292 (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE)) == AC_AMPCAP_MIN_MUTE)
1293 cmd |= AC_AMP_FAKE_MUTE;
1294 return cmd;
1295}
1296
Takashi Iwaid5191e52009-11-16 14:58:17 +01001297/**
Takashi Iwaia686ec42015-06-11 10:51:28 +02001298 * snd_hda_codec_amp_update - update the AMP mono value
1299 * @codec: HD-audio codec
1300 * @nid: NID to read the AMP value
1301 * @ch: channel to update (0 or 1)
1302 * @dir: #HDA_INPUT or #HDA_OUTPUT
1303 * @idx: the index value (only for input direction)
1304 * @mask: bit mask to set
1305 * @val: the bits value to set
1306 *
1307 * Update the AMP values for the given channel, direction and index.
1308 */
1309int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid,
1310 int ch, int dir, int idx, int mask, int val)
1311{
Takashi Iwai1a462be2020-01-09 10:01:04 +01001312 unsigned int cmd = encode_amp(codec, nid, ch, dir, idx);
Takashi Iwaia686ec42015-06-11 10:51:28 +02001313
Takashi Iwaia686ec42015-06-11 10:51:28 +02001314 return snd_hdac_regmap_update_raw(&codec->core, cmd, mask, val);
1315}
1316EXPORT_SYMBOL_GPL(snd_hda_codec_amp_update);
1317
1318/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001319 * snd_hda_codec_amp_stereo - update the AMP stereo values
1320 * @codec: HD-audio codec
1321 * @nid: NID to read the AMP value
1322 * @direction: #HDA_INPUT or #HDA_OUTPUT
1323 * @idx: the index value (only for input direction)
1324 * @mask: bit mask to set
1325 * @val: the bits value to set
1326 *
1327 * Update the AMP values like snd_hda_codec_amp_update(), but for a
1328 * stereo widget with the same mask and value.
Takashi Iwai47fd8302007-08-10 17:11:07 +02001329 */
1330int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1331 int direction, int idx, int mask, int val)
1332{
1333 int ch, ret = 0;
Takashi Iwai467126462010-03-29 09:19:38 +02001334
1335 if (snd_BUG_ON(mask & ~0xff))
1336 mask &= 0xff;
Takashi Iwai47fd8302007-08-10 17:11:07 +02001337 for (ch = 0; ch < 2; ch++)
1338 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1339 idx, mask, val);
1340 return ret;
1341}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001342EXPORT_SYMBOL_GPL(snd_hda_codec_amp_stereo);
Takashi Iwai47fd8302007-08-10 17:11:07 +02001343
Takashi Iwai95a962c2014-10-29 16:03:58 +01001344/**
1345 * snd_hda_codec_amp_init - initialize the AMP value
1346 * @codec: the HDA codec
1347 * @nid: NID to read the AMP value
1348 * @ch: channel (left=0 or right=1)
1349 * @dir: #HDA_INPUT or #HDA_OUTPUT
1350 * @idx: the index value (only for input direction)
1351 * @mask: bit mask to set
1352 * @val: the bits value to set
1353 *
1354 * Works like snd_hda_codec_amp_update() but it writes the value only at
Takashi Iwai280e57d2012-12-14 10:32:21 +01001355 * the first access. If the amp was already initialized / updated beforehand,
1356 * this does nothing.
1357 */
1358int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch,
1359 int dir, int idx, int mask, int val)
1360{
Takashi Iwai1a462be2020-01-09 10:01:04 +01001361 unsigned int cmd = encode_amp(codec, nid, ch, dir, idx);
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01001362
1363 if (!codec->core.regmap)
1364 return -EINVAL;
Takashi Iwai1a462be2020-01-09 10:01:04 +01001365 return snd_hdac_regmap_update_raw_once(&codec->core, cmd, mask, val);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001366}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001367EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001368
Takashi Iwai95a962c2014-10-29 16:03:58 +01001369/**
1370 * snd_hda_codec_amp_init_stereo - initialize the stereo AMP value
1371 * @codec: the HDA codec
1372 * @nid: NID to read the AMP value
1373 * @dir: #HDA_INPUT or #HDA_OUTPUT
1374 * @idx: the index value (only for input direction)
1375 * @mask: bit mask to set
1376 * @val: the bits value to set
1377 *
1378 * Call snd_hda_codec_amp_init() for both stereo channels.
1379 */
Takashi Iwai280e57d2012-12-14 10:32:21 +01001380int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid,
1381 int dir, int idx, int mask, int val)
1382{
1383 int ch, ret = 0;
1384
1385 if (snd_BUG_ON(mask & ~0xff))
1386 mask &= 0xff;
1387 for (ch = 0; ch < 2; ch++)
1388 ret |= snd_hda_codec_amp_init(codec, nid, ch, dir,
1389 idx, mask, val);
1390 return ret;
1391}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001392EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init_stereo);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001393
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001394static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir,
1395 unsigned int ofs)
1396{
1397 u32 caps = query_amp_caps(codec, nid, dir);
1398 /* get num steps */
1399 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1400 if (ofs < caps)
1401 caps -= ofs;
1402 return caps;
1403}
1404
Takashi Iwaid5191e52009-11-16 14:58:17 +01001405/**
1406 * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001407 * @kcontrol: referred ctl element
1408 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001409 *
1410 * The control element is supposed to have the private_value field
1411 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1412 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001413int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
1414 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
1416 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1417 u16 nid = get_amp_nid(kcontrol);
1418 u8 chs = get_amp_channels(kcontrol);
1419 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001420 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001422 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1423 uinfo->count = chs == 3 ? 2 : 1;
1424 uinfo->value.integer.min = 0;
1425 uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs);
1426 if (!uinfo->value.integer.max) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001427 codec_warn(codec,
1428 "num_steps = 0 for NID=0x%x (ctl = %s)\n",
1429 nid, kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 return -EINVAL;
1431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 return 0;
1433}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001434EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001436
1437static inline unsigned int
1438read_amp_value(struct hda_codec *codec, hda_nid_t nid,
1439 int ch, int dir, int idx, unsigned int ofs)
1440{
1441 unsigned int val;
1442 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1443 val &= HDA_AMP_VOLMASK;
1444 if (val >= ofs)
1445 val -= ofs;
1446 else
1447 val = 0;
1448 return val;
1449}
1450
1451static inline int
1452update_amp_value(struct hda_codec *codec, hda_nid_t nid,
1453 int ch, int dir, int idx, unsigned int ofs,
1454 unsigned int val)
1455{
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001456 unsigned int maxval;
1457
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001458 if (val > 0)
1459 val += ofs;
Takashi Iwai7ccc3ef2010-07-26 17:00:15 +02001460 /* ofs = 0: raw max value */
1461 maxval = get_amp_max_value(codec, nid, dir, 0);
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001462 if (val > maxval)
1463 val = maxval;
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01001464 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx,
1465 HDA_AMP_VOLMASK, val);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001466}
1467
Takashi Iwaid5191e52009-11-16 14:58:17 +01001468/**
1469 * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001470 * @kcontrol: ctl element
1471 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001472 *
1473 * The control element is supposed to have the private_value field
1474 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1475 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001476int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1477 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
1479 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1480 hda_nid_t nid = get_amp_nid(kcontrol);
1481 int chs = get_amp_channels(kcontrol);
1482 int dir = get_amp_direction(kcontrol);
1483 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001484 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 long *valp = ucontrol->value.integer.value;
1486
1487 if (chs & 1)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001488 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001490 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 return 0;
1492}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001493EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Takashi Iwaid5191e52009-11-16 14:58:17 +01001495/**
1496 * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001497 * @kcontrol: ctl element
1498 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001499 *
1500 * The control element is supposed to have the private_value field
1501 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1502 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001503int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1504 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
1506 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1507 hda_nid_t nid = get_amp_nid(kcontrol);
1508 int chs = get_amp_channels(kcontrol);
1509 int dir = get_amp_direction(kcontrol);
1510 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001511 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 long *valp = ucontrol->value.integer.value;
1513 int change = 0;
1514
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001515 if (chs & 1) {
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001516 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001517 valp++;
1518 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001519 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001520 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 return change;
1522}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001523EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Takashi Iwai99b5c5b2017-05-10 12:29:37 +02001525/* inquiry the amp caps and convert to TLV */
1526static void get_ctl_amp_tlv(struct snd_kcontrol *kcontrol, unsigned int *tlv)
1527{
1528 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1529 hda_nid_t nid = get_amp_nid(kcontrol);
1530 int dir = get_amp_direction(kcontrol);
1531 unsigned int ofs = get_amp_offset(kcontrol);
1532 bool min_mute = get_amp_min_mute(kcontrol);
1533 u32 caps, val1, val2;
1534
1535 caps = query_amp_caps(codec, nid, dir);
1536 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1537 val2 = (val2 + 1) * 25;
1538 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
1539 val1 += ofs;
1540 val1 = ((int)val1) * ((int)val2);
1541 if (min_mute || (caps & AC_AMPCAP_MIN_MUTE))
1542 val2 |= TLV_DB_SCALE_MUTE;
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001543 tlv[SNDRV_CTL_TLVO_TYPE] = SNDRV_CTL_TLVT_DB_SCALE;
1544 tlv[SNDRV_CTL_TLVO_LEN] = 2 * sizeof(unsigned int);
1545 tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] = val1;
1546 tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP] = val2;
Takashi Iwai99b5c5b2017-05-10 12:29:37 +02001547}
1548
Takashi Iwaid5191e52009-11-16 14:58:17 +01001549/**
Takashi Iwaif0049e12017-05-10 12:34:09 +02001550 * snd_hda_mixer_amp_tlv - TLV callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001551 * @kcontrol: ctl element
1552 * @op_flag: operation flag
1553 * @size: byte size of input TLV
1554 * @_tlv: TLV data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001555 *
1556 * The control element is supposed to have the private_value field
1557 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1558 */
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001559int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1560 unsigned int size, unsigned int __user *_tlv)
1561{
Takashi Iwai99b5c5b2017-05-10 12:29:37 +02001562 unsigned int tlv[4];
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001563
1564 if (size < 4 * sizeof(unsigned int))
1565 return -ENOMEM;
Takashi Iwai99b5c5b2017-05-10 12:29:37 +02001566 get_ctl_amp_tlv(kcontrol, tlv);
1567 if (copy_to_user(_tlv, tlv, sizeof(tlv)))
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001568 return -EFAULT;
1569 return 0;
1570}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001571EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001572
Takashi Iwaid5191e52009-11-16 14:58:17 +01001573/**
1574 * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control
1575 * @codec: HD-audio codec
1576 * @nid: NID of a reference widget
1577 * @dir: #HDA_INPUT or #HDA_OUTPUT
1578 * @tlv: TLV data to be stored, at least 4 elements
1579 *
1580 * Set (static) TLV data for a virtual master volume using the AMP caps
1581 * obtained from the reference NID.
1582 * The volume range is recalculated as if the max volume is 0dB.
Takashi Iwai2134ea42008-01-10 16:53:55 +01001583 */
1584void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1585 unsigned int *tlv)
1586{
1587 u32 caps;
1588 int nums, step;
1589
1590 caps = query_amp_caps(codec, nid, dir);
1591 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1592 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1593 step = (step + 1) * 25;
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001594 tlv[SNDRV_CTL_TLVO_TYPE] = SNDRV_CTL_TLVT_DB_SCALE;
1595 tlv[SNDRV_CTL_TLVO_LEN] = 2 * sizeof(unsigned int);
1596 tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] = -nums * step;
1597 tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP] = step;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001598}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001599EXPORT_SYMBOL_GPL(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001600
1601/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01001602static struct snd_kcontrol *
Takashi Iwaidcda5802012-10-12 17:24:51 +02001603find_mixer_ctl(struct hda_codec *codec, const char *name, int dev, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001604{
1605 struct snd_ctl_elem_id id;
1606 memset(&id, 0, sizeof(id));
1607 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwaidcda5802012-10-12 17:24:51 +02001608 id.device = dev;
Takashi Iwai09f99702008-02-04 12:31:13 +01001609 id.index = idx;
Takashi Iwai18cb7102009-04-16 10:22:24 +02001610 if (snd_BUG_ON(strlen(name) >= sizeof(id.name)))
1611 return NULL;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001612 strcpy(id.name, name);
Takashi Iwai6efdd852015-02-27 16:09:22 +01001613 return snd_ctl_find_id(codec->card, &id);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001614}
1615
Takashi Iwaid5191e52009-11-16 14:58:17 +01001616/**
1617 * snd_hda_find_mixer_ctl - Find a mixer control element with the given name
1618 * @codec: HD-audio codec
1619 * @name: ctl id name string
1620 *
1621 * Get the control element with the given id string and IFACE_MIXER.
1622 */
Takashi Iwai09f99702008-02-04 12:31:13 +01001623struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1624 const char *name)
1625{
Takashi Iwaidcda5802012-10-12 17:24:51 +02001626 return find_mixer_ctl(codec, name, 0, 0);
Takashi Iwai09f99702008-02-04 12:31:13 +01001627}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001628EXPORT_SYMBOL_GPL(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01001629
Takashi Iwaidcda5802012-10-12 17:24:51 +02001630static int find_empty_mixer_ctl_idx(struct hda_codec *codec, const char *name,
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01001631 int start_idx)
Takashi Iwai1afe2062010-12-23 10:17:52 +01001632{
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01001633 int i, idx;
1634 /* 16 ctlrs should be large enough */
1635 for (i = 0, idx = start_idx; i < 16; i++, idx++) {
1636 if (!find_mixer_ctl(codec, name, 0, idx))
Takashi Iwai1afe2062010-12-23 10:17:52 +01001637 return idx;
1638 }
1639 return -EBUSY;
1640}
1641
Takashi Iwaid5191e52009-11-16 14:58:17 +01001642/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001643 * snd_hda_ctl_add - Add a control element and assign to the codec
Takashi Iwaid5191e52009-11-16 14:58:17 +01001644 * @codec: HD-audio codec
1645 * @nid: corresponding NID (optional)
1646 * @kctl: the control element to assign
1647 *
1648 * Add the given control element to an array inside the codec instance.
1649 * All control elements belonging to a codec are supposed to be added
1650 * by this function so that a proper clean-up works at the free or
1651 * reconfiguration time.
1652 *
1653 * If non-zero @nid is passed, the NID is assigned to the control element.
1654 * The assignment is shown in the codec proc file.
1655 *
1656 * snd_hda_ctl_add() checks the control subdev id field whether
1657 * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001658 * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit
1659 * specifies if kctl->private_value is a HDA amplifier value.
Takashi Iwaid5191e52009-11-16 14:58:17 +01001660 */
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001661int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
1662 struct snd_kcontrol *kctl)
Takashi Iwaid13bd412008-07-30 15:01:45 +02001663{
1664 int err;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001665 unsigned short flags = 0;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001666 struct hda_nid_item *item;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001667
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001668 if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) {
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001669 flags |= HDA_NID_ITEM_AMP;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001670 if (nid == 0)
1671 nid = get_amp_nid_(kctl->private_value);
1672 }
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001673 if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0)
1674 nid = kctl->id.subdevice & 0xffff;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001675 if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG))
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01001676 kctl->id.subdevice = 0;
Takashi Iwai6efdd852015-02-27 16:09:22 +01001677 err = snd_ctl_add(codec->card, kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001678 if (err < 0)
1679 return err;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001680 item = snd_array_new(&codec->mixers);
1681 if (!item)
Takashi Iwaid13bd412008-07-30 15:01:45 +02001682 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001683 item->kctl = kctl;
1684 item->nid = nid;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001685 item->flags = flags;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001686 return 0;
1687}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001688EXPORT_SYMBOL_GPL(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001689
Takashi Iwaid5191e52009-11-16 14:58:17 +01001690/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001691 * snd_hda_add_nid - Assign a NID to a control element
1692 * @codec: HD-audio codec
1693 * @nid: corresponding NID (optional)
1694 * @kctl: the control element to assign
1695 * @index: index to kctl
1696 *
1697 * Add the given control element to an array inside the codec instance.
1698 * This function is used when #snd_hda_ctl_add cannot be used for 1:1
1699 * NID:KCTL mapping - for example "Capture Source" selector.
1700 */
1701int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
1702 unsigned int index, hda_nid_t nid)
1703{
1704 struct hda_nid_item *item;
1705
1706 if (nid > 0) {
1707 item = snd_array_new(&codec->nids);
1708 if (!item)
1709 return -ENOMEM;
1710 item->kctl = kctl;
1711 item->index = index;
1712 item->nid = nid;
1713 return 0;
1714 }
Takashi Iwai4e76a882014-02-25 12:21:03 +01001715 codec_err(codec, "no NID for mapping control %s:%d:%d\n",
1716 kctl->id.name, kctl->id.index, index);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001717 return -EINVAL;
1718}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001719EXPORT_SYMBOL_GPL(snd_hda_add_nid);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001720
1721/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001722 * snd_hda_ctls_clear - Clear all controls assigned to the given codec
1723 * @codec: HD-audio codec
1724 */
Takashi Iwaid13bd412008-07-30 15:01:45 +02001725void snd_hda_ctls_clear(struct hda_codec *codec)
1726{
1727 int i;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001728 struct hda_nid_item *items = codec->mixers.list;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001729 for (i = 0; i < codec->mixers.used; i++)
Takashi Iwai6efdd852015-02-27 16:09:22 +01001730 snd_ctl_remove(codec->card, items[i].kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001731 snd_array_free(&codec->mixers);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001732 snd_array_free(&codec->nids);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001733}
1734
Takashi Iwai95a962c2014-10-29 16:03:58 +01001735/**
1736 * snd_hda_lock_devices - pseudo device locking
1737 * @bus: the BUS
1738 *
Takashi Iwaia65d6292009-02-23 16:57:04 +01001739 * toggle card->shutdown to allow/disallow the device access (as a hack)
1740 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001741int snd_hda_lock_devices(struct hda_bus *bus)
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001742{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001743 struct snd_card *card = bus->card;
1744 struct hda_codec *codec;
1745
Takashi Iwaia65d6292009-02-23 16:57:04 +01001746 spin_lock(&card->files_lock);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001747 if (card->shutdown)
1748 goto err_unlock;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001749 card->shutdown = 1;
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001750 if (!list_empty(&card->ctl_files))
1751 goto err_clear;
1752
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001753 list_for_each_codec(codec, bus) {
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01001754 struct hda_pcm *cpcm;
1755 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001756 if (!cpcm->pcm)
1757 continue;
1758 if (cpcm->pcm->streams[0].substream_opened ||
1759 cpcm->pcm->streams[1].substream_opened)
1760 goto err_clear;
1761 }
1762 }
Takashi Iwaia65d6292009-02-23 16:57:04 +01001763 spin_unlock(&card->files_lock);
1764 return 0;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001765
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001766 err_clear:
1767 card->shutdown = 0;
1768 err_unlock:
1769 spin_unlock(&card->files_lock);
1770 return -EINVAL;
1771}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001772EXPORT_SYMBOL_GPL(snd_hda_lock_devices);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001773
Takashi Iwai95a962c2014-10-29 16:03:58 +01001774/**
1775 * snd_hda_unlock_devices - pseudo device unlocking
1776 * @bus: the BUS
1777 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001778void snd_hda_unlock_devices(struct hda_bus *bus)
Takashi Iwaia65d6292009-02-23 16:57:04 +01001779{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001780 struct snd_card *card = bus->card;
1781
Takashi Iwaia65d6292009-02-23 16:57:04 +01001782 spin_lock(&card->files_lock);
1783 card->shutdown = 0;
1784 spin_unlock(&card->files_lock);
1785}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001786EXPORT_SYMBOL_GPL(snd_hda_unlock_devices);
Takashi Iwaia65d6292009-02-23 16:57:04 +01001787
Takashi Iwaid5191e52009-11-16 14:58:17 +01001788/**
1789 * snd_hda_codec_reset - Clear all objects assigned to the codec
1790 * @codec: HD-audio codec
1791 *
1792 * This frees the all PCM and control elements assigned to the codec, and
1793 * clears the caches and restores the pin default configurations.
1794 *
1795 * When a device is being used, it returns -EBSY. If successfully freed,
1796 * returns zero.
1797 */
Takashi Iwaia65d6292009-02-23 16:57:04 +01001798int snd_hda_codec_reset(struct hda_codec *codec)
1799{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001800 struct hda_bus *bus = codec->bus;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001801
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001802 if (snd_hda_lock_devices(bus) < 0)
Takashi Iwaia65d6292009-02-23 16:57:04 +01001803 return -EBUSY;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001804
1805 /* OK, let it free */
Takashi Iwai25063182020-12-09 16:01:19 +01001806 device_release_driver(hda_codec_dev(codec));
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001807
Takashi Iwaia65d6292009-02-23 16:57:04 +01001808 /* allow device access again */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001809 snd_hda_unlock_devices(bus);
Takashi Iwaia65d6292009-02-23 16:57:04 +01001810 return 0;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001811}
1812
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001813typedef int (*map_follower_func_t)(struct hda_codec *, void *, struct snd_kcontrol *);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001814
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001815/* apply the function to all matching follower ctls in the mixer list */
1816static int map_followers(struct hda_codec *codec, const char * const *followers,
1817 const char *suffix, map_follower_func_t func, void *data)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001818{
1819 struct hda_nid_item *items;
1820 const char * const *s;
1821 int i, err;
1822
1823 items = codec->mixers.list;
1824 for (i = 0; i < codec->mixers.used; i++) {
1825 struct snd_kcontrol *sctl = items[i].kctl;
Takashi Iwaica16ec02013-10-28 12:00:35 +01001826 if (!sctl || sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001827 continue;
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001828 for (s = followers; *s; s++) {
Takashi Iwai9322ca52012-02-03 14:28:01 +01001829 char tmpname[sizeof(sctl->id.name)];
1830 const char *name = *s;
1831 if (suffix) {
1832 snprintf(tmpname, sizeof(tmpname), "%s %s",
1833 name, suffix);
1834 name = tmpname;
1835 }
Takashi Iwai9322ca52012-02-03 14:28:01 +01001836 if (!strcmp(sctl->id.name, name)) {
Takashi Iwai6194b992014-06-06 18:12:16 +02001837 err = func(codec, data, sctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001838 if (err)
1839 return err;
1840 break;
1841 }
1842 }
1843 }
1844 return 0;
1845}
1846
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001847static int check_follower_present(struct hda_codec *codec,
1848 void *data, struct snd_kcontrol *sctl)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001849{
1850 return 1;
1851}
1852
Takashi Iwai18478e82012-03-09 17:51:10 +01001853/* call kctl->put with the given value(s) */
1854static int put_kctl_with_value(struct snd_kcontrol *kctl, int val)
1855{
1856 struct snd_ctl_elem_value *ucontrol;
1857 ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL);
1858 if (!ucontrol)
1859 return -ENOMEM;
1860 ucontrol->value.integer.value[0] = val;
1861 ucontrol->value.integer.value[1] = val;
1862 kctl->put(kctl, ucontrol);
1863 kfree(ucontrol);
1864 return 0;
1865}
1866
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001867struct follower_init_arg {
Takashi Iwaia91d6612017-10-16 11:39:28 +02001868 struct hda_codec *codec;
1869 int step;
1870};
1871
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001872/* initialize the follower volume with 0dB via snd_ctl_apply_vmaster_followers() */
1873static int init_follower_0dB(struct snd_kcontrol *follower,
1874 struct snd_kcontrol *kctl,
1875 void *_arg)
Takashi Iwai18478e82012-03-09 17:51:10 +01001876{
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001877 struct follower_init_arg *arg = _arg;
Takashi Iwaia91d6612017-10-16 11:39:28 +02001878 int _tlv[4];
1879 const int *tlv = NULL;
1880 int step;
1881 int val;
1882
1883 if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
1884 if (kctl->tlv.c != snd_hda_mixer_amp_tlv) {
1885 codec_err(arg->codec,
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001886 "Unexpected TLV callback for follower %s:%d\n",
Takashi Iwaia91d6612017-10-16 11:39:28 +02001887 kctl->id.name, kctl->id.index);
1888 return 0; /* ignore */
1889 }
1890 get_ctl_amp_tlv(kctl, _tlv);
1891 tlv = _tlv;
1892 } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ)
1893 tlv = kctl->tlv.p;
1894
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001895 if (!tlv || tlv[SNDRV_CTL_TLVO_TYPE] != SNDRV_CTL_TLVT_DB_SCALE)
Takashi Iwaia91d6612017-10-16 11:39:28 +02001896 return 0;
1897
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001898 step = tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP];
Takashi Iwaia91d6612017-10-16 11:39:28 +02001899 step &= ~TLV_DB_SCALE_MUTE;
1900 if (!step)
1901 return 0;
1902 if (arg->step && arg->step != step) {
1903 codec_err(arg->codec,
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001904 "Mismatching dB step for vmaster follower (%d!=%d)\n",
Takashi Iwaia91d6612017-10-16 11:39:28 +02001905 arg->step, step);
1906 return 0;
1907 }
1908
1909 arg->step = step;
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001910 val = -tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] / step;
Takashi Iwaia91d6612017-10-16 11:39:28 +02001911 if (val > 0) {
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001912 put_kctl_with_value(follower, val);
Takashi Iwaia91d6612017-10-16 11:39:28 +02001913 return val;
1914 }
1915
Takashi Iwai18478e82012-03-09 17:51:10 +01001916 return 0;
1917}
1918
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001919/* unmute the follower via snd_ctl_apply_vmaster_followers() */
1920static int init_follower_unmute(struct snd_kcontrol *follower,
1921 struct snd_kcontrol *kctl,
1922 void *_arg)
Takashi Iwai18478e82012-03-09 17:51:10 +01001923{
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001924 return put_kctl_with_value(follower, 1);
Takashi Iwai18478e82012-03-09 17:51:10 +01001925}
1926
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001927static int add_follower(struct hda_codec *codec,
1928 void *data, struct snd_kcontrol *follower)
Takashi Iwaie8750942014-06-30 14:02:39 +02001929{
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001930 return snd_ctl_add_follower(data, follower);
Takashi Iwaie8750942014-06-30 14:02:39 +02001931}
1932
Takashi Iwaid5191e52009-11-16 14:58:17 +01001933/**
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001934 * __snd_hda_add_vmaster - create a virtual master control and add followers
Takashi Iwaid5191e52009-11-16 14:58:17 +01001935 * @codec: HD-audio codec
1936 * @name: vmaster control name
1937 * @tlv: TLV data (optional)
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001938 * @followers: follower control names (optional)
1939 * @suffix: suffix string to each follower name (optional)
1940 * @init_follower_vol: initialize followers to unmute/0dB
Ranjani Sridharan618fad32021-04-09 14:46:16 -07001941 * @access: kcontrol access rights
Takashi Iwai29e58532012-03-12 12:25:03 +01001942 * @ctl_ret: store the vmaster kcontrol in return
Takashi Iwaid5191e52009-11-16 14:58:17 +01001943 *
1944 * Create a virtual master control with the given name. The TLV data
1945 * must be either NULL or a valid data.
1946 *
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001947 * @followers is a NULL-terminated array of strings, each of which is a
1948 * follower control name. All controls with these names are assigned to
Takashi Iwaid5191e52009-11-16 14:58:17 +01001949 * the new virtual master control.
1950 *
1951 * This function returns zero if successful or a negative error code.
1952 */
Takashi Iwai18478e82012-03-09 17:51:10 +01001953int __snd_hda_add_vmaster(struct hda_codec *codec, char *name,
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001954 unsigned int *tlv, const char * const *followers,
1955 const char *suffix, bool init_follower_vol,
Jaroslav Kyselae65bf992021-03-17 18:29:43 +01001956 unsigned int access, struct snd_kcontrol **ctl_ret)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001957{
1958 struct snd_kcontrol *kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001959 int err;
1960
Takashi Iwai29e58532012-03-12 12:25:03 +01001961 if (ctl_ret)
1962 *ctl_ret = NULL;
1963
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001964 err = map_followers(codec, followers, suffix, check_follower_present, NULL);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001965 if (err != 1) {
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001966 codec_dbg(codec, "No follower found for %s\n", name);
Takashi Iwai2f085542008-02-22 18:43:50 +01001967 return 0;
1968 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001969 kctl = snd_ctl_make_virtual_master(name, tlv);
1970 if (!kctl)
1971 return -ENOMEM;
Jaroslav Kyselae65bf992021-03-17 18:29:43 +01001972 kctl->vd[0].access |= access;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001973 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001974 if (err < 0)
1975 return err;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01001976
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001977 err = map_followers(codec, followers, suffix, add_follower, kctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001978 if (err < 0)
1979 return err;
Takashi Iwai18478e82012-03-09 17:51:10 +01001980
1981 /* init with master mute & zero volume */
1982 put_kctl_with_value(kctl, 0);
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001983 if (init_follower_vol) {
1984 struct follower_init_arg arg = {
Takashi Iwaia91d6612017-10-16 11:39:28 +02001985 .codec = codec,
1986 .step = 0,
1987 };
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02001988 snd_ctl_apply_vmaster_followers(kctl,
1989 tlv ? init_follower_0dB : init_follower_unmute,
1990 &arg);
Takashi Iwai485e3e0c2013-11-04 15:51:00 +01001991 }
Takashi Iwai18478e82012-03-09 17:51:10 +01001992
Takashi Iwai29e58532012-03-12 12:25:03 +01001993 if (ctl_ret)
1994 *ctl_ret = kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001995 return 0;
1996}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001997EXPORT_SYMBOL_GPL(__snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001998
Takashi Iwaiee52e562015-04-27 10:36:11 +02001999/* meta hook to call each driver's vmaster hook */
2000static void vmaster_hook(void *private_data, int enabled)
2001{
2002 struct hda_vmaster_mute_hook *hook = private_data;
2003
Takashi Iwaiee52e562015-04-27 10:36:11 +02002004 hook->hook(hook->codec, enabled);
2005}
2006
Takashi Iwai95a962c2014-10-29 16:03:58 +01002007/**
Jaroslav Kyselae65bf992021-03-17 18:29:43 +01002008 * snd_hda_add_vmaster_hook - Add a vmaster hw specific hook
Takashi Iwai95a962c2014-10-29 16:03:58 +01002009 * @codec: the HDA codec
2010 * @hook: the vmaster hook object
Takashi Iwai95a962c2014-10-29 16:03:58 +01002011 *
Jaroslav Kyselae65bf992021-03-17 18:29:43 +01002012 * Add a hw specific hook (like EAPD) with the given vmaster switch kctl.
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002013 */
2014int snd_hda_add_vmaster_hook(struct hda_codec *codec,
Jaroslav Kyselae65bf992021-03-17 18:29:43 +01002015 struct hda_vmaster_mute_hook *hook)
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002016{
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002017 if (!hook->hook || !hook->sw_kctl)
2018 return 0;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002019 hook->codec = codec;
Takashi Iwaiee52e562015-04-27 10:36:11 +02002020 snd_ctl_add_vmaster_hook(hook->sw_kctl, vmaster_hook, hook);
Jaroslav Kyselae65bf992021-03-17 18:29:43 +01002021 return 0;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002022}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002023EXPORT_SYMBOL_GPL(snd_hda_add_vmaster_hook);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002024
Takashi Iwai95a962c2014-10-29 16:03:58 +01002025/**
2026 * snd_hda_sync_vmaster_hook - Sync vmaster hook
2027 * @hook: the vmaster hook
2028 *
2029 * Call the hook with the current value for synchronization.
2030 * Should be called in init callback.
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002031 */
2032void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook)
2033{
2034 if (!hook->hook || !hook->codec)
2035 return;
Takashi Iwai594813f2013-04-17 18:16:05 +02002036 /* don't call vmaster hook in the destructor since it might have
2037 * been already destroyed
2038 */
2039 if (hook->codec->bus->shutdown)
2040 return;
Takashi Iwaiee52e562015-04-27 10:36:11 +02002041 snd_ctl_sync_vmaster_hook(hook->sw_kctl);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002042}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002043EXPORT_SYMBOL_GPL(snd_hda_sync_vmaster_hook);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002044
2045
Takashi Iwaid5191e52009-11-16 14:58:17 +01002046/**
2047 * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002048 * @kcontrol: referred ctl element
2049 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002050 *
2051 * The control element is supposed to have the private_value field
2052 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2053 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002054int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
2055 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056{
2057 int chs = get_amp_channels(kcontrol);
2058
2059 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2060 uinfo->count = chs == 3 ? 2 : 1;
2061 uinfo->value.integer.min = 0;
2062 uinfo->value.integer.max = 1;
2063 return 0;
2064}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002065EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Takashi Iwaid5191e52009-11-16 14:58:17 +01002067/**
2068 * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002069 * @kcontrol: ctl element
2070 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002071 *
2072 * The control element is supposed to have the private_value field
2073 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2074 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002075int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
2076 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
2078 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2079 hda_nid_t nid = get_amp_nid(kcontrol);
2080 int chs = get_amp_channels(kcontrol);
2081 int dir = get_amp_direction(kcontrol);
2082 int idx = get_amp_index(kcontrol);
2083 long *valp = ucontrol->value.integer.value;
2084
2085 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002086 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002087 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002089 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002090 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 return 0;
2092}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002093EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Takashi Iwaid5191e52009-11-16 14:58:17 +01002095/**
2096 * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002097 * @kcontrol: ctl element
2098 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002099 *
2100 * The control element is supposed to have the private_value field
2101 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2102 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002103int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
2104 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
2106 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2107 hda_nid_t nid = get_amp_nid(kcontrol);
2108 int chs = get_amp_channels(kcontrol);
2109 int dir = get_amp_direction(kcontrol);
2110 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 long *valp = ucontrol->value.integer.value;
2112 int change = 0;
2113
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002114 if (chs & 1) {
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01002115 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
2116 HDA_AMP_MUTE,
2117 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002118 valp++;
2119 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002120 if (chs & 2)
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01002121 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
2122 HDA_AMP_MUTE,
2123 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002124 hda_call_check_power_status(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 return change;
2126}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002127EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Takashi Iwai532d5382007-07-27 19:02:40 +02002129/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 * SPDIF out controls
2131 */
2132
Takashi Iwai0ba21762007-04-16 11:29:14 +02002133static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
2134 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
2136 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
2137 uinfo->count = 1;
2138 return 0;
2139}
2140
Takashi Iwai0ba21762007-04-16 11:29:14 +02002141static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
2142 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143{
2144 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2145 IEC958_AES0_NONAUDIO |
2146 IEC958_AES0_CON_EMPHASIS_5015 |
2147 IEC958_AES0_CON_NOT_COPYRIGHT;
2148 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
2149 IEC958_AES1_CON_ORIGINAL;
2150 return 0;
2151}
2152
Takashi Iwai0ba21762007-04-16 11:29:14 +02002153static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
2154 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155{
2156 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2157 IEC958_AES0_NONAUDIO |
2158 IEC958_AES0_PRO_EMPHASIS_5015;
2159 return 0;
2160}
2161
Takashi Iwai0ba21762007-04-16 11:29:14 +02002162static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
2163 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164{
2165 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06002166 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002167 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Takashi Iwai08605062018-04-24 16:53:24 +02002169 if (WARN_ON(codec->spdif_out.used <= idx))
2170 return -EINVAL;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002171 mutex_lock(&codec->spdif_mutex);
2172 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c935972011-06-01 11:14:17 -06002173 ucontrol->value.iec958.status[0] = spdif->status & 0xff;
2174 ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff;
2175 ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff;
2176 ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002177 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179 return 0;
2180}
2181
2182/* convert from SPDIF status bits to HDA SPDIF bits
2183 * bit 0 (DigEn) is always set zero (to be filled later)
2184 */
2185static unsigned short convert_from_spdif_status(unsigned int sbits)
2186{
2187 unsigned short val = 0;
2188
2189 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002190 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002192 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002194 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
2195 IEC958_AES0_PRO_EMPHASIS_5015)
2196 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002198 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
2199 IEC958_AES0_CON_EMPHASIS_5015)
2200 val |= AC_DIG1_EMPHASIS;
2201 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
2202 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02002204 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
2206 }
2207 return val;
2208}
2209
2210/* convert to SPDIF status bits from HDA SPDIF bits
2211 */
2212static unsigned int convert_to_spdif_status(unsigned short val)
2213{
2214 unsigned int sbits = 0;
2215
Takashi Iwai0ba21762007-04-16 11:29:14 +02002216 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002218 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 sbits |= IEC958_AES0_PROFESSIONAL;
2220 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwaia686fd12013-03-20 15:42:00 +01002221 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
2223 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002224 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002226 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002228 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
2230 sbits |= val & (0x7f << 8);
2231 }
2232 return sbits;
2233}
2234
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02002235/* set digital convert verbs both for the given NID and its followers */
Takashi Iwai2f728532008-09-25 16:32:41 +02002236static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaia551d912015-02-26 12:34:49 +01002237 int mask, int val)
Takashi Iwai2f728532008-09-25 16:32:41 +02002238{
Takashi Iwaidda14412011-05-02 11:29:30 +02002239 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02002240
Takashi Iwaia551d912015-02-26 12:34:49 +01002241 snd_hdac_regmap_update(&codec->core, nid, AC_VERB_SET_DIGI_CONVERT_1,
2242 mask, val);
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02002243 d = codec->follower_dig_outs;
Takashi Iwai2f728532008-09-25 16:32:41 +02002244 if (!d)
2245 return;
2246 for (; *d; d++)
Takashi Iwai7d4b5e92015-04-16 15:14:53 +02002247 snd_hdac_regmap_update(&codec->core, *d,
Takashi Iwaia551d912015-02-26 12:34:49 +01002248 AC_VERB_SET_DIGI_CONVERT_1, mask, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02002249}
2250
2251static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
2252 int dig1, int dig2)
2253{
Takashi Iwaia551d912015-02-26 12:34:49 +01002254 unsigned int mask = 0;
2255 unsigned int val = 0;
2256
2257 if (dig1 != -1) {
2258 mask |= 0xff;
2259 val = dig1;
2260 }
2261 if (dig2 != -1) {
2262 mask |= 0xff00;
2263 val |= dig2 << 8;
2264 }
2265 set_dig_out(codec, nid, mask, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02002266}
2267
Takashi Iwai0ba21762007-04-16 11:29:14 +02002268static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
2269 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270{
2271 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06002272 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002273 struct hda_spdif_out *spdif;
2274 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 unsigned short val;
2276 int change;
2277
Takashi Iwai08605062018-04-24 16:53:24 +02002278 if (WARN_ON(codec->spdif_out.used <= idx))
2279 return -EINVAL;
Ingo Molnar62932df2006-01-16 16:34:20 +01002280 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002281 spdif = snd_array_elem(&codec->spdif_out, idx);
2282 nid = spdif->nid;
Stephen Warren7c935972011-06-01 11:14:17 -06002283 spdif->status = ucontrol->value.iec958.status[0] |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
2285 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
2286 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
Stephen Warren7c935972011-06-01 11:14:17 -06002287 val = convert_from_spdif_status(spdif->status);
2288 val |= spdif->ctls & 1;
2289 change = spdif->ctls != val;
2290 spdif->ctls = val;
Stephen Warren74b654c2011-06-01 11:14:18 -06002291 if (change && nid != (u16)-1)
Takashi Iwai2f728532008-09-25 16:32:41 +02002292 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Ingo Molnar62932df2006-01-16 16:34:20 +01002293 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 return change;
2295}
2296
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002297#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Takashi Iwai0ba21762007-04-16 11:29:14 +02002299static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
2300 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301{
2302 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06002303 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002304 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Takashi Iwai08605062018-04-24 16:53:24 +02002306 if (WARN_ON(codec->spdif_out.used <= idx))
2307 return -EINVAL;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002308 mutex_lock(&codec->spdif_mutex);
2309 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c935972011-06-01 11:14:17 -06002310 ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002311 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 return 0;
2313}
2314
Stephen Warren74b654c2011-06-01 11:14:18 -06002315static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid,
2316 int dig1, int dig2)
2317{
2318 set_dig_out_convert(codec, nid, dig1, dig2);
2319 /* unmute amp switch (if any) */
2320 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
2321 (dig1 & AC_DIG1_ENABLE))
2322 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2323 HDA_AMP_MUTE, 0);
2324}
2325
Takashi Iwai0ba21762007-04-16 11:29:14 +02002326static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
2327 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328{
2329 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06002330 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002331 struct hda_spdif_out *spdif;
2332 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 unsigned short val;
2334 int change;
2335
Takashi Iwai08605062018-04-24 16:53:24 +02002336 if (WARN_ON(codec->spdif_out.used <= idx))
2337 return -EINVAL;
Ingo Molnar62932df2006-01-16 16:34:20 +01002338 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002339 spdif = snd_array_elem(&codec->spdif_out, idx);
2340 nid = spdif->nid;
Stephen Warren7c935972011-06-01 11:14:17 -06002341 val = spdif->ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02002343 val |= AC_DIG1_ENABLE;
Stephen Warren7c935972011-06-01 11:14:17 -06002344 change = spdif->ctls != val;
Stephen Warren74b654c2011-06-01 11:14:18 -06002345 spdif->ctls = val;
2346 if (change && nid != (u16)-1)
2347 set_spdif_ctls(codec, nid, val & 0xff, -1);
Ingo Molnar62932df2006-01-16 16:34:20 +01002348 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 return change;
2350}
2351
Takashi Iwai35ace5e2020-01-03 09:16:52 +01002352static const struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 {
2354 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2355 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002356 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 .info = snd_hda_spdif_mask_info,
2358 .get = snd_hda_spdif_cmask_get,
2359 },
2360 {
2361 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2362 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002363 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 .info = snd_hda_spdif_mask_info,
2365 .get = snd_hda_spdif_pmask_get,
2366 },
2367 {
2368 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002369 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 .info = snd_hda_spdif_mask_info,
2371 .get = snd_hda_spdif_default_get,
2372 .put = snd_hda_spdif_default_put,
2373 },
2374 {
2375 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002376 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 .info = snd_hda_spdif_out_switch_info,
2378 .get = snd_hda_spdif_out_switch_get,
2379 .put = snd_hda_spdif_out_switch_put,
2380 },
2381 { } /* end */
2382};
2383
2384/**
Takashi Iwaidcda5802012-10-12 17:24:51 +02002385 * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 * @codec: the HDA codec
Takashi Iwaidcda5802012-10-12 17:24:51 +02002387 * @associated_nid: NID that new ctls associated with
2388 * @cvt_nid: converter NID
2389 * @type: HDA_PCM_TYPE_*
2390 * Creates controls related with the digital output.
2391 * Called from each patch supporting the digital out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 *
2393 * Returns 0 if successful, or a negative error code.
2394 */
Takashi Iwaidcda5802012-10-12 17:24:51 +02002395int snd_hda_create_dig_out_ctls(struct hda_codec *codec,
2396 hda_nid_t associated_nid,
2397 hda_nid_t cvt_nid,
2398 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399{
2400 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002401 struct snd_kcontrol *kctl;
Takashi Iwai35ace5e2020-01-03 09:16:52 +01002402 const struct snd_kcontrol_new *dig_mix;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002403 int idx = 0;
Takashi Iwaia551d912015-02-26 12:34:49 +01002404 int val = 0;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002405 const int spdif_index = 16;
Stephen Warren7c935972011-06-01 11:14:17 -06002406 struct hda_spdif_out *spdif;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002407 struct hda_bus *bus = codec->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002409 if (bus->primary_dig_out_type == HDA_PCM_TYPE_HDMI &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02002410 type == HDA_PCM_TYPE_SPDIF) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002411 idx = spdif_index;
2412 } else if (bus->primary_dig_out_type == HDA_PCM_TYPE_SPDIF &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02002413 type == HDA_PCM_TYPE_HDMI) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002414 /* suppose a single SPDIF device */
2415 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2416 kctl = find_mixer_ctl(codec, dig_mix->name, 0, 0);
2417 if (!kctl)
2418 break;
2419 kctl->id.index = spdif_index;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002420 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002421 bus->primary_dig_out_type = HDA_PCM_TYPE_HDMI;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002422 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002423 if (!bus->primary_dig_out_type)
2424 bus->primary_dig_out_type = type;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002425
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002426 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", idx);
Takashi Iwai1afe2062010-12-23 10:17:52 +01002427 if (idx < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01002428 codec_err(codec, "too many IEC958 outputs\n");
Takashi Iwai09f99702008-02-04 12:31:13 +01002429 return -EBUSY;
2430 }
Stephen Warren7c935972011-06-01 11:14:17 -06002431 spdif = snd_array_new(&codec->spdif_out);
Mengdong Lin25336e82013-03-07 14:10:25 -05002432 if (!spdif)
2433 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2435 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01002436 if (!kctl)
2437 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01002438 kctl->id.index = idx;
Stephen Warren7c935972011-06-01 11:14:17 -06002439 kctl->private_value = codec->spdif_out.used - 1;
Stephen Warren74b654c2011-06-01 11:14:18 -06002440 err = snd_hda_ctl_add(codec, associated_nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002441 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 return err;
2443 }
Stephen Warren74b654c2011-06-01 11:14:18 -06002444 spdif->nid = cvt_nid;
Takashi Iwaia551d912015-02-26 12:34:49 +01002445 snd_hdac_regmap_read(&codec->core, cvt_nid,
2446 AC_VERB_GET_DIGI_CONVERT_1, &val);
2447 spdif->ctls = val;
Stephen Warren7c935972011-06-01 11:14:17 -06002448 spdif->status = convert_to_spdif_status(spdif->ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 return 0;
2450}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002451EXPORT_SYMBOL_GPL(snd_hda_create_dig_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Takashi Iwai95a962c2014-10-29 16:03:58 +01002453/**
2454 * snd_hda_spdif_out_of_nid - get the hda_spdif_out entry from the given NID
2455 * @codec: the HDA codec
2456 * @nid: widget NID
2457 *
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002458 * call within spdif_mutex lock
2459 */
Stephen Warren7c935972011-06-01 11:14:17 -06002460struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec,
2461 hda_nid_t nid)
2462{
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02002463 struct hda_spdif_out *spdif;
Stephen Warren7c935972011-06-01 11:14:17 -06002464 int i;
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02002465
2466 snd_array_for_each(&codec->spdif_out, i, spdif) {
Stephen Warren7c935972011-06-01 11:14:17 -06002467 if (spdif->nid == nid)
2468 return spdif;
2469 }
2470 return NULL;
2471}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002472EXPORT_SYMBOL_GPL(snd_hda_spdif_out_of_nid);
Stephen Warren7c935972011-06-01 11:14:17 -06002473
Takashi Iwai95a962c2014-10-29 16:03:58 +01002474/**
2475 * snd_hda_spdif_ctls_unassign - Unassign the given SPDIF ctl
2476 * @codec: the HDA codec
2477 * @idx: the SPDIF ctl index
2478 *
2479 * Unassign the widget from the given SPDIF control.
2480 */
Stephen Warren74b654c2011-06-01 11:14:18 -06002481void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx)
2482{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002483 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06002484
Takashi Iwai08605062018-04-24 16:53:24 +02002485 if (WARN_ON(codec->spdif_out.used <= idx))
2486 return;
Stephen Warren74b654c2011-06-01 11:14:18 -06002487 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002488 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06002489 spdif->nid = (u16)-1;
2490 mutex_unlock(&codec->spdif_mutex);
2491}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002492EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_unassign);
Stephen Warren74b654c2011-06-01 11:14:18 -06002493
Takashi Iwai95a962c2014-10-29 16:03:58 +01002494/**
2495 * snd_hda_spdif_ctls_assign - Assign the SPDIF controls to the given NID
2496 * @codec: the HDA codec
2497 * @idx: the SPDIF ctl idx
2498 * @nid: widget NID
2499 *
2500 * Assign the widget to the SPDIF control with the given index.
2501 */
Stephen Warren74b654c2011-06-01 11:14:18 -06002502void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid)
2503{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002504 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06002505 unsigned short val;
2506
Takashi Iwai08605062018-04-24 16:53:24 +02002507 if (WARN_ON(codec->spdif_out.used <= idx))
2508 return;
Stephen Warren74b654c2011-06-01 11:14:18 -06002509 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002510 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06002511 if (spdif->nid != nid) {
2512 spdif->nid = nid;
2513 val = spdif->ctls;
2514 set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff);
2515 }
2516 mutex_unlock(&codec->spdif_mutex);
2517}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002518EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_assign);
Stephen Warren74b654c2011-06-01 11:14:18 -06002519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520/*
Takashi Iwai9a081602008-02-12 18:37:26 +01002521 * SPDIF sharing with analog output
2522 */
2523static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
2524 struct snd_ctl_elem_value *ucontrol)
2525{
2526 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2527 ucontrol->value.integer.value[0] = mout->share_spdif;
2528 return 0;
2529}
2530
2531static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
2532 struct snd_ctl_elem_value *ucontrol)
2533{
2534 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2535 mout->share_spdif = !!ucontrol->value.integer.value[0];
2536 return 0;
2537}
2538
Bhumika Goyalf3b827e2017-02-20 00:18:09 +05302539static const struct snd_kcontrol_new spdif_share_sw = {
Takashi Iwai9a081602008-02-12 18:37:26 +01002540 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2541 .name = "IEC958 Default PCM Playback Switch",
2542 .info = snd_ctl_boolean_mono_info,
2543 .get = spdif_share_sw_get,
2544 .put = spdif_share_sw_put,
2545};
2546
Takashi Iwaid5191e52009-11-16 14:58:17 +01002547/**
2548 * snd_hda_create_spdif_share_sw - create Default PCM switch
2549 * @codec: the HDA codec
2550 * @mout: multi-out instance
2551 */
Takashi Iwai9a081602008-02-12 18:37:26 +01002552int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
2553 struct hda_multi_out *mout)
2554{
Mengdong Lin4c7a5482013-03-07 14:11:05 -05002555 struct snd_kcontrol *kctl;
2556
Takashi Iwai9a081602008-02-12 18:37:26 +01002557 if (!mout->dig_out_nid)
2558 return 0;
Mengdong Lin4c7a5482013-03-07 14:11:05 -05002559
2560 kctl = snd_ctl_new1(&spdif_share_sw, mout);
2561 if (!kctl)
2562 return -ENOMEM;
Takashi Iwai9a081602008-02-12 18:37:26 +01002563 /* ATTENTION: here mout is passed as private_data, instead of codec */
Mengdong Lin4c7a5482013-03-07 14:11:05 -05002564 return snd_hda_ctl_add(codec, mout->dig_out_nid, kctl);
Takashi Iwai9a081602008-02-12 18:37:26 +01002565}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002566EXPORT_SYMBOL_GPL(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01002567
2568/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 * SPDIF input
2570 */
2571
2572#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
2573
Takashi Iwai0ba21762007-04-16 11:29:14 +02002574static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
2575 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576{
2577 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2578
2579 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
2580 return 0;
2581}
2582
Takashi Iwai0ba21762007-04-16 11:29:14 +02002583static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
2584 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
2586 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2587 hda_nid_t nid = kcontrol->private_value;
2588 unsigned int val = !!ucontrol->value.integer.value[0];
2589 int change;
2590
Ingo Molnar62932df2006-01-16 16:34:20 +01002591 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002593 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 codec->spdif_in_enable = val;
Takashi Iwaia551d912015-02-26 12:34:49 +01002595 snd_hdac_regmap_write(&codec->core, nid,
2596 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002598 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 return change;
2600}
2601
Takashi Iwai0ba21762007-04-16 11:29:14 +02002602static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
2603 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604{
2605 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2606 hda_nid_t nid = kcontrol->private_value;
Takashi Iwaia551d912015-02-26 12:34:49 +01002607 unsigned int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 unsigned int sbits;
2609
Takashi Iwaia551d912015-02-26 12:34:49 +01002610 snd_hdac_regmap_read(&codec->core, nid,
2611 AC_VERB_GET_DIGI_CONVERT_1, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 sbits = convert_to_spdif_status(val);
2613 ucontrol->value.iec958.status[0] = sbits;
2614 ucontrol->value.iec958.status[1] = sbits >> 8;
2615 ucontrol->value.iec958.status[2] = sbits >> 16;
2616 ucontrol->value.iec958.status[3] = sbits >> 24;
2617 return 0;
2618}
2619
Takashi Iwai35ace5e2020-01-03 09:16:52 +01002620static const struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 {
2622 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002623 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 .info = snd_hda_spdif_in_switch_info,
2625 .get = snd_hda_spdif_in_switch_get,
2626 .put = snd_hda_spdif_in_switch_put,
2627 },
2628 {
2629 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2630 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002631 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 .info = snd_hda_spdif_mask_info,
2633 .get = snd_hda_spdif_in_status_get,
2634 },
2635 { } /* end */
2636};
2637
2638/**
2639 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
2640 * @codec: the HDA codec
2641 * @nid: audio in widget NID
2642 *
2643 * Creates controls related with the SPDIF input.
2644 * Called from each patch supporting the SPDIF in.
2645 *
2646 * Returns 0 if successful, or a negative error code.
2647 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002648int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649{
2650 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002651 struct snd_kcontrol *kctl;
Takashi Iwai35ace5e2020-01-03 09:16:52 +01002652 const struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01002653 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654
Takashi Iwaidcda5802012-10-12 17:24:51 +02002655 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01002656 if (idx < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01002657 codec_err(codec, "too many IEC958 inputs\n");
Takashi Iwai09f99702008-02-04 12:31:13 +01002658 return -EBUSY;
2659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
2661 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaic8dcdf82009-02-06 16:21:20 +01002662 if (!kctl)
2663 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 kctl->private_value = nid;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002665 err = snd_hda_ctl_add(codec, nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002666 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 return err;
2668 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002669 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01002670 snd_hda_codec_read(codec, nid, 0,
2671 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02002672 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 return 0;
2674}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002675EXPORT_SYMBOL_GPL(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
Takashi Iwai95a962c2014-10-29 16:03:58 +01002677/**
2678 * snd_hda_codec_set_power_to_all - Set the power state to all widgets
2679 * @codec: the HDA codec
2680 * @fg: function group (not used now)
2681 * @power_state: the power state to set (AC_PWRST_*)
2682 *
2683 * Set the given power state to all widgets that have the power control.
2684 * If the codec has power_filter set, it evaluates the power state and
2685 * filter out if it's unchanged as D3.
2686 */
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002687void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg,
Takashi Iwai9419ab62013-01-24 17:23:35 +01002688 unsigned int power_state)
Takashi Iwai54d17402005-11-21 16:33:22 +01002689{
Takashi Iwai7639a062015-03-03 10:07:24 +01002690 hda_nid_t nid;
Takashi Iwai54d17402005-11-21 16:33:22 +01002691
Takashi Iwai7639a062015-03-03 10:07:24 +01002692 for_each_hda_codec_node(nid, codec) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002693 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9419ab62013-01-24 17:23:35 +01002694 unsigned int state = power_state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002695 if (!(wcaps & AC_WCAP_POWER))
2696 continue;
Takashi Iwai9419ab62013-01-24 17:23:35 +01002697 if (codec->power_filter) {
2698 state = codec->power_filter(codec, nid, power_state);
2699 if (state != power_state && power_state == AC_PWRST_D3)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002700 continue;
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002701 }
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002702 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
Takashi Iwai9419ab62013-01-24 17:23:35 +01002703 state);
Takashi Iwai54d17402005-11-21 16:33:22 +01002704 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002705}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002706EXPORT_SYMBOL_GPL(snd_hda_codec_set_power_to_all);
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002707
Takashi Iwai95a962c2014-10-29 16:03:58 +01002708/**
2709 * snd_hda_codec_eapd_power_filter - A power filter callback for EAPD
2710 * @codec: the HDA codec
2711 * @nid: widget NID
2712 * @power_state: power state to evalue
2713 *
2714 * Don't power down the widget if it controls eapd and EAPD_BTLENABLE is set.
2715 * This can be used a codec power_filter callback.
2716 */
Takashi Iwaiba615b82013-03-13 14:47:21 +01002717unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec,
2718 hda_nid_t nid,
2719 unsigned int power_state)
Takashi Iwai9419ab62013-01-24 17:23:35 +01002720{
Takashi Iwai7639a062015-03-03 10:07:24 +01002721 if (nid == codec->core.afg || nid == codec->core.mfg)
Takashi Iwaidfc6e462014-01-13 16:09:57 +01002722 return power_state;
Takashi Iwai9419ab62013-01-24 17:23:35 +01002723 if (power_state == AC_PWRST_D3 &&
2724 get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN &&
2725 (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) {
2726 int eapd = snd_hda_codec_read(codec, nid, 0,
2727 AC_VERB_GET_EAPD_BTLENABLE, 0);
2728 if (eapd & 0x02)
2729 return AC_PWRST_D0;
2730 }
2731 return power_state;
2732}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002733EXPORT_SYMBOL_GPL(snd_hda_codec_eapd_power_filter);
Takashi Iwai9419ab62013-01-24 17:23:35 +01002734
Takashi Iwai432c6412012-08-28 09:59:20 -07002735/*
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002736 * set power state of the codec, and return the power state
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002737 */
Takashi Iwaid8193872012-08-31 07:54:38 -07002738static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002739 unsigned int power_state)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002740{
Takashi Iwai7639a062015-03-03 10:07:24 +01002741 hda_nid_t fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Wang Xingchao09617ce2012-06-08 10:26:08 +08002742 int count;
2743 unsigned int state;
Takashi Iwai63e51fd72013-06-06 14:20:19 +02002744 int flags = 0;
Wang Xingchao09617ce2012-06-08 10:26:08 +08002745
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002746 /* this delay seems necessary to avoid click noise at power-down */
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08002747 if (power_state == AC_PWRST_D3) {
Mengdong Lin7f132922013-11-29 01:48:45 -05002748 if (codec->depop_delay < 0)
Takashi Iwai7639a062015-03-03 10:07:24 +01002749 msleep(codec_has_epss(codec) ? 10 : 100);
Mengdong Lin7f132922013-11-29 01:48:45 -05002750 else if (codec->depop_delay > 0)
2751 msleep(codec->depop_delay);
Takashi Iwai63e51fd72013-06-06 14:20:19 +02002752 flags = HDA_RW_NO_RESPONSE_FALLBACK;
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08002753 }
Wang Xingchao09617ce2012-06-08 10:26:08 +08002754
2755 /* repeat power states setting at most 10 times*/
2756 for (count = 0; count < 10; count++) {
Takashi Iwai432c6412012-08-28 09:59:20 -07002757 if (codec->patch_ops.set_power_state)
2758 codec->patch_ops.set_power_state(codec, fg,
2759 power_state);
2760 else {
Takashi Iwaidfc6e462014-01-13 16:09:57 +01002761 state = power_state;
2762 if (codec->power_filter)
2763 state = codec->power_filter(codec, fg, state);
2764 if (state == power_state || power_state != AC_PWRST_D3)
2765 snd_hda_codec_read(codec, fg, flags,
2766 AC_VERB_SET_POWER_STATE,
2767 state);
Takashi Iwai9419ab62013-01-24 17:23:35 +01002768 snd_hda_codec_set_power_to_all(codec, fg, power_state);
Takashi Iwai432c6412012-08-28 09:59:20 -07002769 }
Abhijeet Kumar3b5b8992018-01-23 23:00:52 +05302770 state = snd_hda_sync_power_state(codec, fg, power_state);
Wang Xingchao09617ce2012-06-08 10:26:08 +08002771 if (!(state & AC_PWRST_ERROR))
2772 break;
2773 }
Mengdong Linb8dfc4622012-08-23 17:32:30 +08002774
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002775 return state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002776}
Takashi Iwai54d17402005-11-21 16:33:22 +01002777
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002778/* sync power states of all widgets;
2779 * this is called at the end of codec parsing
2780 */
2781static void sync_power_up_states(struct hda_codec *codec)
2782{
Takashi Iwai7639a062015-03-03 10:07:24 +01002783 hda_nid_t nid;
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002784
Takashi Iwaiba615b82013-03-13 14:47:21 +01002785 /* don't care if no filter is used */
2786 if (!codec->power_filter)
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002787 return;
2788
Takashi Iwai7639a062015-03-03 10:07:24 +01002789 for_each_hda_codec_node(nid, codec) {
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002790 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9040d102013-01-24 17:47:17 +01002791 unsigned int target;
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002792 if (!(wcaps & AC_WCAP_POWER))
2793 continue;
2794 target = codec->power_filter(codec, nid, AC_PWRST_D0);
2795 if (target == AC_PWRST_D0)
2796 continue;
Takashi Iwai9040d102013-01-24 17:47:17 +01002797 if (!snd_hda_check_power_state(codec, nid, target))
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002798 snd_hda_codec_write(codec, nid, 0,
2799 AC_VERB_SET_POWER_STATE, target);
2800 }
2801}
2802
Takashi Iwai648a8d22014-02-25 10:38:13 +01002803#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai11aeff02008-07-30 15:01:46 +02002804/* execute additional init verbs */
2805static void hda_exec_init_verbs(struct hda_codec *codec)
2806{
2807 if (codec->init_verbs.list)
2808 snd_hda_sequence_write(codec, codec->init_verbs.list);
2809}
2810#else
2811static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
2812#endif
2813
Takashi Iwai2a439522011-07-26 09:52:50 +02002814#ifdef CONFIG_PM
Takashi Iwaicc72da72015-02-19 16:00:22 +01002815/* update the power on/off account with the current jiffies */
2816static void update_power_acct(struct hda_codec *codec, bool on)
2817{
2818 unsigned long delta = jiffies - codec->power_jiffies;
2819
2820 if (on)
2821 codec->power_on_acct += delta;
2822 else
2823 codec->power_off_acct += delta;
2824 codec->power_jiffies += delta;
2825}
2826
2827void snd_hda_update_power_acct(struct hda_codec *codec)
2828{
2829 update_power_acct(codec, hda_codec_is_power_on(codec));
2830}
2831
Takashi Iwaicb53c622007-08-10 17:21:45 +02002832/*
2833 * call suspend and power-down; used both from PM and power-save
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002834 * this function returns the power state in the end
Takashi Iwaicb53c622007-08-10 17:21:45 +02002835 */
Takashi Iwaicc72da72015-02-19 16:00:22 +01002836static unsigned int hda_call_codec_suspend(struct hda_codec *codec)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002837{
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002838 unsigned int state;
2839
Takashi Iwaifeb20fa2018-06-27 09:03:51 +02002840 snd_hdac_enter_pm(&codec->core);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002841 if (codec->patch_ops.suspend)
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002842 codec->patch_ops.suspend(codec);
Takashi Iwaieb541332010-08-06 13:48:11 +02002843 hda_cleanup_all_streams(codec);
Takashi Iwaid8193872012-08-31 07:54:38 -07002844 state = hda_set_power_state(codec, AC_PWRST_D3);
Takashi Iwaicc72da72015-02-19 16:00:22 +01002845 update_power_acct(codec, true);
Takashi Iwaifeb20fa2018-06-27 09:03:51 +02002846 snd_hdac_leave_pm(&codec->core);
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002847 return state;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002848}
2849
2850/*
2851 * kick up codec; used both from PM and power-save
2852 */
2853static void hda_call_codec_resume(struct hda_codec *codec)
2854{
Takashi Iwaifeb20fa2018-06-27 09:03:51 +02002855 snd_hdac_enter_pm(&codec->core);
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01002856 if (codec->core.regmap)
2857 regcache_mark_dirty(codec->core.regmap);
2858
Takashi Iwaicc72da72015-02-19 16:00:22 +01002859 codec->power_jiffies = jiffies;
Takashi Iwaicc72da72015-02-19 16:00:22 +01002860
Takashi Iwaid8193872012-08-31 07:54:38 -07002861 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwaiac0547d2010-07-05 16:50:13 +02002862 restore_shutup_pins(codec);
Takashi Iwai11aeff02008-07-30 15:01:46 +02002863 hda_exec_init_verbs(codec);
Takashi Iwai31614bb2013-01-23 15:58:40 +01002864 snd_hda_jack_set_dirty_all(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002865 if (codec->patch_ops.resume)
2866 codec->patch_ops.resume(codec);
2867 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02002868 if (codec->patch_ops.init)
2869 codec->patch_ops.init(codec);
Takashi Iwai1a462be2020-01-09 10:01:04 +01002870 snd_hda_regmap_sync(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002871 }
David Henningsson26a6cb62012-10-09 15:04:21 +02002872
2873 if (codec->jackpoll_interval)
2874 hda_jackpoll_work(&codec->jackpoll_work.work);
Takashi Iwai31614bb2013-01-23 15:58:40 +01002875 else
David Henningsson26a6cb62012-10-09 15:04:21 +02002876 snd_hda_jack_report_sync(codec);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002877 codec->core.dev.power.power_state = PMSG_ON;
Takashi Iwaifeb20fa2018-06-27 09:03:51 +02002878 snd_hdac_leave_pm(&codec->core);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002879}
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002880
Kai-Heng Feng2b73649c2021-01-19 23:21:43 +08002881static int hda_codec_runtime_suspend(struct device *dev)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002882{
2883 struct hda_codec *codec = dev_to_hda_codec(dev);
Takashi Iwaicc72da72015-02-19 16:00:22 +01002884 unsigned int state;
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002885
Ranjani Sridharan7fcd9bb2020-07-28 16:10:11 -07002886 /* Nothing to do if card registration fails and the component driver never probes */
2887 if (!codec->card)
2888 return 0;
2889
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002890 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwaicc72da72015-02-19 16:00:22 +01002891 state = hda_call_codec_suspend(codec);
Takashi Iwai57cb54e2018-06-21 13:33:53 +02002892 if (codec->link_down_at_suspend ||
2893 (codec_has_clkstop(codec) && codec_has_epss(codec) &&
2894 (state & AC_PWRST_CLK_STOP_OK)))
Takashi Iwai7639a062015-03-03 10:07:24 +01002895 snd_hdac_codec_link_down(&codec->core);
Imre Deak30994062021-06-23 16:46:01 +03002896 snd_hda_codec_display_power(codec, false);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002897 return 0;
2898}
2899
Kai-Heng Feng2b73649c2021-01-19 23:21:43 +08002900static int hda_codec_runtime_resume(struct device *dev)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002901{
Takashi Iwai55ed9cd2015-02-19 17:35:32 +01002902 struct hda_codec *codec = dev_to_hda_codec(dev);
2903
Ranjani Sridharan7fcd9bb2020-07-28 16:10:11 -07002904 /* Nothing to do if card registration fails and the component driver never probes */
2905 if (!codec->card)
2906 return 0;
2907
Imre Deak30994062021-06-23 16:46:01 +03002908 snd_hda_codec_display_power(codec, true);
Takashi Iwai7639a062015-03-03 10:07:24 +01002909 snd_hdac_codec_link_up(&codec->core);
Takashi Iwai55ed9cd2015-02-19 17:35:32 +01002910 hda_call_codec_resume(codec);
Takashi Iwaicc72da72015-02-19 16:00:22 +01002911 pm_runtime_mark_last_busy(dev);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002912 return 0;
2913}
Kai-Heng Feng215a22e2020-10-27 21:00:36 +08002914
Takashi Iwai2a439522011-07-26 09:52:50 +02002915#endif /* CONFIG_PM */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002916
Takashi Iwai98081ca2019-01-29 14:03:33 +01002917#ifdef CONFIG_PM_SLEEP
Kai-Heng Feng215a22e2020-10-27 21:00:36 +08002918static int hda_codec_pm_prepare(struct device *dev)
2919{
Hui Wangb8b90c12021-06-02 22:54:24 +08002920 dev->power.power_state = PMSG_SUSPEND;
Kai-Heng Feng215a22e2020-10-27 21:00:36 +08002921 return pm_runtime_suspended(dev);
2922}
2923
2924static void hda_codec_pm_complete(struct device *dev)
Hui Wangb5a236c2019-03-19 09:28:44 +08002925{
Takashi Iwai4914da22019-07-16 08:56:51 +02002926 struct hda_codec *codec = dev_to_hda_codec(dev);
Hui Wangb5a236c2019-03-19 09:28:44 +08002927
Hui Wangb8b90c12021-06-02 22:54:24 +08002928 /* If no other pm-functions are called between prepare() and complete() */
2929 if (dev->power.power_state.event == PM_EVENT_SUSPEND)
2930 dev->power.power_state = PMSG_RESUME;
2931
Kai-Heng Feng215a22e2020-10-27 21:00:36 +08002932 if (pm_runtime_suspended(dev) && (codec->jackpoll_interval ||
2933 hda_codec_need_resume(codec) || codec->forced_resume))
2934 pm_request_resume(dev);
Hui Wangb5a236c2019-03-19 09:28:44 +08002935}
2936
Takashi Iwai98081ca2019-01-29 14:03:33 +01002937static int hda_codec_pm_suspend(struct device *dev)
2938{
2939 dev->power.power_state = PMSG_SUSPEND;
Kai-Heng Feng2b73649c2021-01-19 23:21:43 +08002940 return pm_runtime_force_suspend(dev);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002941}
2942
2943static int hda_codec_pm_resume(struct device *dev)
2944{
2945 dev->power.power_state = PMSG_RESUME;
Kai-Heng Feng2b73649c2021-01-19 23:21:43 +08002946 return pm_runtime_force_resume(dev);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002947}
2948
2949static int hda_codec_pm_freeze(struct device *dev)
2950{
2951 dev->power.power_state = PMSG_FREEZE;
Kai-Heng Feng2b73649c2021-01-19 23:21:43 +08002952 return pm_runtime_force_suspend(dev);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002953}
2954
2955static int hda_codec_pm_thaw(struct device *dev)
2956{
2957 dev->power.power_state = PMSG_THAW;
Kai-Heng Feng2b73649c2021-01-19 23:21:43 +08002958 return pm_runtime_force_resume(dev);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002959}
2960
2961static int hda_codec_pm_restore(struct device *dev)
2962{
2963 dev->power.power_state = PMSG_RESTORE;
Kai-Heng Feng2b73649c2021-01-19 23:21:43 +08002964 return pm_runtime_force_resume(dev);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002965}
2966#endif /* CONFIG_PM_SLEEP */
2967
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002968/* referred in hda_bind.c */
2969const struct dev_pm_ops hda_codec_driver_pm = {
Takashi Iwai98081ca2019-01-29 14:03:33 +01002970#ifdef CONFIG_PM_SLEEP
Kai-Heng Feng215a22e2020-10-27 21:00:36 +08002971 .prepare = hda_codec_pm_prepare,
2972 .complete = hda_codec_pm_complete,
Takashi Iwai98081ca2019-01-29 14:03:33 +01002973 .suspend = hda_codec_pm_suspend,
2974 .resume = hda_codec_pm_resume,
2975 .freeze = hda_codec_pm_freeze,
2976 .thaw = hda_codec_pm_thaw,
2977 .poweroff = hda_codec_pm_suspend,
2978 .restore = hda_codec_pm_restore,
2979#endif /* CONFIG_PM_SLEEP */
Takashi Iwaicc72da72015-02-19 16:00:22 +01002980 SET_RUNTIME_PM_OPS(hda_codec_runtime_suspend, hda_codec_runtime_resume,
2981 NULL)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002982};
Takashi Iwai54d17402005-11-21 16:33:22 +01002983
Takashi Iwai9c9a5172012-07-31 11:35:35 +02002984/*
2985 * add standard channel maps if not specified
2986 */
2987static int add_std_chmaps(struct hda_codec *codec)
2988{
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002989 struct hda_pcm *pcm;
2990 int str, err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02002991
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002992 list_for_each_entry(pcm, &codec->pcm_list_head, list) {
Takashi Iwai9c9a5172012-07-31 11:35:35 +02002993 for (str = 0; str < 2; str++) {
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002994 struct hda_pcm_stream *hinfo = &pcm->stream[str];
Takashi Iwai9c9a5172012-07-31 11:35:35 +02002995 struct snd_pcm_chmap *chmap;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01002996 const struct snd_pcm_chmap_elem *elem;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02002997
Takashi Iwaib25cf302015-08-26 14:21:14 +02002998 if (!pcm->pcm || pcm->own_chmap || !hinfo->substreams)
Takashi Iwai9c9a5172012-07-31 11:35:35 +02002999 continue;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003000 elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003001 err = snd_pcm_add_chmap_ctls(pcm->pcm, str, elem,
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003002 hinfo->channels_max,
3003 0, &chmap);
3004 if (err < 0)
3005 return err;
3006 chmap->channel_mask = SND_PCM_CHMAP_MASK_2468;
3007 }
3008 }
3009 return 0;
3010}
3011
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003012/* default channel maps for 2.1 speakers;
3013 * since HD-audio supports only stereo, odd number channels are omitted
3014 */
3015const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = {
3016 { .channels = 2,
3017 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
3018 { .channels = 4,
3019 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
3020 SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } },
3021 { }
3022};
3023EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps);
3024
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003025int snd_hda_codec_build_controls(struct hda_codec *codec)
3026{
3027 int err = 0;
Takashi Iwai11aeff02008-07-30 15:01:46 +02003028 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003029 /* continue to initialize... */
3030 if (codec->patch_ops.init)
3031 err = codec->patch_ops.init(codec);
3032 if (!err && codec->patch_ops.build_controls)
3033 err = codec->patch_ops.build_controls(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003034 if (err < 0)
3035 return err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003036
3037 /* we create chmaps here instead of build_pcms */
3038 err = add_std_chmaps(codec);
3039 if (err < 0)
3040 return err;
3041
David Henningsson26a6cb62012-10-09 15:04:21 +02003042 if (codec->jackpoll_interval)
3043 hda_jackpoll_work(&codec->jackpoll_work.work);
3044 else
3045 snd_hda_jack_report_sync(codec); /* call at the last init point */
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003046 sync_power_up_states(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 return 0;
3048}
Rakesh Ughreja24494d32018-06-01 22:53:56 -05003049EXPORT_SYMBOL_GPL(snd_hda_codec_build_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 * PCM stuff
3053 */
3054static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
3055 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003056 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057{
3058 return 0;
3059}
3060
3061static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
3062 struct hda_codec *codec,
3063 unsigned int stream_tag,
3064 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003065 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066{
3067 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
3068 return 0;
3069}
3070
3071static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
3072 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003073 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074{
Takashi Iwai888afa12008-03-18 09:57:50 +01003075 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 return 0;
3077}
3078
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003079static int set_pcm_default_values(struct hda_codec *codec,
3080 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003082 int err;
3083
Takashi Iwai0ba21762007-04-16 11:29:14 +02003084 /* query support PCM information from the given NID */
3085 if (info->nid && (!info->rates || !info->formats)) {
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003086 err = snd_hda_query_supported_pcm(codec, info->nid,
Takashi Iwai0ba21762007-04-16 11:29:14 +02003087 info->rates ? NULL : &info->rates,
3088 info->formats ? NULL : &info->formats,
3089 info->maxbps ? NULL : &info->maxbps);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003090 if (err < 0)
3091 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 }
3093 if (info->ops.open == NULL)
3094 info->ops.open = hda_pcm_default_open_close;
3095 if (info->ops.close == NULL)
3096 info->ops.close = hda_pcm_default_open_close;
3097 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02003098 if (snd_BUG_ON(!info->nid))
3099 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 info->ops.prepare = hda_pcm_default_prepare;
3101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02003103 if (snd_BUG_ON(!info->nid))
3104 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 info->ops.cleanup = hda_pcm_default_cleanup;
3106 }
3107 return 0;
3108}
3109
Takashi Iwaieb541332010-08-06 13:48:11 +02003110/*
3111 * codec prepare/cleanup entries
3112 */
Takashi Iwai95a962c2014-10-29 16:03:58 +01003113/**
3114 * snd_hda_codec_prepare - Prepare a stream
3115 * @codec: the HDA codec
3116 * @hinfo: PCM information
3117 * @stream: stream tag to assign
3118 * @format: format id to assign
3119 * @substream: PCM substream to assign
3120 *
3121 * Calls the prepare callback set by the codec with the given arguments.
3122 * Clean up the inactive streams when successful.
3123 */
Takashi Iwaieb541332010-08-06 13:48:11 +02003124int snd_hda_codec_prepare(struct hda_codec *codec,
3125 struct hda_pcm_stream *hinfo,
3126 unsigned int stream,
3127 unsigned int format,
3128 struct snd_pcm_substream *substream)
3129{
3130 int ret;
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003131 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwai61ca4102015-02-27 17:57:55 +01003132 if (hinfo->ops.prepare)
3133 ret = hinfo->ops.prepare(hinfo, codec, stream, format,
3134 substream);
3135 else
3136 ret = -ENODEV;
Takashi Iwaieb541332010-08-06 13:48:11 +02003137 if (ret >= 0)
3138 purify_inactive_streams(codec);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003139 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02003140 return ret;
3141}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003142EXPORT_SYMBOL_GPL(snd_hda_codec_prepare);
Takashi Iwaieb541332010-08-06 13:48:11 +02003143
Takashi Iwai95a962c2014-10-29 16:03:58 +01003144/**
Kai Vehmanen95ce82a2020-07-15 20:45:51 +03003145 * snd_hda_codec_cleanup - Clean up stream resources
Takashi Iwai95a962c2014-10-29 16:03:58 +01003146 * @codec: the HDA codec
3147 * @hinfo: PCM information
3148 * @substream: PCM substream
3149 *
3150 * Calls the cleanup callback set by the codec with the given arguments.
3151 */
Takashi Iwaieb541332010-08-06 13:48:11 +02003152void snd_hda_codec_cleanup(struct hda_codec *codec,
3153 struct hda_pcm_stream *hinfo,
3154 struct snd_pcm_substream *substream)
3155{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003156 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwai61ca4102015-02-27 17:57:55 +01003157 if (hinfo->ops.cleanup)
3158 hinfo->ops.cleanup(hinfo, codec, substream);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003159 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02003160}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003161EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup);
Takashi Iwaieb541332010-08-06 13:48:11 +02003162
Takashi Iwaid5191e52009-11-16 14:58:17 +01003163/* global */
Jaroslav Kyselae3303232009-11-10 14:53:02 +01003164const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = {
3165 "Audio", "SPDIF", "HDMI", "Modem"
3166};
3167
Takashi Iwai176d5332008-07-30 15:01:44 +02003168/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003169 * get the empty PCM device number to assign
3170 */
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003171static int get_empty_pcm_device(struct hda_bus *bus, unsigned int type)
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003172{
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003173 /* audio device indices; not linear to keep compatibility */
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003174 /* assigned to static slots up to dev#10; if more needed, assign
3175 * the later slot dynamically (when CONFIG_SND_DYNAMIC_MINORS=y)
3176 */
Takashi Iwaibf823262020-01-05 15:47:24 +01003177 static const int audio_idx[HDA_PCM_NTYPES][5] = {
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003178 [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 },
3179 [HDA_PCM_TYPE_SPDIF] = { 1, -1 },
Wu Fengguang92608ba2009-10-30 11:40:03 +01003180 [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 },
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003181 [HDA_PCM_TYPE_MODEM] = { 6, -1 },
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003182 };
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003183 int i;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003184
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003185 if (type >= HDA_PCM_NTYPES) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01003186 dev_err(bus->card->dev, "Invalid PCM type %d\n", type);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003187 return -EINVAL;
3188 }
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003189
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003190 for (i = 0; audio_idx[type][i] >= 0; i++) {
3191#ifndef CONFIG_SND_DYNAMIC_MINORS
3192 if (audio_idx[type][i] >= 8)
3193 break;
3194#endif
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003195 if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits))
3196 return audio_idx[type][i];
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003197 }
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003198
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003199#ifdef CONFIG_SND_DYNAMIC_MINORS
Takashi Iwai01b65bf2011-11-24 14:31:46 +01003200 /* non-fixed slots starting from 10 */
3201 for (i = 10; i < 32; i++) {
3202 if (!test_and_set_bit(i, bus->pcm_dev_bits))
3203 return i;
3204 }
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003205#endif
Takashi Iwai01b65bf2011-11-24 14:31:46 +01003206
Takashi Iwai4e76a882014-02-25 12:21:03 +01003207 dev_warn(bus->card->dev, "Too many %s devices\n",
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003208 snd_hda_pcm_type_name[type]);
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003209#ifndef CONFIG_SND_DYNAMIC_MINORS
Takashi Iwai4e76a882014-02-25 12:21:03 +01003210 dev_warn(bus->card->dev,
3211 "Consider building the kernel with CONFIG_SND_DYNAMIC_MINORS=y\n");
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003212#endif
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003213 return -EAGAIN;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003214}
3215
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003216/* call build_pcms ops of the given codec and set up the default parameters */
3217int snd_hda_codec_parse_pcms(struct hda_codec *codec)
Takashi Iwai176d5332008-07-30 15:01:44 +02003218{
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003219 struct hda_pcm *cpcm;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003220 int err;
Takashi Iwai176d5332008-07-30 15:01:44 +02003221
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003222 if (!list_empty(&codec->pcm_list_head))
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003223 return 0; /* already parsed */
3224
3225 if (!codec->patch_ops.build_pcms)
3226 return 0;
3227
3228 err = codec->patch_ops.build_pcms(codec);
3229 if (err < 0) {
3230 codec_err(codec, "cannot build PCMs for #%d (error %d)\n",
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003231 codec->core.addr, err);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003232 return err;
3233 }
3234
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003235 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003236 int stream;
3237
3238 for (stream = 0; stream < 2; stream++) {
3239 struct hda_pcm_stream *info = &cpcm->stream[stream];
3240
3241 if (!info->substreams)
3242 continue;
Takashi Iwai176d5332008-07-30 15:01:44 +02003243 err = set_pcm_default_values(codec, info);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003244 if (err < 0) {
3245 codec_warn(codec,
3246 "fail to setup default for PCM %s\n",
3247 cpcm->name);
Takashi Iwai176d5332008-07-30 15:01:44 +02003248 return err;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003249 }
Takashi Iwai176d5332008-07-30 15:01:44 +02003250 }
3251 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003252
3253 return 0;
Takashi Iwai176d5332008-07-30 15:01:44 +02003254}
Rakesh Ughreja24494d32018-06-01 22:53:56 -05003255EXPORT_SYMBOL_GPL(snd_hda_codec_parse_pcms);
Takashi Iwai176d5332008-07-30 15:01:44 +02003256
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003257/* assign all PCMs of the given codec */
3258int snd_hda_codec_build_pcms(struct hda_codec *codec)
3259{
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003260 struct hda_bus *bus = codec->bus;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003261 struct hda_pcm *cpcm;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003262 int dev, err;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003263
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003264 err = snd_hda_codec_parse_pcms(codec);
Takashi Iwaid2896192015-10-20 16:23:55 +02003265 if (err < 0)
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003266 return err;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003267
3268 /* attach a new PCM streams */
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003269 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003270 if (cpcm->pcm)
3271 continue; /* already attached */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003272 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
Takashi Iwai41b5b012009-01-20 18:21:23 +01003273 continue; /* no substreams assigned */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003274
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003275 dev = get_empty_pcm_device(bus, cpcm->pcm_type);
Wang YanQing1f7f51a2017-09-03 21:18:49 +08003276 if (dev < 0) {
3277 cpcm->device = SNDRV_PCM_INVALID_DEVICE;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003278 continue; /* no fatal error */
Wang YanQing1f7f51a2017-09-03 21:18:49 +08003279 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003280 cpcm->device = dev;
Takashi Iwai0a505752015-04-16 23:25:02 +02003281 err = snd_hda_attach_pcm_stream(bus, codec, cpcm);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003282 if (err < 0) {
3283 codec_err(codec,
3284 "cannot attach PCM stream %d for codec #%d\n",
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003285 dev, codec->core.addr);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003286 continue; /* no fatal error */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003287 }
3288 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003289
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003290 return 0;
3291}
3292
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 * snd_hda_add_new_ctls - create controls from the array
3295 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003296 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 *
3298 * This helper function creates and add new controls in the given array.
3299 * The array must be terminated with an empty entry as terminator.
3300 *
3301 * Returns 0 if successful, or a negative error code.
3302 */
Takashi Iwai031024e2011-05-02 11:29:30 +02003303int snd_hda_add_new_ctls(struct hda_codec *codec,
3304 const struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305{
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01003306 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
3308 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003309 struct snd_kcontrol *kctl;
Takashi Iwai1afe2062010-12-23 10:17:52 +01003310 int addr = 0, idx = 0;
Takashi Iwaiebd836e2018-07-25 23:00:51 +02003311 if (knew->iface == (__force snd_ctl_elem_iface_t)-1)
3312 continue; /* skip this codec private value */
Takashi Iwai1afe2062010-12-23 10:17:52 +01003313 for (;;) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003314 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003315 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01003316 return -ENOMEM;
Takashi Iwai1afe2062010-12-23 10:17:52 +01003317 if (addr > 0)
3318 kctl->id.device = addr;
3319 if (idx > 0)
3320 kctl->id.index = idx;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01003321 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003322 if (!err)
3323 break;
3324 /* try first with another device index corresponding to
3325 * the codec addr; if it still fails (or it's the
3326 * primary codec), then try another control index
3327 */
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003328 if (!addr && codec->core.addr)
3329 addr = codec->core.addr;
Takashi Iwai1afe2062010-12-23 10:17:52 +01003330 else if (!idx && !knew->index) {
3331 idx = find_empty_mixer_ctl_idx(codec,
Takashi Iwaidcda5802012-10-12 17:24:51 +02003332 knew->name, 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003333 if (idx <= 0)
3334 return err;
3335 } else
Takashi Iwai54d17402005-11-21 16:33:22 +01003336 return err;
3337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 }
3339 return 0;
3340}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003341EXPORT_SYMBOL_GPL(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342
Takashi Iwai83012a72012-08-24 18:38:08 +02003343#ifdef CONFIG_PM
Takashi Iwaibb573922015-02-20 09:26:04 +01003344static void codec_set_power_save(struct hda_codec *codec, int delay)
Takashi Iwaicc72da72015-02-19 16:00:22 +01003345{
3346 struct device *dev = hda_codec_dev(codec);
Takashi Iwaicc72da72015-02-19 16:00:22 +01003347
Lu, Han2377c3c2015-06-09 16:50:38 +08003348 if (delay == 0 && codec->auto_runtime_pm)
3349 delay = 3000;
3350
Takashi Iwaicc72da72015-02-19 16:00:22 +01003351 if (delay > 0) {
3352 pm_runtime_set_autosuspend_delay(dev, delay);
3353 pm_runtime_use_autosuspend(dev);
3354 pm_runtime_allow(dev);
3355 if (!pm_runtime_suspended(dev))
3356 pm_runtime_mark_last_busy(dev);
3357 } else {
3358 pm_runtime_dont_use_autosuspend(dev);
3359 pm_runtime_forbid(dev);
3360 }
3361}
Takashi Iwaibb573922015-02-20 09:26:04 +01003362
3363/**
3364 * snd_hda_set_power_save - reprogram autosuspend for the given delay
3365 * @bus: HD-audio bus
3366 * @delay: autosuspend delay in msec, 0 = off
3367 *
3368 * Synchronize the runtime PM autosuspend state from the power_save option.
3369 */
3370void snd_hda_set_power_save(struct hda_bus *bus, int delay)
3371{
3372 struct hda_codec *c;
3373
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003374 list_for_each_codec(c, bus)
Takashi Iwaibb573922015-02-20 09:26:04 +01003375 codec_set_power_save(c, delay);
3376}
3377EXPORT_SYMBOL_GPL(snd_hda_set_power_save);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003378
Takashi Iwaid5191e52009-11-16 14:58:17 +01003379/**
3380 * snd_hda_check_amp_list_power - Check the amp list and update the power
3381 * @codec: HD-audio codec
3382 * @check: the object containing an AMP list and the status
3383 * @nid: NID to check / update
3384 *
3385 * Check whether the given NID is in the amp list. If it's in the list,
Randy Dunlapc7fabbc2020-08-05 19:19:26 -07003386 * check the current AMP status, and update the power-status according
Takashi Iwaid5191e52009-11-16 14:58:17 +01003387 * to the mute status.
3388 *
3389 * This function is supposed to be set or called from the check_power_status
3390 * patch ops.
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003391 */
Takashi Iwaicb53c622007-08-10 17:21:45 +02003392int snd_hda_check_amp_list_power(struct hda_codec *codec,
3393 struct hda_loopback_check *check,
3394 hda_nid_t nid)
3395{
Takashi Iwai031024e2011-05-02 11:29:30 +02003396 const struct hda_amp_list *p;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003397 int ch, v;
3398
3399 if (!check->amplist)
3400 return 0;
3401 for (p = check->amplist; p->nid; p++) {
3402 if (p->nid == nid)
3403 break;
3404 }
3405 if (!p->nid)
3406 return 0; /* nothing changed */
3407
3408 for (p = check->amplist; p->nid; p++) {
3409 for (ch = 0; ch < 2; ch++) {
3410 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
3411 p->idx);
3412 if (!(v & HDA_AMP_MUTE) && v > 0) {
3413 if (!check->power_on) {
3414 check->power_on = 1;
Takashi Iwai664c7152015-04-08 11:43:14 +02003415 snd_hda_power_up_pm(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003416 }
3417 return 1;
3418 }
3419 }
3420 }
3421 if (check->power_on) {
3422 check->power_on = 0;
Takashi Iwai664c7152015-04-08 11:43:14 +02003423 snd_hda_power_down_pm(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003424 }
3425 return 0;
3426}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003427EXPORT_SYMBOL_GPL(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003428#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003430/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 * input MUX helper
3432 */
Takashi Iwaid5191e52009-11-16 14:58:17 +01003433
3434/**
Pierre-Louis Bossart3531ba22021-03-01 11:46:17 -06003435 * snd_hda_input_mux_info - Info callback helper for the input-mux enum
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003436 * @imux: imux helper object
3437 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01003438 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003439int snd_hda_input_mux_info(const struct hda_input_mux *imux,
3440 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441{
3442 unsigned int index;
3443
3444 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3445 uinfo->count = 1;
3446 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003447 if (!imux->num_items)
3448 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 index = uinfo->value.enumerated.item;
3450 if (index >= imux->num_items)
3451 index = imux->num_items - 1;
3452 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
3453 return 0;
3454}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003455EXPORT_SYMBOL_GPL(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
Takashi Iwaid5191e52009-11-16 14:58:17 +01003457/**
Pierre-Louis Bossart3531ba22021-03-01 11:46:17 -06003458 * snd_hda_input_mux_put - Put callback helper for the input-mux enum
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003459 * @codec: the HDA codec
3460 * @imux: imux helper object
3461 * @ucontrol: pointer to get/store the data
3462 * @nid: input mux NID
3463 * @cur_val: pointer to get/store the current imux value
Takashi Iwaid5191e52009-11-16 14:58:17 +01003464 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003465int snd_hda_input_mux_put(struct hda_codec *codec,
3466 const struct hda_input_mux *imux,
3467 struct snd_ctl_elem_value *ucontrol,
3468 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 unsigned int *cur_val)
3470{
3471 unsigned int idx;
3472
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003473 if (!imux->num_items)
3474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 idx = ucontrol->value.enumerated.item[0];
3476 if (idx >= imux->num_items)
3477 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003478 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003480 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
3481 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 *cur_val = idx;
3483 return 1;
3484}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003485EXPORT_SYMBOL_GPL(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486
3487
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003488/**
3489 * snd_hda_enum_helper_info - Helper for simple enum ctls
3490 * @kcontrol: ctl element
3491 * @uinfo: pointer to get/store the data
3492 * @num_items: number of enum items
3493 * @texts: enum item string array
3494 *
Takashi Iwaidda415d2012-11-30 18:34:38 +01003495 * process kcontrol info callback of a simple string enum array
3496 * when @num_items is 0 or @texts is NULL, assume a boolean enum array
3497 */
3498int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol,
3499 struct snd_ctl_elem_info *uinfo,
3500 int num_items, const char * const *texts)
3501{
3502 static const char * const texts_default[] = {
3503 "Disabled", "Enabled"
3504 };
3505
3506 if (!texts || !num_items) {
3507 num_items = 2;
3508 texts = texts_default;
3509 }
3510
Takashi Iwai3ff72212014-10-20 18:17:28 +02003511 return snd_ctl_enum_info(uinfo, 1, num_items, texts);
Takashi Iwaidda415d2012-11-30 18:34:38 +01003512}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003513EXPORT_SYMBOL_GPL(snd_hda_enum_helper_info);
Takashi Iwaidda415d2012-11-30 18:34:38 +01003514
3515/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 * Multi-channel / digital-out PCM helper functions
3517 */
3518
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003519/* setup SPDIF output stream */
3520static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
3521 unsigned int stream_tag, unsigned int format)
3522{
Laurence Darby3bef1c32012-11-03 17:00:06 +00003523 struct hda_spdif_out *spdif;
3524 unsigned int curr_fmt;
3525 bool reset;
Stephen Warren7c935972011-06-01 11:14:17 -06003526
Laurence Darby3bef1c32012-11-03 17:00:06 +00003527 spdif = snd_hda_spdif_out_of_nid(codec, nid);
Libin Yang960a5812016-06-16 11:13:25 +08003528 /* Add sanity check to pass klockwork check.
3529 * This should never happen.
3530 */
3531 if (WARN_ON(spdif == NULL))
3532 return;
3533
Laurence Darby3bef1c32012-11-03 17:00:06 +00003534 curr_fmt = snd_hda_codec_read(codec, nid, 0,
3535 AC_VERB_GET_STREAM_FORMAT, 0);
3536 reset = codec->spdif_status_reset &&
3537 (spdif->ctls & AC_DIG1_ENABLE) &&
3538 curr_fmt != format;
3539
3540 /* turn off SPDIF if needed; otherwise the IEC958 bits won't be
3541 updated */
3542 if (reset)
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003543 set_dig_out_convert(codec, nid,
Stephen Warren7c935972011-06-01 11:14:17 -06003544 spdif->ctls & ~AC_DIG1_ENABLE & 0xff,
Takashi Iwai2f728532008-09-25 16:32:41 +02003545 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003546 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02003547 if (codec->follower_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02003548 const hda_nid_t *d;
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02003549 for (d = codec->follower_dig_outs; *d; d++)
Takashi Iwai2f728532008-09-25 16:32:41 +02003550 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
3551 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003552 }
Takashi Iwai2f728532008-09-25 16:32:41 +02003553 /* turn on again (if needed) */
Laurence Darby3bef1c32012-11-03 17:00:06 +00003554 if (reset)
Takashi Iwai2f728532008-09-25 16:32:41 +02003555 set_dig_out_convert(codec, nid,
Stephen Warren7c935972011-06-01 11:14:17 -06003556 spdif->ctls & 0xff, -1);
Takashi Iwai2f728532008-09-25 16:32:41 +02003557}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003558
Takashi Iwai2f728532008-09-25 16:32:41 +02003559static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
3560{
3561 snd_hda_codec_cleanup_stream(codec, nid);
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02003562 if (codec->follower_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02003563 const hda_nid_t *d;
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02003564 for (d = codec->follower_dig_outs; *d; d++)
Takashi Iwai2f728532008-09-25 16:32:41 +02003565 snd_hda_codec_cleanup_stream(codec, *d);
3566 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003567}
3568
Takashi Iwaid5191e52009-11-16 14:58:17 +01003569/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01003570 * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003571 * @codec: the HDA codec
3572 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003574int snd_hda_multi_out_dig_open(struct hda_codec *codec,
3575 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576{
Ingo Molnar62932df2006-01-16 16:34:20 +01003577 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02003578 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
3579 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02003580 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01003582 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 return 0;
3584}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003585EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
Takashi Iwaid5191e52009-11-16 14:58:17 +01003587/**
3588 * snd_hda_multi_out_dig_prepare - prepare the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003589 * @codec: the HDA codec
3590 * @mout: hda_multi_out object
3591 * @stream_tag: stream tag to assign
3592 * @format: format id to assign
3593 * @substream: PCM substream to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01003594 */
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003595int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
3596 struct hda_multi_out *mout,
3597 unsigned int stream_tag,
3598 unsigned int format,
3599 struct snd_pcm_substream *substream)
3600{
3601 mutex_lock(&codec->spdif_mutex);
3602 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
3603 mutex_unlock(&codec->spdif_mutex);
3604 return 0;
3605}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003606EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003607
Takashi Iwaid5191e52009-11-16 14:58:17 +01003608/**
3609 * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003610 * @codec: the HDA codec
3611 * @mout: hda_multi_out object
Takashi Iwaid5191e52009-11-16 14:58:17 +01003612 */
Takashi Iwai9411e212009-02-13 11:32:28 +01003613int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
3614 struct hda_multi_out *mout)
3615{
3616 mutex_lock(&codec->spdif_mutex);
3617 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3618 mutex_unlock(&codec->spdif_mutex);
3619 return 0;
3620}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003621EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_cleanup);
Takashi Iwai9411e212009-02-13 11:32:28 +01003622
Takashi Iwaid5191e52009-11-16 14:58:17 +01003623/**
3624 * snd_hda_multi_out_dig_close - release the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003625 * @codec: the HDA codec
3626 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003628int snd_hda_multi_out_dig_close(struct hda_codec *codec,
3629 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630{
Ingo Molnar62932df2006-01-16 16:34:20 +01003631 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01003633 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 return 0;
3635}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003636EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637
Takashi Iwaid5191e52009-11-16 14:58:17 +01003638/**
3639 * snd_hda_multi_out_analog_open - open analog outputs
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003640 * @codec: the HDA codec
3641 * @mout: hda_multi_out object
3642 * @substream: PCM substream to assign
3643 * @hinfo: PCM information to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01003644 *
3645 * Open analog outputs and set up the hw-constraints.
Takashi Iwai9ab0cb32020-07-17 17:45:17 +02003646 * If the digital outputs can be opened as follower, open the digital
Takashi Iwaid5191e52009-11-16 14:58:17 +01003647 * outputs, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003649int snd_hda_multi_out_analog_open(struct hda_codec *codec,
3650 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01003651 struct snd_pcm_substream *substream,
3652 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653{
Takashi Iwai9a081602008-02-12 18:37:26 +01003654 struct snd_pcm_runtime *runtime = substream->runtime;
3655 runtime->hw.channels_max = mout->max_channels;
3656 if (mout->dig_out_nid) {
3657 if (!mout->analog_rates) {
3658 mout->analog_rates = hinfo->rates;
3659 mout->analog_formats = hinfo->formats;
3660 mout->analog_maxbps = hinfo->maxbps;
3661 } else {
3662 runtime->hw.rates = mout->analog_rates;
3663 runtime->hw.formats = mout->analog_formats;
3664 hinfo->maxbps = mout->analog_maxbps;
3665 }
3666 if (!mout->spdif_rates) {
3667 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
3668 &mout->spdif_rates,
3669 &mout->spdif_formats,
3670 &mout->spdif_maxbps);
3671 }
3672 mutex_lock(&codec->spdif_mutex);
3673 if (mout->share_spdif) {
Takashi Iwai022b4662009-07-03 23:03:30 +02003674 if ((runtime->hw.rates & mout->spdif_rates) &&
3675 (runtime->hw.formats & mout->spdif_formats)) {
3676 runtime->hw.rates &= mout->spdif_rates;
3677 runtime->hw.formats &= mout->spdif_formats;
3678 if (mout->spdif_maxbps < hinfo->maxbps)
3679 hinfo->maxbps = mout->spdif_maxbps;
3680 } else {
3681 mout->share_spdif = 0;
3682 /* FIXME: need notify? */
3683 }
Takashi Iwai9a081602008-02-12 18:37:26 +01003684 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02003685 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 return snd_pcm_hw_constraint_step(substream->runtime, 0,
3688 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
3689}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003690EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
Takashi Iwaid5191e52009-11-16 14:58:17 +01003692/**
3693 * snd_hda_multi_out_analog_prepare - Preapre the analog outputs.
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003694 * @codec: the HDA codec
3695 * @mout: hda_multi_out object
3696 * @stream_tag: stream tag to assign
3697 * @format: format id to assign
3698 * @substream: PCM substream to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01003699 *
3700 * Set up the i/o for analog out.
3701 * When the digital out is available, copy the front out to digital out, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003703int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
3704 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 unsigned int stream_tag,
3706 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003707 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708{
Takashi Iwaidda14412011-05-02 11:29:30 +02003709 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 int chs = substream->runtime->channels;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003711 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 int i;
3713
Ingo Molnar62932df2006-01-16 16:34:20 +01003714 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003715 spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid);
Takashi Iwai9a081602008-02-12 18:37:26 +01003716 if (mout->dig_out_nid && mout->share_spdif &&
3717 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Libin Yang960a5812016-06-16 11:13:25 +08003718 if (chs == 2 && spdif != NULL &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02003719 snd_hda_is_supported_format(codec, mout->dig_out_nid,
3720 format) &&
Stephen Warren7c935972011-06-01 11:14:17 -06003721 !(spdif->status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003723 setup_dig_out_stream(codec, mout->dig_out_nid,
3724 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 } else {
3726 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02003727 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 }
3729 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003730 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
3732 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003733 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
3734 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003735 if (!mout->no_share_stream &&
3736 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003738 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
3739 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003740 /* extra outputs copied from front */
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02003741 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
3742 if (!mout->no_share_stream && mout->hp_out_nid[i])
3743 snd_hda_codec_setup_stream(codec,
3744 mout->hp_out_nid[i],
3745 stream_tag, 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003746
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 /* surrounds */
3748 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02003749 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003750 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3751 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003752 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003753 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3754 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 }
David Henningssoncd4035e2013-10-10 09:01:25 +02003756
3757 /* extra surrounds */
3758 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) {
3759 int ch = 0;
3760 if (!mout->extra_out_nid[i])
3761 break;
3762 if (chs >= (i + 1) * 2)
3763 ch = i * 2;
3764 else if (!mout->no_share_stream)
3765 break;
3766 snd_hda_codec_setup_stream(codec, mout->extra_out_nid[i],
3767 stream_tag, ch, format);
3768 }
3769
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 return 0;
3771}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003772EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
Takashi Iwaid5191e52009-11-16 14:58:17 +01003774/**
3775 * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003776 * @codec: the HDA codec
3777 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003779int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
3780 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781{
Takashi Iwaidda14412011-05-02 11:29:30 +02003782 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 int i;
3784
3785 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01003786 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01003788 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02003789 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
3790 if (mout->hp_out_nid[i])
3791 snd_hda_codec_cleanup_stream(codec,
3792 mout->hp_out_nid[i]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003793 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
3794 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01003795 snd_hda_codec_cleanup_stream(codec,
3796 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01003797 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02003799 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 mout->dig_out_used = 0;
3801 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003802 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 return 0;
3804}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003805EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
Takashi Iwai47408602012-04-20 13:06:53 +02003807/**
3808 * snd_hda_get_default_vref - Get the default (mic) VREF pin bits
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003809 * @codec: the HDA codec
3810 * @pin: referred pin NID
Takashi Iwai47408602012-04-20 13:06:53 +02003811 *
3812 * Guess the suitable VREF pin bits to be set as the pin-control value.
3813 * Note: the function doesn't set the AC_PINCTL_IN_EN bit.
3814 */
3815unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin)
3816{
3817 unsigned int pincap;
3818 unsigned int oldval;
3819 oldval = snd_hda_codec_read(codec, pin, 0,
3820 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3821 pincap = snd_hda_query_pin_caps(codec, pin);
3822 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
3823 /* Exception: if the default pin setup is vref50, we give it priority */
3824 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
3825 return AC_PINCTL_VREF_80;
3826 else if (pincap & AC_PINCAP_VREF_50)
3827 return AC_PINCTL_VREF_50;
3828 else if (pincap & AC_PINCAP_VREF_100)
3829 return AC_PINCTL_VREF_100;
3830 else if (pincap & AC_PINCAP_VREF_GRD)
3831 return AC_PINCTL_VREF_GRD;
3832 return AC_PINCTL_VREF_HIZ;
3833}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003834EXPORT_SYMBOL_GPL(snd_hda_get_default_vref);
Takashi Iwai47408602012-04-20 13:06:53 +02003835
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003836/**
3837 * snd_hda_correct_pin_ctl - correct the pin ctl value for matching with the pin cap
3838 * @codec: the HDA codec
3839 * @pin: referred pin NID
3840 * @val: pin ctl value to audit
3841 */
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01003842unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec,
3843 hda_nid_t pin, unsigned int val)
3844{
Takashi Iwaibf823262020-01-05 15:47:24 +01003845 static const unsigned int cap_lists[][2] = {
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01003846 { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 },
3847 { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 },
3848 { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 },
3849 { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD },
3850 };
3851 unsigned int cap;
3852
3853 if (!val)
3854 return 0;
3855 cap = snd_hda_query_pin_caps(codec, pin);
3856 if (!cap)
3857 return val; /* don't know what to do... */
3858
3859 if (val & AC_PINCTL_OUT_EN) {
3860 if (!(cap & AC_PINCAP_OUT))
3861 val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3862 else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV))
3863 val &= ~AC_PINCTL_HP_EN;
3864 }
3865
3866 if (val & AC_PINCTL_IN_EN) {
3867 if (!(cap & AC_PINCAP_IN))
3868 val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN);
3869 else {
3870 unsigned int vcap, vref;
3871 int i;
3872 vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
3873 vref = val & AC_PINCTL_VREFEN;
3874 for (i = 0; i < ARRAY_SIZE(cap_lists); i++) {
3875 if (vref == cap_lists[i][0] &&
3876 !(vcap & cap_lists[i][1])) {
3877 if (i == ARRAY_SIZE(cap_lists) - 1)
3878 vref = AC_PINCTL_VREF_HIZ;
3879 else
3880 vref = cap_lists[i + 1][0];
3881 }
3882 }
3883 val &= ~AC_PINCTL_VREFEN;
3884 val |= vref;
3885 }
3886 }
3887
3888 return val;
3889}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003890EXPORT_SYMBOL_GPL(snd_hda_correct_pin_ctl);
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01003891
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003892/**
Pierre-Louis Bossart3531ba22021-03-01 11:46:17 -06003893 * _snd_hda_set_pin_ctl - Helper to set pin ctl value
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003894 * @codec: the HDA codec
3895 * @pin: referred pin NID
3896 * @val: pin control value to set
3897 * @cached: access over codec pinctl cache or direct write
3898 *
3899 * This function is a helper to set a pin ctl value more safely.
3900 * It corrects the pin ctl value via snd_hda_correct_pin_ctl(), stores the
3901 * value in pin target array via snd_hda_codec_set_pin_target(), then
Takashi Iwai401caff2018-06-27 11:43:09 +02003902 * actually writes the value via either snd_hda_codec_write_cache() or
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003903 * snd_hda_codec_write() depending on @cached flag.
3904 */
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003905int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin,
3906 unsigned int val, bool cached)
3907{
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01003908 val = snd_hda_correct_pin_ctl(codec, pin, val);
Takashi Iwaid7fdc002013-01-10 08:38:04 +01003909 snd_hda_codec_set_pin_target(codec, pin, val);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003910 if (cached)
Takashi Iwai401caff2018-06-27 11:43:09 +02003911 return snd_hda_codec_write_cache(codec, pin, 0,
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003912 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
3913 else
3914 return snd_hda_codec_write(codec, pin, 0,
3915 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
3916}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003917EXPORT_SYMBOL_GPL(_snd_hda_set_pin_ctl);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003918
Takashi Iwai990061c2010-09-09 22:08:44 +02003919/**
3920 * snd_hda_add_imux_item - Add an item to input_mux
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003921 * @codec: the HDA codec
3922 * @imux: imux helper object
3923 * @label: the name of imux item to assign
3924 * @index: index number of imux item to assign
3925 * @type_idx: pointer to store the resultant label index
Takashi Iwai990061c2010-09-09 22:08:44 +02003926 *
3927 * When the same label is used already in the existing items, the number
3928 * suffix is appended to the label. This label index number is stored
3929 * to type_idx when non-NULL pointer is given.
3930 */
Takashi Iwai6194b992014-06-06 18:12:16 +02003931int snd_hda_add_imux_item(struct hda_codec *codec,
3932 struct hda_input_mux *imux, const char *label,
Takashi Iwai10a20af2010-09-09 16:28:02 +02003933 int index, int *type_idx)
3934{
3935 int i, label_idx = 0;
3936 if (imux->num_items >= HDA_MAX_NUM_INPUTS) {
Takashi Iwai6194b992014-06-06 18:12:16 +02003937 codec_err(codec, "hda_codec: Too many imux items!\n");
Takashi Iwai10a20af2010-09-09 16:28:02 +02003938 return -EINVAL;
3939 }
3940 for (i = 0; i < imux->num_items; i++) {
3941 if (!strncmp(label, imux->items[i].label, strlen(label)))
3942 label_idx++;
3943 }
3944 if (type_idx)
3945 *type_idx = label_idx;
3946 if (label_idx > 0)
3947 snprintf(imux->items[imux->num_items].label,
3948 sizeof(imux->items[imux->num_items].label),
3949 "%s %d", label, label_idx);
3950 else
Joe Perches75b1a8f2021-01-04 09:17:34 -08003951 strscpy(imux->items[imux->num_items].label, label,
Takashi Iwai10a20af2010-09-09 16:28:02 +02003952 sizeof(imux->items[imux->num_items].label));
3953 imux->items[imux->num_items].index = index;
3954 imux->num_items++;
3955 return 0;
3956}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003957EXPORT_SYMBOL_GPL(snd_hda_add_imux_item);
Takashi Iwaid7b1ae92010-08-30 13:00:16 +02003958
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959/**
Takashi Iwai0a505752015-04-16 23:25:02 +02003960 * snd_hda_bus_reset_codecs - Reset the bus
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003961 * @bus: HD-audio bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 */
Takashi Iwai0a505752015-04-16 23:25:02 +02003963void snd_hda_bus_reset_codecs(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003965 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003967 list_for_each_codec(codec, bus) {
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003968 /* FIXME: maybe a better way needed for forced reset */
Takashi Iwai16037642018-08-30 15:13:16 +02003969 if (current_work() != &codec->jackpoll_work.work)
3970 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003971#ifdef CONFIG_PM
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05003972 if (hda_codec_is_power_on(codec)) {
Takashi Iwaicc72da72015-02-19 16:00:22 +01003973 hda_call_codec_suspend(codec);
Mengdong Lin12edb892013-11-26 23:32:23 -05003974 hda_call_codec_resume(codec);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003975 }
3976#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978}
Takashi Iwaib2e18592008-07-30 15:01:44 +02003979
Takashi Iwaid5191e52009-11-16 14:58:17 +01003980/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01003981 * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer
3982 * @pcm: PCM caps bits
3983 * @buf: the string buffer to write
3984 * @buflen: the max buffer length
3985 *
3986 * used by hda_proc.c and hda_eld.c
3987 */
Takashi Iwaib2022262008-11-21 21:24:03 +01003988void snd_print_pcm_bits(int pcm, char *buf, int buflen)
3989{
Takashi Iwaibf823262020-01-05 15:47:24 +01003990 static const unsigned int bits[] = { 8, 16, 20, 24, 32 };
Takashi Iwaib2022262008-11-21 21:24:03 +01003991 int i, j;
3992
3993 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
3994 if (pcm & (AC_SUPPCM_BITS_8 << i))
Takashi Iwai44eeb082020-02-18 10:14:09 +01003995 j += scnprintf(buf + j, buflen - j, " %d", bits[i]);
Takashi Iwaib2022262008-11-21 21:24:03 +01003996
3997 buf[j] = '\0'; /* necessary when j == 0 */
3998}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003999EXPORT_SYMBOL_GPL(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01004000
4001MODULE_DESCRIPTION("HDA codec core");
4002MODULE_LICENSE("GPL");