blob: a2fb19129219e11bb700e78e7dd7e0ba32170ca1 [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;
91 hda_nid_t conns[0];
92};
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
644 snd_hda_jack_set_dirty_all(codec);
645 snd_hda_jack_poll_all(codec);
Wang Xingchao18e60622013-07-25 23:34:45 -0400646
647 if (!codec->jackpoll_interval)
648 return;
649
Takashi Iwai2f35c632015-02-27 22:43:26 +0100650 schedule_delayed_work(&codec->jackpoll_work,
651 codec->jackpoll_interval);
David Henningsson26a6cb62012-10-09 15:04:21 +0200652}
653
Takashi Iwai3fdf1462012-11-22 08:16:31 +0100654/* release all pincfg lists */
655static void free_init_pincfgs(struct hda_codec *codec)
Takashi Iwai3be14142009-02-20 14:11:16 +0100656{
Takashi Iwai346ff702009-02-23 09:42:57 +0100657 snd_array_free(&codec->driver_pins);
Takashi Iwai648a8d22014-02-25 10:38:13 +0100658#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai346ff702009-02-23 09:42:57 +0100659 snd_array_free(&codec->user_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +0100660#endif
Takashi Iwai3be14142009-02-20 14:11:16 +0100661 snd_array_free(&codec->init_pins);
662}
663
Takashi Iwai54d17402005-11-21 16:33:22 +0100664/*
Takashi Iwaieb541332010-08-06 13:48:11 +0200665 * audio-converter setup caches
666 */
667struct hda_cvt_setup {
668 hda_nid_t nid;
669 u8 stream_tag;
670 u8 channel_id;
671 u16 format_id;
672 unsigned char active; /* cvt is currently used */
673 unsigned char dirty; /* setups should be cleared */
674};
675
676/* get or create a cache entry for the given audio converter NID */
677static struct hda_cvt_setup *
678get_hda_cvt_setup(struct hda_codec *codec, hda_nid_t nid)
679{
680 struct hda_cvt_setup *p;
681 int i;
682
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +0200683 snd_array_for_each(&codec->cvt_setups, i, p) {
Takashi Iwaieb541332010-08-06 13:48:11 +0200684 if (p->nid == nid)
685 return p;
686 }
687 p = snd_array_new(&codec->cvt_setups);
688 if (p)
689 p->nid = nid;
690 return p;
691}
692
693/*
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100694 * PCM device
695 */
696static void release_pcm(struct kref *kref)
697{
698 struct hda_pcm *pcm = container_of(kref, struct hda_pcm, kref);
699
700 if (pcm->pcm)
701 snd_device_free(pcm->codec->card, pcm->pcm);
702 clear_bit(pcm->device, pcm->codec->bus->pcm_dev_bits);
703 kfree(pcm->name);
704 kfree(pcm);
705}
706
707void snd_hda_codec_pcm_put(struct hda_pcm *pcm)
708{
709 kref_put(&pcm->kref, release_pcm);
710}
711EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_put);
712
713struct hda_pcm *snd_hda_codec_pcm_new(struct hda_codec *codec,
714 const char *fmt, ...)
715{
716 struct hda_pcm *pcm;
717 va_list args;
718
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100719 pcm = kzalloc(sizeof(*pcm), GFP_KERNEL);
720 if (!pcm)
721 return NULL;
722
723 pcm->codec = codec;
724 kref_init(&pcm->kref);
Takashi Iwai30e5f002015-04-27 16:39:19 +0200725 va_start(args, fmt);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100726 pcm->name = kvasprintf(GFP_KERNEL, fmt, args);
Takashi Iwai30e5f002015-04-27 16:39:19 +0200727 va_end(args);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100728 if (!pcm->name) {
729 kfree(pcm);
730 return NULL;
731 }
732
733 list_add_tail(&pcm->list, &codec->pcm_list_head);
734 return pcm;
735}
736EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_new);
737
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100738/*
739 * codec destructor
740 */
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100741static void codec_release_pcms(struct hda_codec *codec)
742{
743 struct hda_pcm *pcm, *n;
744
745 list_for_each_entry_safe(pcm, n, &codec->pcm_list_head, list) {
746 list_del_init(&pcm->list);
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100747 if (pcm->pcm)
748 snd_device_disconnect(codec->card, pcm->pcm);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100749 snd_hda_codec_pcm_put(pcm);
750 }
751}
752
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100753void snd_hda_codec_cleanup_for_unbind(struct hda_codec *codec)
754{
Takashi Iwaic4c25332015-03-03 17:22:12 +0100755 if (codec->registered) {
756 /* pm_runtime_put() is called in snd_hdac_device_exit() */
757 pm_runtime_get_noresume(hda_codec_dev(codec));
758 pm_runtime_disable(hda_codec_dev(codec));
759 codec->registered = 0;
760 }
761
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100762 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100763 if (!codec->in_freeing)
764 snd_hda_ctls_clear(codec);
765 codec_release_pcms(codec);
766 snd_hda_detach_beep_device(codec);
767 memset(&codec->patch_ops, 0, sizeof(codec->patch_ops));
768 snd_hda_jack_tbl_clear(codec);
769 codec->proc_widget_hook = NULL;
770 codec->spec = NULL;
771
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100772 /* free only driver_pins so that init_pins + user_pins are restored */
773 snd_array_free(&codec->driver_pins);
774 snd_array_free(&codec->cvt_setups);
775 snd_array_free(&codec->spdif_out);
776 snd_array_free(&codec->verbs);
777 codec->preset = NULL;
778 codec->slave_dig_outs = NULL;
779 codec->spdif_status_reset = 0;
780 snd_array_free(&codec->mixers);
781 snd_array_free(&codec->nids);
782 remove_conn_list(codec);
Takashi Iwai4d75faa02015-02-25 14:42:38 +0100783 snd_hdac_regmap_exit(&codec->core);
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100784}
785
Takashi Iwaid8193872012-08-31 07:54:38 -0700786static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwaibb6ac722009-03-13 09:02:42 +0100787 unsigned int power_state);
788
Takashi Iwai029d92c2018-12-08 17:31:49 +0100789/* enable/disable display power per codec */
790static void codec_display_power(struct hda_codec *codec, bool enable)
791{
792 if (codec->display_power_control)
793 snd_hdac_display_power(&codec->bus->core, codec->addr, enable);
794}
795
Takashi Iwaic4c25332015-03-03 17:22:12 +0100796/* also called from hda_bind.c */
797void snd_hda_codec_register(struct hda_codec *codec)
798{
799 if (codec->registered)
800 return;
801 if (device_is_registered(hda_codec_dev(codec))) {
Takashi Iwai029d92c2018-12-08 17:31:49 +0100802 codec_display_power(codec, true);
Takashi Iwaic4c25332015-03-03 17:22:12 +0100803 pm_runtime_enable(hda_codec_dev(codec));
804 /* it was powered up in snd_hda_codec_new(), now all done */
805 snd_hda_power_down(codec);
806 codec->registered = 1;
807 }
808}
809
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100810static int snd_hda_codec_dev_register(struct snd_device *device)
811{
Takashi Iwaic4c25332015-03-03 17:22:12 +0100812 snd_hda_codec_register(device->device_data);
Takashi Iwaid604b392014-02-28 13:42:09 +0100813 return 0;
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100814}
815
Takashi Iwai2565c892014-02-19 11:41:09 +0100816static int snd_hda_codec_dev_free(struct snd_device *device)
817{
Takashi Iwaid56db742015-02-27 23:25:35 +0100818 struct hda_codec *codec = device->device_data;
819
820 codec->in_freeing = 1;
Bard liao4d95c512019-04-28 04:53:39 +0800821 /*
822 * snd_hda_codec_device_new() is used by legacy HDA and ASoC driver.
823 * We can't unregister ASoC device since it will be unregistered in
824 * snd_hdac_ext_bus_device_remove().
825 */
826 if (codec->core.type == HDA_DEV_LEGACY)
827 snd_hdac_device_unregister(&codec->core);
Takashi Iwai029d92c2018-12-08 17:31:49 +0100828 codec_display_power(codec, false);
Ranjani Sridharand6947bb2019-05-31 09:01:37 -0700829
830 /*
831 * In the case of ASoC HD-audio bus, the device refcount is released in
832 * snd_hdac_ext_bus_device_remove() explicitly.
833 */
834 if (codec->core.type == HDA_DEV_LEGACY)
835 put_device(hda_codec_dev(codec));
836
Takashi Iwai2565c892014-02-19 11:41:09 +0100837 return 0;
838}
839
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100840static void snd_hda_codec_dev_release(struct device *dev)
841{
Takashi Iwaid56db742015-02-27 23:25:35 +0100842 struct hda_codec *codec = dev_to_hda_codec(dev);
843
844 free_init_pincfgs(codec);
Takashi Iwai7639a062015-03-03 10:07:24 +0100845 snd_hdac_device_exit(&codec->core);
Takashi Iwaid56db742015-02-27 23:25:35 +0100846 snd_hda_sysfs_clear(codec);
Takashi Iwaid56db742015-02-27 23:25:35 +0100847 kfree(codec->modelname);
848 kfree(codec->wcaps);
Ranjani Sridharanef9bec22019-06-26 00:04:50 -0700849
850 /*
851 * In the case of ASoC HD-audio, hda_codec is device managed.
852 * It will be freed when the ASoC device is removed.
853 */
854 if (codec->core.type == HDA_DEV_LEGACY)
855 kfree(codec);
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100856}
857
Rakesh Ughreja24494d32018-06-01 22:53:56 -0500858#define DEV_NAME_LEN 31
859
860static int snd_hda_codec_device_init(struct hda_bus *bus, struct snd_card *card,
861 unsigned int codec_addr, struct hda_codec **codecp)
862{
863 char name[DEV_NAME_LEN];
864 struct hda_codec *codec;
865 int err;
866
867 dev_dbg(card->dev, "%s: entry\n", __func__);
868
869 if (snd_BUG_ON(!bus))
870 return -EINVAL;
871 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
872 return -EINVAL;
873
874 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
875 if (!codec)
876 return -ENOMEM;
877
878 sprintf(name, "hdaudioC%dD%d", card->number, codec_addr);
879 err = snd_hdac_device_init(&codec->core, &bus->core, name, codec_addr);
880 if (err < 0) {
881 kfree(codec);
882 return err;
883 }
884
885 codec->core.type = HDA_DEV_LEGACY;
886 *codecp = codec;
887
888 return err;
889}
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891/**
892 * snd_hda_codec_new - create a HDA codec
893 * @bus: the bus to assign
894 * @codec_addr: the codec address
895 * @codecp: the pointer to store the generated codec
896 *
897 * Returns 0 if successful, or a negative error code.
898 */
Takashi Iwai6efdd852015-02-27 16:09:22 +0100899int snd_hda_codec_new(struct hda_bus *bus, struct snd_card *card,
900 unsigned int codec_addr, struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
Rakesh Ughreja24494d32018-06-01 22:53:56 -0500902 int ret;
903
904 ret = snd_hda_codec_device_init(bus, card, codec_addr, codecp);
905 if (ret < 0)
906 return ret;
907
908 return snd_hda_codec_device_new(bus, card, codec_addr, *codecp);
909}
910EXPORT_SYMBOL_GPL(snd_hda_codec_new);
911
912int snd_hda_codec_device_new(struct hda_bus *bus, struct snd_card *card,
913 unsigned int codec_addr, struct hda_codec *codec)
914{
Jaroslav Kyselaba443682008-08-13 20:55:32 +0200915 char component[31];
Takashi Iwaid8193872012-08-31 07:54:38 -0700916 hda_nid_t fg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 int err;
Takashi Iwai2565c892014-02-19 11:41:09 +0100918 static struct snd_device_ops dev_ops = {
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100919 .dev_register = snd_hda_codec_dev_register,
Takashi Iwai2565c892014-02-19 11:41:09 +0100920 .dev_free = snd_hda_codec_dev_free,
921 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Rakesh Ughreja24494d32018-06-01 22:53:56 -0500923 dev_dbg(card->dev, "%s: entry\n", __func__);
924
Takashi Iwaida3cec32008-08-08 17:12:14 +0200925 if (snd_BUG_ON(!bus))
926 return -EINVAL;
927 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
928 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Takashi Iwai7639a062015-03-03 10:07:24 +0100930 codec->core.dev.release = snd_hda_codec_dev_release;
Takashi Iwai058524482015-03-03 15:40:08 +0100931 codec->core.exec_verb = codec_exec_verb;
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 codec->bus = bus;
Takashi Iwai6efdd852015-02-27 16:09:22 +0100934 codec->card = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +0100936 mutex_init(&codec->spdif_mutex);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +0800937 mutex_init(&codec->control_mutex);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100938 snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32);
939 snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32);
Takashi Iwai3be14142009-02-20 14:11:16 +0100940 snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai346ff702009-02-23 09:42:57 +0100941 snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwaieb541332010-08-06 13:48:11 +0200942 snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8);
Stephen Warren7c935972011-06-01 11:14:17 -0600943 snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16);
Takashi Iwai361dab32012-05-09 14:35:27 +0200944 snd_array_init(&codec->jacktbl, sizeof(struct hda_jack_tbl), 16);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +0100945 snd_array_init(&codec->verbs, sizeof(struct hda_verb *), 8);
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100946 INIT_LIST_HEAD(&codec->conn_list);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100947 INIT_LIST_HEAD(&codec->pcm_list_head);
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100948
David Henningsson26a6cb62012-10-09 15:04:21 +0200949 INIT_DELAYED_WORK(&codec->jackpoll_work, hda_jackpoll_work);
Mengdong Lin7f132922013-11-29 01:48:45 -0500950 codec->depop_delay = -1;
David Henningssonf5662e12014-07-22 14:09:34 +0200951 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Takashi Iwai83012a72012-08-24 18:38:08 +0200953#ifdef CONFIG_PM
Takashi Iwaicc72da72015-02-19 16:00:22 +0100954 codec->power_jiffies = jiffies;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200955#endif
956
Takashi Iwai648a8d22014-02-25 10:38:13 +0100957 snd_hda_sysfs_init(codec);
958
Takashi Iwaic382a9f2012-05-07 15:01:02 +0200959 if (codec->bus->modelname) {
960 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
961 if (!codec->modelname) {
Heloise NH6986a0e2015-07-17 09:42:06 +0800962 err = -ENOMEM;
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100963 goto error;
Takashi Iwaic382a9f2012-05-07 15:01:02 +0200964 }
965 }
966
Takashi Iwai7639a062015-03-03 10:07:24 +0100967 fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Takashi Iwaid8193872012-08-31 07:54:38 -0700968 err = read_widget_caps(codec, fg);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +0100969 if (err < 0)
Takashi Iwai3be14142009-02-20 14:11:16 +0100970 goto error;
Takashi Iwai3be14142009-02-20 14:11:16 +0100971 err = read_pin_defaults(codec);
972 if (err < 0)
973 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +0100974
Takashi Iwaibb6ac722009-03-13 09:02:42 +0100975 /* power-up all before initialization */
Takashi Iwaid8193872012-08-31 07:54:38 -0700976 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwai183ab392019-04-13 10:04:49 +0200977 codec->core.dev.power.power_state = PMSG_ON;
Takashi Iwaibb6ac722009-03-13 09:02:42 +0100978
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200979 snd_hda_codec_proc_new(codec);
980
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200981 snd_hda_create_hwdep(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200982
Takashi Iwai7639a062015-03-03 10:07:24 +0100983 sprintf(component, "HDA:%08x,%08x,%08x", codec->core.vendor_id,
984 codec->core.subsystem_id, codec->core.revision_id);
Takashi Iwai6efdd852015-02-27 16:09:22 +0100985 snd_component_add(card, component);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200986
Takashi Iwai6efdd852015-02-27 16:09:22 +0100987 err = snd_device_new(card, SNDRV_DEV_CODEC, codec, &dev_ops);
Takashi Iwai2565c892014-02-19 11:41:09 +0100988 if (err < 0)
989 goto error;
990
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200991 return 0;
Takashi Iwai3be14142009-02-20 14:11:16 +0100992
993 error:
Takashi Iwaid56db742015-02-27 23:25:35 +0100994 put_device(hda_codec_dev(codec));
Takashi Iwai3be14142009-02-20 14:11:16 +0100995 return err;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200996}
Rakesh Ughreja24494d32018-06-01 22:53:56 -0500997EXPORT_SYMBOL_GPL(snd_hda_codec_device_new);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200998
Takashi Iwai95a962c2014-10-29 16:03:58 +0100999/**
1000 * snd_hda_codec_update_widgets - Refresh widget caps and pin defaults
1001 * @codec: the HDA codec
1002 *
1003 * Forcibly refresh the all widget caps and the init pin configurations of
1004 * the given codec.
1005 */
Mengdong Lina15d05d2013-02-08 17:09:31 -05001006int snd_hda_codec_update_widgets(struct hda_codec *codec)
1007{
1008 hda_nid_t fg;
1009 int err;
1010
Takashi Iwai774a0752019-07-03 14:35:12 +02001011 err = snd_hdac_refresh_widgets(&codec->core);
Takashi Iwai7639a062015-03-03 10:07:24 +01001012 if (err < 0)
1013 return err;
1014
Mengdong Lina15d05d2013-02-08 17:09:31 -05001015 /* Assume the function group node does not change,
1016 * only the widget nodes may change.
1017 */
1018 kfree(codec->wcaps);
Takashi Iwai7639a062015-03-03 10:07:24 +01001019 fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Mengdong Lina15d05d2013-02-08 17:09:31 -05001020 err = read_widget_caps(codec, fg);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +01001021 if (err < 0)
Mengdong Lina15d05d2013-02-08 17:09:31 -05001022 return err;
Mengdong Lina15d05d2013-02-08 17:09:31 -05001023
1024 snd_array_free(&codec->init_pins);
1025 err = read_pin_defaults(codec);
1026
1027 return err;
1028}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001029EXPORT_SYMBOL_GPL(snd_hda_codec_update_widgets);
Mengdong Lina15d05d2013-02-08 17:09:31 -05001030
Takashi Iwaied360812012-08-08 17:12:52 +02001031/* update the stream-id if changed */
1032static void update_pcm_stream_id(struct hda_codec *codec,
1033 struct hda_cvt_setup *p, hda_nid_t nid,
1034 u32 stream_tag, int channel_id)
1035{
1036 unsigned int oldval, newval;
1037
1038 if (p->stream_tag != stream_tag || p->channel_id != channel_id) {
1039 oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0);
1040 newval = (stream_tag << 4) | channel_id;
1041 if (oldval != newval)
1042 snd_hda_codec_write(codec, nid, 0,
1043 AC_VERB_SET_CHANNEL_STREAMID,
1044 newval);
1045 p->stream_tag = stream_tag;
1046 p->channel_id = channel_id;
1047 }
1048}
1049
1050/* update the format-id if changed */
1051static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p,
1052 hda_nid_t nid, int format)
1053{
1054 unsigned int oldval;
1055
1056 if (p->format_id != format) {
1057 oldval = snd_hda_codec_read(codec, nid, 0,
1058 AC_VERB_GET_STREAM_FORMAT, 0);
1059 if (oldval != format) {
1060 msleep(1);
1061 snd_hda_codec_write(codec, nid, 0,
1062 AC_VERB_SET_STREAM_FORMAT,
1063 format);
1064 }
1065 p->format_id = format;
1066 }
1067}
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069/**
1070 * snd_hda_codec_setup_stream - set up the codec for streaming
1071 * @codec: the CODEC to set up
1072 * @nid: the NID to set up
1073 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1074 * @channel_id: channel id to pass, zero based.
1075 * @format: stream format.
1076 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001077void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1078 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 int channel_id, int format)
1080{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001081 struct hda_codec *c;
Takashi Iwaieb541332010-08-06 13:48:11 +02001082 struct hda_cvt_setup *p;
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001083 int type;
Takashi Iwaieb541332010-08-06 13:48:11 +02001084 int i;
1085
Takashi Iwai0ba21762007-04-16 11:29:14 +02001086 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +02001087 return;
1088
Takashi Iwai4e76a882014-02-25 12:21:03 +01001089 codec_dbg(codec,
1090 "hda_codec_setup_stream: NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
1091 nid, stream_tag, channel_id, format);
Takashi Iwaieb541332010-08-06 13:48:11 +02001092 p = get_hda_cvt_setup(codec, nid);
Takashi Iwai6c35ae32013-05-10 13:39:50 +02001093 if (!p)
Takashi Iwaieb541332010-08-06 13:48:11 +02001094 return;
Takashi Iwaied360812012-08-08 17:12:52 +02001095
Takashi Iwaie6feb5d2015-03-16 21:32:11 +01001096 if (codec->patch_ops.stream_pm)
1097 codec->patch_ops.stream_pm(codec, nid, true);
Takashi Iwaied360812012-08-08 17:12:52 +02001098 if (codec->pcm_format_first)
1099 update_pcm_format(codec, p, nid, format);
1100 update_pcm_stream_id(codec, p, nid, stream_tag, channel_id);
1101 if (!codec->pcm_format_first)
1102 update_pcm_format(codec, p, nid, format);
1103
Takashi Iwaieb541332010-08-06 13:48:11 +02001104 p->active = 1;
1105 p->dirty = 0;
1106
1107 /* make other inactive cvts with the same stream-tag dirty */
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001108 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001109 list_for_each_codec(c, codec->bus) {
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02001110 snd_array_for_each(&c->cvt_setups, i, p) {
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001111 if (!p->active && p->stream_tag == stream_tag &&
David Henningsson54c2a892012-02-01 12:05:41 +01001112 get_wcaps_type(get_wcaps(c, p->nid)) == type)
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001113 p->dirty = 1;
1114 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001117EXPORT_SYMBOL_GPL(snd_hda_codec_setup_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Takashi Iwaif0cea792010-08-13 11:56:53 +02001119static void really_cleanup_stream(struct hda_codec *codec,
1120 struct hda_cvt_setup *q);
1121
Takashi Iwaid5191e52009-11-16 14:58:17 +01001122/**
Takashi Iwaif0cea792010-08-13 11:56:53 +02001123 * __snd_hda_codec_cleanup_stream - clean up the codec for closing
Takashi Iwaid5191e52009-11-16 14:58:17 +01001124 * @codec: the CODEC to clean up
1125 * @nid: the NID to clean up
Takashi Iwaif0cea792010-08-13 11:56:53 +02001126 * @do_now: really clean up the stream instead of clearing the active flag
Takashi Iwaid5191e52009-11-16 14:58:17 +01001127 */
Takashi Iwaif0cea792010-08-13 11:56:53 +02001128void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid,
1129 int do_now)
Takashi Iwai888afa12008-03-18 09:57:50 +01001130{
Takashi Iwaieb541332010-08-06 13:48:11 +02001131 struct hda_cvt_setup *p;
1132
Takashi Iwai888afa12008-03-18 09:57:50 +01001133 if (!nid)
1134 return;
1135
Takashi Iwai0e7adbe2010-10-25 10:37:11 +02001136 if (codec->no_sticky_stream)
1137 do_now = 1;
1138
Takashi Iwai4e76a882014-02-25 12:21:03 +01001139 codec_dbg(codec, "hda_codec_cleanup_stream: NID=0x%x\n", nid);
Takashi Iwaieb541332010-08-06 13:48:11 +02001140 p = get_hda_cvt_setup(codec, nid);
Takashi Iwai6c35ae32013-05-10 13:39:50 +02001141 if (p) {
Takashi Iwaif0cea792010-08-13 11:56:53 +02001142 /* here we just clear the active flag when do_now isn't set;
1143 * actual clean-ups will be done later in
1144 * purify_inactive_streams() called from snd_hda_codec_prpapre()
1145 */
1146 if (do_now)
1147 really_cleanup_stream(codec, p);
1148 else
1149 p->active = 0;
1150 }
Takashi Iwai888afa12008-03-18 09:57:50 +01001151}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001152EXPORT_SYMBOL_GPL(__snd_hda_codec_cleanup_stream);
Takashi Iwai888afa12008-03-18 09:57:50 +01001153
Takashi Iwaieb541332010-08-06 13:48:11 +02001154static void really_cleanup_stream(struct hda_codec *codec,
1155 struct hda_cvt_setup *q)
1156{
1157 hda_nid_t nid = q->nid;
Takashi Iwai218264a2011-09-27 17:33:45 +02001158 if (q->stream_tag || q->channel_id)
1159 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1160 if (q->format_id)
1161 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0
1162);
Takashi Iwaieb541332010-08-06 13:48:11 +02001163 memset(q, 0, sizeof(*q));
1164 q->nid = nid;
Takashi Iwaie6feb5d2015-03-16 21:32:11 +01001165 if (codec->patch_ops.stream_pm)
1166 codec->patch_ops.stream_pm(codec, nid, false);
Takashi Iwaieb541332010-08-06 13:48:11 +02001167}
1168
1169/* clean up the all conflicting obsolete streams */
1170static void purify_inactive_streams(struct hda_codec *codec)
1171{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001172 struct hda_codec *c;
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02001173 struct hda_cvt_setup *p;
Takashi Iwaieb541332010-08-06 13:48:11 +02001174 int i;
1175
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001176 list_for_each_codec(c, codec->bus) {
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02001177 snd_array_for_each(&c->cvt_setups, i, p) {
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001178 if (p->dirty)
1179 really_cleanup_stream(c, p);
1180 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001181 }
1182}
1183
Takashi Iwai2a439522011-07-26 09:52:50 +02001184#ifdef CONFIG_PM
Takashi Iwaieb541332010-08-06 13:48:11 +02001185/* clean up all streams; called from suspend */
1186static void hda_cleanup_all_streams(struct hda_codec *codec)
1187{
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 Iwaia9c2dfc2018-04-23 17:24:56 +02001191 snd_array_for_each(&codec->cvt_setups, i, p) {
Takashi Iwaieb541332010-08-06 13:48:11 +02001192 if (p->stream_tag)
1193 really_cleanup_stream(codec, p);
1194 }
1195}
Mike Waychison1c7276c2011-04-20 12:04:36 -07001196#endif
Takashi Iwaieb541332010-08-06 13:48:11 +02001197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198/*
1199 * amp access functions
1200 */
1201
Takashi Iwaid5191e52009-11-16 14:58:17 +01001202/**
1203 * query_amp_caps - query AMP capabilities
1204 * @codec: the HD-auio codec
1205 * @nid: the NID to query
1206 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1207 *
1208 * Query AMP capabilities for the given widget and direction.
1209 * Returns the obtained capability bits.
1210 *
1211 * When cap bits have been already read, this doesn't read again but
1212 * returns the cached value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 */
Matthew Ranostay09a99952008-01-24 11:49:21 +01001214u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
Takashi Iwaifaa75f82015-02-26 08:54:56 +01001216 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
1217 nid = codec->core.afg;
1218 return snd_hda_param_read(codec, nid,
1219 direction == HDA_OUTPUT ?
1220 AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001222EXPORT_SYMBOL_GPL(query_amp_caps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Takashi Iwaid5191e52009-11-16 14:58:17 +01001224/**
David Henningsson861a04e2014-09-23 10:38:17 +02001225 * snd_hda_check_amp_caps - query AMP capabilities
1226 * @codec: the HD-audio codec
1227 * @nid: the NID to query
1228 * @dir: either #HDA_INPUT or #HDA_OUTPUT
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001229 * @bits: bit mask to check the result
David Henningsson861a04e2014-09-23 10:38:17 +02001230 *
1231 * Check whether the widget has the given amp capability for the direction.
1232 */
1233bool snd_hda_check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
1234 int dir, unsigned int bits)
1235{
1236 if (!nid)
1237 return false;
1238 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
1239 if (query_amp_caps(codec, nid, dir) & bits)
1240 return true;
1241 return false;
1242}
1243EXPORT_SYMBOL_GPL(snd_hda_check_amp_caps);
1244
1245/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001246 * snd_hda_override_amp_caps - Override the AMP capabilities
1247 * @codec: the CODEC to clean up
1248 * @nid: the NID to clean up
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001249 * @dir: either #HDA_INPUT or #HDA_OUTPUT
Takashi Iwaid5191e52009-11-16 14:58:17 +01001250 * @caps: the capability bits to set
1251 *
1252 * Override the cached AMP caps bits value by the given one.
1253 * This function is useful if the driver needs to adjust the AMP ranges,
1254 * e.g. limit to 0dB, etc.
1255 *
1256 * Returns zero if successful or a negative error code.
1257 */
Takashi Iwai897cc182007-05-29 19:01:37 +02001258int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1259 unsigned int caps)
1260{
Takashi Iwaifaa75f82015-02-26 08:54:56 +01001261 unsigned int parm;
1262
1263 snd_hda_override_wcaps(codec, nid,
1264 get_wcaps(codec, nid) | AC_WCAP_AMP_OVRD);
1265 parm = dir == HDA_OUTPUT ? AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP;
1266 return snd_hdac_override_parm(&codec->core, nid, parm, caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001267}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001268EXPORT_SYMBOL_GPL(snd_hda_override_amp_caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001269
Takashi Iwaid5191e52009-11-16 14:58:17 +01001270/**
Takashi Iwaia686ec42015-06-11 10:51:28 +02001271 * snd_hda_codec_amp_update - update the AMP mono value
1272 * @codec: HD-audio codec
1273 * @nid: NID to read the AMP value
1274 * @ch: channel to update (0 or 1)
1275 * @dir: #HDA_INPUT or #HDA_OUTPUT
1276 * @idx: the index value (only for input direction)
1277 * @mask: bit mask to set
1278 * @val: the bits value to set
1279 *
1280 * Update the AMP values for the given channel, direction and index.
1281 */
1282int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid,
1283 int ch, int dir, int idx, int mask, int val)
1284{
1285 unsigned int cmd = snd_hdac_regmap_encode_amp(nid, ch, dir, idx);
1286
1287 /* enable fake mute if no h/w mute but min=mute */
1288 if ((query_amp_caps(codec, nid, dir) &
1289 (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE)) == AC_AMPCAP_MIN_MUTE)
1290 cmd |= AC_AMP_FAKE_MUTE;
1291 return snd_hdac_regmap_update_raw(&codec->core, cmd, mask, val);
1292}
1293EXPORT_SYMBOL_GPL(snd_hda_codec_amp_update);
1294
1295/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001296 * snd_hda_codec_amp_stereo - update the AMP stereo values
1297 * @codec: HD-audio codec
1298 * @nid: NID to read the AMP value
1299 * @direction: #HDA_INPUT or #HDA_OUTPUT
1300 * @idx: the index value (only for input direction)
1301 * @mask: bit mask to set
1302 * @val: the bits value to set
1303 *
1304 * Update the AMP values like snd_hda_codec_amp_update(), but for a
1305 * stereo widget with the same mask and value.
Takashi Iwai47fd8302007-08-10 17:11:07 +02001306 */
1307int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1308 int direction, int idx, int mask, int val)
1309{
1310 int ch, ret = 0;
Takashi Iwai467126462010-03-29 09:19:38 +02001311
1312 if (snd_BUG_ON(mask & ~0xff))
1313 mask &= 0xff;
Takashi Iwai47fd8302007-08-10 17:11:07 +02001314 for (ch = 0; ch < 2; ch++)
1315 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1316 idx, mask, val);
1317 return ret;
1318}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001319EXPORT_SYMBOL_GPL(snd_hda_codec_amp_stereo);
Takashi Iwai47fd8302007-08-10 17:11:07 +02001320
Takashi Iwai95a962c2014-10-29 16:03:58 +01001321/**
1322 * snd_hda_codec_amp_init - initialize the AMP value
1323 * @codec: the HDA codec
1324 * @nid: NID to read the AMP value
1325 * @ch: channel (left=0 or right=1)
1326 * @dir: #HDA_INPUT or #HDA_OUTPUT
1327 * @idx: the index value (only for input direction)
1328 * @mask: bit mask to set
1329 * @val: the bits value to set
1330 *
1331 * Works like snd_hda_codec_amp_update() but it writes the value only at
Takashi Iwai280e57d2012-12-14 10:32:21 +01001332 * the first access. If the amp was already initialized / updated beforehand,
1333 * this does nothing.
1334 */
1335int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch,
1336 int dir, int idx, int mask, int val)
1337{
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01001338 int orig;
1339
1340 if (!codec->core.regmap)
1341 return -EINVAL;
1342 regcache_cache_only(codec->core.regmap, true);
1343 orig = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1344 regcache_cache_only(codec->core.regmap, false);
1345 if (orig >= 0)
1346 return 0;
1347 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx, mask, val);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001348}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001349EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001350
Takashi Iwai95a962c2014-10-29 16:03:58 +01001351/**
1352 * snd_hda_codec_amp_init_stereo - initialize the stereo AMP value
1353 * @codec: the HDA codec
1354 * @nid: NID to read the AMP value
1355 * @dir: #HDA_INPUT or #HDA_OUTPUT
1356 * @idx: the index value (only for input direction)
1357 * @mask: bit mask to set
1358 * @val: the bits value to set
1359 *
1360 * Call snd_hda_codec_amp_init() for both stereo channels.
1361 */
Takashi Iwai280e57d2012-12-14 10:32:21 +01001362int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid,
1363 int dir, int idx, int mask, int val)
1364{
1365 int ch, ret = 0;
1366
1367 if (snd_BUG_ON(mask & ~0xff))
1368 mask &= 0xff;
1369 for (ch = 0; ch < 2; ch++)
1370 ret |= snd_hda_codec_amp_init(codec, nid, ch, dir,
1371 idx, mask, val);
1372 return ret;
1373}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001374EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init_stereo);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001375
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001376static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir,
1377 unsigned int ofs)
1378{
1379 u32 caps = query_amp_caps(codec, nid, dir);
1380 /* get num steps */
1381 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1382 if (ofs < caps)
1383 caps -= ofs;
1384 return caps;
1385}
1386
Takashi Iwaid5191e52009-11-16 14:58:17 +01001387/**
1388 * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001389 * @kcontrol: referred ctl element
1390 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001391 *
1392 * The control element is supposed to have the private_value field
1393 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1394 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001395int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
1396 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397{
1398 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1399 u16 nid = get_amp_nid(kcontrol);
1400 u8 chs = get_amp_channels(kcontrol);
1401 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001402 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001404 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1405 uinfo->count = chs == 3 ? 2 : 1;
1406 uinfo->value.integer.min = 0;
1407 uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs);
1408 if (!uinfo->value.integer.max) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001409 codec_warn(codec,
1410 "num_steps = 0 for NID=0x%x (ctl = %s)\n",
1411 nid, kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 return -EINVAL;
1413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return 0;
1415}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001416EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001418
1419static inline unsigned int
1420read_amp_value(struct hda_codec *codec, hda_nid_t nid,
1421 int ch, int dir, int idx, unsigned int ofs)
1422{
1423 unsigned int val;
1424 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1425 val &= HDA_AMP_VOLMASK;
1426 if (val >= ofs)
1427 val -= ofs;
1428 else
1429 val = 0;
1430 return val;
1431}
1432
1433static inline int
1434update_amp_value(struct hda_codec *codec, hda_nid_t nid,
1435 int ch, int dir, int idx, unsigned int ofs,
1436 unsigned int val)
1437{
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001438 unsigned int maxval;
1439
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001440 if (val > 0)
1441 val += ofs;
Takashi Iwai7ccc3ef2010-07-26 17:00:15 +02001442 /* ofs = 0: raw max value */
1443 maxval = get_amp_max_value(codec, nid, dir, 0);
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001444 if (val > maxval)
1445 val = maxval;
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01001446 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx,
1447 HDA_AMP_VOLMASK, val);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001448}
1449
Takashi Iwaid5191e52009-11-16 14:58:17 +01001450/**
1451 * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001452 * @kcontrol: ctl element
1453 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001454 *
1455 * The control element is supposed to have the private_value field
1456 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1457 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001458int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1459 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
1461 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1462 hda_nid_t nid = get_amp_nid(kcontrol);
1463 int chs = get_amp_channels(kcontrol);
1464 int dir = get_amp_direction(kcontrol);
1465 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001466 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 long *valp = ucontrol->value.integer.value;
1468
1469 if (chs & 1)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001470 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001472 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 return 0;
1474}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001475EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Takashi Iwaid5191e52009-11-16 14:58:17 +01001477/**
1478 * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001479 * @kcontrol: ctl element
1480 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001481 *
1482 * The control element is supposed to have the private_value field
1483 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1484 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001485int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1486 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
1488 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1489 hda_nid_t nid = get_amp_nid(kcontrol);
1490 int chs = get_amp_channels(kcontrol);
1491 int dir = get_amp_direction(kcontrol);
1492 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001493 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 long *valp = ucontrol->value.integer.value;
1495 int change = 0;
1496
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001497 if (chs & 1) {
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001498 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001499 valp++;
1500 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001501 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001502 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return change;
1504}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001505EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Takashi Iwai99b5c5b2017-05-10 12:29:37 +02001507/* inquiry the amp caps and convert to TLV */
1508static void get_ctl_amp_tlv(struct snd_kcontrol *kcontrol, unsigned int *tlv)
1509{
1510 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1511 hda_nid_t nid = get_amp_nid(kcontrol);
1512 int dir = get_amp_direction(kcontrol);
1513 unsigned int ofs = get_amp_offset(kcontrol);
1514 bool min_mute = get_amp_min_mute(kcontrol);
1515 u32 caps, val1, val2;
1516
1517 caps = query_amp_caps(codec, nid, dir);
1518 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1519 val2 = (val2 + 1) * 25;
1520 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
1521 val1 += ofs;
1522 val1 = ((int)val1) * ((int)val2);
1523 if (min_mute || (caps & AC_AMPCAP_MIN_MUTE))
1524 val2 |= TLV_DB_SCALE_MUTE;
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001525 tlv[SNDRV_CTL_TLVO_TYPE] = SNDRV_CTL_TLVT_DB_SCALE;
1526 tlv[SNDRV_CTL_TLVO_LEN] = 2 * sizeof(unsigned int);
1527 tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] = val1;
1528 tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP] = val2;
Takashi Iwai99b5c5b2017-05-10 12:29:37 +02001529}
1530
Takashi Iwaid5191e52009-11-16 14:58:17 +01001531/**
Takashi Iwaif0049e12017-05-10 12:34:09 +02001532 * snd_hda_mixer_amp_tlv - TLV callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001533 * @kcontrol: ctl element
1534 * @op_flag: operation flag
1535 * @size: byte size of input TLV
1536 * @_tlv: TLV data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001537 *
1538 * The control element is supposed to have the private_value field
1539 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1540 */
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001541int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1542 unsigned int size, unsigned int __user *_tlv)
1543{
Takashi Iwai99b5c5b2017-05-10 12:29:37 +02001544 unsigned int tlv[4];
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001545
1546 if (size < 4 * sizeof(unsigned int))
1547 return -ENOMEM;
Takashi Iwai99b5c5b2017-05-10 12:29:37 +02001548 get_ctl_amp_tlv(kcontrol, tlv);
1549 if (copy_to_user(_tlv, tlv, sizeof(tlv)))
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001550 return -EFAULT;
1551 return 0;
1552}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001553EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001554
Takashi Iwaid5191e52009-11-16 14:58:17 +01001555/**
1556 * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control
1557 * @codec: HD-audio codec
1558 * @nid: NID of a reference widget
1559 * @dir: #HDA_INPUT or #HDA_OUTPUT
1560 * @tlv: TLV data to be stored, at least 4 elements
1561 *
1562 * Set (static) TLV data for a virtual master volume using the AMP caps
1563 * obtained from the reference NID.
1564 * The volume range is recalculated as if the max volume is 0dB.
Takashi Iwai2134ea42008-01-10 16:53:55 +01001565 */
1566void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1567 unsigned int *tlv)
1568{
1569 u32 caps;
1570 int nums, step;
1571
1572 caps = query_amp_caps(codec, nid, dir);
1573 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1574 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1575 step = (step + 1) * 25;
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001576 tlv[SNDRV_CTL_TLVO_TYPE] = SNDRV_CTL_TLVT_DB_SCALE;
1577 tlv[SNDRV_CTL_TLVO_LEN] = 2 * sizeof(unsigned int);
1578 tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] = -nums * step;
1579 tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP] = step;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001580}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001581EXPORT_SYMBOL_GPL(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001582
1583/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01001584static struct snd_kcontrol *
Takashi Iwaidcda5802012-10-12 17:24:51 +02001585find_mixer_ctl(struct hda_codec *codec, const char *name, int dev, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001586{
1587 struct snd_ctl_elem_id id;
1588 memset(&id, 0, sizeof(id));
1589 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwaidcda5802012-10-12 17:24:51 +02001590 id.device = dev;
Takashi Iwai09f99702008-02-04 12:31:13 +01001591 id.index = idx;
Takashi Iwai18cb7102009-04-16 10:22:24 +02001592 if (snd_BUG_ON(strlen(name) >= sizeof(id.name)))
1593 return NULL;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001594 strcpy(id.name, name);
Takashi Iwai6efdd852015-02-27 16:09:22 +01001595 return snd_ctl_find_id(codec->card, &id);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001596}
1597
Takashi Iwaid5191e52009-11-16 14:58:17 +01001598/**
1599 * snd_hda_find_mixer_ctl - Find a mixer control element with the given name
1600 * @codec: HD-audio codec
1601 * @name: ctl id name string
1602 *
1603 * Get the control element with the given id string and IFACE_MIXER.
1604 */
Takashi Iwai09f99702008-02-04 12:31:13 +01001605struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1606 const char *name)
1607{
Takashi Iwaidcda5802012-10-12 17:24:51 +02001608 return find_mixer_ctl(codec, name, 0, 0);
Takashi Iwai09f99702008-02-04 12:31:13 +01001609}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001610EXPORT_SYMBOL_GPL(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01001611
Takashi Iwaidcda5802012-10-12 17:24:51 +02001612static int find_empty_mixer_ctl_idx(struct hda_codec *codec, const char *name,
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01001613 int start_idx)
Takashi Iwai1afe2062010-12-23 10:17:52 +01001614{
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01001615 int i, idx;
1616 /* 16 ctlrs should be large enough */
1617 for (i = 0, idx = start_idx; i < 16; i++, idx++) {
1618 if (!find_mixer_ctl(codec, name, 0, idx))
Takashi Iwai1afe2062010-12-23 10:17:52 +01001619 return idx;
1620 }
1621 return -EBUSY;
1622}
1623
Takashi Iwaid5191e52009-11-16 14:58:17 +01001624/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001625 * snd_hda_ctl_add - Add a control element and assign to the codec
Takashi Iwaid5191e52009-11-16 14:58:17 +01001626 * @codec: HD-audio codec
1627 * @nid: corresponding NID (optional)
1628 * @kctl: the control element to assign
1629 *
1630 * Add the given control element to an array inside the codec instance.
1631 * All control elements belonging to a codec are supposed to be added
1632 * by this function so that a proper clean-up works at the free or
1633 * reconfiguration time.
1634 *
1635 * If non-zero @nid is passed, the NID is assigned to the control element.
1636 * The assignment is shown in the codec proc file.
1637 *
1638 * snd_hda_ctl_add() checks the control subdev id field whether
1639 * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001640 * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit
1641 * specifies if kctl->private_value is a HDA amplifier value.
Takashi Iwaid5191e52009-11-16 14:58:17 +01001642 */
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001643int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
1644 struct snd_kcontrol *kctl)
Takashi Iwaid13bd412008-07-30 15:01:45 +02001645{
1646 int err;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001647 unsigned short flags = 0;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001648 struct hda_nid_item *item;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001649
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001650 if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) {
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001651 flags |= HDA_NID_ITEM_AMP;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001652 if (nid == 0)
1653 nid = get_amp_nid_(kctl->private_value);
1654 }
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001655 if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0)
1656 nid = kctl->id.subdevice & 0xffff;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001657 if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG))
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01001658 kctl->id.subdevice = 0;
Takashi Iwai6efdd852015-02-27 16:09:22 +01001659 err = snd_ctl_add(codec->card, kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001660 if (err < 0)
1661 return err;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001662 item = snd_array_new(&codec->mixers);
1663 if (!item)
Takashi Iwaid13bd412008-07-30 15:01:45 +02001664 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001665 item->kctl = kctl;
1666 item->nid = nid;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001667 item->flags = flags;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001668 return 0;
1669}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001670EXPORT_SYMBOL_GPL(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001671
Takashi Iwaid5191e52009-11-16 14:58:17 +01001672/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001673 * snd_hda_add_nid - Assign a NID to a control element
1674 * @codec: HD-audio codec
1675 * @nid: corresponding NID (optional)
1676 * @kctl: the control element to assign
1677 * @index: index to kctl
1678 *
1679 * Add the given control element to an array inside the codec instance.
1680 * This function is used when #snd_hda_ctl_add cannot be used for 1:1
1681 * NID:KCTL mapping - for example "Capture Source" selector.
1682 */
1683int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
1684 unsigned int index, hda_nid_t nid)
1685{
1686 struct hda_nid_item *item;
1687
1688 if (nid > 0) {
1689 item = snd_array_new(&codec->nids);
1690 if (!item)
1691 return -ENOMEM;
1692 item->kctl = kctl;
1693 item->index = index;
1694 item->nid = nid;
1695 return 0;
1696 }
Takashi Iwai4e76a882014-02-25 12:21:03 +01001697 codec_err(codec, "no NID for mapping control %s:%d:%d\n",
1698 kctl->id.name, kctl->id.index, index);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001699 return -EINVAL;
1700}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001701EXPORT_SYMBOL_GPL(snd_hda_add_nid);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001702
1703/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001704 * snd_hda_ctls_clear - Clear all controls assigned to the given codec
1705 * @codec: HD-audio codec
1706 */
Takashi Iwaid13bd412008-07-30 15:01:45 +02001707void snd_hda_ctls_clear(struct hda_codec *codec)
1708{
1709 int i;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001710 struct hda_nid_item *items = codec->mixers.list;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001711 for (i = 0; i < codec->mixers.used; i++)
Takashi Iwai6efdd852015-02-27 16:09:22 +01001712 snd_ctl_remove(codec->card, items[i].kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001713 snd_array_free(&codec->mixers);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001714 snd_array_free(&codec->nids);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001715}
1716
Takashi Iwai95a962c2014-10-29 16:03:58 +01001717/**
1718 * snd_hda_lock_devices - pseudo device locking
1719 * @bus: the BUS
1720 *
Takashi Iwaia65d6292009-02-23 16:57:04 +01001721 * toggle card->shutdown to allow/disallow the device access (as a hack)
1722 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001723int snd_hda_lock_devices(struct hda_bus *bus)
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001724{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001725 struct snd_card *card = bus->card;
1726 struct hda_codec *codec;
1727
Takashi Iwaia65d6292009-02-23 16:57:04 +01001728 spin_lock(&card->files_lock);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001729 if (card->shutdown)
1730 goto err_unlock;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001731 card->shutdown = 1;
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001732 if (!list_empty(&card->ctl_files))
1733 goto err_clear;
1734
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001735 list_for_each_codec(codec, bus) {
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01001736 struct hda_pcm *cpcm;
1737 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001738 if (!cpcm->pcm)
1739 continue;
1740 if (cpcm->pcm->streams[0].substream_opened ||
1741 cpcm->pcm->streams[1].substream_opened)
1742 goto err_clear;
1743 }
1744 }
Takashi Iwaia65d6292009-02-23 16:57:04 +01001745 spin_unlock(&card->files_lock);
1746 return 0;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001747
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001748 err_clear:
1749 card->shutdown = 0;
1750 err_unlock:
1751 spin_unlock(&card->files_lock);
1752 return -EINVAL;
1753}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001754EXPORT_SYMBOL_GPL(snd_hda_lock_devices);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001755
Takashi Iwai95a962c2014-10-29 16:03:58 +01001756/**
1757 * snd_hda_unlock_devices - pseudo device unlocking
1758 * @bus: the BUS
1759 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001760void snd_hda_unlock_devices(struct hda_bus *bus)
Takashi Iwaia65d6292009-02-23 16:57:04 +01001761{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001762 struct snd_card *card = bus->card;
1763
Takashi Iwaia65d6292009-02-23 16:57:04 +01001764 spin_lock(&card->files_lock);
1765 card->shutdown = 0;
1766 spin_unlock(&card->files_lock);
1767}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001768EXPORT_SYMBOL_GPL(snd_hda_unlock_devices);
Takashi Iwaia65d6292009-02-23 16:57:04 +01001769
Takashi Iwaid5191e52009-11-16 14:58:17 +01001770/**
1771 * snd_hda_codec_reset - Clear all objects assigned to the codec
1772 * @codec: HD-audio codec
1773 *
1774 * This frees the all PCM and control elements assigned to the codec, and
1775 * clears the caches and restores the pin default configurations.
1776 *
1777 * When a device is being used, it returns -EBSY. If successfully freed,
1778 * returns zero.
1779 */
Takashi Iwaia65d6292009-02-23 16:57:04 +01001780int snd_hda_codec_reset(struct hda_codec *codec)
1781{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001782 struct hda_bus *bus = codec->bus;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001783
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001784 if (snd_hda_lock_devices(bus) < 0)
Takashi Iwaia65d6292009-02-23 16:57:04 +01001785 return -EBUSY;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001786
1787 /* OK, let it free */
Takashi Iwai3256be62015-02-24 14:59:42 +01001788 snd_hdac_device_unregister(&codec->core);
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001789
Takashi Iwaia65d6292009-02-23 16:57:04 +01001790 /* allow device access again */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001791 snd_hda_unlock_devices(bus);
Takashi Iwaia65d6292009-02-23 16:57:04 +01001792 return 0;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001793}
1794
Takashi Iwai6194b992014-06-06 18:12:16 +02001795typedef int (*map_slave_func_t)(struct hda_codec *, void *, struct snd_kcontrol *);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001796
1797/* apply the function to all matching slave ctls in the mixer list */
1798static int map_slaves(struct hda_codec *codec, const char * const *slaves,
Takashi Iwai9322ca52012-02-03 14:28:01 +01001799 const char *suffix, map_slave_func_t func, void *data)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001800{
1801 struct hda_nid_item *items;
1802 const char * const *s;
1803 int i, err;
1804
1805 items = codec->mixers.list;
1806 for (i = 0; i < codec->mixers.used; i++) {
1807 struct snd_kcontrol *sctl = items[i].kctl;
Takashi Iwaica16ec02013-10-28 12:00:35 +01001808 if (!sctl || sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001809 continue;
1810 for (s = slaves; *s; s++) {
Takashi Iwai9322ca52012-02-03 14:28:01 +01001811 char tmpname[sizeof(sctl->id.name)];
1812 const char *name = *s;
1813 if (suffix) {
1814 snprintf(tmpname, sizeof(tmpname), "%s %s",
1815 name, suffix);
1816 name = tmpname;
1817 }
Takashi Iwai9322ca52012-02-03 14:28:01 +01001818 if (!strcmp(sctl->id.name, name)) {
Takashi Iwai6194b992014-06-06 18:12:16 +02001819 err = func(codec, data, sctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001820 if (err)
1821 return err;
1822 break;
1823 }
1824 }
1825 }
1826 return 0;
1827}
1828
Takashi Iwai6194b992014-06-06 18:12:16 +02001829static int check_slave_present(struct hda_codec *codec,
1830 void *data, struct snd_kcontrol *sctl)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001831{
1832 return 1;
1833}
1834
Takashi Iwai18478e82012-03-09 17:51:10 +01001835/* call kctl->put with the given value(s) */
1836static int put_kctl_with_value(struct snd_kcontrol *kctl, int val)
1837{
1838 struct snd_ctl_elem_value *ucontrol;
1839 ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL);
1840 if (!ucontrol)
1841 return -ENOMEM;
1842 ucontrol->value.integer.value[0] = val;
1843 ucontrol->value.integer.value[1] = val;
1844 kctl->put(kctl, ucontrol);
1845 kfree(ucontrol);
1846 return 0;
1847}
1848
Takashi Iwaia91d6612017-10-16 11:39:28 +02001849struct slave_init_arg {
1850 struct hda_codec *codec;
1851 int step;
1852};
1853
1854/* initialize the slave volume with 0dB via snd_ctl_apply_vmaster_slaves() */
Takashi Iwaid6c06152017-11-22 12:34:56 +01001855static int init_slave_0dB(struct snd_kcontrol *slave,
1856 struct snd_kcontrol *kctl,
1857 void *_arg)
Takashi Iwai18478e82012-03-09 17:51:10 +01001858{
Takashi Iwaia91d6612017-10-16 11:39:28 +02001859 struct slave_init_arg *arg = _arg;
1860 int _tlv[4];
1861 const int *tlv = NULL;
1862 int step;
1863 int val;
1864
1865 if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
1866 if (kctl->tlv.c != snd_hda_mixer_amp_tlv) {
1867 codec_err(arg->codec,
1868 "Unexpected TLV callback for slave %s:%d\n",
1869 kctl->id.name, kctl->id.index);
1870 return 0; /* ignore */
1871 }
1872 get_ctl_amp_tlv(kctl, _tlv);
1873 tlv = _tlv;
1874 } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ)
1875 tlv = kctl->tlv.p;
1876
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001877 if (!tlv || tlv[SNDRV_CTL_TLVO_TYPE] != SNDRV_CTL_TLVT_DB_SCALE)
Takashi Iwaia91d6612017-10-16 11:39:28 +02001878 return 0;
1879
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001880 step = tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP];
Takashi Iwaia91d6612017-10-16 11:39:28 +02001881 step &= ~TLV_DB_SCALE_MUTE;
1882 if (!step)
1883 return 0;
1884 if (arg->step && arg->step != step) {
1885 codec_err(arg->codec,
1886 "Mismatching dB step for vmaster slave (%d!=%d)\n",
1887 arg->step, step);
1888 return 0;
1889 }
1890
1891 arg->step = step;
Takashi Sakamoto51cdc8b2018-05-14 07:09:52 +09001892 val = -tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] / step;
Takashi Iwaia91d6612017-10-16 11:39:28 +02001893 if (val > 0) {
Takashi Iwaid6c06152017-11-22 12:34:56 +01001894 put_kctl_with_value(slave, val);
Takashi Iwaia91d6612017-10-16 11:39:28 +02001895 return val;
1896 }
1897
Takashi Iwai18478e82012-03-09 17:51:10 +01001898 return 0;
1899}
1900
Takashi Iwaia91d6612017-10-16 11:39:28 +02001901/* unmute the slave via snd_ctl_apply_vmaster_slaves() */
Takashi Iwaid6c06152017-11-22 12:34:56 +01001902static int init_slave_unmute(struct snd_kcontrol *slave,
1903 struct snd_kcontrol *kctl,
1904 void *_arg)
Takashi Iwai18478e82012-03-09 17:51:10 +01001905{
1906 return put_kctl_with_value(slave, 1);
1907}
1908
Takashi Iwaie8750942014-06-30 14:02:39 +02001909static int add_slave(struct hda_codec *codec,
1910 void *data, struct snd_kcontrol *slave)
1911{
1912 return snd_ctl_add_slave(data, slave);
1913}
1914
Takashi Iwaid5191e52009-11-16 14:58:17 +01001915/**
Takashi Iwai95a962c2014-10-29 16:03:58 +01001916 * __snd_hda_add_vmaster - create a virtual master control and add slaves
Takashi Iwaid5191e52009-11-16 14:58:17 +01001917 * @codec: HD-audio codec
1918 * @name: vmaster control name
1919 * @tlv: TLV data (optional)
1920 * @slaves: slave control names (optional)
Takashi Iwai9322ca52012-02-03 14:28:01 +01001921 * @suffix: suffix string to each slave name (optional)
Takashi Iwai18478e82012-03-09 17:51:10 +01001922 * @init_slave_vol: initialize slaves to unmute/0dB
Takashi Iwai29e58532012-03-12 12:25:03 +01001923 * @ctl_ret: store the vmaster kcontrol in return
Takashi Iwaid5191e52009-11-16 14:58:17 +01001924 *
1925 * Create a virtual master control with the given name. The TLV data
1926 * must be either NULL or a valid data.
1927 *
1928 * @slaves is a NULL-terminated array of strings, each of which is a
1929 * slave control name. All controls with these names are assigned to
1930 * the new virtual master control.
1931 *
1932 * This function returns zero if successful or a negative error code.
1933 */
Takashi Iwai18478e82012-03-09 17:51:10 +01001934int __snd_hda_add_vmaster(struct hda_codec *codec, char *name,
Takashi Iwai9322ca52012-02-03 14:28:01 +01001935 unsigned int *tlv, const char * const *slaves,
Takashi Iwai29e58532012-03-12 12:25:03 +01001936 const char *suffix, bool init_slave_vol,
1937 struct snd_kcontrol **ctl_ret)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001938{
1939 struct snd_kcontrol *kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001940 int err;
1941
Takashi Iwai29e58532012-03-12 12:25:03 +01001942 if (ctl_ret)
1943 *ctl_ret = NULL;
1944
Takashi Iwai9322ca52012-02-03 14:28:01 +01001945 err = map_slaves(codec, slaves, suffix, check_slave_present, NULL);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001946 if (err != 1) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001947 codec_dbg(codec, "No slave found for %s\n", name);
Takashi Iwai2f085542008-02-22 18:43:50 +01001948 return 0;
1949 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001950 kctl = snd_ctl_make_virtual_master(name, tlv);
1951 if (!kctl)
1952 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001953 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001954 if (err < 0)
1955 return err;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01001956
Takashi Iwaie8750942014-06-30 14:02:39 +02001957 err = map_slaves(codec, slaves, suffix, add_slave, kctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001958 if (err < 0)
1959 return err;
Takashi Iwai18478e82012-03-09 17:51:10 +01001960
1961 /* init with master mute & zero volume */
1962 put_kctl_with_value(kctl, 0);
Takashi Iwai485e3e0c2013-11-04 15:51:00 +01001963 if (init_slave_vol) {
Takashi Iwaia91d6612017-10-16 11:39:28 +02001964 struct slave_init_arg arg = {
1965 .codec = codec,
1966 .step = 0,
1967 };
1968 snd_ctl_apply_vmaster_slaves(kctl,
1969 tlv ? init_slave_0dB : init_slave_unmute,
1970 &arg);
Takashi Iwai485e3e0c2013-11-04 15:51:00 +01001971 }
Takashi Iwai18478e82012-03-09 17:51:10 +01001972
Takashi Iwai29e58532012-03-12 12:25:03 +01001973 if (ctl_ret)
1974 *ctl_ret = kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001975 return 0;
1976}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001977EXPORT_SYMBOL_GPL(__snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001978
Takashi Iwaid2f344b2012-03-12 16:59:58 +01001979/*
1980 * mute-LED control using vmaster
1981 */
1982static int vmaster_mute_mode_info(struct snd_kcontrol *kcontrol,
1983 struct snd_ctl_elem_info *uinfo)
1984{
1985 static const char * const texts[] = {
David Henningssonc86c2d42013-01-03 14:12:29 +01001986 "On", "Off", "Follow Master"
Takashi Iwaid2f344b2012-03-12 16:59:58 +01001987 };
Takashi Iwaid2f344b2012-03-12 16:59:58 +01001988
Takashi Iwai3ff72212014-10-20 18:17:28 +02001989 return snd_ctl_enum_info(uinfo, 1, 3, texts);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01001990}
1991
1992static int vmaster_mute_mode_get(struct snd_kcontrol *kcontrol,
1993 struct snd_ctl_elem_value *ucontrol)
1994{
1995 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
1996 ucontrol->value.enumerated.item[0] = hook->mute_mode;
1997 return 0;
1998}
1999
2000static int vmaster_mute_mode_put(struct snd_kcontrol *kcontrol,
2001 struct snd_ctl_elem_value *ucontrol)
2002{
2003 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2004 unsigned int old_mode = hook->mute_mode;
2005
2006 hook->mute_mode = ucontrol->value.enumerated.item[0];
2007 if (hook->mute_mode > HDA_VMUTE_FOLLOW_MASTER)
2008 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
2009 if (old_mode == hook->mute_mode)
2010 return 0;
2011 snd_hda_sync_vmaster_hook(hook);
2012 return 1;
2013}
2014
Bhumika Goyalf3b827e2017-02-20 00:18:09 +05302015static const struct snd_kcontrol_new vmaster_mute_mode = {
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002016 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2017 .name = "Mute-LED Mode",
2018 .info = vmaster_mute_mode_info,
2019 .get = vmaster_mute_mode_get,
2020 .put = vmaster_mute_mode_put,
2021};
2022
Takashi Iwaiee52e562015-04-27 10:36:11 +02002023/* meta hook to call each driver's vmaster hook */
2024static void vmaster_hook(void *private_data, int enabled)
2025{
2026 struct hda_vmaster_mute_hook *hook = private_data;
2027
2028 if (hook->mute_mode != HDA_VMUTE_FOLLOW_MASTER)
2029 enabled = hook->mute_mode;
2030 hook->hook(hook->codec, enabled);
2031}
2032
Takashi Iwai95a962c2014-10-29 16:03:58 +01002033/**
2034 * snd_hda_add_vmaster_hook - Add a vmaster hook for mute-LED
2035 * @codec: the HDA codec
2036 * @hook: the vmaster hook object
2037 * @expose_enum_ctl: flag to create an enum ctl
2038 *
2039 * Add a mute-LED hook with the given vmaster switch kctl.
2040 * When @expose_enum_ctl is set, "Mute-LED Mode" control is automatically
2041 * created and associated with the given hook.
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002042 */
2043int snd_hda_add_vmaster_hook(struct hda_codec *codec,
Takashi Iwaif29735cb2012-03-13 07:55:10 +01002044 struct hda_vmaster_mute_hook *hook,
2045 bool expose_enum_ctl)
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002046{
2047 struct snd_kcontrol *kctl;
2048
2049 if (!hook->hook || !hook->sw_kctl)
2050 return 0;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002051 hook->codec = codec;
2052 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
Takashi Iwaiee52e562015-04-27 10:36:11 +02002053 snd_ctl_add_vmaster_hook(hook->sw_kctl, vmaster_hook, hook);
Takashi Iwaif29735cb2012-03-13 07:55:10 +01002054 if (!expose_enum_ctl)
2055 return 0;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002056 kctl = snd_ctl_new1(&vmaster_mute_mode, hook);
2057 if (!kctl)
2058 return -ENOMEM;
2059 return snd_hda_ctl_add(codec, 0, kctl);
2060}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002061EXPORT_SYMBOL_GPL(snd_hda_add_vmaster_hook);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002062
Takashi Iwai95a962c2014-10-29 16:03:58 +01002063/**
2064 * snd_hda_sync_vmaster_hook - Sync vmaster hook
2065 * @hook: the vmaster hook
2066 *
2067 * Call the hook with the current value for synchronization.
2068 * Should be called in init callback.
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002069 */
2070void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook)
2071{
2072 if (!hook->hook || !hook->codec)
2073 return;
Takashi Iwai594813f2013-04-17 18:16:05 +02002074 /* don't call vmaster hook in the destructor since it might have
2075 * been already destroyed
2076 */
2077 if (hook->codec->bus->shutdown)
2078 return;
Takashi Iwaiee52e562015-04-27 10:36:11 +02002079 snd_ctl_sync_vmaster_hook(hook->sw_kctl);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002080}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002081EXPORT_SYMBOL_GPL(snd_hda_sync_vmaster_hook);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002082
2083
Takashi Iwaid5191e52009-11-16 14:58:17 +01002084/**
2085 * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002086 * @kcontrol: referred ctl element
2087 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002088 *
2089 * The control element is supposed to have the private_value field
2090 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2091 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002092int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
2093 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
2095 int chs = get_amp_channels(kcontrol);
2096
2097 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2098 uinfo->count = chs == 3 ? 2 : 1;
2099 uinfo->value.integer.min = 0;
2100 uinfo->value.integer.max = 1;
2101 return 0;
2102}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002103EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Takashi Iwaid5191e52009-11-16 14:58:17 +01002105/**
2106 * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002107 * @kcontrol: ctl element
2108 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002109 *
2110 * The control element is supposed to have the private_value field
2111 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2112 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002113int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
2114 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
2116 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2117 hda_nid_t nid = get_amp_nid(kcontrol);
2118 int chs = get_amp_channels(kcontrol);
2119 int dir = get_amp_direction(kcontrol);
2120 int idx = get_amp_index(kcontrol);
2121 long *valp = ucontrol->value.integer.value;
2122
2123 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002124 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002125 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002127 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002128 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 return 0;
2130}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002131EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Takashi Iwaid5191e52009-11-16 14:58:17 +01002133/**
2134 * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002135 * @kcontrol: ctl element
2136 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002137 *
2138 * The control element is supposed to have the private_value field
2139 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2140 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002141int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
2142 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143{
2144 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2145 hda_nid_t nid = get_amp_nid(kcontrol);
2146 int chs = get_amp_channels(kcontrol);
2147 int dir = get_amp_direction(kcontrol);
2148 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 long *valp = ucontrol->value.integer.value;
2150 int change = 0;
2151
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002152 if (chs & 1) {
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01002153 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
2154 HDA_AMP_MUTE,
2155 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002156 valp++;
2157 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002158 if (chs & 2)
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01002159 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
2160 HDA_AMP_MUTE,
2161 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002162 hda_call_check_power_status(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 return change;
2164}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002165EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Takashi Iwai532d5382007-07-27 19:02:40 +02002167/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 * SPDIF out controls
2169 */
2170
Takashi Iwai0ba21762007-04-16 11:29:14 +02002171static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
2172 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173{
2174 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
2175 uinfo->count = 1;
2176 return 0;
2177}
2178
Takashi Iwai0ba21762007-04-16 11:29:14 +02002179static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
2180 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181{
2182 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2183 IEC958_AES0_NONAUDIO |
2184 IEC958_AES0_CON_EMPHASIS_5015 |
2185 IEC958_AES0_CON_NOT_COPYRIGHT;
2186 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
2187 IEC958_AES1_CON_ORIGINAL;
2188 return 0;
2189}
2190
Takashi Iwai0ba21762007-04-16 11:29:14 +02002191static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
2192 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
2194 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2195 IEC958_AES0_NONAUDIO |
2196 IEC958_AES0_PRO_EMPHASIS_5015;
2197 return 0;
2198}
2199
Takashi Iwai0ba21762007-04-16 11:29:14 +02002200static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
2201 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
2203 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06002204 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002205 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Takashi Iwai08605062018-04-24 16:53:24 +02002207 if (WARN_ON(codec->spdif_out.used <= idx))
2208 return -EINVAL;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002209 mutex_lock(&codec->spdif_mutex);
2210 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c935972011-06-01 11:14:17 -06002211 ucontrol->value.iec958.status[0] = spdif->status & 0xff;
2212 ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff;
2213 ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff;
2214 ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002215 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
2217 return 0;
2218}
2219
2220/* convert from SPDIF status bits to HDA SPDIF bits
2221 * bit 0 (DigEn) is always set zero (to be filled later)
2222 */
2223static unsigned short convert_from_spdif_status(unsigned int sbits)
2224{
2225 unsigned short val = 0;
2226
2227 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002228 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002230 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002232 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
2233 IEC958_AES0_PRO_EMPHASIS_5015)
2234 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002236 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
2237 IEC958_AES0_CON_EMPHASIS_5015)
2238 val |= AC_DIG1_EMPHASIS;
2239 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
2240 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02002242 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
2244 }
2245 return val;
2246}
2247
2248/* convert to SPDIF status bits from HDA SPDIF bits
2249 */
2250static unsigned int convert_to_spdif_status(unsigned short val)
2251{
2252 unsigned int sbits = 0;
2253
Takashi Iwai0ba21762007-04-16 11:29:14 +02002254 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002256 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 sbits |= IEC958_AES0_PROFESSIONAL;
2258 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwaia686fd12013-03-20 15:42:00 +01002259 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
2261 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002262 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002264 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002266 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
2268 sbits |= val & (0x7f << 8);
2269 }
2270 return sbits;
2271}
2272
Takashi Iwai2f728532008-09-25 16:32:41 +02002273/* set digital convert verbs both for the given NID and its slaves */
2274static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaia551d912015-02-26 12:34:49 +01002275 int mask, int val)
Takashi Iwai2f728532008-09-25 16:32:41 +02002276{
Takashi Iwaidda14412011-05-02 11:29:30 +02002277 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02002278
Takashi Iwaia551d912015-02-26 12:34:49 +01002279 snd_hdac_regmap_update(&codec->core, nid, AC_VERB_SET_DIGI_CONVERT_1,
2280 mask, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02002281 d = codec->slave_dig_outs;
2282 if (!d)
2283 return;
2284 for (; *d; d++)
Takashi Iwai7d4b5e92015-04-16 15:14:53 +02002285 snd_hdac_regmap_update(&codec->core, *d,
Takashi Iwaia551d912015-02-26 12:34:49 +01002286 AC_VERB_SET_DIGI_CONVERT_1, mask, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02002287}
2288
2289static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
2290 int dig1, int dig2)
2291{
Takashi Iwaia551d912015-02-26 12:34:49 +01002292 unsigned int mask = 0;
2293 unsigned int val = 0;
2294
2295 if (dig1 != -1) {
2296 mask |= 0xff;
2297 val = dig1;
2298 }
2299 if (dig2 != -1) {
2300 mask |= 0xff00;
2301 val |= dig2 << 8;
2302 }
2303 set_dig_out(codec, nid, mask, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02002304}
2305
Takashi Iwai0ba21762007-04-16 11:29:14 +02002306static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
2307 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308{
2309 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06002310 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002311 struct hda_spdif_out *spdif;
2312 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 unsigned short val;
2314 int change;
2315
Takashi Iwai08605062018-04-24 16:53:24 +02002316 if (WARN_ON(codec->spdif_out.used <= idx))
2317 return -EINVAL;
Ingo Molnar62932df2006-01-16 16:34:20 +01002318 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002319 spdif = snd_array_elem(&codec->spdif_out, idx);
2320 nid = spdif->nid;
Stephen Warren7c935972011-06-01 11:14:17 -06002321 spdif->status = ucontrol->value.iec958.status[0] |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
2323 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
2324 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
Stephen Warren7c935972011-06-01 11:14:17 -06002325 val = convert_from_spdif_status(spdif->status);
2326 val |= spdif->ctls & 1;
2327 change = spdif->ctls != val;
2328 spdif->ctls = val;
Stephen Warren74b654c2011-06-01 11:14:18 -06002329 if (change && nid != (u16)-1)
Takashi Iwai2f728532008-09-25 16:32:41 +02002330 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Ingo Molnar62932df2006-01-16 16:34:20 +01002331 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 return change;
2333}
2334
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002335#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Takashi Iwai0ba21762007-04-16 11:29:14 +02002337static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
2338 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339{
2340 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06002341 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002342 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Takashi Iwai08605062018-04-24 16:53:24 +02002344 if (WARN_ON(codec->spdif_out.used <= idx))
2345 return -EINVAL;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002346 mutex_lock(&codec->spdif_mutex);
2347 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c935972011-06-01 11:14:17 -06002348 ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002349 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 return 0;
2351}
2352
Stephen Warren74b654c2011-06-01 11:14:18 -06002353static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid,
2354 int dig1, int dig2)
2355{
2356 set_dig_out_convert(codec, nid, dig1, dig2);
2357 /* unmute amp switch (if any) */
2358 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
2359 (dig1 & AC_DIG1_ENABLE))
2360 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2361 HDA_AMP_MUTE, 0);
2362}
2363
Takashi Iwai0ba21762007-04-16 11:29:14 +02002364static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
2365 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366{
2367 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06002368 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002369 struct hda_spdif_out *spdif;
2370 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 unsigned short val;
2372 int change;
2373
Takashi Iwai08605062018-04-24 16:53:24 +02002374 if (WARN_ON(codec->spdif_out.used <= idx))
2375 return -EINVAL;
Ingo Molnar62932df2006-01-16 16:34:20 +01002376 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002377 spdif = snd_array_elem(&codec->spdif_out, idx);
2378 nid = spdif->nid;
Stephen Warren7c935972011-06-01 11:14:17 -06002379 val = spdif->ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02002381 val |= AC_DIG1_ENABLE;
Stephen Warren7c935972011-06-01 11:14:17 -06002382 change = spdif->ctls != val;
Stephen Warren74b654c2011-06-01 11:14:18 -06002383 spdif->ctls = val;
2384 if (change && nid != (u16)-1)
2385 set_spdif_ctls(codec, nid, val & 0xff, -1);
Ingo Molnar62932df2006-01-16 16:34:20 +01002386 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 return change;
2388}
2389
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002390static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 {
2392 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2393 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002394 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 .info = snd_hda_spdif_mask_info,
2396 .get = snd_hda_spdif_cmask_get,
2397 },
2398 {
2399 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2400 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002401 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 .info = snd_hda_spdif_mask_info,
2403 .get = snd_hda_spdif_pmask_get,
2404 },
2405 {
2406 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002407 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 .info = snd_hda_spdif_mask_info,
2409 .get = snd_hda_spdif_default_get,
2410 .put = snd_hda_spdif_default_put,
2411 },
2412 {
2413 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002414 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 .info = snd_hda_spdif_out_switch_info,
2416 .get = snd_hda_spdif_out_switch_get,
2417 .put = snd_hda_spdif_out_switch_put,
2418 },
2419 { } /* end */
2420};
2421
2422/**
Takashi Iwaidcda5802012-10-12 17:24:51 +02002423 * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 * @codec: the HDA codec
Takashi Iwaidcda5802012-10-12 17:24:51 +02002425 * @associated_nid: NID that new ctls associated with
2426 * @cvt_nid: converter NID
2427 * @type: HDA_PCM_TYPE_*
2428 * Creates controls related with the digital output.
2429 * Called from each patch supporting the digital out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 *
2431 * Returns 0 if successful, or a negative error code.
2432 */
Takashi Iwaidcda5802012-10-12 17:24:51 +02002433int snd_hda_create_dig_out_ctls(struct hda_codec *codec,
2434 hda_nid_t associated_nid,
2435 hda_nid_t cvt_nid,
2436 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
2438 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002439 struct snd_kcontrol *kctl;
2440 struct snd_kcontrol_new *dig_mix;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002441 int idx = 0;
Takashi Iwaia551d912015-02-26 12:34:49 +01002442 int val = 0;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002443 const int spdif_index = 16;
Stephen Warren7c935972011-06-01 11:14:17 -06002444 struct hda_spdif_out *spdif;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002445 struct hda_bus *bus = codec->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002447 if (bus->primary_dig_out_type == HDA_PCM_TYPE_HDMI &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02002448 type == HDA_PCM_TYPE_SPDIF) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002449 idx = spdif_index;
2450 } else if (bus->primary_dig_out_type == HDA_PCM_TYPE_SPDIF &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02002451 type == HDA_PCM_TYPE_HDMI) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002452 /* suppose a single SPDIF device */
2453 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2454 kctl = find_mixer_ctl(codec, dig_mix->name, 0, 0);
2455 if (!kctl)
2456 break;
2457 kctl->id.index = spdif_index;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002458 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002459 bus->primary_dig_out_type = HDA_PCM_TYPE_HDMI;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002460 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002461 if (!bus->primary_dig_out_type)
2462 bus->primary_dig_out_type = type;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002463
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002464 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", idx);
Takashi Iwai1afe2062010-12-23 10:17:52 +01002465 if (idx < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01002466 codec_err(codec, "too many IEC958 outputs\n");
Takashi Iwai09f99702008-02-04 12:31:13 +01002467 return -EBUSY;
2468 }
Stephen Warren7c935972011-06-01 11:14:17 -06002469 spdif = snd_array_new(&codec->spdif_out);
Mengdong Lin25336e82013-03-07 14:10:25 -05002470 if (!spdif)
2471 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2473 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01002474 if (!kctl)
2475 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01002476 kctl->id.index = idx;
Stephen Warren7c935972011-06-01 11:14:17 -06002477 kctl->private_value = codec->spdif_out.used - 1;
Stephen Warren74b654c2011-06-01 11:14:18 -06002478 err = snd_hda_ctl_add(codec, associated_nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002479 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 return err;
2481 }
Stephen Warren74b654c2011-06-01 11:14:18 -06002482 spdif->nid = cvt_nid;
Takashi Iwaia551d912015-02-26 12:34:49 +01002483 snd_hdac_regmap_read(&codec->core, cvt_nid,
2484 AC_VERB_GET_DIGI_CONVERT_1, &val);
2485 spdif->ctls = val;
Stephen Warren7c935972011-06-01 11:14:17 -06002486 spdif->status = convert_to_spdif_status(spdif->ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 return 0;
2488}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002489EXPORT_SYMBOL_GPL(snd_hda_create_dig_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490
Takashi Iwai95a962c2014-10-29 16:03:58 +01002491/**
2492 * snd_hda_spdif_out_of_nid - get the hda_spdif_out entry from the given NID
2493 * @codec: the HDA codec
2494 * @nid: widget NID
2495 *
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002496 * call within spdif_mutex lock
2497 */
Stephen Warren7c935972011-06-01 11:14:17 -06002498struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec,
2499 hda_nid_t nid)
2500{
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02002501 struct hda_spdif_out *spdif;
Stephen Warren7c935972011-06-01 11:14:17 -06002502 int i;
Takashi Iwaia9c2dfc2018-04-23 17:24:56 +02002503
2504 snd_array_for_each(&codec->spdif_out, i, spdif) {
Stephen Warren7c935972011-06-01 11:14:17 -06002505 if (spdif->nid == nid)
2506 return spdif;
2507 }
2508 return NULL;
2509}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002510EXPORT_SYMBOL_GPL(snd_hda_spdif_out_of_nid);
Stephen Warren7c935972011-06-01 11:14:17 -06002511
Takashi Iwai95a962c2014-10-29 16:03:58 +01002512/**
2513 * snd_hda_spdif_ctls_unassign - Unassign the given SPDIF ctl
2514 * @codec: the HDA codec
2515 * @idx: the SPDIF ctl index
2516 *
2517 * Unassign the widget from the given SPDIF control.
2518 */
Stephen Warren74b654c2011-06-01 11:14:18 -06002519void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx)
2520{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002521 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06002522
Takashi Iwai08605062018-04-24 16:53:24 +02002523 if (WARN_ON(codec->spdif_out.used <= idx))
2524 return;
Stephen Warren74b654c2011-06-01 11:14:18 -06002525 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002526 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06002527 spdif->nid = (u16)-1;
2528 mutex_unlock(&codec->spdif_mutex);
2529}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002530EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_unassign);
Stephen Warren74b654c2011-06-01 11:14:18 -06002531
Takashi Iwai95a962c2014-10-29 16:03:58 +01002532/**
2533 * snd_hda_spdif_ctls_assign - Assign the SPDIF controls to the given NID
2534 * @codec: the HDA codec
2535 * @idx: the SPDIF ctl idx
2536 * @nid: widget NID
2537 *
2538 * Assign the widget to the SPDIF control with the given index.
2539 */
Stephen Warren74b654c2011-06-01 11:14:18 -06002540void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid)
2541{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002542 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06002543 unsigned short val;
2544
Takashi Iwai08605062018-04-24 16:53:24 +02002545 if (WARN_ON(codec->spdif_out.used <= idx))
2546 return;
Stephen Warren74b654c2011-06-01 11:14:18 -06002547 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002548 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06002549 if (spdif->nid != nid) {
2550 spdif->nid = nid;
2551 val = spdif->ctls;
2552 set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff);
2553 }
2554 mutex_unlock(&codec->spdif_mutex);
2555}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002556EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_assign);
Stephen Warren74b654c2011-06-01 11:14:18 -06002557
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558/*
Takashi Iwai9a081602008-02-12 18:37:26 +01002559 * SPDIF sharing with analog output
2560 */
2561static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
2562 struct snd_ctl_elem_value *ucontrol)
2563{
2564 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2565 ucontrol->value.integer.value[0] = mout->share_spdif;
2566 return 0;
2567}
2568
2569static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
2570 struct snd_ctl_elem_value *ucontrol)
2571{
2572 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2573 mout->share_spdif = !!ucontrol->value.integer.value[0];
2574 return 0;
2575}
2576
Bhumika Goyalf3b827e2017-02-20 00:18:09 +05302577static const struct snd_kcontrol_new spdif_share_sw = {
Takashi Iwai9a081602008-02-12 18:37:26 +01002578 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2579 .name = "IEC958 Default PCM Playback Switch",
2580 .info = snd_ctl_boolean_mono_info,
2581 .get = spdif_share_sw_get,
2582 .put = spdif_share_sw_put,
2583};
2584
Takashi Iwaid5191e52009-11-16 14:58:17 +01002585/**
2586 * snd_hda_create_spdif_share_sw - create Default PCM switch
2587 * @codec: the HDA codec
2588 * @mout: multi-out instance
2589 */
Takashi Iwai9a081602008-02-12 18:37:26 +01002590int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
2591 struct hda_multi_out *mout)
2592{
Mengdong Lin4c7a5482013-03-07 14:11:05 -05002593 struct snd_kcontrol *kctl;
2594
Takashi Iwai9a081602008-02-12 18:37:26 +01002595 if (!mout->dig_out_nid)
2596 return 0;
Mengdong Lin4c7a5482013-03-07 14:11:05 -05002597
2598 kctl = snd_ctl_new1(&spdif_share_sw, mout);
2599 if (!kctl)
2600 return -ENOMEM;
Takashi Iwai9a081602008-02-12 18:37:26 +01002601 /* ATTENTION: here mout is passed as private_data, instead of codec */
Mengdong Lin4c7a5482013-03-07 14:11:05 -05002602 return snd_hda_ctl_add(codec, mout->dig_out_nid, kctl);
Takashi Iwai9a081602008-02-12 18:37:26 +01002603}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002604EXPORT_SYMBOL_GPL(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01002605
2606/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 * SPDIF input
2608 */
2609
2610#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
2611
Takashi Iwai0ba21762007-04-16 11:29:14 +02002612static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
2613 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614{
2615 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2616
2617 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
2618 return 0;
2619}
2620
Takashi Iwai0ba21762007-04-16 11:29:14 +02002621static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
2622 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623{
2624 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2625 hda_nid_t nid = kcontrol->private_value;
2626 unsigned int val = !!ucontrol->value.integer.value[0];
2627 int change;
2628
Ingo Molnar62932df2006-01-16 16:34:20 +01002629 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002631 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 codec->spdif_in_enable = val;
Takashi Iwaia551d912015-02-26 12:34:49 +01002633 snd_hdac_regmap_write(&codec->core, nid,
2634 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002636 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 return change;
2638}
2639
Takashi Iwai0ba21762007-04-16 11:29:14 +02002640static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
2641 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642{
2643 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2644 hda_nid_t nid = kcontrol->private_value;
Takashi Iwaia551d912015-02-26 12:34:49 +01002645 unsigned int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 unsigned int sbits;
2647
Takashi Iwaia551d912015-02-26 12:34:49 +01002648 snd_hdac_regmap_read(&codec->core, nid,
2649 AC_VERB_GET_DIGI_CONVERT_1, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 sbits = convert_to_spdif_status(val);
2651 ucontrol->value.iec958.status[0] = sbits;
2652 ucontrol->value.iec958.status[1] = sbits >> 8;
2653 ucontrol->value.iec958.status[2] = sbits >> 16;
2654 ucontrol->value.iec958.status[3] = sbits >> 24;
2655 return 0;
2656}
2657
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002658static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 {
2660 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002661 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 .info = snd_hda_spdif_in_switch_info,
2663 .get = snd_hda_spdif_in_switch_get,
2664 .put = snd_hda_spdif_in_switch_put,
2665 },
2666 {
2667 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2668 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002669 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 .info = snd_hda_spdif_mask_info,
2671 .get = snd_hda_spdif_in_status_get,
2672 },
2673 { } /* end */
2674};
2675
2676/**
2677 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
2678 * @codec: the HDA codec
2679 * @nid: audio in widget NID
2680 *
2681 * Creates controls related with the SPDIF input.
2682 * Called from each patch supporting the SPDIF in.
2683 *
2684 * Returns 0 if successful, or a negative error code.
2685 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002686int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
2688 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002689 struct snd_kcontrol *kctl;
2690 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01002691 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
Takashi Iwaidcda5802012-10-12 17:24:51 +02002693 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01002694 if (idx < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01002695 codec_err(codec, "too many IEC958 inputs\n");
Takashi Iwai09f99702008-02-04 12:31:13 +01002696 return -EBUSY;
2697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
2699 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaic8dcdf82009-02-06 16:21:20 +01002700 if (!kctl)
2701 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 kctl->private_value = nid;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002703 err = snd_hda_ctl_add(codec, nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002704 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 return err;
2706 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002707 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01002708 snd_hda_codec_read(codec, nid, 0,
2709 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02002710 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 return 0;
2712}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002713EXPORT_SYMBOL_GPL(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Takashi Iwai95a962c2014-10-29 16:03:58 +01002715/**
2716 * snd_hda_codec_set_power_to_all - Set the power state to all widgets
2717 * @codec: the HDA codec
2718 * @fg: function group (not used now)
2719 * @power_state: the power state to set (AC_PWRST_*)
2720 *
2721 * Set the given power state to all widgets that have the power control.
2722 * If the codec has power_filter set, it evaluates the power state and
2723 * filter out if it's unchanged as D3.
2724 */
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002725void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg,
Takashi Iwai9419ab62013-01-24 17:23:35 +01002726 unsigned int power_state)
Takashi Iwai54d17402005-11-21 16:33:22 +01002727{
Takashi Iwai7639a062015-03-03 10:07:24 +01002728 hda_nid_t nid;
Takashi Iwai54d17402005-11-21 16:33:22 +01002729
Takashi Iwai7639a062015-03-03 10:07:24 +01002730 for_each_hda_codec_node(nid, codec) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002731 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9419ab62013-01-24 17:23:35 +01002732 unsigned int state = power_state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002733 if (!(wcaps & AC_WCAP_POWER))
2734 continue;
Takashi Iwai9419ab62013-01-24 17:23:35 +01002735 if (codec->power_filter) {
2736 state = codec->power_filter(codec, nid, power_state);
2737 if (state != power_state && power_state == AC_PWRST_D3)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002738 continue;
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002739 }
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002740 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
Takashi Iwai9419ab62013-01-24 17:23:35 +01002741 state);
Takashi Iwai54d17402005-11-21 16:33:22 +01002742 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002743}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002744EXPORT_SYMBOL_GPL(snd_hda_codec_set_power_to_all);
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002745
Takashi Iwai95a962c2014-10-29 16:03:58 +01002746/**
2747 * snd_hda_codec_eapd_power_filter - A power filter callback for EAPD
2748 * @codec: the HDA codec
2749 * @nid: widget NID
2750 * @power_state: power state to evalue
2751 *
2752 * Don't power down the widget if it controls eapd and EAPD_BTLENABLE is set.
2753 * This can be used a codec power_filter callback.
2754 */
Takashi Iwaiba615b82013-03-13 14:47:21 +01002755unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec,
2756 hda_nid_t nid,
2757 unsigned int power_state)
Takashi Iwai9419ab62013-01-24 17:23:35 +01002758{
Takashi Iwai7639a062015-03-03 10:07:24 +01002759 if (nid == codec->core.afg || nid == codec->core.mfg)
Takashi Iwaidfc6e462014-01-13 16:09:57 +01002760 return power_state;
Takashi Iwai9419ab62013-01-24 17:23:35 +01002761 if (power_state == AC_PWRST_D3 &&
2762 get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN &&
2763 (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) {
2764 int eapd = snd_hda_codec_read(codec, nid, 0,
2765 AC_VERB_GET_EAPD_BTLENABLE, 0);
2766 if (eapd & 0x02)
2767 return AC_PWRST_D0;
2768 }
2769 return power_state;
2770}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002771EXPORT_SYMBOL_GPL(snd_hda_codec_eapd_power_filter);
Takashi Iwai9419ab62013-01-24 17:23:35 +01002772
Takashi Iwai432c6412012-08-28 09:59:20 -07002773/*
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002774 * set power state of the codec, and return the power state
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002775 */
Takashi Iwaid8193872012-08-31 07:54:38 -07002776static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002777 unsigned int power_state)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002778{
Takashi Iwai7639a062015-03-03 10:07:24 +01002779 hda_nid_t fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Wang Xingchao09617ce2012-06-08 10:26:08 +08002780 int count;
2781 unsigned int state;
Takashi Iwai63e51fd72013-06-06 14:20:19 +02002782 int flags = 0;
Wang Xingchao09617ce2012-06-08 10:26:08 +08002783
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002784 /* this delay seems necessary to avoid click noise at power-down */
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08002785 if (power_state == AC_PWRST_D3) {
Mengdong Lin7f132922013-11-29 01:48:45 -05002786 if (codec->depop_delay < 0)
Takashi Iwai7639a062015-03-03 10:07:24 +01002787 msleep(codec_has_epss(codec) ? 10 : 100);
Mengdong Lin7f132922013-11-29 01:48:45 -05002788 else if (codec->depop_delay > 0)
2789 msleep(codec->depop_delay);
Takashi Iwai63e51fd72013-06-06 14:20:19 +02002790 flags = HDA_RW_NO_RESPONSE_FALLBACK;
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08002791 }
Wang Xingchao09617ce2012-06-08 10:26:08 +08002792
2793 /* repeat power states setting at most 10 times*/
2794 for (count = 0; count < 10; count++) {
Takashi Iwai432c6412012-08-28 09:59:20 -07002795 if (codec->patch_ops.set_power_state)
2796 codec->patch_ops.set_power_state(codec, fg,
2797 power_state);
2798 else {
Takashi Iwaidfc6e462014-01-13 16:09:57 +01002799 state = power_state;
2800 if (codec->power_filter)
2801 state = codec->power_filter(codec, fg, state);
2802 if (state == power_state || power_state != AC_PWRST_D3)
2803 snd_hda_codec_read(codec, fg, flags,
2804 AC_VERB_SET_POWER_STATE,
2805 state);
Takashi Iwai9419ab62013-01-24 17:23:35 +01002806 snd_hda_codec_set_power_to_all(codec, fg, power_state);
Takashi Iwai432c6412012-08-28 09:59:20 -07002807 }
Abhijeet Kumar3b5b8992018-01-23 23:00:52 +05302808 state = snd_hda_sync_power_state(codec, fg, power_state);
Wang Xingchao09617ce2012-06-08 10:26:08 +08002809 if (!(state & AC_PWRST_ERROR))
2810 break;
2811 }
Mengdong Linb8dfc4622012-08-23 17:32:30 +08002812
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002813 return state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002814}
Takashi Iwai54d17402005-11-21 16:33:22 +01002815
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002816/* sync power states of all widgets;
2817 * this is called at the end of codec parsing
2818 */
2819static void sync_power_up_states(struct hda_codec *codec)
2820{
Takashi Iwai7639a062015-03-03 10:07:24 +01002821 hda_nid_t nid;
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002822
Takashi Iwaiba615b82013-03-13 14:47:21 +01002823 /* don't care if no filter is used */
2824 if (!codec->power_filter)
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002825 return;
2826
Takashi Iwai7639a062015-03-03 10:07:24 +01002827 for_each_hda_codec_node(nid, codec) {
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002828 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9040d102013-01-24 17:47:17 +01002829 unsigned int target;
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002830 if (!(wcaps & AC_WCAP_POWER))
2831 continue;
2832 target = codec->power_filter(codec, nid, AC_PWRST_D0);
2833 if (target == AC_PWRST_D0)
2834 continue;
Takashi Iwai9040d102013-01-24 17:47:17 +01002835 if (!snd_hda_check_power_state(codec, nid, target))
Takashi Iwaib9c590b2013-01-24 17:27:32 +01002836 snd_hda_codec_write(codec, nid, 0,
2837 AC_VERB_SET_POWER_STATE, target);
2838 }
2839}
2840
Takashi Iwai648a8d22014-02-25 10:38:13 +01002841#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai11aeff02008-07-30 15:01:46 +02002842/* execute additional init verbs */
2843static void hda_exec_init_verbs(struct hda_codec *codec)
2844{
2845 if (codec->init_verbs.list)
2846 snd_hda_sequence_write(codec, codec->init_verbs.list);
2847}
2848#else
2849static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
2850#endif
2851
Takashi Iwai2a439522011-07-26 09:52:50 +02002852#ifdef CONFIG_PM
Takashi Iwaicc72da72015-02-19 16:00:22 +01002853/* update the power on/off account with the current jiffies */
2854static void update_power_acct(struct hda_codec *codec, bool on)
2855{
2856 unsigned long delta = jiffies - codec->power_jiffies;
2857
2858 if (on)
2859 codec->power_on_acct += delta;
2860 else
2861 codec->power_off_acct += delta;
2862 codec->power_jiffies += delta;
2863}
2864
2865void snd_hda_update_power_acct(struct hda_codec *codec)
2866{
2867 update_power_acct(codec, hda_codec_is_power_on(codec));
2868}
2869
Takashi Iwaicb53c622007-08-10 17:21:45 +02002870/*
2871 * call suspend and power-down; used both from PM and power-save
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002872 * this function returns the power state in the end
Takashi Iwaicb53c622007-08-10 17:21:45 +02002873 */
Takashi Iwaicc72da72015-02-19 16:00:22 +01002874static unsigned int hda_call_codec_suspend(struct hda_codec *codec)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002875{
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002876 unsigned int state;
2877
Takashi Iwaifeb20fa2018-06-27 09:03:51 +02002878 snd_hdac_enter_pm(&codec->core);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002879 if (codec->patch_ops.suspend)
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002880 codec->patch_ops.suspend(codec);
Takashi Iwaieb541332010-08-06 13:48:11 +02002881 hda_cleanup_all_streams(codec);
Takashi Iwaid8193872012-08-31 07:54:38 -07002882 state = hda_set_power_state(codec, AC_PWRST_D3);
Takashi Iwaicc72da72015-02-19 16:00:22 +01002883 update_power_acct(codec, true);
Takashi Iwaifeb20fa2018-06-27 09:03:51 +02002884 snd_hdac_leave_pm(&codec->core);
Takashi Iwai08fa20a2012-08-31 07:46:56 -07002885 return state;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002886}
2887
2888/*
2889 * kick up codec; used both from PM and power-save
2890 */
2891static void hda_call_codec_resume(struct hda_codec *codec)
2892{
Takashi Iwaifeb20fa2018-06-27 09:03:51 +02002893 snd_hdac_enter_pm(&codec->core);
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01002894 if (codec->core.regmap)
2895 regcache_mark_dirty(codec->core.regmap);
2896
Takashi Iwaicc72da72015-02-19 16:00:22 +01002897 codec->power_jiffies = jiffies;
Takashi Iwaicc72da72015-02-19 16:00:22 +01002898
Takashi Iwaid8193872012-08-31 07:54:38 -07002899 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwaiac0547d2010-07-05 16:50:13 +02002900 restore_shutup_pins(codec);
Takashi Iwai11aeff02008-07-30 15:01:46 +02002901 hda_exec_init_verbs(codec);
Takashi Iwai31614bb2013-01-23 15:58:40 +01002902 snd_hda_jack_set_dirty_all(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002903 if (codec->patch_ops.resume)
2904 codec->patch_ops.resume(codec);
2905 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02002906 if (codec->patch_ops.init)
2907 codec->patch_ops.init(codec);
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01002908 if (codec->core.regmap)
2909 regcache_sync(codec->core.regmap);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002910 }
David Henningsson26a6cb62012-10-09 15:04:21 +02002911
2912 if (codec->jackpoll_interval)
2913 hda_jackpoll_work(&codec->jackpoll_work.work);
Takashi Iwai31614bb2013-01-23 15:58:40 +01002914 else
David Henningsson26a6cb62012-10-09 15:04:21 +02002915 snd_hda_jack_report_sync(codec);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002916 codec->core.dev.power.power_state = PMSG_ON;
Takashi Iwaifeb20fa2018-06-27 09:03:51 +02002917 snd_hdac_leave_pm(&codec->core);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002918}
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002919
Takashi Iwaicc72da72015-02-19 16:00:22 +01002920static int hda_codec_runtime_suspend(struct device *dev)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002921{
2922 struct hda_codec *codec = dev_to_hda_codec(dev);
Takashi Iwaicc72da72015-02-19 16:00:22 +01002923 unsigned int state;
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002924
2925 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwaicc72da72015-02-19 16:00:22 +01002926 state = hda_call_codec_suspend(codec);
Takashi Iwai57cb54e2018-06-21 13:33:53 +02002927 if (codec->link_down_at_suspend ||
2928 (codec_has_clkstop(codec) && codec_has_epss(codec) &&
2929 (state & AC_PWRST_CLK_STOP_OK)))
Takashi Iwai7639a062015-03-03 10:07:24 +01002930 snd_hdac_codec_link_down(&codec->core);
Takashi Iwai029d92c2018-12-08 17:31:49 +01002931 codec_display_power(codec, false);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002932 return 0;
2933}
2934
Takashi Iwaicc72da72015-02-19 16:00:22 +01002935static int hda_codec_runtime_resume(struct device *dev)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002936{
Takashi Iwai55ed9cd2015-02-19 17:35:32 +01002937 struct hda_codec *codec = dev_to_hda_codec(dev);
2938
Takashi Iwai029d92c2018-12-08 17:31:49 +01002939 codec_display_power(codec, true);
Takashi Iwai7639a062015-03-03 10:07:24 +01002940 snd_hdac_codec_link_up(&codec->core);
Takashi Iwai55ed9cd2015-02-19 17:35:32 +01002941 hda_call_codec_resume(codec);
Takashi Iwaicc72da72015-02-19 16:00:22 +01002942 pm_runtime_mark_last_busy(dev);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002943 return 0;
2944}
Takashi Iwai2a439522011-07-26 09:52:50 +02002945#endif /* CONFIG_PM */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002946
Takashi Iwai98081ca2019-01-29 14:03:33 +01002947#ifdef CONFIG_PM_SLEEP
Hui Wangb5a236c2019-03-19 09:28:44 +08002948static int hda_codec_force_resume(struct device *dev)
2949{
Takashi Iwai4914da22019-07-16 08:56:51 +02002950 struct hda_codec *codec = dev_to_hda_codec(dev);
Takashi Iwai59d81c12019-07-16 11:52:00 +02002951 bool forced_resume = !codec->relaxed_resume && codec->jacktbl.used;
Hui Wangb5a236c2019-03-19 09:28:44 +08002952 int ret;
2953
2954 /* The get/put pair below enforces the runtime resume even if the
2955 * device hasn't been used at suspend time. This trick is needed to
2956 * update the jack state change during the sleep.
2957 */
Takashi Iwai4914da22019-07-16 08:56:51 +02002958 if (forced_resume)
2959 pm_runtime_get_noresume(dev);
Hui Wangb5a236c2019-03-19 09:28:44 +08002960 ret = pm_runtime_force_resume(dev);
Takashi Iwai4914da22019-07-16 08:56:51 +02002961 if (forced_resume)
2962 pm_runtime_put(dev);
Hui Wangb5a236c2019-03-19 09:28:44 +08002963 return ret;
2964}
2965
Takashi Iwai98081ca2019-01-29 14:03:33 +01002966static int hda_codec_pm_suspend(struct device *dev)
2967{
2968 dev->power.power_state = PMSG_SUSPEND;
2969 return pm_runtime_force_suspend(dev);
2970}
2971
2972static int hda_codec_pm_resume(struct device *dev)
2973{
2974 dev->power.power_state = PMSG_RESUME;
Hui Wangb5a236c2019-03-19 09:28:44 +08002975 return hda_codec_force_resume(dev);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002976}
2977
2978static int hda_codec_pm_freeze(struct device *dev)
2979{
2980 dev->power.power_state = PMSG_FREEZE;
2981 return pm_runtime_force_suspend(dev);
2982}
2983
2984static int hda_codec_pm_thaw(struct device *dev)
2985{
2986 dev->power.power_state = PMSG_THAW;
Hui Wangb5a236c2019-03-19 09:28:44 +08002987 return hda_codec_force_resume(dev);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002988}
2989
2990static int hda_codec_pm_restore(struct device *dev)
2991{
2992 dev->power.power_state = PMSG_RESTORE;
Hui Wangb5a236c2019-03-19 09:28:44 +08002993 return hda_codec_force_resume(dev);
Takashi Iwai98081ca2019-01-29 14:03:33 +01002994}
2995#endif /* CONFIG_PM_SLEEP */
2996
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01002997/* referred in hda_bind.c */
2998const struct dev_pm_ops hda_codec_driver_pm = {
Takashi Iwai98081ca2019-01-29 14:03:33 +01002999#ifdef CONFIG_PM_SLEEP
3000 .suspend = hda_codec_pm_suspend,
3001 .resume = hda_codec_pm_resume,
3002 .freeze = hda_codec_pm_freeze,
3003 .thaw = hda_codec_pm_thaw,
3004 .poweroff = hda_codec_pm_suspend,
3005 .restore = hda_codec_pm_restore,
3006#endif /* CONFIG_PM_SLEEP */
Takashi Iwaicc72da72015-02-19 16:00:22 +01003007 SET_RUNTIME_PM_OPS(hda_codec_runtime_suspend, hda_codec_runtime_resume,
3008 NULL)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003009};
Takashi Iwai54d17402005-11-21 16:33:22 +01003010
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003011/*
3012 * add standard channel maps if not specified
3013 */
3014static int add_std_chmaps(struct hda_codec *codec)
3015{
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003016 struct hda_pcm *pcm;
3017 int str, err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003018
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003019 list_for_each_entry(pcm, &codec->pcm_list_head, list) {
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003020 for (str = 0; str < 2; str++) {
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003021 struct hda_pcm_stream *hinfo = &pcm->stream[str];
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003022 struct snd_pcm_chmap *chmap;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003023 const struct snd_pcm_chmap_elem *elem;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003024
Takashi Iwaib25cf302015-08-26 14:21:14 +02003025 if (!pcm->pcm || pcm->own_chmap || !hinfo->substreams)
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003026 continue;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003027 elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003028 err = snd_pcm_add_chmap_ctls(pcm->pcm, str, elem,
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003029 hinfo->channels_max,
3030 0, &chmap);
3031 if (err < 0)
3032 return err;
3033 chmap->channel_mask = SND_PCM_CHMAP_MASK_2468;
3034 }
3035 }
3036 return 0;
3037}
3038
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003039/* default channel maps for 2.1 speakers;
3040 * since HD-audio supports only stereo, odd number channels are omitted
3041 */
3042const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = {
3043 { .channels = 2,
3044 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
3045 { .channels = 4,
3046 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
3047 SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } },
3048 { }
3049};
3050EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps);
3051
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003052int snd_hda_codec_build_controls(struct hda_codec *codec)
3053{
3054 int err = 0;
Takashi Iwai11aeff02008-07-30 15:01:46 +02003055 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003056 /* continue to initialize... */
3057 if (codec->patch_ops.init)
3058 err = codec->patch_ops.init(codec);
3059 if (!err && codec->patch_ops.build_controls)
3060 err = codec->patch_ops.build_controls(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003061 if (err < 0)
3062 return err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003063
3064 /* we create chmaps here instead of build_pcms */
3065 err = add_std_chmaps(codec);
3066 if (err < 0)
3067 return err;
3068
David Henningsson26a6cb62012-10-09 15:04:21 +02003069 if (codec->jackpoll_interval)
3070 hda_jackpoll_work(&codec->jackpoll_work.work);
3071 else
3072 snd_hda_jack_report_sync(codec); /* call at the last init point */
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003073 sync_power_up_states(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 return 0;
3075}
Rakesh Ughreja24494d32018-06-01 22:53:56 -05003076EXPORT_SYMBOL_GPL(snd_hda_codec_build_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 * PCM stuff
3080 */
3081static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
3082 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003083 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084{
3085 return 0;
3086}
3087
3088static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
3089 struct hda_codec *codec,
3090 unsigned int stream_tag,
3091 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003092 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093{
3094 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
3095 return 0;
3096}
3097
3098static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
3099 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003100 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101{
Takashi Iwai888afa12008-03-18 09:57:50 +01003102 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 return 0;
3104}
3105
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003106static int set_pcm_default_values(struct hda_codec *codec,
3107 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003109 int err;
3110
Takashi Iwai0ba21762007-04-16 11:29:14 +02003111 /* query support PCM information from the given NID */
3112 if (info->nid && (!info->rates || !info->formats)) {
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003113 err = snd_hda_query_supported_pcm(codec, info->nid,
Takashi Iwai0ba21762007-04-16 11:29:14 +02003114 info->rates ? NULL : &info->rates,
3115 info->formats ? NULL : &info->formats,
3116 info->maxbps ? NULL : &info->maxbps);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003117 if (err < 0)
3118 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 }
3120 if (info->ops.open == NULL)
3121 info->ops.open = hda_pcm_default_open_close;
3122 if (info->ops.close == NULL)
3123 info->ops.close = hda_pcm_default_open_close;
3124 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02003125 if (snd_BUG_ON(!info->nid))
3126 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 info->ops.prepare = hda_pcm_default_prepare;
3128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02003130 if (snd_BUG_ON(!info->nid))
3131 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 info->ops.cleanup = hda_pcm_default_cleanup;
3133 }
3134 return 0;
3135}
3136
Takashi Iwaieb541332010-08-06 13:48:11 +02003137/*
3138 * codec prepare/cleanup entries
3139 */
Takashi Iwai95a962c2014-10-29 16:03:58 +01003140/**
3141 * snd_hda_codec_prepare - Prepare a stream
3142 * @codec: the HDA codec
3143 * @hinfo: PCM information
3144 * @stream: stream tag to assign
3145 * @format: format id to assign
3146 * @substream: PCM substream to assign
3147 *
3148 * Calls the prepare callback set by the codec with the given arguments.
3149 * Clean up the inactive streams when successful.
3150 */
Takashi Iwaieb541332010-08-06 13:48:11 +02003151int snd_hda_codec_prepare(struct hda_codec *codec,
3152 struct hda_pcm_stream *hinfo,
3153 unsigned int stream,
3154 unsigned int format,
3155 struct snd_pcm_substream *substream)
3156{
3157 int ret;
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003158 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwai61ca4102015-02-27 17:57:55 +01003159 if (hinfo->ops.prepare)
3160 ret = hinfo->ops.prepare(hinfo, codec, stream, format,
3161 substream);
3162 else
3163 ret = -ENODEV;
Takashi Iwaieb541332010-08-06 13:48:11 +02003164 if (ret >= 0)
3165 purify_inactive_streams(codec);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003166 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02003167 return ret;
3168}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003169EXPORT_SYMBOL_GPL(snd_hda_codec_prepare);
Takashi Iwaieb541332010-08-06 13:48:11 +02003170
Takashi Iwai95a962c2014-10-29 16:03:58 +01003171/**
3172 * snd_hda_codec_cleanup - Prepare a stream
3173 * @codec: the HDA codec
3174 * @hinfo: PCM information
3175 * @substream: PCM substream
3176 *
3177 * Calls the cleanup callback set by the codec with the given arguments.
3178 */
Takashi Iwaieb541332010-08-06 13:48:11 +02003179void snd_hda_codec_cleanup(struct hda_codec *codec,
3180 struct hda_pcm_stream *hinfo,
3181 struct snd_pcm_substream *substream)
3182{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003183 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwai61ca4102015-02-27 17:57:55 +01003184 if (hinfo->ops.cleanup)
3185 hinfo->ops.cleanup(hinfo, codec, substream);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003186 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02003187}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003188EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup);
Takashi Iwaieb541332010-08-06 13:48:11 +02003189
Takashi Iwaid5191e52009-11-16 14:58:17 +01003190/* global */
Jaroslav Kyselae3303232009-11-10 14:53:02 +01003191const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = {
3192 "Audio", "SPDIF", "HDMI", "Modem"
3193};
3194
Takashi Iwai176d5332008-07-30 15:01:44 +02003195/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003196 * get the empty PCM device number to assign
3197 */
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003198static int get_empty_pcm_device(struct hda_bus *bus, unsigned int type)
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003199{
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003200 /* audio device indices; not linear to keep compatibility */
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003201 /* assigned to static slots up to dev#10; if more needed, assign
3202 * the later slot dynamically (when CONFIG_SND_DYNAMIC_MINORS=y)
3203 */
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003204 static int audio_idx[HDA_PCM_NTYPES][5] = {
3205 [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 },
3206 [HDA_PCM_TYPE_SPDIF] = { 1, -1 },
Wu Fengguang92608ba2009-10-30 11:40:03 +01003207 [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 },
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003208 [HDA_PCM_TYPE_MODEM] = { 6, -1 },
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003209 };
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003210 int i;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003211
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003212 if (type >= HDA_PCM_NTYPES) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01003213 dev_err(bus->card->dev, "Invalid PCM type %d\n", type);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003214 return -EINVAL;
3215 }
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003216
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003217 for (i = 0; audio_idx[type][i] >= 0; i++) {
3218#ifndef CONFIG_SND_DYNAMIC_MINORS
3219 if (audio_idx[type][i] >= 8)
3220 break;
3221#endif
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003222 if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits))
3223 return audio_idx[type][i];
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003224 }
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003225
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003226#ifdef CONFIG_SND_DYNAMIC_MINORS
Takashi Iwai01b65bf2011-11-24 14:31:46 +01003227 /* non-fixed slots starting from 10 */
3228 for (i = 10; i < 32; i++) {
3229 if (!test_and_set_bit(i, bus->pcm_dev_bits))
3230 return i;
3231 }
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003232#endif
Takashi Iwai01b65bf2011-11-24 14:31:46 +01003233
Takashi Iwai4e76a882014-02-25 12:21:03 +01003234 dev_warn(bus->card->dev, "Too many %s devices\n",
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003235 snd_hda_pcm_type_name[type]);
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003236#ifndef CONFIG_SND_DYNAMIC_MINORS
Takashi Iwai4e76a882014-02-25 12:21:03 +01003237 dev_warn(bus->card->dev,
3238 "Consider building the kernel with CONFIG_SND_DYNAMIC_MINORS=y\n");
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003239#endif
Wu Fengguangf5d6def52009-10-30 11:38:26 +01003240 return -EAGAIN;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003241}
3242
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003243/* call build_pcms ops of the given codec and set up the default parameters */
3244int snd_hda_codec_parse_pcms(struct hda_codec *codec)
Takashi Iwai176d5332008-07-30 15:01:44 +02003245{
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003246 struct hda_pcm *cpcm;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003247 int err;
Takashi Iwai176d5332008-07-30 15:01:44 +02003248
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003249 if (!list_empty(&codec->pcm_list_head))
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003250 return 0; /* already parsed */
3251
3252 if (!codec->patch_ops.build_pcms)
3253 return 0;
3254
3255 err = codec->patch_ops.build_pcms(codec);
3256 if (err < 0) {
3257 codec_err(codec, "cannot build PCMs for #%d (error %d)\n",
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003258 codec->core.addr, err);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003259 return err;
3260 }
3261
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003262 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003263 int stream;
3264
3265 for (stream = 0; stream < 2; stream++) {
3266 struct hda_pcm_stream *info = &cpcm->stream[stream];
3267
3268 if (!info->substreams)
3269 continue;
Takashi Iwai176d5332008-07-30 15:01:44 +02003270 err = set_pcm_default_values(codec, info);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003271 if (err < 0) {
3272 codec_warn(codec,
3273 "fail to setup default for PCM %s\n",
3274 cpcm->name);
Takashi Iwai176d5332008-07-30 15:01:44 +02003275 return err;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003276 }
Takashi Iwai176d5332008-07-30 15:01:44 +02003277 }
3278 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003279
3280 return 0;
Takashi Iwai176d5332008-07-30 15:01:44 +02003281}
Rakesh Ughreja24494d32018-06-01 22:53:56 -05003282EXPORT_SYMBOL_GPL(snd_hda_codec_parse_pcms);
Takashi Iwai176d5332008-07-30 15:01:44 +02003283
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003284/* assign all PCMs of the given codec */
3285int snd_hda_codec_build_pcms(struct hda_codec *codec)
3286{
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003287 struct hda_bus *bus = codec->bus;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003288 struct hda_pcm *cpcm;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003289 int dev, err;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003290
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003291 err = snd_hda_codec_parse_pcms(codec);
Takashi Iwaid2896192015-10-20 16:23:55 +02003292 if (err < 0)
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003293 return err;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003294
3295 /* attach a new PCM streams */
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003296 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003297 if (cpcm->pcm)
3298 continue; /* already attached */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003299 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
Takashi Iwai41b5b012009-01-20 18:21:23 +01003300 continue; /* no substreams assigned */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003301
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003302 dev = get_empty_pcm_device(bus, cpcm->pcm_type);
Wang YanQing1f7f51a2017-09-03 21:18:49 +08003303 if (dev < 0) {
3304 cpcm->device = SNDRV_PCM_INVALID_DEVICE;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003305 continue; /* no fatal error */
Wang YanQing1f7f51a2017-09-03 21:18:49 +08003306 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003307 cpcm->device = dev;
Takashi Iwai0a505752015-04-16 23:25:02 +02003308 err = snd_hda_attach_pcm_stream(bus, codec, cpcm);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003309 if (err < 0) {
3310 codec_err(codec,
3311 "cannot attach PCM stream %d for codec #%d\n",
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003312 dev, codec->core.addr);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003313 continue; /* no fatal error */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003314 }
3315 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003316
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003317 return 0;
3318}
3319
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 * snd_hda_add_new_ctls - create controls from the array
3322 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003323 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 *
3325 * This helper function creates and add new controls in the given array.
3326 * The array must be terminated with an empty entry as terminator.
3327 *
3328 * Returns 0 if successful, or a negative error code.
3329 */
Takashi Iwai031024e2011-05-02 11:29:30 +02003330int snd_hda_add_new_ctls(struct hda_codec *codec,
3331 const struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332{
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01003333 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334
3335 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003336 struct snd_kcontrol *kctl;
Takashi Iwai1afe2062010-12-23 10:17:52 +01003337 int addr = 0, idx = 0;
Takashi Iwaiebd836e2018-07-25 23:00:51 +02003338 if (knew->iface == (__force snd_ctl_elem_iface_t)-1)
3339 continue; /* skip this codec private value */
Takashi Iwai1afe2062010-12-23 10:17:52 +01003340 for (;;) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003341 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003342 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01003343 return -ENOMEM;
Takashi Iwai1afe2062010-12-23 10:17:52 +01003344 if (addr > 0)
3345 kctl->id.device = addr;
3346 if (idx > 0)
3347 kctl->id.index = idx;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01003348 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003349 if (!err)
3350 break;
3351 /* try first with another device index corresponding to
3352 * the codec addr; if it still fails (or it's the
3353 * primary codec), then try another control index
3354 */
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003355 if (!addr && codec->core.addr)
3356 addr = codec->core.addr;
Takashi Iwai1afe2062010-12-23 10:17:52 +01003357 else if (!idx && !knew->index) {
3358 idx = find_empty_mixer_ctl_idx(codec,
Takashi Iwaidcda5802012-10-12 17:24:51 +02003359 knew->name, 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003360 if (idx <= 0)
3361 return err;
3362 } else
Takashi Iwai54d17402005-11-21 16:33:22 +01003363 return err;
3364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365 }
3366 return 0;
3367}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003368EXPORT_SYMBOL_GPL(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
Takashi Iwai83012a72012-08-24 18:38:08 +02003370#ifdef CONFIG_PM
Takashi Iwaibb573922015-02-20 09:26:04 +01003371static void codec_set_power_save(struct hda_codec *codec, int delay)
Takashi Iwaicc72da72015-02-19 16:00:22 +01003372{
3373 struct device *dev = hda_codec_dev(codec);
Takashi Iwaicc72da72015-02-19 16:00:22 +01003374
Lu, Han2377c3c2015-06-09 16:50:38 +08003375 if (delay == 0 && codec->auto_runtime_pm)
3376 delay = 3000;
3377
Takashi Iwaicc72da72015-02-19 16:00:22 +01003378 if (delay > 0) {
3379 pm_runtime_set_autosuspend_delay(dev, delay);
3380 pm_runtime_use_autosuspend(dev);
3381 pm_runtime_allow(dev);
3382 if (!pm_runtime_suspended(dev))
3383 pm_runtime_mark_last_busy(dev);
3384 } else {
3385 pm_runtime_dont_use_autosuspend(dev);
3386 pm_runtime_forbid(dev);
3387 }
3388}
Takashi Iwaibb573922015-02-20 09:26:04 +01003389
3390/**
3391 * snd_hda_set_power_save - reprogram autosuspend for the given delay
3392 * @bus: HD-audio bus
3393 * @delay: autosuspend delay in msec, 0 = off
3394 *
3395 * Synchronize the runtime PM autosuspend state from the power_save option.
3396 */
3397void snd_hda_set_power_save(struct hda_bus *bus, int delay)
3398{
3399 struct hda_codec *c;
3400
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003401 list_for_each_codec(c, bus)
Takashi Iwaibb573922015-02-20 09:26:04 +01003402 codec_set_power_save(c, delay);
3403}
3404EXPORT_SYMBOL_GPL(snd_hda_set_power_save);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003405
Takashi Iwaid5191e52009-11-16 14:58:17 +01003406/**
3407 * snd_hda_check_amp_list_power - Check the amp list and update the power
3408 * @codec: HD-audio codec
3409 * @check: the object containing an AMP list and the status
3410 * @nid: NID to check / update
3411 *
3412 * Check whether the given NID is in the amp list. If it's in the list,
3413 * check the current AMP status, and update the the power-status according
3414 * to the mute status.
3415 *
3416 * This function is supposed to be set or called from the check_power_status
3417 * patch ops.
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003418 */
Takashi Iwaicb53c622007-08-10 17:21:45 +02003419int snd_hda_check_amp_list_power(struct hda_codec *codec,
3420 struct hda_loopback_check *check,
3421 hda_nid_t nid)
3422{
Takashi Iwai031024e2011-05-02 11:29:30 +02003423 const struct hda_amp_list *p;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003424 int ch, v;
3425
3426 if (!check->amplist)
3427 return 0;
3428 for (p = check->amplist; p->nid; p++) {
3429 if (p->nid == nid)
3430 break;
3431 }
3432 if (!p->nid)
3433 return 0; /* nothing changed */
3434
3435 for (p = check->amplist; p->nid; p++) {
3436 for (ch = 0; ch < 2; ch++) {
3437 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
3438 p->idx);
3439 if (!(v & HDA_AMP_MUTE) && v > 0) {
3440 if (!check->power_on) {
3441 check->power_on = 1;
Takashi Iwai664c7152015-04-08 11:43:14 +02003442 snd_hda_power_up_pm(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003443 }
3444 return 1;
3445 }
3446 }
3447 }
3448 if (check->power_on) {
3449 check->power_on = 0;
Takashi Iwai664c7152015-04-08 11:43:14 +02003450 snd_hda_power_down_pm(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003451 }
3452 return 0;
3453}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003454EXPORT_SYMBOL_GPL(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003455#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003457/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 * input MUX helper
3459 */
Takashi Iwaid5191e52009-11-16 14:58:17 +01003460
3461/**
3462 * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003463 * @imux: imux helper object
3464 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01003465 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003466int snd_hda_input_mux_info(const struct hda_input_mux *imux,
3467 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468{
3469 unsigned int index;
3470
3471 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3472 uinfo->count = 1;
3473 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003474 if (!imux->num_items)
3475 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 index = uinfo->value.enumerated.item;
3477 if (index >= imux->num_items)
3478 index = imux->num_items - 1;
3479 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
3480 return 0;
3481}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003482EXPORT_SYMBOL_GPL(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483
Takashi Iwaid5191e52009-11-16 14:58:17 +01003484/**
3485 * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003486 * @codec: the HDA codec
3487 * @imux: imux helper object
3488 * @ucontrol: pointer to get/store the data
3489 * @nid: input mux NID
3490 * @cur_val: pointer to get/store the current imux value
Takashi Iwaid5191e52009-11-16 14:58:17 +01003491 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003492int snd_hda_input_mux_put(struct hda_codec *codec,
3493 const struct hda_input_mux *imux,
3494 struct snd_ctl_elem_value *ucontrol,
3495 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 unsigned int *cur_val)
3497{
3498 unsigned int idx;
3499
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003500 if (!imux->num_items)
3501 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 idx = ucontrol->value.enumerated.item[0];
3503 if (idx >= imux->num_items)
3504 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003505 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003507 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
3508 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 *cur_val = idx;
3510 return 1;
3511}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003512EXPORT_SYMBOL_GPL(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
3514
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003515/**
3516 * snd_hda_enum_helper_info - Helper for simple enum ctls
3517 * @kcontrol: ctl element
3518 * @uinfo: pointer to get/store the data
3519 * @num_items: number of enum items
3520 * @texts: enum item string array
3521 *
Takashi Iwaidda415d2012-11-30 18:34:38 +01003522 * process kcontrol info callback of a simple string enum array
3523 * when @num_items is 0 or @texts is NULL, assume a boolean enum array
3524 */
3525int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol,
3526 struct snd_ctl_elem_info *uinfo,
3527 int num_items, const char * const *texts)
3528{
3529 static const char * const texts_default[] = {
3530 "Disabled", "Enabled"
3531 };
3532
3533 if (!texts || !num_items) {
3534 num_items = 2;
3535 texts = texts_default;
3536 }
3537
Takashi Iwai3ff72212014-10-20 18:17:28 +02003538 return snd_ctl_enum_info(uinfo, 1, num_items, texts);
Takashi Iwaidda415d2012-11-30 18:34:38 +01003539}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003540EXPORT_SYMBOL_GPL(snd_hda_enum_helper_info);
Takashi Iwaidda415d2012-11-30 18:34:38 +01003541
3542/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 * Multi-channel / digital-out PCM helper functions
3544 */
3545
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003546/* setup SPDIF output stream */
3547static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
3548 unsigned int stream_tag, unsigned int format)
3549{
Laurence Darby3bef1c32012-11-03 17:00:06 +00003550 struct hda_spdif_out *spdif;
3551 unsigned int curr_fmt;
3552 bool reset;
Stephen Warren7c935972011-06-01 11:14:17 -06003553
Laurence Darby3bef1c32012-11-03 17:00:06 +00003554 spdif = snd_hda_spdif_out_of_nid(codec, nid);
Libin Yang960a5812016-06-16 11:13:25 +08003555 /* Add sanity check to pass klockwork check.
3556 * This should never happen.
3557 */
3558 if (WARN_ON(spdif == NULL))
3559 return;
3560
Laurence Darby3bef1c32012-11-03 17:00:06 +00003561 curr_fmt = snd_hda_codec_read(codec, nid, 0,
3562 AC_VERB_GET_STREAM_FORMAT, 0);
3563 reset = codec->spdif_status_reset &&
3564 (spdif->ctls & AC_DIG1_ENABLE) &&
3565 curr_fmt != format;
3566
3567 /* turn off SPDIF if needed; otherwise the IEC958 bits won't be
3568 updated */
3569 if (reset)
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003570 set_dig_out_convert(codec, nid,
Stephen Warren7c935972011-06-01 11:14:17 -06003571 spdif->ctls & ~AC_DIG1_ENABLE & 0xff,
Takashi Iwai2f728532008-09-25 16:32:41 +02003572 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003573 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai2f728532008-09-25 16:32:41 +02003574 if (codec->slave_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02003575 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02003576 for (d = codec->slave_dig_outs; *d; d++)
3577 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
3578 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003579 }
Takashi Iwai2f728532008-09-25 16:32:41 +02003580 /* turn on again (if needed) */
Laurence Darby3bef1c32012-11-03 17:00:06 +00003581 if (reset)
Takashi Iwai2f728532008-09-25 16:32:41 +02003582 set_dig_out_convert(codec, nid,
Stephen Warren7c935972011-06-01 11:14:17 -06003583 spdif->ctls & 0xff, -1);
Takashi Iwai2f728532008-09-25 16:32:41 +02003584}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003585
Takashi Iwai2f728532008-09-25 16:32:41 +02003586static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
3587{
3588 snd_hda_codec_cleanup_stream(codec, nid);
3589 if (codec->slave_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02003590 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02003591 for (d = codec->slave_dig_outs; *d; d++)
3592 snd_hda_codec_cleanup_stream(codec, *d);
3593 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003594}
3595
Takashi Iwaid5191e52009-11-16 14:58:17 +01003596/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01003597 * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003598 * @codec: the HDA codec
3599 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003601int snd_hda_multi_out_dig_open(struct hda_codec *codec,
3602 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603{
Ingo Molnar62932df2006-01-16 16:34:20 +01003604 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02003605 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
3606 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02003607 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01003609 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 return 0;
3611}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003612EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613
Takashi Iwaid5191e52009-11-16 14:58:17 +01003614/**
3615 * snd_hda_multi_out_dig_prepare - prepare the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003616 * @codec: the HDA codec
3617 * @mout: hda_multi_out object
3618 * @stream_tag: stream tag to assign
3619 * @format: format id to assign
3620 * @substream: PCM substream to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01003621 */
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003622int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
3623 struct hda_multi_out *mout,
3624 unsigned int stream_tag,
3625 unsigned int format,
3626 struct snd_pcm_substream *substream)
3627{
3628 mutex_lock(&codec->spdif_mutex);
3629 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
3630 mutex_unlock(&codec->spdif_mutex);
3631 return 0;
3632}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003633EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003634
Takashi Iwaid5191e52009-11-16 14:58:17 +01003635/**
3636 * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003637 * @codec: the HDA codec
3638 * @mout: hda_multi_out object
Takashi Iwaid5191e52009-11-16 14:58:17 +01003639 */
Takashi Iwai9411e212009-02-13 11:32:28 +01003640int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
3641 struct hda_multi_out *mout)
3642{
3643 mutex_lock(&codec->spdif_mutex);
3644 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3645 mutex_unlock(&codec->spdif_mutex);
3646 return 0;
3647}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003648EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_cleanup);
Takashi Iwai9411e212009-02-13 11:32:28 +01003649
Takashi Iwaid5191e52009-11-16 14:58:17 +01003650/**
3651 * snd_hda_multi_out_dig_close - release the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003652 * @codec: the HDA codec
3653 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003655int snd_hda_multi_out_dig_close(struct hda_codec *codec,
3656 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657{
Ingo Molnar62932df2006-01-16 16:34:20 +01003658 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01003660 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 return 0;
3662}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003663EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664
Takashi Iwaid5191e52009-11-16 14:58:17 +01003665/**
3666 * snd_hda_multi_out_analog_open - open analog outputs
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003667 * @codec: the HDA codec
3668 * @mout: hda_multi_out object
3669 * @substream: PCM substream to assign
3670 * @hinfo: PCM information to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01003671 *
3672 * Open analog outputs and set up the hw-constraints.
3673 * If the digital outputs can be opened as slave, open the digital
3674 * outputs, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003676int snd_hda_multi_out_analog_open(struct hda_codec *codec,
3677 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01003678 struct snd_pcm_substream *substream,
3679 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680{
Takashi Iwai9a081602008-02-12 18:37:26 +01003681 struct snd_pcm_runtime *runtime = substream->runtime;
3682 runtime->hw.channels_max = mout->max_channels;
3683 if (mout->dig_out_nid) {
3684 if (!mout->analog_rates) {
3685 mout->analog_rates = hinfo->rates;
3686 mout->analog_formats = hinfo->formats;
3687 mout->analog_maxbps = hinfo->maxbps;
3688 } else {
3689 runtime->hw.rates = mout->analog_rates;
3690 runtime->hw.formats = mout->analog_formats;
3691 hinfo->maxbps = mout->analog_maxbps;
3692 }
3693 if (!mout->spdif_rates) {
3694 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
3695 &mout->spdif_rates,
3696 &mout->spdif_formats,
3697 &mout->spdif_maxbps);
3698 }
3699 mutex_lock(&codec->spdif_mutex);
3700 if (mout->share_spdif) {
Takashi Iwai022b4662009-07-03 23:03:30 +02003701 if ((runtime->hw.rates & mout->spdif_rates) &&
3702 (runtime->hw.formats & mout->spdif_formats)) {
3703 runtime->hw.rates &= mout->spdif_rates;
3704 runtime->hw.formats &= mout->spdif_formats;
3705 if (mout->spdif_maxbps < hinfo->maxbps)
3706 hinfo->maxbps = mout->spdif_maxbps;
3707 } else {
3708 mout->share_spdif = 0;
3709 /* FIXME: need notify? */
3710 }
Takashi Iwai9a081602008-02-12 18:37:26 +01003711 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02003712 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 return snd_pcm_hw_constraint_step(substream->runtime, 0,
3715 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
3716}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003717EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
Takashi Iwaid5191e52009-11-16 14:58:17 +01003719/**
3720 * snd_hda_multi_out_analog_prepare - Preapre the analog outputs.
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003721 * @codec: the HDA codec
3722 * @mout: hda_multi_out object
3723 * @stream_tag: stream tag to assign
3724 * @format: format id to assign
3725 * @substream: PCM substream to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01003726 *
3727 * Set up the i/o for analog out.
3728 * When the digital out is available, copy the front out to digital out, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003730int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
3731 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 unsigned int stream_tag,
3733 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003734 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735{
Takashi Iwaidda14412011-05-02 11:29:30 +02003736 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 int chs = substream->runtime->channels;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003738 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 int i;
3740
Ingo Molnar62932df2006-01-16 16:34:20 +01003741 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003742 spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid);
Takashi Iwai9a081602008-02-12 18:37:26 +01003743 if (mout->dig_out_nid && mout->share_spdif &&
3744 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Libin Yang960a5812016-06-16 11:13:25 +08003745 if (chs == 2 && spdif != NULL &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02003746 snd_hda_is_supported_format(codec, mout->dig_out_nid,
3747 format) &&
Stephen Warren7c935972011-06-01 11:14:17 -06003748 !(spdif->status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003750 setup_dig_out_stream(codec, mout->dig_out_nid,
3751 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 } else {
3753 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02003754 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 }
3756 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003757 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
3759 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003760 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
3761 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003762 if (!mout->no_share_stream &&
3763 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003765 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
3766 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003767 /* extra outputs copied from front */
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02003768 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
3769 if (!mout->no_share_stream && mout->hp_out_nid[i])
3770 snd_hda_codec_setup_stream(codec,
3771 mout->hp_out_nid[i],
3772 stream_tag, 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003773
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 /* surrounds */
3775 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02003776 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003777 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3778 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003779 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003780 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3781 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 }
David Henningssoncd4035e2013-10-10 09:01:25 +02003783
3784 /* extra surrounds */
3785 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) {
3786 int ch = 0;
3787 if (!mout->extra_out_nid[i])
3788 break;
3789 if (chs >= (i + 1) * 2)
3790 ch = i * 2;
3791 else if (!mout->no_share_stream)
3792 break;
3793 snd_hda_codec_setup_stream(codec, mout->extra_out_nid[i],
3794 stream_tag, ch, format);
3795 }
3796
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 return 0;
3798}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003799EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
Takashi Iwaid5191e52009-11-16 14:58:17 +01003801/**
3802 * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003803 * @codec: the HDA codec
3804 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003806int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
3807 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808{
Takashi Iwaidda14412011-05-02 11:29:30 +02003809 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 int i;
3811
3812 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01003813 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01003815 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02003816 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
3817 if (mout->hp_out_nid[i])
3818 snd_hda_codec_cleanup_stream(codec,
3819 mout->hp_out_nid[i]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003820 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
3821 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01003822 snd_hda_codec_cleanup_stream(codec,
3823 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01003824 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02003826 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 mout->dig_out_used = 0;
3828 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003829 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 return 0;
3831}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003832EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
Takashi Iwai47408602012-04-20 13:06:53 +02003834/**
3835 * snd_hda_get_default_vref - Get the default (mic) VREF pin bits
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003836 * @codec: the HDA codec
3837 * @pin: referred pin NID
Takashi Iwai47408602012-04-20 13:06:53 +02003838 *
3839 * Guess the suitable VREF pin bits to be set as the pin-control value.
3840 * Note: the function doesn't set the AC_PINCTL_IN_EN bit.
3841 */
3842unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin)
3843{
3844 unsigned int pincap;
3845 unsigned int oldval;
3846 oldval = snd_hda_codec_read(codec, pin, 0,
3847 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3848 pincap = snd_hda_query_pin_caps(codec, pin);
3849 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
3850 /* Exception: if the default pin setup is vref50, we give it priority */
3851 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
3852 return AC_PINCTL_VREF_80;
3853 else if (pincap & AC_PINCAP_VREF_50)
3854 return AC_PINCTL_VREF_50;
3855 else if (pincap & AC_PINCAP_VREF_100)
3856 return AC_PINCTL_VREF_100;
3857 else if (pincap & AC_PINCAP_VREF_GRD)
3858 return AC_PINCTL_VREF_GRD;
3859 return AC_PINCTL_VREF_HIZ;
3860}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003861EXPORT_SYMBOL_GPL(snd_hda_get_default_vref);
Takashi Iwai47408602012-04-20 13:06:53 +02003862
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003863/**
3864 * snd_hda_correct_pin_ctl - correct the pin ctl value for matching with the pin cap
3865 * @codec: the HDA codec
3866 * @pin: referred pin NID
3867 * @val: pin ctl value to audit
3868 */
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01003869unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec,
3870 hda_nid_t pin, unsigned int val)
3871{
3872 static unsigned int cap_lists[][2] = {
3873 { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 },
3874 { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 },
3875 { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 },
3876 { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD },
3877 };
3878 unsigned int cap;
3879
3880 if (!val)
3881 return 0;
3882 cap = snd_hda_query_pin_caps(codec, pin);
3883 if (!cap)
3884 return val; /* don't know what to do... */
3885
3886 if (val & AC_PINCTL_OUT_EN) {
3887 if (!(cap & AC_PINCAP_OUT))
3888 val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3889 else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV))
3890 val &= ~AC_PINCTL_HP_EN;
3891 }
3892
3893 if (val & AC_PINCTL_IN_EN) {
3894 if (!(cap & AC_PINCAP_IN))
3895 val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN);
3896 else {
3897 unsigned int vcap, vref;
3898 int i;
3899 vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
3900 vref = val & AC_PINCTL_VREFEN;
3901 for (i = 0; i < ARRAY_SIZE(cap_lists); i++) {
3902 if (vref == cap_lists[i][0] &&
3903 !(vcap & cap_lists[i][1])) {
3904 if (i == ARRAY_SIZE(cap_lists) - 1)
3905 vref = AC_PINCTL_VREF_HIZ;
3906 else
3907 vref = cap_lists[i + 1][0];
3908 }
3909 }
3910 val &= ~AC_PINCTL_VREFEN;
3911 val |= vref;
3912 }
3913 }
3914
3915 return val;
3916}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003917EXPORT_SYMBOL_GPL(snd_hda_correct_pin_ctl);
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01003918
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003919/**
3920 * _snd_hda_pin_ctl - Helper to set pin ctl value
3921 * @codec: the HDA codec
3922 * @pin: referred pin NID
3923 * @val: pin control value to set
3924 * @cached: access over codec pinctl cache or direct write
3925 *
3926 * This function is a helper to set a pin ctl value more safely.
3927 * It corrects the pin ctl value via snd_hda_correct_pin_ctl(), stores the
3928 * value in pin target array via snd_hda_codec_set_pin_target(), then
Takashi Iwai401caff2018-06-27 11:43:09 +02003929 * actually writes the value via either snd_hda_codec_write_cache() or
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003930 * snd_hda_codec_write() depending on @cached flag.
3931 */
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003932int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin,
3933 unsigned int val, bool cached)
3934{
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01003935 val = snd_hda_correct_pin_ctl(codec, pin, val);
Takashi Iwaid7fdc002013-01-10 08:38:04 +01003936 snd_hda_codec_set_pin_target(codec, pin, val);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003937 if (cached)
Takashi Iwai401caff2018-06-27 11:43:09 +02003938 return snd_hda_codec_write_cache(codec, pin, 0,
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003939 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
3940 else
3941 return snd_hda_codec_write(codec, pin, 0,
3942 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
3943}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003944EXPORT_SYMBOL_GPL(_snd_hda_set_pin_ctl);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003945
Takashi Iwai990061c2010-09-09 22:08:44 +02003946/**
3947 * snd_hda_add_imux_item - Add an item to input_mux
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003948 * @codec: the HDA codec
3949 * @imux: imux helper object
3950 * @label: the name of imux item to assign
3951 * @index: index number of imux item to assign
3952 * @type_idx: pointer to store the resultant label index
Takashi Iwai990061c2010-09-09 22:08:44 +02003953 *
3954 * When the same label is used already in the existing items, the number
3955 * suffix is appended to the label. This label index number is stored
3956 * to type_idx when non-NULL pointer is given.
3957 */
Takashi Iwai6194b992014-06-06 18:12:16 +02003958int snd_hda_add_imux_item(struct hda_codec *codec,
3959 struct hda_input_mux *imux, const char *label,
Takashi Iwai10a20af2010-09-09 16:28:02 +02003960 int index, int *type_idx)
3961{
3962 int i, label_idx = 0;
3963 if (imux->num_items >= HDA_MAX_NUM_INPUTS) {
Takashi Iwai6194b992014-06-06 18:12:16 +02003964 codec_err(codec, "hda_codec: Too many imux items!\n");
Takashi Iwai10a20af2010-09-09 16:28:02 +02003965 return -EINVAL;
3966 }
3967 for (i = 0; i < imux->num_items; i++) {
3968 if (!strncmp(label, imux->items[i].label, strlen(label)))
3969 label_idx++;
3970 }
3971 if (type_idx)
3972 *type_idx = label_idx;
3973 if (label_idx > 0)
3974 snprintf(imux->items[imux->num_items].label,
3975 sizeof(imux->items[imux->num_items].label),
3976 "%s %d", label, label_idx);
3977 else
3978 strlcpy(imux->items[imux->num_items].label, label,
3979 sizeof(imux->items[imux->num_items].label));
3980 imux->items[imux->num_items].index = index;
3981 imux->num_items++;
3982 return 0;
3983}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003984EXPORT_SYMBOL_GPL(snd_hda_add_imux_item);
Takashi Iwaid7b1ae92010-08-30 13:00:16 +02003985
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986/**
Takashi Iwai0a505752015-04-16 23:25:02 +02003987 * snd_hda_bus_reset_codecs - Reset the bus
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003988 * @bus: HD-audio bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 */
Takashi Iwai0a505752015-04-16 23:25:02 +02003990void snd_hda_bus_reset_codecs(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003992 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003994 list_for_each_codec(codec, bus) {
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003995 /* FIXME: maybe a better way needed for forced reset */
Takashi Iwai16037642018-08-30 15:13:16 +02003996 if (current_work() != &codec->jackpoll_work.work)
3997 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003998#ifdef CONFIG_PM
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05003999 if (hda_codec_is_power_on(codec)) {
Takashi Iwaicc72da72015-02-19 16:00:22 +01004000 hda_call_codec_suspend(codec);
Mengdong Lin12edb892013-11-26 23:32:23 -05004001 hda_call_codec_resume(codec);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004002 }
4003#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005}
Takashi Iwaib2e18592008-07-30 15:01:44 +02004006
Takashi Iwaid5191e52009-11-16 14:58:17 +01004007/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01004008 * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer
4009 * @pcm: PCM caps bits
4010 * @buf: the string buffer to write
4011 * @buflen: the max buffer length
4012 *
4013 * used by hda_proc.c and hda_eld.c
4014 */
Takashi Iwaib2022262008-11-21 21:24:03 +01004015void snd_print_pcm_bits(int pcm, char *buf, int buflen)
4016{
4017 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
4018 int i, j;
4019
4020 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
4021 if (pcm & (AC_SUPPCM_BITS_8 << i))
4022 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
4023
4024 buf[j] = '\0'; /* necessary when j == 0 */
4025}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004026EXPORT_SYMBOL_GPL(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01004027
4028MODULE_DESCRIPTION("HDA codec core");
4029MODULE_LICENSE("GPL");