Thomas Gleixner | d0fa117 | 2019-05-20 19:07:57 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Universal Interface for Intel High Definition Audio Codec |
| 4 | * |
| 5 | * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/init.h> |
| 9 | #include <linux/delay.h> |
| 10 | #include <linux/slab.h> |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 11 | #include <linux/mutex.h> |
Paul Gortmaker | da155d5 | 2011-07-15 12:38:28 -0400 | [diff] [blame] | 12 | #include <linux/module.h> |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 13 | #include <linux/pm.h> |
| 14 | #include <linux/pm_runtime.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <sound/core.h> |
Pierre-Louis Bossart | be57bff | 2018-08-22 15:24:57 -0500 | [diff] [blame] | 16 | #include <sound/hda_codec.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <sound/asoundef.h> |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 18 | #include <sound/tlv.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <sound/initval.h> |
Takashi Iwai | cd372fb | 2011-03-03 14:40:14 +0100 | [diff] [blame] | 20 | #include <sound/jack.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include "hda_local.h" |
Jaroslav Kysela | 123c07a | 2009-10-21 14:48:23 +0200 | [diff] [blame] | 22 | #include "hda_beep.h" |
Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 23 | #include "hda_jack.h" |
Takashi Iwai | 2807314 | 2007-07-27 18:58:06 +0200 | [diff] [blame] | 24 | #include <sound/hda_hwdep.h> |
Takashi Iwai | 029d92c | 2018-12-08 17:31:49 +0100 | [diff] [blame] | 25 | #include <sound/hda_component.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Takashi Iwai | feb20fa | 2018-06-27 09:03:51 +0200 | [diff] [blame] | 27 | #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 Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 29 | #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 Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 34 | /* |
Takashi Iwai | 05852448 | 2015-03-03 15:40:08 +0100 | [diff] [blame] | 35 | * Send and receive a verb - passed to exec_verb override for hdac_device |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 36 | */ |
Takashi Iwai | 05852448 | 2015-03-03 15:40:08 +0100 | [diff] [blame] | 37 | static int codec_exec_verb(struct hdac_device *dev, unsigned int cmd, |
| 38 | unsigned int flags, unsigned int *res) |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 39 | { |
Takashi Iwai | 05852448 | 2015-03-03 15:40:08 +0100 | [diff] [blame] | 40 | struct hda_codec *codec = container_of(dev, struct hda_codec, core); |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 41 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 42 | int err; |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 43 | |
Wu Fengguang | 6430aee | 2009-07-17 16:49:19 +0800 | [diff] [blame] | 44 | if (cmd == ~0) |
| 45 | return -1; |
| 46 | |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 47 | again: |
Takashi Iwai | 664c715 | 2015-04-08 11:43:14 +0200 | [diff] [blame] | 48 | snd_hda_power_up_pm(codec); |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 49 | mutex_lock(&bus->core.cmd_mutex); |
Takashi Iwai | 63e51fd7 | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 50 | if (flags & HDA_RW_NO_RESPONSE_FALLBACK) |
| 51 | bus->no_response_fallback = 1; |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 52 | err = snd_hdac_bus_exec_verb_unlocked(&bus->core, codec->core.addr, |
| 53 | cmd, res); |
Takashi Iwai | 63e51fd7 | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 54 | bus->no_response_fallback = 0; |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 55 | mutex_unlock(&bus->core.cmd_mutex); |
Takashi Iwai | 664c715 | 2015-04-08 11:43:14 +0200 | [diff] [blame] | 56 | snd_hda_power_down_pm(codec); |
Takashi Iwai | cad372f | 2015-03-25 17:57:00 +0100 | [diff] [blame] | 57 | if (!codec_in_pm(codec) && res && err == -EAGAIN) { |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 58 | if (bus->response_reset) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 59 | codec_dbg(codec, |
| 60 | "resetting BUS due to fatal communication error\n"); |
Takashi Iwai | 0a50575 | 2015-04-16 23:25:02 +0200 | [diff] [blame] | 61 | snd_hda_bus_reset(bus); |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 62 | } |
| 63 | goto again; |
| 64 | } |
| 65 | /* clear reset-flag when the communication gets recovered */ |
Takashi Iwai | d846b17 | 2012-11-24 11:58:24 +0100 | [diff] [blame] | 66 | if (!err || codec_in_pm(codec)) |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 67 | bus->response_reset = 0; |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 68 | return err; |
| 69 | } |
| 70 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | * 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 | */ |
| 79 | void 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 Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 84 | EXPORT_SYMBOL_GPL(snd_hda_sequence_write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 86 | /* connection list element */ |
| 87 | struct hda_conn_list { |
| 88 | struct list_head list; |
| 89 | int len; |
| 90 | hda_nid_t nid; |
Gustavo A. R. Silva | bb80b96 | 2020-02-11 14:07:39 -0600 | [diff] [blame] | 91 | hda_nid_t conns[]; |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 92 | }; |
| 93 | |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 94 | /* look up the cached results */ |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 95 | static struct hda_conn_list * |
| 96 | lookup_conn_list(struct hda_codec *codec, hda_nid_t nid) |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 97 | { |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 98 | struct hda_conn_list *p; |
| 99 | list_for_each_entry(p, &codec->conn_list, list) { |
| 100 | if (p->nid == nid) |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 101 | return p; |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 102 | } |
| 103 | return NULL; |
| 104 | } |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 105 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 106 | static 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 Iwai | a2d4560 | 2019-05-31 11:46:49 +0200 | [diff] [blame] | 111 | p = kmalloc(struct_size(p, conns, len), GFP_KERNEL); |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 112 | 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 | |
| 121 | static 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 Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 131 | /* read the connection and add to the cache */ |
| 132 | static int read_and_add_raw_conns(struct hda_codec *codec, hda_nid_t nid) |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 133 | { |
Takashi Iwai | 4eea309 | 2013-02-07 18:18:19 +0100 | [diff] [blame] | 134 | hda_nid_t list[32]; |
| 135 | hda_nid_t *result = list; |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 136 | int len; |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 137 | |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 138 | len = snd_hda_get_raw_connections(codec, nid, list, ARRAY_SIZE(list)); |
Takashi Iwai | 4eea309 | 2013-02-07 18:18:19 +0100 | [diff] [blame] | 139 | if (len == -ENOSPC) { |
| 140 | len = snd_hda_get_num_raw_conns(codec, nid); |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 141 | result = kmalloc_array(len, sizeof(hda_nid_t), GFP_KERNEL); |
Takashi Iwai | 4eea309 | 2013-02-07 18:18:19 +0100 | [diff] [blame] | 142 | 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 Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 151 | } |
Takashi Iwai | dce2079 | 2011-06-24 14:10:28 +0200 | [diff] [blame] | 152 | |
| 153 | /** |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 154 | * snd_hda_get_conn_list - get connection list |
| 155 | * @codec: the HDA codec |
| 156 | * @nid: NID to parse |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 157 | * @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 | */ |
| 168 | int 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 Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 193 | EXPORT_SYMBOL_GPL(snd_hda_get_conn_list); |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 194 | |
| 195 | /** |
Takashi Iwai | dce2079 | 2011-06-24 14:10:28 +0200 | [diff] [blame] | 196 | * snd_hda_get_connections - copy connection list |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | * @codec: the HDA codec |
| 198 | * @nid: NID to parse |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 199 | * @conn_list: connection list array; when NULL, checks only the size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | * @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 | */ |
| 207 | int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid, |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 208 | hda_nid_t *conn_list, int max_conns) |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 209 | { |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 210 | const hda_nid_t *list; |
| 211 | int len = snd_hda_get_conn_list(codec, nid, &list); |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 212 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 213 | if (len > 0 && conn_list) { |
| 214 | if (len > max_conns) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 215 | codec_err(codec, "Too many connections %d for NID 0x%x\n", |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 216 | len, nid); |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 217 | return -EINVAL; |
| 218 | } |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 219 | memcpy(conn_list, list, len * sizeof(hda_nid_t)); |
Takashi Iwai | dce2079 | 2011-06-24 14:10:28 +0200 | [diff] [blame] | 220 | } |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 221 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 222 | return len; |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 223 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 224 | EXPORT_SYMBOL_GPL(snd_hda_get_connections); |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | /** |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 227 | * 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 | */ |
| 238 | int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int len, |
| 239 | const hda_nid_t *list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | { |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 241 | struct hda_conn_list *p; |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 242 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 243 | p = lookup_conn_list(codec, nid); |
| 244 | if (p) { |
| 245 | list_del(&p->list); |
| 246 | kfree(p); |
| 247 | } |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 248 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 249 | return add_conn_list(codec, nid, len, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 251 | EXPORT_SYMBOL_GPL(snd_hda_override_conn_list); |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 252 | |
| 253 | /** |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 254 | * 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 | */ |
| 264 | int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux, |
| 265 | hda_nid_t nid, int recursive) |
| 266 | { |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 267 | const hda_nid_t *conn; |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 268 | int i, nums; |
| 269 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 270 | nums = snd_hda_get_conn_list(codec, mux, &conn); |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 271 | for (i = 0; i < nums; i++) |
| 272 | if (conn[i] == nid) |
| 273 | return i; |
| 274 | if (!recursive) |
| 275 | return -1; |
Takashi Iwai | d94ddd8 | 2012-12-20 14:42:42 +0100 | [diff] [blame] | 276 | if (recursive > 10) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 277 | codec_dbg(codec, "too deep connection for 0x%x\n", nid); |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 278 | return -1; |
| 279 | } |
| 280 | recursive++; |
Takashi Iwai | 99e14c9 | 2011-09-13 10:33:16 +0200 | [diff] [blame] | 281 | 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 Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 285 | if (snd_hda_get_conn_index(codec, conn[i], nid, recursive) >= 0) |
| 286 | return i; |
Takashi Iwai | 99e14c9 | 2011-09-13 10:33:16 +0200 | [diff] [blame] | 287 | } |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 288 | return -1; |
| 289 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 290 | EXPORT_SYMBOL_GPL(snd_hda_get_conn_index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | |
Libin Yang | 13800f3 | 2017-01-12 16:04:52 +0800 | [diff] [blame] | 292 | /** |
| 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 | */ |
| 300 | unsigned int snd_hda_get_num_devices(struct hda_codec *codec, hda_nid_t nid) |
Mengdong Lin | f1aa068 | 2013-08-26 21:35:21 -0400 | [diff] [blame] | 301 | { |
| 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 Airlie | 132bd96 | 2015-06-09 13:39:31 +1000 | [diff] [blame] | 309 | parm = snd_hdac_read_parm_uncached(&codec->core, nid, AC_PAR_DEVLIST_LEN); |
Takashi Iwai | 8654844 | 2015-06-09 07:22:26 +0200 | [diff] [blame] | 310 | if (parm == -1) |
Mengdong Lin | f1aa068 | 2013-08-26 21:35:21 -0400 | [diff] [blame] | 311 | parm = 0; |
| 312 | return parm & AC_DEV_LIST_LEN_MASK; |
| 313 | } |
Libin Yang | 13800f3 | 2017-01-12 16:04:52 +0800 | [diff] [blame] | 314 | EXPORT_SYMBOL_GPL(snd_hda_get_num_devices); |
Mengdong Lin | f1aa068 | 2013-08-26 21:35:21 -0400 | [diff] [blame] | 315 | |
| 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 | */ |
| 326 | int 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 Yang | 13800f3 | 2017-01-12 16:04:52 +0800 | [diff] [blame] | 332 | parm = snd_hda_get_num_devices(codec, nid); |
Mengdong Lin | f1aa068 | 2013-08-26 21:35:21 -0400 | [diff] [blame] | 333 | 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 Iwai | cad372f | 2015-03-25 17:57:00 +0100 | [diff] [blame] | 341 | if (snd_hdac_read(&codec->core, nid, |
| 342 | AC_VERB_GET_DEVICE_LIST, devices, &parm)) |
| 343 | break; /* error */ |
Mengdong Lin | f1aa068 | 2013-08-26 21:35:21 -0400 | [diff] [blame] | 344 | |
| 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 Yang | 13800f3 | 2017-01-12 16:04:52 +0800 | [diff] [blame] | 356 | /** |
| 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 | */ |
| 365 | int 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 | } |
| 373 | EXPORT_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 | */ |
| 383 | int 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 | } |
| 411 | EXPORT_SYMBOL_GPL(snd_hda_set_dev_select); |
| 412 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | /* |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 414 | * read widget caps for each widget and store in cache |
| 415 | */ |
| 416 | static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node) |
| 417 | { |
| 418 | int i; |
| 419 | hda_nid_t nid; |
| 420 | |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 421 | codec->wcaps = kmalloc_array(codec->core.num_nodes, 4, GFP_KERNEL); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 422 | if (!codec->wcaps) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 423 | return -ENOMEM; |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 424 | nid = codec->core.start_nid; |
| 425 | for (i = 0; i < codec->core.num_nodes; i++, nid++) |
Takashi Iwai | 9ba17b4 | 2015-03-03 23:29:47 +0100 | [diff] [blame] | 426 | codec->wcaps[i] = snd_hdac_read_parm_uncached(&codec->core, |
| 427 | nid, AC_PAR_AUDIO_WIDGET_CAP); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 428 | return 0; |
| 429 | } |
| 430 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 431 | /* read all pin default configurations and save codec->init_pins */ |
| 432 | static int read_pin_defaults(struct hda_codec *codec) |
| 433 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 434 | hda_nid_t nid; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 435 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 436 | for_each_hda_codec_node(nid, codec) { |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 437 | struct hda_pincfg *pin; |
| 438 | unsigned int wcaps = get_wcaps(codec, nid); |
Takashi Iwai | a22d543 | 2009-07-27 12:54:26 +0200 | [diff] [blame] | 439 | unsigned int wid_type = get_wcaps_type(wcaps); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 440 | 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 Yang | 9152085 | 2017-01-12 16:04:53 +0800 | [diff] [blame] | 448 | /* |
| 449 | * all device entries are the same widget control so far |
| 450 | * fixme: if any codec is different, need fix here |
| 451 | */ |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 452 | pin->ctrl = snd_hda_codec_read(codec, nid, 0, |
| 453 | AC_VERB_GET_PIN_WIDGET_CONTROL, |
| 454 | 0); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 455 | } |
| 456 | return 0; |
| 457 | } |
| 458 | |
| 459 | /* look up the given pin config list and return the item matching with NID */ |
| 460 | static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec, |
| 461 | struct snd_array *array, |
| 462 | hda_nid_t nid) |
| 463 | { |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 464 | struct hda_pincfg *pin; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 465 | int i; |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 466 | |
| 467 | snd_array_for_each(array, i, pin) { |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 468 | if (pin->nid == nid) |
| 469 | return pin; |
| 470 | } |
| 471 | return NULL; |
| 472 | } |
| 473 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 474 | /* set the current pin config value for the given NID. |
| 475 | * the value is cached, and read via snd_hda_codec_get_pincfg() |
| 476 | */ |
| 477 | int 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 Iwai | d5657ec | 2013-04-18 09:59:28 +0200 | [diff] [blame] | 482 | /* 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 Iwai | b82855a | 2009-12-27 11:24:56 +0100 | [diff] [blame] | 487 | if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN) |
| 488 | return -EINVAL; |
Takashi Iwai | d5657ec | 2013-04-18 09:59:28 +0200 | [diff] [blame] | 489 | */ |
Takashi Iwai | b82855a | 2009-12-27 11:24:56 +0100 | [diff] [blame] | 490 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 491 | 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 Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 499 | return 0; |
| 500 | } |
| 501 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 502 | /** |
| 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 Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 512 | int snd_hda_codec_set_pincfg(struct hda_codec *codec, |
| 513 | hda_nid_t nid, unsigned int cfg) |
| 514 | { |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 515 | return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 516 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 517 | EXPORT_SYMBOL_GPL(snd_hda_codec_set_pincfg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 518 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 519 | /** |
| 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 Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 528 | unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid) |
| 529 | { |
| 530 | struct hda_pincfg *pin; |
| 531 | |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 532 | #ifdef CONFIG_SND_HDA_RECONFIG |
Takashi Iwai | 09b70e8 | 2013-01-10 18:21:56 +0100 | [diff] [blame] | 533 | { |
| 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 Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 543 | #endif |
Takashi Iwai | 5e7b8e0 | 2009-02-23 09:45:59 +0100 | [diff] [blame] | 544 | pin = look_up_pincfg(codec, &codec->driver_pins, nid); |
| 545 | if (pin) |
| 546 | return pin->cfg; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 547 | pin = look_up_pincfg(codec, &codec->init_pins, nid); |
| 548 | if (pin) |
| 549 | return pin->cfg; |
| 550 | return 0; |
| 551 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 552 | EXPORT_SYMBOL_GPL(snd_hda_codec_get_pincfg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 553 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 554 | /** |
| 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 Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 564 | int 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 Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 575 | EXPORT_SYMBOL_GPL(snd_hda_codec_set_pin_target); |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 576 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 577 | /** |
| 578 | * snd_hda_codec_get_pin_target - return the current pinctl target value |
| 579 | * @codec: the HDA codec |
| 580 | * @nid: pin NID |
| 581 | */ |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 582 | int 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 Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 591 | EXPORT_SYMBOL_GPL(snd_hda_codec_get_pin_target); |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 592 | |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 593 | /** |
| 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 | */ |
| 600 | void snd_hda_shutup_pins(struct hda_codec *codec) |
| 601 | { |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 602 | const struct hda_pincfg *pin; |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 603 | int i; |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 604 | |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 605 | /* 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 Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 610 | snd_array_for_each(&codec->init_pins, i, pin) { |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 611 | /* 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 Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 615 | codec->pins_shutup = 1; |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 616 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 617 | EXPORT_SYMBOL_GPL(snd_hda_shutup_pins); |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 618 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 619 | #ifdef CONFIG_PM |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 620 | /* Restore the pin controls cleared previously via snd_hda_shutup_pins() */ |
| 621 | static void restore_shutup_pins(struct hda_codec *codec) |
| 622 | { |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 623 | const struct hda_pincfg *pin; |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 624 | int i; |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 625 | |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 626 | if (!codec->pins_shutup) |
| 627 | return; |
| 628 | if (codec->bus->shutdown) |
| 629 | return; |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 630 | snd_array_for_each(&codec->init_pins, i, pin) { |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 631 | 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 Waychison | 1c7276c | 2011-04-20 12:04:36 -0700 | [diff] [blame] | 637 | #endif |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 638 | |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 639 | static 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 Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 643 | |
Takashi Iwai | 8d6762a | 2020-04-22 22:37:44 +0200 | [diff] [blame] | 644 | /* for non-polling trigger: we need nothing if already powered on */ |
| 645 | if (!codec->jackpoll_interval && snd_hdac_is_power_on(&codec->core)) |
| 646 | return; |
| 647 | |
| 648 | /* the power-up/down sequence triggers the runtime resume */ |
| 649 | snd_hda_power_up_pm(codec); |
| 650 | /* update jacks manually if polling is required, too */ |
| 651 | if (codec->jackpoll_interval) { |
| 652 | snd_hda_jack_set_dirty_all(codec); |
| 653 | snd_hda_jack_poll_all(codec); |
| 654 | } |
| 655 | snd_hda_power_down_pm(codec); |
Wang Xingchao | 18e6062 | 2013-07-25 23:34:45 -0400 | [diff] [blame] | 656 | |
| 657 | if (!codec->jackpoll_interval) |
| 658 | return; |
| 659 | |
Takashi Iwai | 2f35c63 | 2015-02-27 22:43:26 +0100 | [diff] [blame] | 660 | schedule_delayed_work(&codec->jackpoll_work, |
| 661 | codec->jackpoll_interval); |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 662 | } |
| 663 | |
Takashi Iwai | 3fdf146 | 2012-11-22 08:16:31 +0100 | [diff] [blame] | 664 | /* release all pincfg lists */ |
| 665 | static void free_init_pincfgs(struct hda_codec *codec) |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 666 | { |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 667 | snd_array_free(&codec->driver_pins); |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 668 | #ifdef CONFIG_SND_HDA_RECONFIG |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 669 | snd_array_free(&codec->user_pins); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 670 | #endif |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 671 | snd_array_free(&codec->init_pins); |
| 672 | } |
| 673 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 674 | /* |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 675 | * audio-converter setup caches |
| 676 | */ |
| 677 | struct hda_cvt_setup { |
| 678 | hda_nid_t nid; |
| 679 | u8 stream_tag; |
| 680 | u8 channel_id; |
| 681 | u16 format_id; |
| 682 | unsigned char active; /* cvt is currently used */ |
| 683 | unsigned char dirty; /* setups should be cleared */ |
| 684 | }; |
| 685 | |
| 686 | /* get or create a cache entry for the given audio converter NID */ |
| 687 | static struct hda_cvt_setup * |
| 688 | get_hda_cvt_setup(struct hda_codec *codec, hda_nid_t nid) |
| 689 | { |
| 690 | struct hda_cvt_setup *p; |
| 691 | int i; |
| 692 | |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 693 | snd_array_for_each(&codec->cvt_setups, i, p) { |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 694 | if (p->nid == nid) |
| 695 | return p; |
| 696 | } |
| 697 | p = snd_array_new(&codec->cvt_setups); |
| 698 | if (p) |
| 699 | p->nid = nid; |
| 700 | return p; |
| 701 | } |
| 702 | |
| 703 | /* |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 704 | * PCM device |
| 705 | */ |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 706 | void snd_hda_codec_pcm_put(struct hda_pcm *pcm) |
| 707 | { |
Takashi Iwai | 7206998 | 2021-11-16 08:24:59 +0100 | [diff] [blame] | 708 | if (refcount_dec_and_test(&pcm->codec->pcm_ref)) |
| 709 | wake_up(&pcm->codec->remove_sleep); |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 710 | } |
| 711 | EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_put); |
| 712 | |
| 713 | struct 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 Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 719 | pcm = kzalloc(sizeof(*pcm), GFP_KERNEL); |
| 720 | if (!pcm) |
| 721 | return NULL; |
| 722 | |
| 723 | pcm->codec = codec; |
Takashi Iwai | 30e5f00 | 2015-04-27 16:39:19 +0200 | [diff] [blame] | 724 | va_start(args, fmt); |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 725 | pcm->name = kvasprintf(GFP_KERNEL, fmt, args); |
Takashi Iwai | 30e5f00 | 2015-04-27 16:39:19 +0200 | [diff] [blame] | 726 | va_end(args); |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 727 | if (!pcm->name) { |
| 728 | kfree(pcm); |
| 729 | return NULL; |
| 730 | } |
| 731 | |
| 732 | list_add_tail(&pcm->list, &codec->pcm_list_head); |
Takashi Iwai | 7206998 | 2021-11-16 08:24:59 +0100 | [diff] [blame] | 733 | refcount_inc(&codec->pcm_ref); |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 734 | return pcm; |
| 735 | } |
| 736 | EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_new); |
| 737 | |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 738 | /* |
| 739 | * codec destructor |
| 740 | */ |
Takashi Iwai | 7206998 | 2021-11-16 08:24:59 +0100 | [diff] [blame] | 741 | void snd_hda_codec_disconnect_pcms(struct hda_codec *codec) |
| 742 | { |
| 743 | struct hda_pcm *pcm; |
| 744 | |
| 745 | list_for_each_entry(pcm, &codec->pcm_list_head, list) { |
| 746 | if (pcm->disconnected) |
| 747 | continue; |
| 748 | if (pcm->pcm) |
| 749 | snd_device_disconnect(codec->card, pcm->pcm); |
| 750 | snd_hda_codec_pcm_put(pcm); |
| 751 | pcm->disconnected = 1; |
| 752 | } |
| 753 | } |
| 754 | |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 755 | static void codec_release_pcms(struct hda_codec *codec) |
| 756 | { |
| 757 | struct hda_pcm *pcm, *n; |
| 758 | |
| 759 | list_for_each_entry_safe(pcm, n, &codec->pcm_list_head, list) { |
Takashi Iwai | 7206998 | 2021-11-16 08:24:59 +0100 | [diff] [blame] | 760 | list_del(&pcm->list); |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 761 | if (pcm->pcm) |
Takashi Iwai | 7206998 | 2021-11-16 08:24:59 +0100 | [diff] [blame] | 762 | snd_device_free(pcm->codec->card, pcm->pcm); |
| 763 | clear_bit(pcm->device, pcm->codec->bus->pcm_dev_bits); |
| 764 | kfree(pcm->name); |
| 765 | kfree(pcm); |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 766 | } |
| 767 | } |
| 768 | |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 769 | void snd_hda_codec_cleanup_for_unbind(struct hda_codec *codec) |
| 770 | { |
Takashi Iwai | c4c2533 | 2015-03-03 17:22:12 +0100 | [diff] [blame] | 771 | if (codec->registered) { |
| 772 | /* pm_runtime_put() is called in snd_hdac_device_exit() */ |
| 773 | pm_runtime_get_noresume(hda_codec_dev(codec)); |
| 774 | pm_runtime_disable(hda_codec_dev(codec)); |
| 775 | codec->registered = 0; |
| 776 | } |
| 777 | |
Takashi Iwai | 7206998 | 2021-11-16 08:24:59 +0100 | [diff] [blame] | 778 | snd_hda_codec_disconnect_pcms(codec); |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 779 | cancel_delayed_work_sync(&codec->jackpoll_work); |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 780 | if (!codec->in_freeing) |
| 781 | snd_hda_ctls_clear(codec); |
| 782 | codec_release_pcms(codec); |
| 783 | snd_hda_detach_beep_device(codec); |
| 784 | memset(&codec->patch_ops, 0, sizeof(codec->patch_ops)); |
| 785 | snd_hda_jack_tbl_clear(codec); |
| 786 | codec->proc_widget_hook = NULL; |
| 787 | codec->spec = NULL; |
| 788 | |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 789 | /* free only driver_pins so that init_pins + user_pins are restored */ |
| 790 | snd_array_free(&codec->driver_pins); |
| 791 | snd_array_free(&codec->cvt_setups); |
| 792 | snd_array_free(&codec->spdif_out); |
| 793 | snd_array_free(&codec->verbs); |
| 794 | codec->preset = NULL; |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 795 | codec->follower_dig_outs = NULL; |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 796 | codec->spdif_status_reset = 0; |
| 797 | snd_array_free(&codec->mixers); |
| 798 | snd_array_free(&codec->nids); |
| 799 | remove_conn_list(codec); |
Takashi Iwai | 4d75faa0 | 2015-02-25 14:42:38 +0100 | [diff] [blame] | 800 | snd_hdac_regmap_exit(&codec->core); |
Takashi Iwai | c0f1886 | 2021-10-06 16:19:40 +0200 | [diff] [blame] | 801 | codec->configured = 0; |
Takashi Iwai | 7206998 | 2021-11-16 08:24:59 +0100 | [diff] [blame] | 802 | refcount_set(&codec->pcm_ref, 1); /* reset refcount */ |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 803 | } |
Kai Vehmanen | cc1d0cd | 2020-07-15 20:45:50 +0300 | [diff] [blame] | 804 | EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup_for_unbind); |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 805 | |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 806 | static unsigned int hda_set_power_state(struct hda_codec *codec, |
Takashi Iwai | bb6ac72 | 2009-03-13 09:02:42 +0100 | [diff] [blame] | 807 | unsigned int power_state); |
| 808 | |
Takashi Iwai | 029d92c | 2018-12-08 17:31:49 +0100 | [diff] [blame] | 809 | /* enable/disable display power per codec */ |
Imre Deak | 3099406 | 2021-06-23 16:46:01 +0300 | [diff] [blame] | 810 | void snd_hda_codec_display_power(struct hda_codec *codec, bool enable) |
Takashi Iwai | 029d92c | 2018-12-08 17:31:49 +0100 | [diff] [blame] | 811 | { |
| 812 | if (codec->display_power_control) |
| 813 | snd_hdac_display_power(&codec->bus->core, codec->addr, enable); |
| 814 | } |
| 815 | |
Takashi Iwai | c4c2533 | 2015-03-03 17:22:12 +0100 | [diff] [blame] | 816 | /* also called from hda_bind.c */ |
| 817 | void snd_hda_codec_register(struct hda_codec *codec) |
| 818 | { |
| 819 | if (codec->registered) |
| 820 | return; |
| 821 | if (device_is_registered(hda_codec_dev(codec))) { |
Imre Deak | 3099406 | 2021-06-23 16:46:01 +0300 | [diff] [blame] | 822 | snd_hda_codec_display_power(codec, true); |
Takashi Iwai | c4c2533 | 2015-03-03 17:22:12 +0100 | [diff] [blame] | 823 | pm_runtime_enable(hda_codec_dev(codec)); |
| 824 | /* it was powered up in snd_hda_codec_new(), now all done */ |
| 825 | snd_hda_power_down(codec); |
| 826 | codec->registered = 1; |
| 827 | } |
| 828 | } |
| 829 | |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 830 | static int snd_hda_codec_dev_register(struct snd_device *device) |
| 831 | { |
Takashi Iwai | c4c2533 | 2015-03-03 17:22:12 +0100 | [diff] [blame] | 832 | snd_hda_codec_register(device->device_data); |
Takashi Iwai | d604b39 | 2014-02-28 13:42:09 +0100 | [diff] [blame] | 833 | return 0; |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 834 | } |
| 835 | |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 836 | static int snd_hda_codec_dev_free(struct snd_device *device) |
| 837 | { |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 838 | struct hda_codec *codec = device->device_data; |
| 839 | |
| 840 | codec->in_freeing = 1; |
Bard liao | 4d95c51 | 2019-04-28 04:53:39 +0800 | [diff] [blame] | 841 | /* |
| 842 | * snd_hda_codec_device_new() is used by legacy HDA and ASoC driver. |
| 843 | * We can't unregister ASoC device since it will be unregistered in |
| 844 | * snd_hdac_ext_bus_device_remove(). |
| 845 | */ |
| 846 | if (codec->core.type == HDA_DEV_LEGACY) |
| 847 | snd_hdac_device_unregister(&codec->core); |
Imre Deak | 3099406 | 2021-06-23 16:46:01 +0300 | [diff] [blame] | 848 | snd_hda_codec_display_power(codec, false); |
Ranjani Sridharan | d6947bb | 2019-05-31 09:01:37 -0700 | [diff] [blame] | 849 | |
| 850 | /* |
| 851 | * In the case of ASoC HD-audio bus, the device refcount is released in |
| 852 | * snd_hdac_ext_bus_device_remove() explicitly. |
| 853 | */ |
| 854 | if (codec->core.type == HDA_DEV_LEGACY) |
| 855 | put_device(hda_codec_dev(codec)); |
| 856 | |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 857 | return 0; |
| 858 | } |
| 859 | |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 860 | static void snd_hda_codec_dev_release(struct device *dev) |
| 861 | { |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 862 | struct hda_codec *codec = dev_to_hda_codec(dev); |
| 863 | |
| 864 | free_init_pincfgs(codec); |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 865 | snd_hdac_device_exit(&codec->core); |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 866 | snd_hda_sysfs_clear(codec); |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 867 | kfree(codec->modelname); |
| 868 | kfree(codec->wcaps); |
Ranjani Sridharan | ef9bec2 | 2019-06-26 00:04:50 -0700 | [diff] [blame] | 869 | |
| 870 | /* |
| 871 | * In the case of ASoC HD-audio, hda_codec is device managed. |
| 872 | * It will be freed when the ASoC device is removed. |
| 873 | */ |
| 874 | if (codec->core.type == HDA_DEV_LEGACY) |
| 875 | kfree(codec); |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 876 | } |
| 877 | |
Rakesh Ughreja | 24494d3 | 2018-06-01 22:53:56 -0500 | [diff] [blame] | 878 | #define DEV_NAME_LEN 31 |
| 879 | |
| 880 | static int snd_hda_codec_device_init(struct hda_bus *bus, struct snd_card *card, |
| 881 | unsigned int codec_addr, struct hda_codec **codecp) |
| 882 | { |
| 883 | char name[DEV_NAME_LEN]; |
| 884 | struct hda_codec *codec; |
| 885 | int err; |
| 886 | |
| 887 | dev_dbg(card->dev, "%s: entry\n", __func__); |
| 888 | |
| 889 | if (snd_BUG_ON(!bus)) |
| 890 | return -EINVAL; |
| 891 | if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS)) |
| 892 | return -EINVAL; |
| 893 | |
| 894 | codec = kzalloc(sizeof(*codec), GFP_KERNEL); |
| 895 | if (!codec) |
| 896 | return -ENOMEM; |
| 897 | |
| 898 | sprintf(name, "hdaudioC%dD%d", card->number, codec_addr); |
| 899 | err = snd_hdac_device_init(&codec->core, &bus->core, name, codec_addr); |
| 900 | if (err < 0) { |
| 901 | kfree(codec); |
| 902 | return err; |
| 903 | } |
| 904 | |
| 905 | codec->core.type = HDA_DEV_LEGACY; |
| 906 | *codecp = codec; |
| 907 | |
| 908 | return err; |
| 909 | } |
| 910 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | /** |
| 912 | * snd_hda_codec_new - create a HDA codec |
| 913 | * @bus: the bus to assign |
Pierre-Louis Bossart | 4f5c265 | 2020-01-13 15:14:04 -0600 | [diff] [blame] | 914 | * @card: card for this codec |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | * @codec_addr: the codec address |
| 916 | * @codecp: the pointer to store the generated codec |
| 917 | * |
| 918 | * Returns 0 if successful, or a negative error code. |
| 919 | */ |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 920 | int snd_hda_codec_new(struct hda_bus *bus, struct snd_card *card, |
| 921 | unsigned int codec_addr, struct hda_codec **codecp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | { |
Rakesh Ughreja | 24494d3 | 2018-06-01 22:53:56 -0500 | [diff] [blame] | 923 | int ret; |
| 924 | |
| 925 | ret = snd_hda_codec_device_init(bus, card, codec_addr, codecp); |
| 926 | if (ret < 0) |
| 927 | return ret; |
| 928 | |
| 929 | return snd_hda_codec_device_new(bus, card, codec_addr, *codecp); |
| 930 | } |
| 931 | EXPORT_SYMBOL_GPL(snd_hda_codec_new); |
| 932 | |
| 933 | int snd_hda_codec_device_new(struct hda_bus *bus, struct snd_card *card, |
| 934 | unsigned int codec_addr, struct hda_codec *codec) |
| 935 | { |
Jaroslav Kysela | ba44368 | 2008-08-13 20:55:32 +0200 | [diff] [blame] | 936 | char component[31]; |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 937 | hda_nid_t fg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | int err; |
Takashi Iwai | 41f394a | 2020-01-03 09:16:24 +0100 | [diff] [blame] | 939 | static const struct snd_device_ops dev_ops = { |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 940 | .dev_register = snd_hda_codec_dev_register, |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 941 | .dev_free = snd_hda_codec_dev_free, |
| 942 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | |
Rakesh Ughreja | 24494d3 | 2018-06-01 22:53:56 -0500 | [diff] [blame] | 944 | dev_dbg(card->dev, "%s: entry\n", __func__); |
| 945 | |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 946 | if (snd_BUG_ON(!bus)) |
| 947 | return -EINVAL; |
| 948 | if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS)) |
| 949 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 951 | codec->core.dev.release = snd_hda_codec_dev_release; |
Takashi Iwai | 05852448 | 2015-03-03 15:40:08 +0100 | [diff] [blame] | 952 | codec->core.exec_verb = codec_exec_verb; |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 953 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | codec->bus = bus; |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 955 | codec->card = card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | codec->addr = codec_addr; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 957 | mutex_init(&codec->spdif_mutex); |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 958 | mutex_init(&codec->control_mutex); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 959 | snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32); |
| 960 | snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 961 | snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16); |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 962 | snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 963 | snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 964 | snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16); |
Takashi Iwai | 361dab3 | 2012-05-09 14:35:27 +0200 | [diff] [blame] | 965 | snd_array_init(&codec->jacktbl, sizeof(struct hda_jack_tbl), 16); |
Takashi Iwai | c9ce6b2 | 2012-12-18 18:12:44 +0100 | [diff] [blame] | 966 | snd_array_init(&codec->verbs, sizeof(struct hda_verb *), 8); |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 967 | INIT_LIST_HEAD(&codec->conn_list); |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 968 | INIT_LIST_HEAD(&codec->pcm_list_head); |
Takashi Iwai | 7206998 | 2021-11-16 08:24:59 +0100 | [diff] [blame] | 969 | refcount_set(&codec->pcm_ref, 1); |
| 970 | init_waitqueue_head(&codec->remove_sleep); |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 971 | |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 972 | INIT_DELAYED_WORK(&codec->jackpoll_work, hda_jackpoll_work); |
Mengdong Lin | 7f13292 | 2013-11-29 01:48:45 -0500 | [diff] [blame] | 973 | codec->depop_delay = -1; |
David Henningsson | f5662e1 | 2014-07-22 14:09:34 +0200 | [diff] [blame] | 974 | codec->fixup_id = HDA_FIXUP_ID_NOT_SET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 976 | #ifdef CONFIG_PM |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 977 | codec->power_jiffies = jiffies; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 978 | #endif |
| 979 | |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 980 | snd_hda_sysfs_init(codec); |
| 981 | |
Takashi Iwai | c382a9f | 2012-05-07 15:01:02 +0200 | [diff] [blame] | 982 | if (codec->bus->modelname) { |
| 983 | codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL); |
| 984 | if (!codec->modelname) { |
Heloise NH | 6986a0e | 2015-07-17 09:42:06 +0800 | [diff] [blame] | 985 | err = -ENOMEM; |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 986 | goto error; |
Takashi Iwai | c382a9f | 2012-05-07 15:01:02 +0200 | [diff] [blame] | 987 | } |
| 988 | } |
| 989 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 990 | fg = codec->core.afg ? codec->core.afg : codec->core.mfg; |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 991 | err = read_widget_caps(codec, fg); |
Takashi Iwai | f4de8fe | 2015-02-27 16:17:18 +0100 | [diff] [blame] | 992 | if (err < 0) |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 993 | goto error; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 994 | err = read_pin_defaults(codec); |
| 995 | if (err < 0) |
| 996 | goto error; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 997 | |
Takashi Iwai | bb6ac72 | 2009-03-13 09:02:42 +0100 | [diff] [blame] | 998 | /* power-up all before initialization */ |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 999 | hda_set_power_state(codec, AC_PWRST_D0); |
Takashi Iwai | 183ab39 | 2019-04-13 10:04:49 +0200 | [diff] [blame] | 1000 | codec->core.dev.power.power_state = PMSG_ON; |
Takashi Iwai | bb6ac72 | 2009-03-13 09:02:42 +0100 | [diff] [blame] | 1001 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1002 | snd_hda_codec_proc_new(codec); |
| 1003 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1004 | snd_hda_create_hwdep(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1005 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 1006 | sprintf(component, "HDA:%08x,%08x,%08x", codec->core.vendor_id, |
| 1007 | codec->core.subsystem_id, codec->core.revision_id); |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1008 | snd_component_add(card, component); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1009 | |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1010 | err = snd_device_new(card, SNDRV_DEV_CODEC, codec, &dev_ops); |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 1011 | if (err < 0) |
| 1012 | goto error; |
| 1013 | |
Harsha Priya | a0645da | 2020-09-30 14:41:39 +0300 | [diff] [blame] | 1014 | /* PM runtime needs to be enabled later after binding codec */ |
| 1015 | pm_runtime_forbid(&codec->core.dev); |
| 1016 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1017 | return 0; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1018 | |
| 1019 | error: |
Takashi Iwai | d56db74 | 2015-02-27 23:25:35 +0100 | [diff] [blame] | 1020 | put_device(hda_codec_dev(codec)); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1021 | return err; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1022 | } |
Rakesh Ughreja | 24494d3 | 2018-06-01 22:53:56 -0500 | [diff] [blame] | 1023 | EXPORT_SYMBOL_GPL(snd_hda_codec_device_new); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1024 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1025 | /** |
| 1026 | * snd_hda_codec_update_widgets - Refresh widget caps and pin defaults |
| 1027 | * @codec: the HDA codec |
| 1028 | * |
| 1029 | * Forcibly refresh the all widget caps and the init pin configurations of |
| 1030 | * the given codec. |
| 1031 | */ |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1032 | int snd_hda_codec_update_widgets(struct hda_codec *codec) |
| 1033 | { |
| 1034 | hda_nid_t fg; |
| 1035 | int err; |
| 1036 | |
Takashi Iwai | 774a075 | 2019-07-03 14:35:12 +0200 | [diff] [blame] | 1037 | err = snd_hdac_refresh_widgets(&codec->core); |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 1038 | if (err < 0) |
| 1039 | return err; |
| 1040 | |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1041 | /* Assume the function group node does not change, |
| 1042 | * only the widget nodes may change. |
| 1043 | */ |
| 1044 | kfree(codec->wcaps); |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 1045 | fg = codec->core.afg ? codec->core.afg : codec->core.mfg; |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1046 | err = read_widget_caps(codec, fg); |
Takashi Iwai | f4de8fe | 2015-02-27 16:17:18 +0100 | [diff] [blame] | 1047 | if (err < 0) |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1048 | return err; |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1049 | |
| 1050 | snd_array_free(&codec->init_pins); |
| 1051 | err = read_pin_defaults(codec); |
| 1052 | |
| 1053 | return err; |
| 1054 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1055 | EXPORT_SYMBOL_GPL(snd_hda_codec_update_widgets); |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1056 | |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 1057 | /* update the stream-id if changed */ |
| 1058 | static void update_pcm_stream_id(struct hda_codec *codec, |
| 1059 | struct hda_cvt_setup *p, hda_nid_t nid, |
| 1060 | u32 stream_tag, int channel_id) |
| 1061 | { |
| 1062 | unsigned int oldval, newval; |
| 1063 | |
| 1064 | if (p->stream_tag != stream_tag || p->channel_id != channel_id) { |
| 1065 | oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0); |
| 1066 | newval = (stream_tag << 4) | channel_id; |
| 1067 | if (oldval != newval) |
| 1068 | snd_hda_codec_write(codec, nid, 0, |
| 1069 | AC_VERB_SET_CHANNEL_STREAMID, |
| 1070 | newval); |
| 1071 | p->stream_tag = stream_tag; |
| 1072 | p->channel_id = channel_id; |
| 1073 | } |
| 1074 | } |
| 1075 | |
| 1076 | /* update the format-id if changed */ |
| 1077 | static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p, |
| 1078 | hda_nid_t nid, int format) |
| 1079 | { |
| 1080 | unsigned int oldval; |
| 1081 | |
| 1082 | if (p->format_id != format) { |
| 1083 | oldval = snd_hda_codec_read(codec, nid, 0, |
| 1084 | AC_VERB_GET_STREAM_FORMAT, 0); |
| 1085 | if (oldval != format) { |
| 1086 | msleep(1); |
| 1087 | snd_hda_codec_write(codec, nid, 0, |
| 1088 | AC_VERB_SET_STREAM_FORMAT, |
| 1089 | format); |
| 1090 | } |
| 1091 | p->format_id = format; |
| 1092 | } |
| 1093 | } |
| 1094 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | /** |
| 1096 | * snd_hda_codec_setup_stream - set up the codec for streaming |
| 1097 | * @codec: the CODEC to set up |
| 1098 | * @nid: the NID to set up |
| 1099 | * @stream_tag: stream tag to pass, it's between 0x1 and 0xf. |
| 1100 | * @channel_id: channel id to pass, zero based. |
| 1101 | * @format: stream format. |
| 1102 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1103 | void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 1104 | u32 stream_tag, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | int channel_id, int format) |
| 1106 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1107 | struct hda_codec *c; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1108 | struct hda_cvt_setup *p; |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1109 | int type; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1110 | int i; |
| 1111 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1112 | if (!nid) |
Takashi Iwai | d21b37e | 2005-04-20 13:45:55 +0200 | [diff] [blame] | 1113 | return; |
| 1114 | |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1115 | codec_dbg(codec, |
| 1116 | "hda_codec_setup_stream: NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n", |
| 1117 | nid, stream_tag, channel_id, format); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1118 | p = get_hda_cvt_setup(codec, nid); |
Takashi Iwai | 6c35ae3 | 2013-05-10 13:39:50 +0200 | [diff] [blame] | 1119 | if (!p) |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1120 | return; |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 1121 | |
Takashi Iwai | e6feb5d | 2015-03-16 21:32:11 +0100 | [diff] [blame] | 1122 | if (codec->patch_ops.stream_pm) |
| 1123 | codec->patch_ops.stream_pm(codec, nid, true); |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 1124 | if (codec->pcm_format_first) |
| 1125 | update_pcm_format(codec, p, nid, format); |
| 1126 | update_pcm_stream_id(codec, p, nid, stream_tag, channel_id); |
| 1127 | if (!codec->pcm_format_first) |
| 1128 | update_pcm_format(codec, p, nid, format); |
| 1129 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1130 | p->active = 1; |
| 1131 | p->dirty = 0; |
| 1132 | |
| 1133 | /* make other inactive cvts with the same stream-tag dirty */ |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1134 | type = get_wcaps_type(get_wcaps(codec, nid)); |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 1135 | list_for_each_codec(c, codec->bus) { |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 1136 | snd_array_for_each(&c->cvt_setups, i, p) { |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1137 | if (!p->active && p->stream_tag == stream_tag && |
David Henningsson | 54c2a89 | 2012-02-01 12:05:41 +0100 | [diff] [blame] | 1138 | get_wcaps_type(get_wcaps(c, p->nid)) == type) |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1139 | p->dirty = 1; |
| 1140 | } |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1141 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1143 | EXPORT_SYMBOL_GPL(snd_hda_codec_setup_stream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1145 | static void really_cleanup_stream(struct hda_codec *codec, |
| 1146 | struct hda_cvt_setup *q); |
| 1147 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1148 | /** |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1149 | * __snd_hda_codec_cleanup_stream - clean up the codec for closing |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1150 | * @codec: the CODEC to clean up |
| 1151 | * @nid: the NID to clean up |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1152 | * @do_now: really clean up the stream instead of clearing the active flag |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1153 | */ |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1154 | void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 1155 | int do_now) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1156 | { |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1157 | struct hda_cvt_setup *p; |
| 1158 | |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1159 | if (!nid) |
| 1160 | return; |
| 1161 | |
Takashi Iwai | 0e7adbe | 2010-10-25 10:37:11 +0200 | [diff] [blame] | 1162 | if (codec->no_sticky_stream) |
| 1163 | do_now = 1; |
| 1164 | |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1165 | codec_dbg(codec, "hda_codec_cleanup_stream: NID=0x%x\n", nid); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1166 | p = get_hda_cvt_setup(codec, nid); |
Takashi Iwai | 6c35ae3 | 2013-05-10 13:39:50 +0200 | [diff] [blame] | 1167 | if (p) { |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1168 | /* here we just clear the active flag when do_now isn't set; |
| 1169 | * actual clean-ups will be done later in |
| 1170 | * purify_inactive_streams() called from snd_hda_codec_prpapre() |
| 1171 | */ |
| 1172 | if (do_now) |
| 1173 | really_cleanup_stream(codec, p); |
| 1174 | else |
| 1175 | p->active = 0; |
| 1176 | } |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1177 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1178 | EXPORT_SYMBOL_GPL(__snd_hda_codec_cleanup_stream); |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1179 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1180 | static void really_cleanup_stream(struct hda_codec *codec, |
| 1181 | struct hda_cvt_setup *q) |
| 1182 | { |
| 1183 | hda_nid_t nid = q->nid; |
Takashi Iwai | 218264a | 2011-09-27 17:33:45 +0200 | [diff] [blame] | 1184 | if (q->stream_tag || q->channel_id) |
| 1185 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0); |
| 1186 | if (q->format_id) |
| 1187 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0 |
| 1188 | ); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1189 | memset(q, 0, sizeof(*q)); |
| 1190 | q->nid = nid; |
Takashi Iwai | e6feb5d | 2015-03-16 21:32:11 +0100 | [diff] [blame] | 1191 | if (codec->patch_ops.stream_pm) |
| 1192 | codec->patch_ops.stream_pm(codec, nid, false); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1193 | } |
| 1194 | |
| 1195 | /* clean up the all conflicting obsolete streams */ |
| 1196 | static void purify_inactive_streams(struct hda_codec *codec) |
| 1197 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1198 | struct hda_codec *c; |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 1199 | struct hda_cvt_setup *p; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1200 | int i; |
| 1201 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 1202 | list_for_each_codec(c, codec->bus) { |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 1203 | snd_array_for_each(&c->cvt_setups, i, p) { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1204 | if (p->dirty) |
| 1205 | really_cleanup_stream(c, p); |
| 1206 | } |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1207 | } |
| 1208 | } |
| 1209 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 1210 | #ifdef CONFIG_PM |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1211 | /* clean up all streams; called from suspend */ |
| 1212 | static void hda_cleanup_all_streams(struct hda_codec *codec) |
| 1213 | { |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 1214 | struct hda_cvt_setup *p; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1215 | int i; |
| 1216 | |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 1217 | snd_array_for_each(&codec->cvt_setups, i, p) { |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1218 | if (p->stream_tag) |
| 1219 | really_cleanup_stream(codec, p); |
| 1220 | } |
| 1221 | } |
Mike Waychison | 1c7276c | 2011-04-20 12:04:36 -0700 | [diff] [blame] | 1222 | #endif |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1223 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | /* |
| 1225 | * amp access functions |
| 1226 | */ |
| 1227 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1228 | /** |
| 1229 | * query_amp_caps - query AMP capabilities |
| 1230 | * @codec: the HD-auio codec |
| 1231 | * @nid: the NID to query |
| 1232 | * @direction: either #HDA_INPUT or #HDA_OUTPUT |
| 1233 | * |
| 1234 | * Query AMP capabilities for the given widget and direction. |
| 1235 | * Returns the obtained capability bits. |
| 1236 | * |
| 1237 | * When cap bits have been already read, this doesn't read again but |
| 1238 | * returns the cached value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | */ |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 1240 | u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | { |
Takashi Iwai | faa75f8 | 2015-02-26 08:54:56 +0100 | [diff] [blame] | 1242 | if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD)) |
| 1243 | nid = codec->core.afg; |
| 1244 | return snd_hda_param_read(codec, nid, |
| 1245 | direction == HDA_OUTPUT ? |
| 1246 | AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1247 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1248 | EXPORT_SYMBOL_GPL(query_amp_caps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1250 | /** |
David Henningsson | 861a04e | 2014-09-23 10:38:17 +0200 | [diff] [blame] | 1251 | * snd_hda_check_amp_caps - query AMP capabilities |
| 1252 | * @codec: the HD-audio codec |
| 1253 | * @nid: the NID to query |
| 1254 | * @dir: either #HDA_INPUT or #HDA_OUTPUT |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1255 | * @bits: bit mask to check the result |
David Henningsson | 861a04e | 2014-09-23 10:38:17 +0200 | [diff] [blame] | 1256 | * |
| 1257 | * Check whether the widget has the given amp capability for the direction. |
| 1258 | */ |
| 1259 | bool snd_hda_check_amp_caps(struct hda_codec *codec, hda_nid_t nid, |
| 1260 | int dir, unsigned int bits) |
| 1261 | { |
| 1262 | if (!nid) |
| 1263 | return false; |
| 1264 | if (get_wcaps(codec, nid) & (1 << (dir + 1))) |
| 1265 | if (query_amp_caps(codec, nid, dir) & bits) |
| 1266 | return true; |
| 1267 | return false; |
| 1268 | } |
| 1269 | EXPORT_SYMBOL_GPL(snd_hda_check_amp_caps); |
| 1270 | |
| 1271 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1272 | * snd_hda_override_amp_caps - Override the AMP capabilities |
| 1273 | * @codec: the CODEC to clean up |
| 1274 | * @nid: the NID to clean up |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1275 | * @dir: either #HDA_INPUT or #HDA_OUTPUT |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1276 | * @caps: the capability bits to set |
| 1277 | * |
| 1278 | * Override the cached AMP caps bits value by the given one. |
| 1279 | * This function is useful if the driver needs to adjust the AMP ranges, |
| 1280 | * e.g. limit to 0dB, etc. |
| 1281 | * |
| 1282 | * Returns zero if successful or a negative error code. |
| 1283 | */ |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1284 | int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 1285 | unsigned int caps) |
| 1286 | { |
Takashi Iwai | faa75f8 | 2015-02-26 08:54:56 +0100 | [diff] [blame] | 1287 | unsigned int parm; |
| 1288 | |
| 1289 | snd_hda_override_wcaps(codec, nid, |
| 1290 | get_wcaps(codec, nid) | AC_WCAP_AMP_OVRD); |
| 1291 | parm = dir == HDA_OUTPUT ? AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP; |
| 1292 | return snd_hdac_override_parm(&codec->core, nid, parm, caps); |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1293 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1294 | EXPORT_SYMBOL_GPL(snd_hda_override_amp_caps); |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1295 | |
Takashi Iwai | 1a462be | 2020-01-09 10:01:04 +0100 | [diff] [blame] | 1296 | static unsigned int encode_amp(struct hda_codec *codec, hda_nid_t nid, |
| 1297 | int ch, int dir, int idx) |
| 1298 | { |
| 1299 | unsigned int cmd = snd_hdac_regmap_encode_amp(nid, ch, dir, idx); |
| 1300 | |
| 1301 | /* enable fake mute if no h/w mute but min=mute */ |
| 1302 | if ((query_amp_caps(codec, nid, dir) & |
| 1303 | (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE)) == AC_AMPCAP_MIN_MUTE) |
| 1304 | cmd |= AC_AMP_FAKE_MUTE; |
| 1305 | return cmd; |
| 1306 | } |
| 1307 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1308 | /** |
Takashi Iwai | a686ec4 | 2015-06-11 10:51:28 +0200 | [diff] [blame] | 1309 | * snd_hda_codec_amp_update - update the AMP mono value |
| 1310 | * @codec: HD-audio codec |
| 1311 | * @nid: NID to read the AMP value |
| 1312 | * @ch: channel to update (0 or 1) |
| 1313 | * @dir: #HDA_INPUT or #HDA_OUTPUT |
| 1314 | * @idx: the index value (only for input direction) |
| 1315 | * @mask: bit mask to set |
| 1316 | * @val: the bits value to set |
| 1317 | * |
| 1318 | * Update the AMP values for the given channel, direction and index. |
| 1319 | */ |
| 1320 | int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, |
| 1321 | int ch, int dir, int idx, int mask, int val) |
| 1322 | { |
Takashi Iwai | 1a462be | 2020-01-09 10:01:04 +0100 | [diff] [blame] | 1323 | unsigned int cmd = encode_amp(codec, nid, ch, dir, idx); |
Takashi Iwai | a686ec4 | 2015-06-11 10:51:28 +0200 | [diff] [blame] | 1324 | |
Takashi Iwai | a686ec4 | 2015-06-11 10:51:28 +0200 | [diff] [blame] | 1325 | return snd_hdac_regmap_update_raw(&codec->core, cmd, mask, val); |
| 1326 | } |
| 1327 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_update); |
| 1328 | |
| 1329 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1330 | * snd_hda_codec_amp_stereo - update the AMP stereo values |
| 1331 | * @codec: HD-audio codec |
| 1332 | * @nid: NID to read the AMP value |
| 1333 | * @direction: #HDA_INPUT or #HDA_OUTPUT |
| 1334 | * @idx: the index value (only for input direction) |
| 1335 | * @mask: bit mask to set |
| 1336 | * @val: the bits value to set |
| 1337 | * |
| 1338 | * Update the AMP values like snd_hda_codec_amp_update(), but for a |
| 1339 | * stereo widget with the same mask and value. |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1340 | */ |
| 1341 | int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid, |
| 1342 | int direction, int idx, int mask, int val) |
| 1343 | { |
| 1344 | int ch, ret = 0; |
Takashi Iwai | 46712646 | 2010-03-29 09:19:38 +0200 | [diff] [blame] | 1345 | |
| 1346 | if (snd_BUG_ON(mask & ~0xff)) |
| 1347 | mask &= 0xff; |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1348 | for (ch = 0; ch < 2; ch++) |
| 1349 | ret |= snd_hda_codec_amp_update(codec, nid, ch, direction, |
| 1350 | idx, mask, val); |
| 1351 | return ret; |
| 1352 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1353 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_stereo); |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1354 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1355 | /** |
| 1356 | * snd_hda_codec_amp_init - initialize the AMP value |
| 1357 | * @codec: the HDA codec |
| 1358 | * @nid: NID to read the AMP value |
| 1359 | * @ch: channel (left=0 or right=1) |
| 1360 | * @dir: #HDA_INPUT or #HDA_OUTPUT |
| 1361 | * @idx: the index value (only for input direction) |
| 1362 | * @mask: bit mask to set |
| 1363 | * @val: the bits value to set |
| 1364 | * |
| 1365 | * Works like snd_hda_codec_amp_update() but it writes the value only at |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1366 | * the first access. If the amp was already initialized / updated beforehand, |
| 1367 | * this does nothing. |
| 1368 | */ |
| 1369 | int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch, |
| 1370 | int dir, int idx, int mask, int val) |
| 1371 | { |
Takashi Iwai | 1a462be | 2020-01-09 10:01:04 +0100 | [diff] [blame] | 1372 | unsigned int cmd = encode_amp(codec, nid, ch, dir, idx); |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame] | 1373 | |
| 1374 | if (!codec->core.regmap) |
| 1375 | return -EINVAL; |
Takashi Iwai | 1a462be | 2020-01-09 10:01:04 +0100 | [diff] [blame] | 1376 | return snd_hdac_regmap_update_raw_once(&codec->core, cmd, mask, val); |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1377 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1378 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init); |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1379 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1380 | /** |
| 1381 | * snd_hda_codec_amp_init_stereo - initialize the stereo AMP value |
| 1382 | * @codec: the HDA codec |
| 1383 | * @nid: NID to read the AMP value |
| 1384 | * @dir: #HDA_INPUT or #HDA_OUTPUT |
| 1385 | * @idx: the index value (only for input direction) |
| 1386 | * @mask: bit mask to set |
| 1387 | * @val: the bits value to set |
| 1388 | * |
| 1389 | * Call snd_hda_codec_amp_init() for both stereo channels. |
| 1390 | */ |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1391 | int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid, |
| 1392 | int dir, int idx, int mask, int val) |
| 1393 | { |
| 1394 | int ch, ret = 0; |
| 1395 | |
| 1396 | if (snd_BUG_ON(mask & ~0xff)) |
| 1397 | mask &= 0xff; |
| 1398 | for (ch = 0; ch < 2; ch++) |
| 1399 | ret |= snd_hda_codec_amp_init(codec, nid, ch, dir, |
| 1400 | idx, mask, val); |
| 1401 | return ret; |
| 1402 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1403 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init_stereo); |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1404 | |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 1405 | static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 1406 | unsigned int ofs) |
| 1407 | { |
| 1408 | u32 caps = query_amp_caps(codec, nid, dir); |
| 1409 | /* get num steps */ |
| 1410 | caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT; |
| 1411 | if (ofs < caps) |
| 1412 | caps -= ofs; |
| 1413 | return caps; |
| 1414 | } |
| 1415 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1416 | /** |
| 1417 | * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1418 | * @kcontrol: referred ctl element |
| 1419 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1420 | * |
| 1421 | * The control element is supposed to have the private_value field |
| 1422 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 1423 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1424 | int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol, |
| 1425 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | { |
| 1427 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1428 | u16 nid = get_amp_nid(kcontrol); |
| 1429 | u8 chs = get_amp_channels(kcontrol); |
| 1430 | int dir = get_amp_direction(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1431 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 1433 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 1434 | uinfo->count = chs == 3 ? 2 : 1; |
| 1435 | uinfo->value.integer.min = 0; |
| 1436 | uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs); |
| 1437 | if (!uinfo->value.integer.max) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1438 | codec_warn(codec, |
| 1439 | "num_steps = 0 for NID=0x%x (ctl = %s)\n", |
| 1440 | nid, kcontrol->id.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | return -EINVAL; |
| 1442 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | return 0; |
| 1444 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1445 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1447 | |
| 1448 | static inline unsigned int |
| 1449 | read_amp_value(struct hda_codec *codec, hda_nid_t nid, |
| 1450 | int ch, int dir, int idx, unsigned int ofs) |
| 1451 | { |
| 1452 | unsigned int val; |
| 1453 | val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx); |
| 1454 | val &= HDA_AMP_VOLMASK; |
| 1455 | if (val >= ofs) |
| 1456 | val -= ofs; |
| 1457 | else |
| 1458 | val = 0; |
| 1459 | return val; |
| 1460 | } |
| 1461 | |
| 1462 | static inline int |
| 1463 | update_amp_value(struct hda_codec *codec, hda_nid_t nid, |
| 1464 | int ch, int dir, int idx, unsigned int ofs, |
| 1465 | unsigned int val) |
| 1466 | { |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 1467 | unsigned int maxval; |
| 1468 | |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1469 | if (val > 0) |
| 1470 | val += ofs; |
Takashi Iwai | 7ccc3ef | 2010-07-26 17:00:15 +0200 | [diff] [blame] | 1471 | /* ofs = 0: raw max value */ |
| 1472 | maxval = get_amp_max_value(codec, nid, dir, 0); |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 1473 | if (val > maxval) |
| 1474 | val = maxval; |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame] | 1475 | return snd_hda_codec_amp_update(codec, nid, ch, dir, idx, |
| 1476 | HDA_AMP_VOLMASK, val); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1477 | } |
| 1478 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1479 | /** |
| 1480 | * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1481 | * @kcontrol: ctl element |
| 1482 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1483 | * |
| 1484 | * The control element is supposed to have the private_value field |
| 1485 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 1486 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1487 | int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol, |
| 1488 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | { |
| 1490 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1491 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 1492 | int chs = get_amp_channels(kcontrol); |
| 1493 | int dir = get_amp_direction(kcontrol); |
| 1494 | int idx = get_amp_index(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1495 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | long *valp = ucontrol->value.integer.value; |
| 1497 | |
| 1498 | if (chs & 1) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1499 | *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | if (chs & 2) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1501 | *valp = read_amp_value(codec, nid, 1, dir, idx, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | return 0; |
| 1503 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1504 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_get); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1506 | /** |
| 1507 | * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1508 | * @kcontrol: ctl element |
| 1509 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1510 | * |
| 1511 | * The control element is supposed to have the private_value field |
| 1512 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 1513 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1514 | int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol, |
| 1515 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | { |
| 1517 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1518 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 1519 | int chs = get_amp_channels(kcontrol); |
| 1520 | int dir = get_amp_direction(kcontrol); |
| 1521 | int idx = get_amp_index(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1522 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | long *valp = ucontrol->value.integer.value; |
| 1524 | int change = 0; |
| 1525 | |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 1526 | if (chs & 1) { |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1527 | change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 1528 | valp++; |
| 1529 | } |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1530 | if (chs & 2) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1531 | change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | return change; |
| 1533 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1534 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1535 | |
Takashi Iwai | 99b5c5b | 2017-05-10 12:29:37 +0200 | [diff] [blame] | 1536 | /* inquiry the amp caps and convert to TLV */ |
| 1537 | static void get_ctl_amp_tlv(struct snd_kcontrol *kcontrol, unsigned int *tlv) |
| 1538 | { |
| 1539 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1540 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 1541 | int dir = get_amp_direction(kcontrol); |
| 1542 | unsigned int ofs = get_amp_offset(kcontrol); |
| 1543 | bool min_mute = get_amp_min_mute(kcontrol); |
| 1544 | u32 caps, val1, val2; |
| 1545 | |
| 1546 | caps = query_amp_caps(codec, nid, dir); |
| 1547 | val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT; |
| 1548 | val2 = (val2 + 1) * 25; |
| 1549 | val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT); |
| 1550 | val1 += ofs; |
| 1551 | val1 = ((int)val1) * ((int)val2); |
| 1552 | if (min_mute || (caps & AC_AMPCAP_MIN_MUTE)) |
| 1553 | val2 |= TLV_DB_SCALE_MUTE; |
Takashi Sakamoto | 51cdc8b | 2018-05-14 07:09:52 +0900 | [diff] [blame] | 1554 | tlv[SNDRV_CTL_TLVO_TYPE] = SNDRV_CTL_TLVT_DB_SCALE; |
| 1555 | tlv[SNDRV_CTL_TLVO_LEN] = 2 * sizeof(unsigned int); |
| 1556 | tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] = val1; |
| 1557 | tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP] = val2; |
Takashi Iwai | 99b5c5b | 2017-05-10 12:29:37 +0200 | [diff] [blame] | 1558 | } |
| 1559 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1560 | /** |
Takashi Iwai | f0049e1 | 2017-05-10 12:34:09 +0200 | [diff] [blame] | 1561 | * snd_hda_mixer_amp_tlv - TLV callback for a standard AMP mixer volume |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1562 | * @kcontrol: ctl element |
| 1563 | * @op_flag: operation flag |
| 1564 | * @size: byte size of input TLV |
| 1565 | * @_tlv: TLV data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1566 | * |
| 1567 | * The control element is supposed to have the private_value field |
| 1568 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 1569 | */ |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1570 | int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
| 1571 | unsigned int size, unsigned int __user *_tlv) |
| 1572 | { |
Takashi Iwai | 99b5c5b | 2017-05-10 12:29:37 +0200 | [diff] [blame] | 1573 | unsigned int tlv[4]; |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1574 | |
| 1575 | if (size < 4 * sizeof(unsigned int)) |
| 1576 | return -ENOMEM; |
Takashi Iwai | 99b5c5b | 2017-05-10 12:29:37 +0200 | [diff] [blame] | 1577 | get_ctl_amp_tlv(kcontrol, tlv); |
| 1578 | if (copy_to_user(_tlv, tlv, sizeof(tlv))) |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1579 | return -EFAULT; |
| 1580 | return 0; |
| 1581 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1582 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_tlv); |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1583 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1584 | /** |
| 1585 | * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control |
| 1586 | * @codec: HD-audio codec |
| 1587 | * @nid: NID of a reference widget |
| 1588 | * @dir: #HDA_INPUT or #HDA_OUTPUT |
| 1589 | * @tlv: TLV data to be stored, at least 4 elements |
| 1590 | * |
| 1591 | * Set (static) TLV data for a virtual master volume using the AMP caps |
| 1592 | * obtained from the reference NID. |
| 1593 | * The volume range is recalculated as if the max volume is 0dB. |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1594 | */ |
| 1595 | void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 1596 | unsigned int *tlv) |
| 1597 | { |
| 1598 | u32 caps; |
| 1599 | int nums, step; |
| 1600 | |
| 1601 | caps = query_amp_caps(codec, nid, dir); |
| 1602 | nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT; |
| 1603 | step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT; |
| 1604 | step = (step + 1) * 25; |
Takashi Sakamoto | 51cdc8b | 2018-05-14 07:09:52 +0900 | [diff] [blame] | 1605 | tlv[SNDRV_CTL_TLVO_TYPE] = SNDRV_CTL_TLVT_DB_SCALE; |
| 1606 | tlv[SNDRV_CTL_TLVO_LEN] = 2 * sizeof(unsigned int); |
| 1607 | tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] = -nums * step; |
| 1608 | tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP] = step; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1609 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1610 | EXPORT_SYMBOL_GPL(snd_hda_set_vmaster_tlv); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1611 | |
| 1612 | /* find a mixer control element with the given name */ |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1613 | static struct snd_kcontrol * |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 1614 | find_mixer_ctl(struct hda_codec *codec, const char *name, int dev, int idx) |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1615 | { |
| 1616 | struct snd_ctl_elem_id id; |
| 1617 | memset(&id, 0, sizeof(id)); |
| 1618 | id.iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 1619 | id.device = dev; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1620 | id.index = idx; |
Takashi Iwai | 18cb710 | 2009-04-16 10:22:24 +0200 | [diff] [blame] | 1621 | if (snd_BUG_ON(strlen(name) >= sizeof(id.name))) |
| 1622 | return NULL; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1623 | strcpy(id.name, name); |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1624 | return snd_ctl_find_id(codec->card, &id); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1625 | } |
| 1626 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1627 | /** |
| 1628 | * snd_hda_find_mixer_ctl - Find a mixer control element with the given name |
| 1629 | * @codec: HD-audio codec |
| 1630 | * @name: ctl id name string |
| 1631 | * |
| 1632 | * Get the control element with the given id string and IFACE_MIXER. |
| 1633 | */ |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1634 | struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec, |
| 1635 | const char *name) |
| 1636 | { |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 1637 | return find_mixer_ctl(codec, name, 0, 0); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1638 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1639 | EXPORT_SYMBOL_GPL(snd_hda_find_mixer_ctl); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1640 | |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 1641 | static int find_empty_mixer_ctl_idx(struct hda_codec *codec, const char *name, |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 1642 | int start_idx) |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 1643 | { |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 1644 | int i, idx; |
| 1645 | /* 16 ctlrs should be large enough */ |
| 1646 | for (i = 0, idx = start_idx; i < 16; i++, idx++) { |
| 1647 | if (!find_mixer_ctl(codec, name, 0, idx)) |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 1648 | return idx; |
| 1649 | } |
| 1650 | return -EBUSY; |
| 1651 | } |
| 1652 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1653 | /** |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1654 | * snd_hda_ctl_add - Add a control element and assign to the codec |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1655 | * @codec: HD-audio codec |
| 1656 | * @nid: corresponding NID (optional) |
| 1657 | * @kctl: the control element to assign |
| 1658 | * |
| 1659 | * Add the given control element to an array inside the codec instance. |
| 1660 | * All control elements belonging to a codec are supposed to be added |
| 1661 | * by this function so that a proper clean-up works at the free or |
| 1662 | * reconfiguration time. |
| 1663 | * |
| 1664 | * If non-zero @nid is passed, the NID is assigned to the control element. |
| 1665 | * The assignment is shown in the codec proc file. |
| 1666 | * |
| 1667 | * snd_hda_ctl_add() checks the control subdev id field whether |
| 1668 | * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 1669 | * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit |
| 1670 | * specifies if kctl->private_value is a HDA amplifier value. |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1671 | */ |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1672 | int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid, |
| 1673 | struct snd_kcontrol *kctl) |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1674 | { |
| 1675 | int err; |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 1676 | unsigned short flags = 0; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1677 | struct hda_nid_item *item; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1678 | |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 1679 | if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) { |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 1680 | flags |= HDA_NID_ITEM_AMP; |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 1681 | if (nid == 0) |
| 1682 | nid = get_amp_nid_(kctl->private_value); |
| 1683 | } |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 1684 | if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0) |
| 1685 | nid = kctl->id.subdevice & 0xffff; |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 1686 | if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG)) |
Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 1687 | kctl->id.subdevice = 0; |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1688 | err = snd_ctl_add(codec->card, kctl); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1689 | if (err < 0) |
| 1690 | return err; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1691 | item = snd_array_new(&codec->mixers); |
| 1692 | if (!item) |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1693 | return -ENOMEM; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1694 | item->kctl = kctl; |
| 1695 | item->nid = nid; |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 1696 | item->flags = flags; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1697 | return 0; |
| 1698 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1699 | EXPORT_SYMBOL_GPL(snd_hda_ctl_add); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1700 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1701 | /** |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1702 | * snd_hda_add_nid - Assign a NID to a control element |
| 1703 | * @codec: HD-audio codec |
| 1704 | * @nid: corresponding NID (optional) |
| 1705 | * @kctl: the control element to assign |
| 1706 | * @index: index to kctl |
| 1707 | * |
| 1708 | * Add the given control element to an array inside the codec instance. |
| 1709 | * This function is used when #snd_hda_ctl_add cannot be used for 1:1 |
| 1710 | * NID:KCTL mapping - for example "Capture Source" selector. |
| 1711 | */ |
| 1712 | int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl, |
| 1713 | unsigned int index, hda_nid_t nid) |
| 1714 | { |
| 1715 | struct hda_nid_item *item; |
| 1716 | |
| 1717 | if (nid > 0) { |
| 1718 | item = snd_array_new(&codec->nids); |
| 1719 | if (!item) |
| 1720 | return -ENOMEM; |
| 1721 | item->kctl = kctl; |
| 1722 | item->index = index; |
| 1723 | item->nid = nid; |
| 1724 | return 0; |
| 1725 | } |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1726 | codec_err(codec, "no NID for mapping control %s:%d:%d\n", |
| 1727 | kctl->id.name, kctl->id.index, index); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1728 | return -EINVAL; |
| 1729 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1730 | EXPORT_SYMBOL_GPL(snd_hda_add_nid); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1731 | |
| 1732 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1733 | * snd_hda_ctls_clear - Clear all controls assigned to the given codec |
| 1734 | * @codec: HD-audio codec |
| 1735 | */ |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1736 | void snd_hda_ctls_clear(struct hda_codec *codec) |
| 1737 | { |
| 1738 | int i; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1739 | struct hda_nid_item *items = codec->mixers.list; |
Takashi Iwai | 80bd64a | 2021-11-16 08:13:14 +0100 | [diff] [blame] | 1740 | |
| 1741 | down_write(&codec->card->controls_rwsem); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1742 | for (i = 0; i < codec->mixers.used; i++) |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 1743 | snd_ctl_remove(codec->card, items[i].kctl); |
Takashi Iwai | 80bd64a | 2021-11-16 08:13:14 +0100 | [diff] [blame] | 1744 | up_write(&codec->card->controls_rwsem); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1745 | snd_array_free(&codec->mixers); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1746 | snd_array_free(&codec->nids); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1747 | } |
| 1748 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1749 | /** |
| 1750 | * snd_hda_lock_devices - pseudo device locking |
| 1751 | * @bus: the BUS |
| 1752 | * |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1753 | * toggle card->shutdown to allow/disallow the device access (as a hack) |
| 1754 | */ |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1755 | int snd_hda_lock_devices(struct hda_bus *bus) |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1756 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1757 | struct snd_card *card = bus->card; |
| 1758 | struct hda_codec *codec; |
| 1759 | |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1760 | spin_lock(&card->files_lock); |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1761 | if (card->shutdown) |
| 1762 | goto err_unlock; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1763 | card->shutdown = 1; |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1764 | if (!list_empty(&card->ctl_files)) |
| 1765 | goto err_clear; |
| 1766 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 1767 | list_for_each_codec(codec, bus) { |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 1768 | struct hda_pcm *cpcm; |
| 1769 | list_for_each_entry(cpcm, &codec->pcm_list_head, list) { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1770 | if (!cpcm->pcm) |
| 1771 | continue; |
| 1772 | if (cpcm->pcm->streams[0].substream_opened || |
| 1773 | cpcm->pcm->streams[1].substream_opened) |
| 1774 | goto err_clear; |
| 1775 | } |
| 1776 | } |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1777 | spin_unlock(&card->files_lock); |
| 1778 | return 0; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1779 | |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1780 | err_clear: |
| 1781 | card->shutdown = 0; |
| 1782 | err_unlock: |
| 1783 | spin_unlock(&card->files_lock); |
| 1784 | return -EINVAL; |
| 1785 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1786 | EXPORT_SYMBOL_GPL(snd_hda_lock_devices); |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1787 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1788 | /** |
| 1789 | * snd_hda_unlock_devices - pseudo device unlocking |
| 1790 | * @bus: the BUS |
| 1791 | */ |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1792 | void snd_hda_unlock_devices(struct hda_bus *bus) |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1793 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1794 | struct snd_card *card = bus->card; |
| 1795 | |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1796 | spin_lock(&card->files_lock); |
| 1797 | card->shutdown = 0; |
| 1798 | spin_unlock(&card->files_lock); |
| 1799 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1800 | EXPORT_SYMBOL_GPL(snd_hda_unlock_devices); |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1801 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1802 | /** |
| 1803 | * snd_hda_codec_reset - Clear all objects assigned to the codec |
| 1804 | * @codec: HD-audio codec |
| 1805 | * |
| 1806 | * This frees the all PCM and control elements assigned to the codec, and |
| 1807 | * clears the caches and restores the pin default configurations. |
| 1808 | * |
| 1809 | * When a device is being used, it returns -EBSY. If successfully freed, |
| 1810 | * returns zero. |
| 1811 | */ |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1812 | int snd_hda_codec_reset(struct hda_codec *codec) |
| 1813 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1814 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1815 | |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1816 | if (snd_hda_lock_devices(bus) < 0) |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1817 | return -EBUSY; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1818 | |
| 1819 | /* OK, let it free */ |
Takashi Iwai | 2506318 | 2020-12-09 16:01:19 +0100 | [diff] [blame] | 1820 | device_release_driver(hda_codec_dev(codec)); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 1821 | |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1822 | /* allow device access again */ |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 1823 | snd_hda_unlock_devices(bus); |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 1824 | return 0; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1825 | } |
| 1826 | |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1827 | typedef int (*map_follower_func_t)(struct hda_codec *, void *, struct snd_kcontrol *); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 1828 | |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1829 | /* apply the function to all matching follower ctls in the mixer list */ |
| 1830 | static int map_followers(struct hda_codec *codec, const char * const *followers, |
| 1831 | const char *suffix, map_follower_func_t func, void *data) |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 1832 | { |
| 1833 | struct hda_nid_item *items; |
| 1834 | const char * const *s; |
| 1835 | int i, err; |
| 1836 | |
| 1837 | items = codec->mixers.list; |
| 1838 | for (i = 0; i < codec->mixers.used; i++) { |
| 1839 | struct snd_kcontrol *sctl = items[i].kctl; |
Takashi Iwai | ca16ec0 | 2013-10-28 12:00:35 +0100 | [diff] [blame] | 1840 | if (!sctl || sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER) |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 1841 | continue; |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1842 | for (s = followers; *s; s++) { |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 1843 | char tmpname[sizeof(sctl->id.name)]; |
| 1844 | const char *name = *s; |
| 1845 | if (suffix) { |
| 1846 | snprintf(tmpname, sizeof(tmpname), "%s %s", |
| 1847 | name, suffix); |
| 1848 | name = tmpname; |
| 1849 | } |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 1850 | if (!strcmp(sctl->id.name, name)) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 1851 | err = func(codec, data, sctl); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 1852 | if (err) |
| 1853 | return err; |
| 1854 | break; |
| 1855 | } |
| 1856 | } |
| 1857 | } |
| 1858 | return 0; |
| 1859 | } |
| 1860 | |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1861 | static int check_follower_present(struct hda_codec *codec, |
| 1862 | void *data, struct snd_kcontrol *sctl) |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 1863 | { |
| 1864 | return 1; |
| 1865 | } |
| 1866 | |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1867 | /* call kctl->put with the given value(s) */ |
| 1868 | static int put_kctl_with_value(struct snd_kcontrol *kctl, int val) |
| 1869 | { |
| 1870 | struct snd_ctl_elem_value *ucontrol; |
| 1871 | ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL); |
| 1872 | if (!ucontrol) |
| 1873 | return -ENOMEM; |
| 1874 | ucontrol->value.integer.value[0] = val; |
| 1875 | ucontrol->value.integer.value[1] = val; |
| 1876 | kctl->put(kctl, ucontrol); |
| 1877 | kfree(ucontrol); |
| 1878 | return 0; |
| 1879 | } |
| 1880 | |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1881 | struct follower_init_arg { |
Takashi Iwai | a91d661 | 2017-10-16 11:39:28 +0200 | [diff] [blame] | 1882 | struct hda_codec *codec; |
| 1883 | int step; |
| 1884 | }; |
| 1885 | |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1886 | /* initialize the follower volume with 0dB via snd_ctl_apply_vmaster_followers() */ |
| 1887 | static int init_follower_0dB(struct snd_kcontrol *follower, |
| 1888 | struct snd_kcontrol *kctl, |
| 1889 | void *_arg) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1890 | { |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1891 | struct follower_init_arg *arg = _arg; |
Takashi Iwai | a91d661 | 2017-10-16 11:39:28 +0200 | [diff] [blame] | 1892 | int _tlv[4]; |
| 1893 | const int *tlv = NULL; |
| 1894 | int step; |
| 1895 | int val; |
| 1896 | |
| 1897 | if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) { |
| 1898 | if (kctl->tlv.c != snd_hda_mixer_amp_tlv) { |
| 1899 | codec_err(arg->codec, |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1900 | "Unexpected TLV callback for follower %s:%d\n", |
Takashi Iwai | a91d661 | 2017-10-16 11:39:28 +0200 | [diff] [blame] | 1901 | kctl->id.name, kctl->id.index); |
| 1902 | return 0; /* ignore */ |
| 1903 | } |
| 1904 | get_ctl_amp_tlv(kctl, _tlv); |
| 1905 | tlv = _tlv; |
| 1906 | } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ) |
| 1907 | tlv = kctl->tlv.p; |
| 1908 | |
Takashi Sakamoto | 51cdc8b | 2018-05-14 07:09:52 +0900 | [diff] [blame] | 1909 | if (!tlv || tlv[SNDRV_CTL_TLVO_TYPE] != SNDRV_CTL_TLVT_DB_SCALE) |
Takashi Iwai | a91d661 | 2017-10-16 11:39:28 +0200 | [diff] [blame] | 1910 | return 0; |
| 1911 | |
Takashi Sakamoto | 51cdc8b | 2018-05-14 07:09:52 +0900 | [diff] [blame] | 1912 | step = tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP]; |
Takashi Iwai | a91d661 | 2017-10-16 11:39:28 +0200 | [diff] [blame] | 1913 | step &= ~TLV_DB_SCALE_MUTE; |
| 1914 | if (!step) |
| 1915 | return 0; |
| 1916 | if (arg->step && arg->step != step) { |
| 1917 | codec_err(arg->codec, |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1918 | "Mismatching dB step for vmaster follower (%d!=%d)\n", |
Takashi Iwai | a91d661 | 2017-10-16 11:39:28 +0200 | [diff] [blame] | 1919 | arg->step, step); |
| 1920 | return 0; |
| 1921 | } |
| 1922 | |
| 1923 | arg->step = step; |
Takashi Sakamoto | 51cdc8b | 2018-05-14 07:09:52 +0900 | [diff] [blame] | 1924 | val = -tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] / step; |
Takashi Iwai | a91d661 | 2017-10-16 11:39:28 +0200 | [diff] [blame] | 1925 | if (val > 0) { |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1926 | put_kctl_with_value(follower, val); |
Takashi Iwai | a91d661 | 2017-10-16 11:39:28 +0200 | [diff] [blame] | 1927 | return val; |
| 1928 | } |
| 1929 | |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1930 | return 0; |
| 1931 | } |
| 1932 | |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1933 | /* unmute the follower via snd_ctl_apply_vmaster_followers() */ |
| 1934 | static int init_follower_unmute(struct snd_kcontrol *follower, |
| 1935 | struct snd_kcontrol *kctl, |
| 1936 | void *_arg) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1937 | { |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1938 | return put_kctl_with_value(follower, 1); |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1939 | } |
| 1940 | |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1941 | static int add_follower(struct hda_codec *codec, |
| 1942 | void *data, struct snd_kcontrol *follower) |
Takashi Iwai | e875094 | 2014-06-30 14:02:39 +0200 | [diff] [blame] | 1943 | { |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1944 | return snd_ctl_add_follower(data, follower); |
Takashi Iwai | e875094 | 2014-06-30 14:02:39 +0200 | [diff] [blame] | 1945 | } |
| 1946 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1947 | /** |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1948 | * __snd_hda_add_vmaster - create a virtual master control and add followers |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1949 | * @codec: HD-audio codec |
| 1950 | * @name: vmaster control name |
| 1951 | * @tlv: TLV data (optional) |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1952 | * @followers: follower control names (optional) |
| 1953 | * @suffix: suffix string to each follower name (optional) |
| 1954 | * @init_follower_vol: initialize followers to unmute/0dB |
Ranjani Sridharan | 618fad3 | 2021-04-09 14:46:16 -0700 | [diff] [blame] | 1955 | * @access: kcontrol access rights |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 1956 | * @ctl_ret: store the vmaster kcontrol in return |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1957 | * |
| 1958 | * Create a virtual master control with the given name. The TLV data |
| 1959 | * must be either NULL or a valid data. |
| 1960 | * |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1961 | * @followers is a NULL-terminated array of strings, each of which is a |
| 1962 | * follower control name. All controls with these names are assigned to |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1963 | * the new virtual master control. |
| 1964 | * |
| 1965 | * This function returns zero if successful or a negative error code. |
| 1966 | */ |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1967 | int __snd_hda_add_vmaster(struct hda_codec *codec, char *name, |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1968 | unsigned int *tlv, const char * const *followers, |
| 1969 | const char *suffix, bool init_follower_vol, |
Jaroslav Kysela | e65bf99 | 2021-03-17 18:29:43 +0100 | [diff] [blame] | 1970 | unsigned int access, struct snd_kcontrol **ctl_ret) |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1971 | { |
| 1972 | struct snd_kcontrol *kctl; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1973 | int err; |
| 1974 | |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 1975 | if (ctl_ret) |
| 1976 | *ctl_ret = NULL; |
| 1977 | |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1978 | err = map_followers(codec, followers, suffix, check_follower_present, NULL); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 1979 | if (err != 1) { |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1980 | codec_dbg(codec, "No follower found for %s\n", name); |
Takashi Iwai | 2f08554 | 2008-02-22 18:43:50 +0100 | [diff] [blame] | 1981 | return 0; |
| 1982 | } |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1983 | kctl = snd_ctl_make_virtual_master(name, tlv); |
| 1984 | if (!kctl) |
| 1985 | return -ENOMEM; |
Jaroslav Kysela | e65bf99 | 2021-03-17 18:29:43 +0100 | [diff] [blame] | 1986 | kctl->vd[0].access |= access; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 1987 | err = snd_hda_ctl_add(codec, 0, kctl); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1988 | if (err < 0) |
| 1989 | return err; |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 1990 | |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1991 | err = map_followers(codec, followers, suffix, add_follower, kctl); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 1992 | if (err < 0) |
| 1993 | return err; |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 1994 | |
| 1995 | /* init with master mute & zero volume */ |
| 1996 | put_kctl_with_value(kctl, 0); |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 1997 | if (init_follower_vol) { |
| 1998 | struct follower_init_arg arg = { |
Takashi Iwai | a91d661 | 2017-10-16 11:39:28 +0200 | [diff] [blame] | 1999 | .codec = codec, |
| 2000 | .step = 0, |
| 2001 | }; |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 2002 | snd_ctl_apply_vmaster_followers(kctl, |
| 2003 | tlv ? init_follower_0dB : init_follower_unmute, |
| 2004 | &arg); |
Takashi Iwai | 485e3e0c | 2013-11-04 15:51:00 +0100 | [diff] [blame] | 2005 | } |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2006 | |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 2007 | if (ctl_ret) |
| 2008 | *ctl_ret = kctl; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2009 | return 0; |
| 2010 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2011 | EXPORT_SYMBOL_GPL(__snd_hda_add_vmaster); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2012 | |
Takashi Iwai | ee52e56 | 2015-04-27 10:36:11 +0200 | [diff] [blame] | 2013 | /* meta hook to call each driver's vmaster hook */ |
| 2014 | static void vmaster_hook(void *private_data, int enabled) |
| 2015 | { |
| 2016 | struct hda_vmaster_mute_hook *hook = private_data; |
| 2017 | |
Takashi Iwai | ee52e56 | 2015-04-27 10:36:11 +0200 | [diff] [blame] | 2018 | hook->hook(hook->codec, enabled); |
| 2019 | } |
| 2020 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2021 | /** |
Jaroslav Kysela | e65bf99 | 2021-03-17 18:29:43 +0100 | [diff] [blame] | 2022 | * snd_hda_add_vmaster_hook - Add a vmaster hw specific hook |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2023 | * @codec: the HDA codec |
| 2024 | * @hook: the vmaster hook object |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2025 | * |
Jaroslav Kysela | e65bf99 | 2021-03-17 18:29:43 +0100 | [diff] [blame] | 2026 | * Add a hw specific hook (like EAPD) with the given vmaster switch kctl. |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2027 | */ |
| 2028 | int snd_hda_add_vmaster_hook(struct hda_codec *codec, |
Jaroslav Kysela | e65bf99 | 2021-03-17 18:29:43 +0100 | [diff] [blame] | 2029 | struct hda_vmaster_mute_hook *hook) |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2030 | { |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2031 | if (!hook->hook || !hook->sw_kctl) |
| 2032 | return 0; |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2033 | hook->codec = codec; |
Takashi Iwai | ee52e56 | 2015-04-27 10:36:11 +0200 | [diff] [blame] | 2034 | snd_ctl_add_vmaster_hook(hook->sw_kctl, vmaster_hook, hook); |
Jaroslav Kysela | e65bf99 | 2021-03-17 18:29:43 +0100 | [diff] [blame] | 2035 | return 0; |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2036 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2037 | EXPORT_SYMBOL_GPL(snd_hda_add_vmaster_hook); |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2038 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2039 | /** |
| 2040 | * snd_hda_sync_vmaster_hook - Sync vmaster hook |
| 2041 | * @hook: the vmaster hook |
| 2042 | * |
| 2043 | * Call the hook with the current value for synchronization. |
| 2044 | * Should be called in init callback. |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2045 | */ |
| 2046 | void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook) |
| 2047 | { |
| 2048 | if (!hook->hook || !hook->codec) |
| 2049 | return; |
Takashi Iwai | 594813f | 2013-04-17 18:16:05 +0200 | [diff] [blame] | 2050 | /* don't call vmaster hook in the destructor since it might have |
| 2051 | * been already destroyed |
| 2052 | */ |
| 2053 | if (hook->codec->bus->shutdown) |
| 2054 | return; |
Takashi Iwai | ee52e56 | 2015-04-27 10:36:11 +0200 | [diff] [blame] | 2055 | snd_ctl_sync_vmaster_hook(hook->sw_kctl); |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2056 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2057 | EXPORT_SYMBOL_GPL(snd_hda_sync_vmaster_hook); |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2058 | |
| 2059 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2060 | /** |
| 2061 | * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2062 | * @kcontrol: referred ctl element |
| 2063 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2064 | * |
| 2065 | * The control element is supposed to have the private_value field |
| 2066 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2067 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2068 | int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol, |
| 2069 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2070 | { |
| 2071 | int chs = get_amp_channels(kcontrol); |
| 2072 | |
| 2073 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| 2074 | uinfo->count = chs == 3 ? 2 : 1; |
| 2075 | uinfo->value.integer.min = 0; |
| 2076 | uinfo->value.integer.max = 1; |
| 2077 | return 0; |
| 2078 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2079 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2081 | /** |
| 2082 | * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2083 | * @kcontrol: ctl element |
| 2084 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2085 | * |
| 2086 | * The control element is supposed to have the private_value field |
| 2087 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2088 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2089 | int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol, |
| 2090 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2091 | { |
| 2092 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2093 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2094 | int chs = get_amp_channels(kcontrol); |
| 2095 | int dir = get_amp_direction(kcontrol); |
| 2096 | int idx = get_amp_index(kcontrol); |
| 2097 | long *valp = ucontrol->value.integer.value; |
| 2098 | |
| 2099 | if (chs & 1) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2100 | *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) & |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 2101 | HDA_AMP_MUTE) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | if (chs & 2) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2103 | *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) & |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 2104 | HDA_AMP_MUTE) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2105 | return 0; |
| 2106 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2107 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2108 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2109 | /** |
| 2110 | * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2111 | * @kcontrol: ctl element |
| 2112 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2113 | * |
| 2114 | * The control element is supposed to have the private_value field |
| 2115 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2116 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2117 | int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol, |
| 2118 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2119 | { |
| 2120 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2121 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2122 | int chs = get_amp_channels(kcontrol); |
| 2123 | int dir = get_amp_direction(kcontrol); |
| 2124 | int idx = get_amp_index(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2125 | long *valp = ucontrol->value.integer.value; |
| 2126 | int change = 0; |
| 2127 | |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 2128 | if (chs & 1) { |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame] | 2129 | change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx, |
| 2130 | HDA_AMP_MUTE, |
| 2131 | *valp ? 0 : HDA_AMP_MUTE); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 2132 | valp++; |
| 2133 | } |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 2134 | if (chs & 2) |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame] | 2135 | change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx, |
| 2136 | HDA_AMP_MUTE, |
| 2137 | *valp ? 0 : HDA_AMP_MUTE); |
Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 2138 | hda_call_check_power_status(codec, nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 | return change; |
| 2140 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2141 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2143 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2144 | * SPDIF out controls |
| 2145 | */ |
| 2146 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2147 | static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol, |
| 2148 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2149 | { |
| 2150 | uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958; |
| 2151 | uinfo->count = 1; |
| 2152 | return 0; |
| 2153 | } |
| 2154 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2155 | static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol, |
| 2156 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2157 | { |
| 2158 | ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL | |
| 2159 | IEC958_AES0_NONAUDIO | |
| 2160 | IEC958_AES0_CON_EMPHASIS_5015 | |
| 2161 | IEC958_AES0_CON_NOT_COPYRIGHT; |
| 2162 | ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY | |
| 2163 | IEC958_AES1_CON_ORIGINAL; |
| 2164 | return 0; |
| 2165 | } |
| 2166 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2167 | static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol, |
| 2168 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2169 | { |
| 2170 | ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL | |
| 2171 | IEC958_AES0_NONAUDIO | |
| 2172 | IEC958_AES0_PRO_EMPHASIS_5015; |
| 2173 | return 0; |
| 2174 | } |
| 2175 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2176 | static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol, |
| 2177 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | { |
| 2179 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2180 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2181 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | |
Takashi Iwai | 0860506 | 2018-04-24 16:53:24 +0200 | [diff] [blame] | 2183 | if (WARN_ON(codec->spdif_out.used <= idx)) |
| 2184 | return -EINVAL; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2185 | mutex_lock(&codec->spdif_mutex); |
| 2186 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2187 | ucontrol->value.iec958.status[0] = spdif->status & 0xff; |
| 2188 | ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff; |
| 2189 | ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff; |
| 2190 | ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2191 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2192 | |
| 2193 | return 0; |
| 2194 | } |
| 2195 | |
| 2196 | /* convert from SPDIF status bits to HDA SPDIF bits |
| 2197 | * bit 0 (DigEn) is always set zero (to be filled later) |
| 2198 | */ |
| 2199 | static unsigned short convert_from_spdif_status(unsigned int sbits) |
| 2200 | { |
| 2201 | unsigned short val = 0; |
| 2202 | |
| 2203 | if (sbits & IEC958_AES0_PROFESSIONAL) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2204 | val |= AC_DIG1_PROFESSIONAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | if (sbits & IEC958_AES0_NONAUDIO) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2206 | val |= AC_DIG1_NONAUDIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2207 | if (sbits & IEC958_AES0_PROFESSIONAL) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2208 | if ((sbits & IEC958_AES0_PRO_EMPHASIS) == |
| 2209 | IEC958_AES0_PRO_EMPHASIS_5015) |
| 2210 | val |= AC_DIG1_EMPHASIS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | } else { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2212 | if ((sbits & IEC958_AES0_CON_EMPHASIS) == |
| 2213 | IEC958_AES0_CON_EMPHASIS_5015) |
| 2214 | val |= AC_DIG1_EMPHASIS; |
| 2215 | if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT)) |
| 2216 | val |= AC_DIG1_COPYRIGHT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | if (sbits & (IEC958_AES1_CON_ORIGINAL << 8)) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2218 | val |= AC_DIG1_LEVEL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2219 | val |= sbits & (IEC958_AES1_CON_CATEGORY << 8); |
| 2220 | } |
| 2221 | return val; |
| 2222 | } |
| 2223 | |
| 2224 | /* convert to SPDIF status bits from HDA SPDIF bits |
| 2225 | */ |
| 2226 | static unsigned int convert_to_spdif_status(unsigned short val) |
| 2227 | { |
| 2228 | unsigned int sbits = 0; |
| 2229 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2230 | if (val & AC_DIG1_NONAUDIO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2231 | sbits |= IEC958_AES0_NONAUDIO; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2232 | if (val & AC_DIG1_PROFESSIONAL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 | sbits |= IEC958_AES0_PROFESSIONAL; |
| 2234 | if (sbits & IEC958_AES0_PROFESSIONAL) { |
Takashi Iwai | a686fd1 | 2013-03-20 15:42:00 +0100 | [diff] [blame] | 2235 | if (val & AC_DIG1_EMPHASIS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | sbits |= IEC958_AES0_PRO_EMPHASIS_5015; |
| 2237 | } else { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2238 | if (val & AC_DIG1_EMPHASIS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2239 | sbits |= IEC958_AES0_CON_EMPHASIS_5015; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2240 | if (!(val & AC_DIG1_COPYRIGHT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | sbits |= IEC958_AES0_CON_NOT_COPYRIGHT; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2242 | if (val & AC_DIG1_LEVEL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2243 | sbits |= (IEC958_AES1_CON_ORIGINAL << 8); |
| 2244 | sbits |= val & (0x7f << 8); |
| 2245 | } |
| 2246 | return sbits; |
| 2247 | } |
| 2248 | |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 2249 | /* set digital convert verbs both for the given NID and its followers */ |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2250 | static void set_dig_out(struct hda_codec *codec, hda_nid_t nid, |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2251 | int mask, int val) |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2252 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 2253 | const hda_nid_t *d; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2254 | |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2255 | snd_hdac_regmap_update(&codec->core, nid, AC_VERB_SET_DIGI_CONVERT_1, |
| 2256 | mask, val); |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 2257 | d = codec->follower_dig_outs; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2258 | if (!d) |
| 2259 | return; |
| 2260 | for (; *d; d++) |
Takashi Iwai | 7d4b5e9 | 2015-04-16 15:14:53 +0200 | [diff] [blame] | 2261 | snd_hdac_regmap_update(&codec->core, *d, |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2262 | AC_VERB_SET_DIGI_CONVERT_1, mask, val); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2263 | } |
| 2264 | |
| 2265 | static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid, |
| 2266 | int dig1, int dig2) |
| 2267 | { |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2268 | unsigned int mask = 0; |
| 2269 | unsigned int val = 0; |
| 2270 | |
| 2271 | if (dig1 != -1) { |
| 2272 | mask |= 0xff; |
| 2273 | val = dig1; |
| 2274 | } |
| 2275 | if (dig2 != -1) { |
| 2276 | mask |= 0xff00; |
| 2277 | val |= dig2 << 8; |
| 2278 | } |
| 2279 | set_dig_out(codec, nid, mask, val); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2280 | } |
| 2281 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2282 | static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol, |
| 2283 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2284 | { |
| 2285 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2286 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2287 | struct hda_spdif_out *spdif; |
| 2288 | hda_nid_t nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2289 | unsigned short val; |
| 2290 | int change; |
| 2291 | |
Takashi Iwai | 0860506 | 2018-04-24 16:53:24 +0200 | [diff] [blame] | 2292 | if (WARN_ON(codec->spdif_out.used <= idx)) |
| 2293 | return -EINVAL; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2294 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2295 | spdif = snd_array_elem(&codec->spdif_out, idx); |
| 2296 | nid = spdif->nid; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2297 | spdif->status = ucontrol->value.iec958.status[0] | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2298 | ((unsigned int)ucontrol->value.iec958.status[1] << 8) | |
| 2299 | ((unsigned int)ucontrol->value.iec958.status[2] << 16) | |
| 2300 | ((unsigned int)ucontrol->value.iec958.status[3] << 24); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2301 | val = convert_from_spdif_status(spdif->status); |
| 2302 | val |= spdif->ctls & 1; |
| 2303 | change = spdif->ctls != val; |
| 2304 | spdif->ctls = val; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2305 | if (change && nid != (u16)-1) |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2306 | set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2307 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2308 | return change; |
| 2309 | } |
| 2310 | |
Takashi Iwai | a5ce889 | 2007-07-23 15:42:26 +0200 | [diff] [blame] | 2311 | #define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2312 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2313 | static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol, |
| 2314 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2315 | { |
| 2316 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2317 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2318 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | |
Takashi Iwai | 0860506 | 2018-04-24 16:53:24 +0200 | [diff] [blame] | 2320 | if (WARN_ON(codec->spdif_out.used <= idx)) |
| 2321 | return -EINVAL; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2322 | mutex_lock(&codec->spdif_mutex); |
| 2323 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2324 | ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2325 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2326 | return 0; |
| 2327 | } |
| 2328 | |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2329 | static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid, |
| 2330 | int dig1, int dig2) |
| 2331 | { |
| 2332 | set_dig_out_convert(codec, nid, dig1, dig2); |
| 2333 | /* unmute amp switch (if any) */ |
| 2334 | if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) && |
| 2335 | (dig1 & AC_DIG1_ENABLE)) |
| 2336 | snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0, |
| 2337 | HDA_AMP_MUTE, 0); |
| 2338 | } |
| 2339 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2340 | static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol, |
| 2341 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2342 | { |
| 2343 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2344 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2345 | struct hda_spdif_out *spdif; |
| 2346 | hda_nid_t nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2347 | unsigned short val; |
| 2348 | int change; |
| 2349 | |
Takashi Iwai | 0860506 | 2018-04-24 16:53:24 +0200 | [diff] [blame] | 2350 | if (WARN_ON(codec->spdif_out.used <= idx)) |
| 2351 | return -EINVAL; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2352 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2353 | spdif = snd_array_elem(&codec->spdif_out, idx); |
| 2354 | nid = spdif->nid; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2355 | val = spdif->ctls & ~AC_DIG1_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2356 | if (ucontrol->value.integer.value[0]) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2357 | val |= AC_DIG1_ENABLE; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2358 | change = spdif->ctls != val; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2359 | spdif->ctls = val; |
| 2360 | if (change && nid != (u16)-1) |
| 2361 | set_spdif_ctls(codec, nid, val & 0xff, -1); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2362 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2363 | return change; |
| 2364 | } |
| 2365 | |
Takashi Iwai | 35ace5e | 2020-01-03 09:16:52 +0100 | [diff] [blame] | 2366 | static const struct snd_kcontrol_new dig_mixes[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2367 | { |
| 2368 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 2369 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2370 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2371 | .info = snd_hda_spdif_mask_info, |
| 2372 | .get = snd_hda_spdif_cmask_get, |
| 2373 | }, |
| 2374 | { |
| 2375 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 2376 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2377 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2378 | .info = snd_hda_spdif_mask_info, |
| 2379 | .get = snd_hda_spdif_pmask_get, |
| 2380 | }, |
| 2381 | { |
| 2382 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2383 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2384 | .info = snd_hda_spdif_mask_info, |
| 2385 | .get = snd_hda_spdif_default_get, |
| 2386 | .put = snd_hda_spdif_default_put, |
| 2387 | }, |
| 2388 | { |
| 2389 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2390 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2391 | .info = snd_hda_spdif_out_switch_info, |
| 2392 | .get = snd_hda_spdif_out_switch_get, |
| 2393 | .put = snd_hda_spdif_out_switch_put, |
| 2394 | }, |
| 2395 | { } /* end */ |
| 2396 | }; |
| 2397 | |
| 2398 | /** |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2399 | * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | * @codec: the HDA codec |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2401 | * @associated_nid: NID that new ctls associated with |
| 2402 | * @cvt_nid: converter NID |
| 2403 | * @type: HDA_PCM_TYPE_* |
| 2404 | * Creates controls related with the digital output. |
| 2405 | * Called from each patch supporting the digital out. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2406 | * |
| 2407 | * Returns 0 if successful, or a negative error code. |
| 2408 | */ |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2409 | int snd_hda_create_dig_out_ctls(struct hda_codec *codec, |
| 2410 | hda_nid_t associated_nid, |
| 2411 | hda_nid_t cvt_nid, |
| 2412 | int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2413 | { |
| 2414 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2415 | struct snd_kcontrol *kctl; |
Takashi Iwai | 35ace5e | 2020-01-03 09:16:52 +0100 | [diff] [blame] | 2416 | const struct snd_kcontrol_new *dig_mix; |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2417 | int idx = 0; |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2418 | int val = 0; |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2419 | const int spdif_index = 16; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2420 | struct hda_spdif_out *spdif; |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2421 | struct hda_bus *bus = codec->bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2423 | if (bus->primary_dig_out_type == HDA_PCM_TYPE_HDMI && |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2424 | type == HDA_PCM_TYPE_SPDIF) { |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2425 | idx = spdif_index; |
| 2426 | } else if (bus->primary_dig_out_type == HDA_PCM_TYPE_SPDIF && |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2427 | type == HDA_PCM_TYPE_HDMI) { |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2428 | /* suppose a single SPDIF device */ |
| 2429 | for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) { |
| 2430 | kctl = find_mixer_ctl(codec, dig_mix->name, 0, 0); |
| 2431 | if (!kctl) |
| 2432 | break; |
| 2433 | kctl->id.index = spdif_index; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2434 | } |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2435 | bus->primary_dig_out_type = HDA_PCM_TYPE_HDMI; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2436 | } |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2437 | if (!bus->primary_dig_out_type) |
| 2438 | bus->primary_dig_out_type = type; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2439 | |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2440 | idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", idx); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 2441 | if (idx < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 2442 | codec_err(codec, "too many IEC958 outputs\n"); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2443 | return -EBUSY; |
| 2444 | } |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2445 | spdif = snd_array_new(&codec->spdif_out); |
Mengdong Lin | 25336e8 | 2013-03-07 14:10:25 -0500 | [diff] [blame] | 2446 | if (!spdif) |
| 2447 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2448 | for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) { |
| 2449 | kctl = snd_ctl_new1(dig_mix, codec); |
Takashi Iwai | b91f080 | 2008-11-04 08:43:08 +0100 | [diff] [blame] | 2450 | if (!kctl) |
| 2451 | return -ENOMEM; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2452 | kctl->id.index = idx; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2453 | kctl->private_value = codec->spdif_out.used - 1; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2454 | err = snd_hda_ctl_add(codec, associated_nid, kctl); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2455 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2456 | return err; |
| 2457 | } |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2458 | spdif->nid = cvt_nid; |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2459 | snd_hdac_regmap_read(&codec->core, cvt_nid, |
| 2460 | AC_VERB_GET_DIGI_CONVERT_1, &val); |
| 2461 | spdif->ctls = val; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2462 | spdif->status = convert_to_spdif_status(spdif->ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2463 | return 0; |
| 2464 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2465 | EXPORT_SYMBOL_GPL(snd_hda_create_dig_out_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2466 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2467 | /** |
| 2468 | * snd_hda_spdif_out_of_nid - get the hda_spdif_out entry from the given NID |
| 2469 | * @codec: the HDA codec |
| 2470 | * @nid: widget NID |
| 2471 | * |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2472 | * call within spdif_mutex lock |
| 2473 | */ |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2474 | struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec, |
| 2475 | hda_nid_t nid) |
| 2476 | { |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 2477 | struct hda_spdif_out *spdif; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2478 | int i; |
Takashi Iwai | a9c2dfc | 2018-04-23 17:24:56 +0200 | [diff] [blame] | 2479 | |
| 2480 | snd_array_for_each(&codec->spdif_out, i, spdif) { |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2481 | if (spdif->nid == nid) |
| 2482 | return spdif; |
| 2483 | } |
| 2484 | return NULL; |
| 2485 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2486 | EXPORT_SYMBOL_GPL(snd_hda_spdif_out_of_nid); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2487 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2488 | /** |
| 2489 | * snd_hda_spdif_ctls_unassign - Unassign the given SPDIF ctl |
| 2490 | * @codec: the HDA codec |
| 2491 | * @idx: the SPDIF ctl index |
| 2492 | * |
| 2493 | * Unassign the widget from the given SPDIF control. |
| 2494 | */ |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2495 | void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx) |
| 2496 | { |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2497 | struct hda_spdif_out *spdif; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2498 | |
Takashi Iwai | 0860506 | 2018-04-24 16:53:24 +0200 | [diff] [blame] | 2499 | if (WARN_ON(codec->spdif_out.used <= idx)) |
| 2500 | return; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2501 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2502 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2503 | spdif->nid = (u16)-1; |
| 2504 | mutex_unlock(&codec->spdif_mutex); |
| 2505 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2506 | EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_unassign); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2507 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2508 | /** |
| 2509 | * snd_hda_spdif_ctls_assign - Assign the SPDIF controls to the given NID |
| 2510 | * @codec: the HDA codec |
| 2511 | * @idx: the SPDIF ctl idx |
| 2512 | * @nid: widget NID |
| 2513 | * |
| 2514 | * Assign the widget to the SPDIF control with the given index. |
| 2515 | */ |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2516 | void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid) |
| 2517 | { |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2518 | struct hda_spdif_out *spdif; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2519 | unsigned short val; |
| 2520 | |
Takashi Iwai | 0860506 | 2018-04-24 16:53:24 +0200 | [diff] [blame] | 2521 | if (WARN_ON(codec->spdif_out.used <= idx)) |
| 2522 | return; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2523 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2524 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2525 | if (spdif->nid != nid) { |
| 2526 | spdif->nid = nid; |
| 2527 | val = spdif->ctls; |
| 2528 | set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff); |
| 2529 | } |
| 2530 | mutex_unlock(&codec->spdif_mutex); |
| 2531 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2532 | EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_assign); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 2533 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2534 | /* |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2535 | * SPDIF sharing with analog output |
| 2536 | */ |
| 2537 | static int spdif_share_sw_get(struct snd_kcontrol *kcontrol, |
| 2538 | struct snd_ctl_elem_value *ucontrol) |
| 2539 | { |
| 2540 | struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol); |
| 2541 | ucontrol->value.integer.value[0] = mout->share_spdif; |
| 2542 | return 0; |
| 2543 | } |
| 2544 | |
| 2545 | static int spdif_share_sw_put(struct snd_kcontrol *kcontrol, |
| 2546 | struct snd_ctl_elem_value *ucontrol) |
| 2547 | { |
| 2548 | struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol); |
| 2549 | mout->share_spdif = !!ucontrol->value.integer.value[0]; |
| 2550 | return 0; |
| 2551 | } |
| 2552 | |
Bhumika Goyal | f3b827e | 2017-02-20 00:18:09 +0530 | [diff] [blame] | 2553 | static const struct snd_kcontrol_new spdif_share_sw = { |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2554 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2555 | .name = "IEC958 Default PCM Playback Switch", |
| 2556 | .info = snd_ctl_boolean_mono_info, |
| 2557 | .get = spdif_share_sw_get, |
| 2558 | .put = spdif_share_sw_put, |
| 2559 | }; |
| 2560 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2561 | /** |
| 2562 | * snd_hda_create_spdif_share_sw - create Default PCM switch |
| 2563 | * @codec: the HDA codec |
| 2564 | * @mout: multi-out instance |
| 2565 | */ |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2566 | int snd_hda_create_spdif_share_sw(struct hda_codec *codec, |
| 2567 | struct hda_multi_out *mout) |
| 2568 | { |
Mengdong Lin | 4c7a548 | 2013-03-07 14:11:05 -0500 | [diff] [blame] | 2569 | struct snd_kcontrol *kctl; |
| 2570 | |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2571 | if (!mout->dig_out_nid) |
| 2572 | return 0; |
Mengdong Lin | 4c7a548 | 2013-03-07 14:11:05 -0500 | [diff] [blame] | 2573 | |
| 2574 | kctl = snd_ctl_new1(&spdif_share_sw, mout); |
| 2575 | if (!kctl) |
| 2576 | return -ENOMEM; |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2577 | /* ATTENTION: here mout is passed as private_data, instead of codec */ |
Mengdong Lin | 4c7a548 | 2013-03-07 14:11:05 -0500 | [diff] [blame] | 2578 | return snd_hda_ctl_add(codec, mout->dig_out_nid, kctl); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2579 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2580 | EXPORT_SYMBOL_GPL(snd_hda_create_spdif_share_sw); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2581 | |
| 2582 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2583 | * SPDIF input |
| 2584 | */ |
| 2585 | |
| 2586 | #define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info |
| 2587 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2588 | static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol, |
| 2589 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2590 | { |
| 2591 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2592 | |
| 2593 | ucontrol->value.integer.value[0] = codec->spdif_in_enable; |
| 2594 | return 0; |
| 2595 | } |
| 2596 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2597 | static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol, |
| 2598 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2599 | { |
| 2600 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2601 | hda_nid_t nid = kcontrol->private_value; |
| 2602 | unsigned int val = !!ucontrol->value.integer.value[0]; |
| 2603 | int change; |
| 2604 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2605 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2606 | change = codec->spdif_in_enable != val; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 2607 | if (change) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2608 | codec->spdif_in_enable = val; |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2609 | snd_hdac_regmap_write(&codec->core, nid, |
| 2610 | AC_VERB_SET_DIGI_CONVERT_1, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2611 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2612 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2613 | return change; |
| 2614 | } |
| 2615 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2616 | static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol, |
| 2617 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2618 | { |
| 2619 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2620 | hda_nid_t nid = kcontrol->private_value; |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2621 | unsigned int val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2622 | unsigned int sbits; |
| 2623 | |
Takashi Iwai | a551d91 | 2015-02-26 12:34:49 +0100 | [diff] [blame] | 2624 | snd_hdac_regmap_read(&codec->core, nid, |
| 2625 | AC_VERB_GET_DIGI_CONVERT_1, &val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2626 | sbits = convert_to_spdif_status(val); |
| 2627 | ucontrol->value.iec958.status[0] = sbits; |
| 2628 | ucontrol->value.iec958.status[1] = sbits >> 8; |
| 2629 | ucontrol->value.iec958.status[2] = sbits >> 16; |
| 2630 | ucontrol->value.iec958.status[3] = sbits >> 24; |
| 2631 | return 0; |
| 2632 | } |
| 2633 | |
Takashi Iwai | 35ace5e | 2020-01-03 09:16:52 +0100 | [diff] [blame] | 2634 | static const struct snd_kcontrol_new dig_in_ctls[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2635 | { |
| 2636 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2637 | .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2638 | .info = snd_hda_spdif_in_switch_info, |
| 2639 | .get = snd_hda_spdif_in_switch_get, |
| 2640 | .put = snd_hda_spdif_in_switch_put, |
| 2641 | }, |
| 2642 | { |
| 2643 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 2644 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2645 | .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2646 | .info = snd_hda_spdif_mask_info, |
| 2647 | .get = snd_hda_spdif_in_status_get, |
| 2648 | }, |
| 2649 | { } /* end */ |
| 2650 | }; |
| 2651 | |
| 2652 | /** |
| 2653 | * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls |
| 2654 | * @codec: the HDA codec |
| 2655 | * @nid: audio in widget NID |
| 2656 | * |
| 2657 | * Creates controls related with the SPDIF input. |
| 2658 | * Called from each patch supporting the SPDIF in. |
| 2659 | * |
| 2660 | * Returns 0 if successful, or a negative error code. |
| 2661 | */ |
Takashi Iwai | 12f288b | 2007-08-02 15:51:59 +0200 | [diff] [blame] | 2662 | int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2663 | { |
| 2664 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2665 | struct snd_kcontrol *kctl; |
Takashi Iwai | 35ace5e | 2020-01-03 09:16:52 +0100 | [diff] [blame] | 2666 | const struct snd_kcontrol_new *dig_mix; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2667 | int idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2668 | |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2669 | idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 2670 | if (idx < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 2671 | codec_err(codec, "too many IEC958 inputs\n"); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2672 | return -EBUSY; |
| 2673 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2674 | for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) { |
| 2675 | kctl = snd_ctl_new1(dig_mix, codec); |
Takashi Iwai | c8dcdf8 | 2009-02-06 16:21:20 +0100 | [diff] [blame] | 2676 | if (!kctl) |
| 2677 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2678 | kctl->private_value = nid; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2679 | err = snd_hda_ctl_add(codec, nid, kctl); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2680 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | return err; |
| 2682 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2683 | codec->spdif_in_enable = |
Andrew Paprocki | 3982d17 | 2007-12-19 12:13:44 +0100 | [diff] [blame] | 2684 | snd_hda_codec_read(codec, nid, 0, |
| 2685 | AC_VERB_GET_DIGI_CONVERT_1, 0) & |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2686 | AC_DIG1_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2687 | return 0; |
| 2688 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2689 | EXPORT_SYMBOL_GPL(snd_hda_create_spdif_in_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2690 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2691 | /** |
| 2692 | * snd_hda_codec_set_power_to_all - Set the power state to all widgets |
| 2693 | * @codec: the HDA codec |
| 2694 | * @fg: function group (not used now) |
| 2695 | * @power_state: the power state to set (AC_PWRST_*) |
| 2696 | * |
| 2697 | * Set the given power state to all widgets that have the power control. |
| 2698 | * If the codec has power_filter set, it evaluates the power state and |
| 2699 | * filter out if it's unchanged as D3. |
| 2700 | */ |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2701 | void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg, |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2702 | unsigned int power_state) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2703 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2704 | hda_nid_t nid; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2705 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2706 | for_each_hda_codec_node(nid, codec) { |
Takashi Iwai | 7eba5c9 | 2007-11-14 14:53:42 +0100 | [diff] [blame] | 2707 | unsigned int wcaps = get_wcaps(codec, nid); |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2708 | unsigned int state = power_state; |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2709 | if (!(wcaps & AC_WCAP_POWER)) |
| 2710 | continue; |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2711 | if (codec->power_filter) { |
| 2712 | state = codec->power_filter(codec, nid, power_state); |
| 2713 | if (state != power_state && power_state == AC_PWRST_D3) |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2714 | continue; |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 2715 | } |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2716 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE, |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2717 | state); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2718 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2719 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2720 | EXPORT_SYMBOL_GPL(snd_hda_codec_set_power_to_all); |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2721 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2722 | /** |
| 2723 | * snd_hda_codec_eapd_power_filter - A power filter callback for EAPD |
| 2724 | * @codec: the HDA codec |
| 2725 | * @nid: widget NID |
| 2726 | * @power_state: power state to evalue |
| 2727 | * |
| 2728 | * Don't power down the widget if it controls eapd and EAPD_BTLENABLE is set. |
| 2729 | * This can be used a codec power_filter callback. |
| 2730 | */ |
Takashi Iwai | ba615b8 | 2013-03-13 14:47:21 +0100 | [diff] [blame] | 2731 | unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec, |
| 2732 | hda_nid_t nid, |
| 2733 | unsigned int power_state) |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2734 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2735 | if (nid == codec->core.afg || nid == codec->core.mfg) |
Takashi Iwai | dfc6e46 | 2014-01-13 16:09:57 +0100 | [diff] [blame] | 2736 | return power_state; |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2737 | if (power_state == AC_PWRST_D3 && |
| 2738 | get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN && |
| 2739 | (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) { |
| 2740 | int eapd = snd_hda_codec_read(codec, nid, 0, |
| 2741 | AC_VERB_GET_EAPD_BTLENABLE, 0); |
| 2742 | if (eapd & 0x02) |
| 2743 | return AC_PWRST_D0; |
| 2744 | } |
| 2745 | return power_state; |
| 2746 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2747 | EXPORT_SYMBOL_GPL(snd_hda_codec_eapd_power_filter); |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2748 | |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 2749 | /* |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 2750 | * set power state of the codec, and return the power state |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2751 | */ |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 2752 | static unsigned int hda_set_power_state(struct hda_codec *codec, |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 2753 | unsigned int power_state) |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2754 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2755 | hda_nid_t fg = codec->core.afg ? codec->core.afg : codec->core.mfg; |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 2756 | int count; |
| 2757 | unsigned int state; |
Takashi Iwai | 63e51fd7 | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 2758 | int flags = 0; |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 2759 | |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2760 | /* this delay seems necessary to avoid click noise at power-down */ |
Wang Xingchao | 0f4ccbb | 2012-06-07 16:51:33 +0800 | [diff] [blame] | 2761 | if (power_state == AC_PWRST_D3) { |
Mengdong Lin | 7f13292 | 2013-11-29 01:48:45 -0500 | [diff] [blame] | 2762 | if (codec->depop_delay < 0) |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2763 | msleep(codec_has_epss(codec) ? 10 : 100); |
Mengdong Lin | 7f13292 | 2013-11-29 01:48:45 -0500 | [diff] [blame] | 2764 | else if (codec->depop_delay > 0) |
| 2765 | msleep(codec->depop_delay); |
Takashi Iwai | 63e51fd7 | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 2766 | flags = HDA_RW_NO_RESPONSE_FALLBACK; |
Wang Xingchao | 0f4ccbb | 2012-06-07 16:51:33 +0800 | [diff] [blame] | 2767 | } |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 2768 | |
| 2769 | /* repeat power states setting at most 10 times*/ |
| 2770 | for (count = 0; count < 10; count++) { |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 2771 | if (codec->patch_ops.set_power_state) |
| 2772 | codec->patch_ops.set_power_state(codec, fg, |
| 2773 | power_state); |
| 2774 | else { |
Takashi Iwai | dfc6e46 | 2014-01-13 16:09:57 +0100 | [diff] [blame] | 2775 | state = power_state; |
| 2776 | if (codec->power_filter) |
| 2777 | state = codec->power_filter(codec, fg, state); |
| 2778 | if (state == power_state || power_state != AC_PWRST_D3) |
| 2779 | snd_hda_codec_read(codec, fg, flags, |
| 2780 | AC_VERB_SET_POWER_STATE, |
| 2781 | state); |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 2782 | snd_hda_codec_set_power_to_all(codec, fg, power_state); |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 2783 | } |
Abhijeet Kumar | 3b5b899 | 2018-01-23 23:00:52 +0530 | [diff] [blame] | 2784 | state = snd_hda_sync_power_state(codec, fg, power_state); |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 2785 | if (!(state & AC_PWRST_ERROR)) |
| 2786 | break; |
| 2787 | } |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 2788 | |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 2789 | return state; |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 2790 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2791 | |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 2792 | /* sync power states of all widgets; |
| 2793 | * this is called at the end of codec parsing |
| 2794 | */ |
| 2795 | static void sync_power_up_states(struct hda_codec *codec) |
| 2796 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2797 | hda_nid_t nid; |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 2798 | |
Takashi Iwai | ba615b8 | 2013-03-13 14:47:21 +0100 | [diff] [blame] | 2799 | /* don't care if no filter is used */ |
| 2800 | if (!codec->power_filter) |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 2801 | return; |
| 2802 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2803 | for_each_hda_codec_node(nid, codec) { |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 2804 | unsigned int wcaps = get_wcaps(codec, nid); |
Takashi Iwai | 9040d10 | 2013-01-24 17:47:17 +0100 | [diff] [blame] | 2805 | unsigned int target; |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 2806 | if (!(wcaps & AC_WCAP_POWER)) |
| 2807 | continue; |
| 2808 | target = codec->power_filter(codec, nid, AC_PWRST_D0); |
| 2809 | if (target == AC_PWRST_D0) |
| 2810 | continue; |
Takashi Iwai | 9040d10 | 2013-01-24 17:47:17 +0100 | [diff] [blame] | 2811 | if (!snd_hda_check_power_state(codec, nid, target)) |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 2812 | snd_hda_codec_write(codec, nid, 0, |
| 2813 | AC_VERB_SET_POWER_STATE, target); |
| 2814 | } |
| 2815 | } |
| 2816 | |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 2817 | #ifdef CONFIG_SND_HDA_RECONFIG |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 2818 | /* execute additional init verbs */ |
| 2819 | static void hda_exec_init_verbs(struct hda_codec *codec) |
| 2820 | { |
| 2821 | if (codec->init_verbs.list) |
| 2822 | snd_hda_sequence_write(codec, codec->init_verbs.list); |
| 2823 | } |
| 2824 | #else |
| 2825 | static inline void hda_exec_init_verbs(struct hda_codec *codec) {} |
| 2826 | #endif |
| 2827 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 2828 | #ifdef CONFIG_PM |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 2829 | /* update the power on/off account with the current jiffies */ |
| 2830 | static void update_power_acct(struct hda_codec *codec, bool on) |
| 2831 | { |
| 2832 | unsigned long delta = jiffies - codec->power_jiffies; |
| 2833 | |
| 2834 | if (on) |
| 2835 | codec->power_on_acct += delta; |
| 2836 | else |
| 2837 | codec->power_off_acct += delta; |
| 2838 | codec->power_jiffies += delta; |
| 2839 | } |
| 2840 | |
| 2841 | void snd_hda_update_power_acct(struct hda_codec *codec) |
| 2842 | { |
| 2843 | update_power_acct(codec, hda_codec_is_power_on(codec)); |
| 2844 | } |
| 2845 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2846 | /* |
| 2847 | * call suspend and power-down; used both from PM and power-save |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 2848 | * this function returns the power state in the end |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2849 | */ |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 2850 | static unsigned int hda_call_codec_suspend(struct hda_codec *codec) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2851 | { |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 2852 | unsigned int state; |
| 2853 | |
Takashi Iwai | feb20fa | 2018-06-27 09:03:51 +0200 | [diff] [blame] | 2854 | snd_hdac_enter_pm(&codec->core); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2855 | if (codec->patch_ops.suspend) |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 2856 | codec->patch_ops.suspend(codec); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 2857 | hda_cleanup_all_streams(codec); |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 2858 | state = hda_set_power_state(codec, AC_PWRST_D3); |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 2859 | update_power_acct(codec, true); |
Takashi Iwai | feb20fa | 2018-06-27 09:03:51 +0200 | [diff] [blame] | 2860 | snd_hdac_leave_pm(&codec->core); |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 2861 | return state; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2862 | } |
| 2863 | |
| 2864 | /* |
| 2865 | * kick up codec; used both from PM and power-save |
| 2866 | */ |
| 2867 | static void hda_call_codec_resume(struct hda_codec *codec) |
| 2868 | { |
Takashi Iwai | feb20fa | 2018-06-27 09:03:51 +0200 | [diff] [blame] | 2869 | snd_hdac_enter_pm(&codec->core); |
Takashi Iwai | eeecd9d | 2015-02-25 15:18:50 +0100 | [diff] [blame] | 2870 | if (codec->core.regmap) |
| 2871 | regcache_mark_dirty(codec->core.regmap); |
| 2872 | |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 2873 | codec->power_jiffies = jiffies; |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 2874 | |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 2875 | hda_set_power_state(codec, AC_PWRST_D0); |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 2876 | restore_shutup_pins(codec); |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 2877 | hda_exec_init_verbs(codec); |
Takashi Iwai | 31614bb | 2013-01-23 15:58:40 +0100 | [diff] [blame] | 2878 | snd_hda_jack_set_dirty_all(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2879 | if (codec->patch_ops.resume) |
| 2880 | codec->patch_ops.resume(codec); |
| 2881 | else { |
Takashi Iwai | 9d99f31 | 2007-08-14 15:15:52 +0200 | [diff] [blame] | 2882 | if (codec->patch_ops.init) |
| 2883 | codec->patch_ops.init(codec); |
Takashi Iwai | 1a462be | 2020-01-09 10:01:04 +0100 | [diff] [blame] | 2884 | snd_hda_regmap_sync(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2885 | } |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 2886 | |
| 2887 | if (codec->jackpoll_interval) |
| 2888 | hda_jackpoll_work(&codec->jackpoll_work.work); |
Takashi Iwai | 31614bb | 2013-01-23 15:58:40 +0100 | [diff] [blame] | 2889 | else |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 2890 | snd_hda_jack_report_sync(codec); |
Takashi Iwai | 98081ca | 2019-01-29 14:03:33 +0100 | [diff] [blame] | 2891 | codec->core.dev.power.power_state = PMSG_ON; |
Takashi Iwai | feb20fa | 2018-06-27 09:03:51 +0200 | [diff] [blame] | 2892 | snd_hdac_leave_pm(&codec->core); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2893 | } |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 2894 | |
Kai-Heng Feng | 2b73649c | 2021-01-19 23:21:43 +0800 | [diff] [blame] | 2895 | static int hda_codec_runtime_suspend(struct device *dev) |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 2896 | { |
| 2897 | struct hda_codec *codec = dev_to_hda_codec(dev); |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 2898 | unsigned int state; |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 2899 | |
Ranjani Sridharan | 7fcd9bb | 2020-07-28 16:10:11 -0700 | [diff] [blame] | 2900 | /* Nothing to do if card registration fails and the component driver never probes */ |
| 2901 | if (!codec->card) |
| 2902 | return 0; |
| 2903 | |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 2904 | cancel_delayed_work_sync(&codec->jackpoll_work); |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 2905 | state = hda_call_codec_suspend(codec); |
Takashi Iwai | 57cb54e | 2018-06-21 13:33:53 +0200 | [diff] [blame] | 2906 | if (codec->link_down_at_suspend || |
| 2907 | (codec_has_clkstop(codec) && codec_has_epss(codec) && |
| 2908 | (state & AC_PWRST_CLK_STOP_OK))) |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2909 | snd_hdac_codec_link_down(&codec->core); |
Imre Deak | 3099406 | 2021-06-23 16:46:01 +0300 | [diff] [blame] | 2910 | snd_hda_codec_display_power(codec, false); |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 2911 | return 0; |
| 2912 | } |
| 2913 | |
Kai-Heng Feng | 2b73649c | 2021-01-19 23:21:43 +0800 | [diff] [blame] | 2914 | static int hda_codec_runtime_resume(struct device *dev) |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 2915 | { |
Takashi Iwai | 55ed9cd | 2015-02-19 17:35:32 +0100 | [diff] [blame] | 2916 | struct hda_codec *codec = dev_to_hda_codec(dev); |
| 2917 | |
Ranjani Sridharan | 7fcd9bb | 2020-07-28 16:10:11 -0700 | [diff] [blame] | 2918 | /* Nothing to do if card registration fails and the component driver never probes */ |
| 2919 | if (!codec->card) |
| 2920 | return 0; |
| 2921 | |
Imre Deak | 3099406 | 2021-06-23 16:46:01 +0300 | [diff] [blame] | 2922 | snd_hda_codec_display_power(codec, true); |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 2923 | snd_hdac_codec_link_up(&codec->core); |
Takashi Iwai | 55ed9cd | 2015-02-19 17:35:32 +0100 | [diff] [blame] | 2924 | hda_call_codec_resume(codec); |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 2925 | pm_runtime_mark_last_busy(dev); |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 2926 | return 0; |
| 2927 | } |
Kai-Heng Feng | 215a22e | 2020-10-27 21:00:36 +0800 | [diff] [blame] | 2928 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 2929 | #endif /* CONFIG_PM */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2930 | |
Takashi Iwai | 98081ca | 2019-01-29 14:03:33 +0100 | [diff] [blame] | 2931 | #ifdef CONFIG_PM_SLEEP |
Kai-Heng Feng | 215a22e | 2020-10-27 21:00:36 +0800 | [diff] [blame] | 2932 | static int hda_codec_pm_prepare(struct device *dev) |
| 2933 | { |
Hui Wang | b8b90c1 | 2021-06-02 22:54:24 +0800 | [diff] [blame] | 2934 | dev->power.power_state = PMSG_SUSPEND; |
Kai-Heng Feng | 215a22e | 2020-10-27 21:00:36 +0800 | [diff] [blame] | 2935 | return pm_runtime_suspended(dev); |
| 2936 | } |
| 2937 | |
| 2938 | static void hda_codec_pm_complete(struct device *dev) |
Hui Wang | b5a236c | 2019-03-19 09:28:44 +0800 | [diff] [blame] | 2939 | { |
Takashi Iwai | 4914da2 | 2019-07-16 08:56:51 +0200 | [diff] [blame] | 2940 | struct hda_codec *codec = dev_to_hda_codec(dev); |
Hui Wang | b5a236c | 2019-03-19 09:28:44 +0800 | [diff] [blame] | 2941 | |
Hui Wang | b8b90c1 | 2021-06-02 22:54:24 +0800 | [diff] [blame] | 2942 | /* If no other pm-functions are called between prepare() and complete() */ |
| 2943 | if (dev->power.power_state.event == PM_EVENT_SUSPEND) |
| 2944 | dev->power.power_state = PMSG_RESUME; |
| 2945 | |
Kai-Heng Feng | 215a22e | 2020-10-27 21:00:36 +0800 | [diff] [blame] | 2946 | if (pm_runtime_suspended(dev) && (codec->jackpoll_interval || |
| 2947 | hda_codec_need_resume(codec) || codec->forced_resume)) |
| 2948 | pm_request_resume(dev); |
Hui Wang | b5a236c | 2019-03-19 09:28:44 +0800 | [diff] [blame] | 2949 | } |
| 2950 | |
Takashi Iwai | 98081ca | 2019-01-29 14:03:33 +0100 | [diff] [blame] | 2951 | static int hda_codec_pm_suspend(struct device *dev) |
| 2952 | { |
| 2953 | dev->power.power_state = PMSG_SUSPEND; |
Kai-Heng Feng | 2b73649c | 2021-01-19 23:21:43 +0800 | [diff] [blame] | 2954 | return pm_runtime_force_suspend(dev); |
Takashi Iwai | 98081ca | 2019-01-29 14:03:33 +0100 | [diff] [blame] | 2955 | } |
| 2956 | |
| 2957 | static int hda_codec_pm_resume(struct device *dev) |
| 2958 | { |
| 2959 | dev->power.power_state = PMSG_RESUME; |
Kai-Heng Feng | 2b73649c | 2021-01-19 23:21:43 +0800 | [diff] [blame] | 2960 | return pm_runtime_force_resume(dev); |
Takashi Iwai | 98081ca | 2019-01-29 14:03:33 +0100 | [diff] [blame] | 2961 | } |
| 2962 | |
| 2963 | static int hda_codec_pm_freeze(struct device *dev) |
| 2964 | { |
| 2965 | dev->power.power_state = PMSG_FREEZE; |
Kai-Heng Feng | 2b73649c | 2021-01-19 23:21:43 +0800 | [diff] [blame] | 2966 | return pm_runtime_force_suspend(dev); |
Takashi Iwai | 98081ca | 2019-01-29 14:03:33 +0100 | [diff] [blame] | 2967 | } |
| 2968 | |
| 2969 | static int hda_codec_pm_thaw(struct device *dev) |
| 2970 | { |
| 2971 | dev->power.power_state = PMSG_THAW; |
Kai-Heng Feng | 2b73649c | 2021-01-19 23:21:43 +0800 | [diff] [blame] | 2972 | return pm_runtime_force_resume(dev); |
Takashi Iwai | 98081ca | 2019-01-29 14:03:33 +0100 | [diff] [blame] | 2973 | } |
| 2974 | |
| 2975 | static int hda_codec_pm_restore(struct device *dev) |
| 2976 | { |
| 2977 | dev->power.power_state = PMSG_RESTORE; |
Kai-Heng Feng | 2b73649c | 2021-01-19 23:21:43 +0800 | [diff] [blame] | 2978 | return pm_runtime_force_resume(dev); |
Takashi Iwai | 98081ca | 2019-01-29 14:03:33 +0100 | [diff] [blame] | 2979 | } |
| 2980 | #endif /* CONFIG_PM_SLEEP */ |
| 2981 | |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 2982 | /* referred in hda_bind.c */ |
| 2983 | const struct dev_pm_ops hda_codec_driver_pm = { |
Takashi Iwai | 98081ca | 2019-01-29 14:03:33 +0100 | [diff] [blame] | 2984 | #ifdef CONFIG_PM_SLEEP |
Kai-Heng Feng | 215a22e | 2020-10-27 21:00:36 +0800 | [diff] [blame] | 2985 | .prepare = hda_codec_pm_prepare, |
| 2986 | .complete = hda_codec_pm_complete, |
Takashi Iwai | 98081ca | 2019-01-29 14:03:33 +0100 | [diff] [blame] | 2987 | .suspend = hda_codec_pm_suspend, |
| 2988 | .resume = hda_codec_pm_resume, |
| 2989 | .freeze = hda_codec_pm_freeze, |
| 2990 | .thaw = hda_codec_pm_thaw, |
| 2991 | .poweroff = hda_codec_pm_suspend, |
| 2992 | .restore = hda_codec_pm_restore, |
| 2993 | #endif /* CONFIG_PM_SLEEP */ |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 2994 | SET_RUNTIME_PM_OPS(hda_codec_runtime_suspend, hda_codec_runtime_resume, |
| 2995 | NULL) |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 2996 | }; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2997 | |
Takashi Iwai | b98444e | 2021-08-13 10:12:29 +0200 | [diff] [blame] | 2998 | /* suspend the codec at shutdown; called from driver's shutdown callback */ |
| 2999 | void snd_hda_codec_shutdown(struct hda_codec *codec) |
| 3000 | { |
| 3001 | struct hda_pcm *cpcm; |
| 3002 | |
Peter Ujfalusi | 1c7f0e3 | 2022-02-01 13:21:44 +0200 | [diff] [blame] | 3003 | /* Skip the shutdown if codec is not registered */ |
| 3004 | if (!codec->registered) |
| 3005 | return; |
| 3006 | |
Takashi Iwai | b98444e | 2021-08-13 10:12:29 +0200 | [diff] [blame] | 3007 | list_for_each_entry(cpcm, &codec->pcm_list_head, list) |
| 3008 | snd_pcm_suspend_all(cpcm->pcm); |
| 3009 | |
Takashi Iwai | 2eaf163 | 2021-08-26 17:47:52 +0200 | [diff] [blame] | 3010 | pm_runtime_force_suspend(hda_codec_dev(codec)); |
| 3011 | pm_runtime_disable(hda_codec_dev(codec)); |
Takashi Iwai | b98444e | 2021-08-13 10:12:29 +0200 | [diff] [blame] | 3012 | } |
| 3013 | |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3014 | /* |
| 3015 | * add standard channel maps if not specified |
| 3016 | */ |
| 3017 | static int add_std_chmaps(struct hda_codec *codec) |
| 3018 | { |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3019 | struct hda_pcm *pcm; |
| 3020 | int str, err; |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3021 | |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3022 | list_for_each_entry(pcm, &codec->pcm_list_head, list) { |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3023 | for (str = 0; str < 2; str++) { |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3024 | struct hda_pcm_stream *hinfo = &pcm->stream[str]; |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3025 | struct snd_pcm_chmap *chmap; |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 3026 | const struct snd_pcm_chmap_elem *elem; |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3027 | |
Takashi Iwai | b25cf30 | 2015-08-26 14:21:14 +0200 | [diff] [blame] | 3028 | if (!pcm->pcm || pcm->own_chmap || !hinfo->substreams) |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3029 | continue; |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 3030 | elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps; |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3031 | err = snd_pcm_add_chmap_ctls(pcm->pcm, str, elem, |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3032 | hinfo->channels_max, |
| 3033 | 0, &chmap); |
| 3034 | if (err < 0) |
| 3035 | return err; |
| 3036 | chmap->channel_mask = SND_PCM_CHMAP_MASK_2468; |
| 3037 | } |
| 3038 | } |
| 3039 | return 0; |
| 3040 | } |
| 3041 | |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 3042 | /* default channel maps for 2.1 speakers; |
| 3043 | * since HD-audio supports only stereo, odd number channels are omitted |
| 3044 | */ |
| 3045 | const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = { |
| 3046 | { .channels = 2, |
| 3047 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } }, |
| 3048 | { .channels = 4, |
| 3049 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR, |
| 3050 | SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } }, |
| 3051 | { } |
| 3052 | }; |
| 3053 | EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps); |
| 3054 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3055 | int snd_hda_codec_build_controls(struct hda_codec *codec) |
| 3056 | { |
| 3057 | int err = 0; |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 3058 | hda_exec_init_verbs(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3059 | /* continue to initialize... */ |
| 3060 | if (codec->patch_ops.init) |
| 3061 | err = codec->patch_ops.init(codec); |
| 3062 | if (!err && codec->patch_ops.build_controls) |
| 3063 | err = codec->patch_ops.build_controls(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3064 | if (err < 0) |
| 3065 | return err; |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 3066 | |
| 3067 | /* we create chmaps here instead of build_pcms */ |
| 3068 | err = add_std_chmaps(codec); |
| 3069 | if (err < 0) |
| 3070 | return err; |
| 3071 | |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 3072 | if (codec->jackpoll_interval) |
| 3073 | hda_jackpoll_work(&codec->jackpoll_work.work); |
| 3074 | else |
| 3075 | snd_hda_jack_report_sync(codec); /* call at the last init point */ |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3076 | sync_power_up_states(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3077 | return 0; |
| 3078 | } |
Rakesh Ughreja | 24494d3 | 2018-06-01 22:53:56 -0500 | [diff] [blame] | 3079 | EXPORT_SYMBOL_GPL(snd_hda_codec_build_controls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3080 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3081 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3082 | * PCM stuff |
| 3083 | */ |
| 3084 | static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo, |
| 3085 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3086 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3087 | { |
| 3088 | return 0; |
| 3089 | } |
| 3090 | |
| 3091 | static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo, |
| 3092 | struct hda_codec *codec, |
| 3093 | unsigned int stream_tag, |
| 3094 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3095 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3096 | { |
| 3097 | snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format); |
| 3098 | return 0; |
| 3099 | } |
| 3100 | |
| 3101 | static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo, |
| 3102 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3103 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3104 | { |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 3105 | snd_hda_codec_cleanup_stream(codec, hinfo->nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3106 | return 0; |
| 3107 | } |
| 3108 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3109 | static int set_pcm_default_values(struct hda_codec *codec, |
| 3110 | struct hda_pcm_stream *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3111 | { |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3112 | int err; |
| 3113 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3114 | /* query support PCM information from the given NID */ |
| 3115 | if (info->nid && (!info->rates || !info->formats)) { |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3116 | err = snd_hda_query_supported_pcm(codec, info->nid, |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3117 | info->rates ? NULL : &info->rates, |
| 3118 | info->formats ? NULL : &info->formats, |
| 3119 | info->maxbps ? NULL : &info->maxbps); |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3120 | if (err < 0) |
| 3121 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3122 | } |
| 3123 | if (info->ops.open == NULL) |
| 3124 | info->ops.open = hda_pcm_default_open_close; |
| 3125 | if (info->ops.close == NULL) |
| 3126 | info->ops.close = hda_pcm_default_open_close; |
| 3127 | if (info->ops.prepare == NULL) { |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 3128 | if (snd_BUG_ON(!info->nid)) |
| 3129 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3130 | info->ops.prepare = hda_pcm_default_prepare; |
| 3131 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3132 | if (info->ops.cleanup == NULL) { |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 3133 | if (snd_BUG_ON(!info->nid)) |
| 3134 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3135 | info->ops.cleanup = hda_pcm_default_cleanup; |
| 3136 | } |
| 3137 | return 0; |
| 3138 | } |
| 3139 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3140 | /* |
| 3141 | * codec prepare/cleanup entries |
| 3142 | */ |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 3143 | /** |
| 3144 | * snd_hda_codec_prepare - Prepare a stream |
| 3145 | * @codec: the HDA codec |
| 3146 | * @hinfo: PCM information |
| 3147 | * @stream: stream tag to assign |
| 3148 | * @format: format id to assign |
| 3149 | * @substream: PCM substream to assign |
| 3150 | * |
| 3151 | * Calls the prepare callback set by the codec with the given arguments. |
| 3152 | * Clean up the inactive streams when successful. |
| 3153 | */ |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3154 | int snd_hda_codec_prepare(struct hda_codec *codec, |
| 3155 | struct hda_pcm_stream *hinfo, |
| 3156 | unsigned int stream, |
| 3157 | unsigned int format, |
| 3158 | struct snd_pcm_substream *substream) |
| 3159 | { |
| 3160 | int ret; |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 3161 | mutex_lock(&codec->bus->prepare_mutex); |
Takashi Iwai | 61ca410 | 2015-02-27 17:57:55 +0100 | [diff] [blame] | 3162 | if (hinfo->ops.prepare) |
| 3163 | ret = hinfo->ops.prepare(hinfo, codec, stream, format, |
| 3164 | substream); |
| 3165 | else |
| 3166 | ret = -ENODEV; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3167 | if (ret >= 0) |
| 3168 | purify_inactive_streams(codec); |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 3169 | mutex_unlock(&codec->bus->prepare_mutex); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3170 | return ret; |
| 3171 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3172 | EXPORT_SYMBOL_GPL(snd_hda_codec_prepare); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3173 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 3174 | /** |
Kai Vehmanen | 95ce82a | 2020-07-15 20:45:51 +0300 | [diff] [blame] | 3175 | * snd_hda_codec_cleanup - Clean up stream resources |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 3176 | * @codec: the HDA codec |
| 3177 | * @hinfo: PCM information |
| 3178 | * @substream: PCM substream |
| 3179 | * |
| 3180 | * Calls the cleanup callback set by the codec with the given arguments. |
| 3181 | */ |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3182 | void snd_hda_codec_cleanup(struct hda_codec *codec, |
| 3183 | struct hda_pcm_stream *hinfo, |
| 3184 | struct snd_pcm_substream *substream) |
| 3185 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 3186 | mutex_lock(&codec->bus->prepare_mutex); |
Takashi Iwai | 61ca410 | 2015-02-27 17:57:55 +0100 | [diff] [blame] | 3187 | if (hinfo->ops.cleanup) |
| 3188 | hinfo->ops.cleanup(hinfo, codec, substream); |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 3189 | mutex_unlock(&codec->bus->prepare_mutex); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3190 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3191 | EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3192 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3193 | /* global */ |
Jaroslav Kysela | e330323 | 2009-11-10 14:53:02 +0100 | [diff] [blame] | 3194 | const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = { |
| 3195 | "Audio", "SPDIF", "HDMI", "Modem" |
| 3196 | }; |
| 3197 | |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3198 | /* |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3199 | * get the empty PCM device number to assign |
| 3200 | */ |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3201 | static int get_empty_pcm_device(struct hda_bus *bus, unsigned int type) |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3202 | { |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3203 | /* audio device indices; not linear to keep compatibility */ |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3204 | /* assigned to static slots up to dev#10; if more needed, assign |
| 3205 | * the later slot dynamically (when CONFIG_SND_DYNAMIC_MINORS=y) |
| 3206 | */ |
Takashi Iwai | bf82326 | 2020-01-05 15:47:24 +0100 | [diff] [blame] | 3207 | static const int audio_idx[HDA_PCM_NTYPES][5] = { |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3208 | [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 }, |
| 3209 | [HDA_PCM_TYPE_SPDIF] = { 1, -1 }, |
Wu Fengguang | 92608ba | 2009-10-30 11:40:03 +0100 | [diff] [blame] | 3210 | [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 }, |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3211 | [HDA_PCM_TYPE_MODEM] = { 6, -1 }, |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3212 | }; |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3213 | int i; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3214 | |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3215 | if (type >= HDA_PCM_NTYPES) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 3216 | dev_err(bus->card->dev, "Invalid PCM type %d\n", type); |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3217 | return -EINVAL; |
| 3218 | } |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3219 | |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3220 | for (i = 0; audio_idx[type][i] >= 0; i++) { |
| 3221 | #ifndef CONFIG_SND_DYNAMIC_MINORS |
| 3222 | if (audio_idx[type][i] >= 8) |
| 3223 | break; |
| 3224 | #endif |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3225 | if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits)) |
| 3226 | return audio_idx[type][i]; |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3227 | } |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3228 | |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3229 | #ifdef CONFIG_SND_DYNAMIC_MINORS |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 3230 | /* non-fixed slots starting from 10 */ |
| 3231 | for (i = 10; i < 32; i++) { |
| 3232 | if (!test_and_set_bit(i, bus->pcm_dev_bits)) |
| 3233 | return i; |
| 3234 | } |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3235 | #endif |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 3236 | |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 3237 | dev_warn(bus->card->dev, "Too many %s devices\n", |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3238 | snd_hda_pcm_type_name[type]); |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3239 | #ifndef CONFIG_SND_DYNAMIC_MINORS |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 3240 | dev_warn(bus->card->dev, |
| 3241 | "Consider building the kernel with CONFIG_SND_DYNAMIC_MINORS=y\n"); |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 3242 | #endif |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 3243 | return -EAGAIN; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3244 | } |
| 3245 | |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3246 | /* call build_pcms ops of the given codec and set up the default parameters */ |
| 3247 | int snd_hda_codec_parse_pcms(struct hda_codec *codec) |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3248 | { |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3249 | struct hda_pcm *cpcm; |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3250 | int err; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3251 | |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3252 | if (!list_empty(&codec->pcm_list_head)) |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3253 | return 0; /* already parsed */ |
| 3254 | |
| 3255 | if (!codec->patch_ops.build_pcms) |
| 3256 | return 0; |
| 3257 | |
| 3258 | err = codec->patch_ops.build_pcms(codec); |
| 3259 | if (err < 0) { |
| 3260 | codec_err(codec, "cannot build PCMs for #%d (error %d)\n", |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 3261 | codec->core.addr, err); |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3262 | return err; |
| 3263 | } |
| 3264 | |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3265 | list_for_each_entry(cpcm, &codec->pcm_list_head, list) { |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3266 | int stream; |
| 3267 | |
| 3268 | for (stream = 0; stream < 2; stream++) { |
| 3269 | struct hda_pcm_stream *info = &cpcm->stream[stream]; |
| 3270 | |
| 3271 | if (!info->substreams) |
| 3272 | continue; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3273 | err = set_pcm_default_values(codec, info); |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3274 | if (err < 0) { |
| 3275 | codec_warn(codec, |
| 3276 | "fail to setup default for PCM %s\n", |
| 3277 | cpcm->name); |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3278 | return err; |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3279 | } |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3280 | } |
| 3281 | } |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3282 | |
| 3283 | return 0; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3284 | } |
Rakesh Ughreja | 24494d3 | 2018-06-01 22:53:56 -0500 | [diff] [blame] | 3285 | EXPORT_SYMBOL_GPL(snd_hda_codec_parse_pcms); |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3286 | |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3287 | /* assign all PCMs of the given codec */ |
| 3288 | int snd_hda_codec_build_pcms(struct hda_codec *codec) |
| 3289 | { |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3290 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3291 | struct hda_pcm *cpcm; |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3292 | int dev, err; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3293 | |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3294 | err = snd_hda_codec_parse_pcms(codec); |
Takashi Iwai | d289619 | 2015-10-20 16:23:55 +0200 | [diff] [blame] | 3295 | if (err < 0) |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3296 | return err; |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3297 | |
| 3298 | /* attach a new PCM streams */ |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame] | 3299 | list_for_each_entry(cpcm, &codec->pcm_list_head, list) { |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3300 | if (cpcm->pcm) |
| 3301 | continue; /* already attached */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3302 | if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams) |
Takashi Iwai | 41b5b01 | 2009-01-20 18:21:23 +0100 | [diff] [blame] | 3303 | continue; /* no substreams assigned */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3304 | |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3305 | dev = get_empty_pcm_device(bus, cpcm->pcm_type); |
Wang YanQing | 1f7f51a | 2017-09-03 21:18:49 +0800 | [diff] [blame] | 3306 | if (dev < 0) { |
| 3307 | cpcm->device = SNDRV_PCM_INVALID_DEVICE; |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3308 | continue; /* no fatal error */ |
Wang YanQing | 1f7f51a | 2017-09-03 21:18:49 +0800 | [diff] [blame] | 3309 | } |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3310 | cpcm->device = dev; |
Takashi Iwai | 0a50575 | 2015-04-16 23:25:02 +0200 | [diff] [blame] | 3311 | err = snd_hda_attach_pcm_stream(bus, codec, cpcm); |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3312 | if (err < 0) { |
| 3313 | codec_err(codec, |
| 3314 | "cannot attach PCM stream %d for codec #%d\n", |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 3315 | dev, codec->core.addr); |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3316 | continue; /* no fatal error */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3317 | } |
| 3318 | } |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 3319 | |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 3320 | return 0; |
| 3321 | } |
| 3322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3323 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3324 | * snd_hda_add_new_ctls - create controls from the array |
| 3325 | * @codec: the HDA codec |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3326 | * @knew: the array of struct snd_kcontrol_new |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3327 | * |
| 3328 | * This helper function creates and add new controls in the given array. |
| 3329 | * The array must be terminated with an empty entry as terminator. |
| 3330 | * |
| 3331 | * Returns 0 if successful, or a negative error code. |
| 3332 | */ |
Takashi Iwai | 031024e | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 3333 | int snd_hda_add_new_ctls(struct hda_codec *codec, |
| 3334 | const struct snd_kcontrol_new *knew) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3335 | { |
Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 3336 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3337 | |
| 3338 | for (; knew->name; knew++) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3339 | struct snd_kcontrol *kctl; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3340 | int addr = 0, idx = 0; |
Takashi Iwai | ebd836e | 2018-07-25 23:00:51 +0200 | [diff] [blame] | 3341 | if (knew->iface == (__force snd_ctl_elem_iface_t)-1) |
| 3342 | continue; /* skip this codec private value */ |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3343 | for (;;) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3344 | kctl = snd_ctl_new1(knew, codec); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3345 | if (!kctl) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3346 | return -ENOMEM; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3347 | if (addr > 0) |
| 3348 | kctl->id.device = addr; |
| 3349 | if (idx > 0) |
| 3350 | kctl->id.index = idx; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 3351 | err = snd_hda_ctl_add(codec, 0, kctl); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3352 | if (!err) |
| 3353 | break; |
| 3354 | /* try first with another device index corresponding to |
| 3355 | * the codec addr; if it still fails (or it's the |
| 3356 | * primary codec), then try another control index |
| 3357 | */ |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 3358 | if (!addr && codec->core.addr) |
| 3359 | addr = codec->core.addr; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3360 | else if (!idx && !knew->index) { |
| 3361 | idx = find_empty_mixer_ctl_idx(codec, |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 3362 | knew->name, 0); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3363 | if (idx <= 0) |
| 3364 | return err; |
| 3365 | } else |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3366 | return err; |
| 3367 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3368 | } |
| 3369 | return 0; |
| 3370 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3371 | EXPORT_SYMBOL_GPL(snd_hda_add_new_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3372 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 3373 | #ifdef CONFIG_PM |
Takashi Iwai | bb57392 | 2015-02-20 09:26:04 +0100 | [diff] [blame] | 3374 | static void codec_set_power_save(struct hda_codec *codec, int delay) |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3375 | { |
| 3376 | struct device *dev = hda_codec_dev(codec); |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3377 | |
Lu, Han | 2377c3c | 2015-06-09 16:50:38 +0800 | [diff] [blame] | 3378 | if (delay == 0 && codec->auto_runtime_pm) |
| 3379 | delay = 3000; |
| 3380 | |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 3381 | if (delay > 0) { |
| 3382 | pm_runtime_set_autosuspend_delay(dev, delay); |
| 3383 | pm_runtime_use_autosuspend(dev); |
| 3384 | pm_runtime_allow(dev); |
| 3385 | if (!pm_runtime_suspended(dev)) |
| 3386 | pm_runtime_mark_last_busy(dev); |
| 3387 | } else { |
| 3388 | pm_runtime_dont_use_autosuspend(dev); |
| 3389 | pm_runtime_forbid(dev); |
| 3390 | } |
| 3391 | } |
Takashi Iwai | bb57392 | 2015-02-20 09:26:04 +0100 | [diff] [blame] | 3392 | |
| 3393 | /** |
| 3394 | * snd_hda_set_power_save - reprogram autosuspend for the given delay |
| 3395 | * @bus: HD-audio bus |
| 3396 | * @delay: autosuspend delay in msec, 0 = off |
| 3397 | * |
| 3398 | * Synchronize the runtime PM autosuspend state from the power_save option. |
| 3399 | */ |
| 3400 | void snd_hda_set_power_save(struct hda_bus *bus, int delay) |
| 3401 | { |
| 3402 | struct hda_codec *c; |
| 3403 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 3404 | list_for_each_codec(c, bus) |
Takashi Iwai | bb57392 | 2015-02-20 09:26:04 +0100 | [diff] [blame] | 3405 | codec_set_power_save(c, delay); |
| 3406 | } |
| 3407 | EXPORT_SYMBOL_GPL(snd_hda_set_power_save); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3408 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3409 | /** |
| 3410 | * snd_hda_check_amp_list_power - Check the amp list and update the power |
| 3411 | * @codec: HD-audio codec |
| 3412 | * @check: the object containing an AMP list and the status |
| 3413 | * @nid: NID to check / update |
| 3414 | * |
| 3415 | * Check whether the given NID is in the amp list. If it's in the list, |
Randy Dunlap | c7fabbc | 2020-08-05 19:19:26 -0700 | [diff] [blame] | 3416 | * check the current AMP status, and update the power-status according |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3417 | * to the mute status. |
| 3418 | * |
| 3419 | * This function is supposed to be set or called from the check_power_status |
| 3420 | * patch ops. |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3421 | */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3422 | int snd_hda_check_amp_list_power(struct hda_codec *codec, |
| 3423 | struct hda_loopback_check *check, |
| 3424 | hda_nid_t nid) |
| 3425 | { |
Takashi Iwai | 031024e | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 3426 | const struct hda_amp_list *p; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3427 | int ch, v; |
| 3428 | |
| 3429 | if (!check->amplist) |
| 3430 | return 0; |
| 3431 | for (p = check->amplist; p->nid; p++) { |
| 3432 | if (p->nid == nid) |
| 3433 | break; |
| 3434 | } |
| 3435 | if (!p->nid) |
| 3436 | return 0; /* nothing changed */ |
| 3437 | |
| 3438 | for (p = check->amplist; p->nid; p++) { |
| 3439 | for (ch = 0; ch < 2; ch++) { |
| 3440 | v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir, |
| 3441 | p->idx); |
| 3442 | if (!(v & HDA_AMP_MUTE) && v > 0) { |
| 3443 | if (!check->power_on) { |
| 3444 | check->power_on = 1; |
Takashi Iwai | 664c715 | 2015-04-08 11:43:14 +0200 | [diff] [blame] | 3445 | snd_hda_power_up_pm(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3446 | } |
| 3447 | return 1; |
| 3448 | } |
| 3449 | } |
| 3450 | } |
| 3451 | if (check->power_on) { |
| 3452 | check->power_on = 0; |
Takashi Iwai | 664c715 | 2015-04-08 11:43:14 +0200 | [diff] [blame] | 3453 | snd_hda_power_down_pm(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3454 | } |
| 3455 | return 0; |
| 3456 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3457 | EXPORT_SYMBOL_GPL(snd_hda_check_amp_list_power); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3458 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3459 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3460 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3461 | * input MUX helper |
| 3462 | */ |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3463 | |
| 3464 | /** |
Pierre-Louis Bossart | 3531ba2 | 2021-03-01 11:46:17 -0600 | [diff] [blame] | 3465 | * snd_hda_input_mux_info - Info callback helper for the input-mux enum |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3466 | * @imux: imux helper object |
| 3467 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3468 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3469 | int snd_hda_input_mux_info(const struct hda_input_mux *imux, |
| 3470 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3471 | { |
| 3472 | unsigned int index; |
| 3473 | |
| 3474 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 3475 | uinfo->count = 1; |
| 3476 | uinfo->value.enumerated.items = imux->num_items; |
Takashi Iwai | 5513b0c | 2007-10-09 11:58:41 +0200 | [diff] [blame] | 3477 | if (!imux->num_items) |
| 3478 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3479 | index = uinfo->value.enumerated.item; |
| 3480 | if (index >= imux->num_items) |
| 3481 | index = imux->num_items - 1; |
| 3482 | strcpy(uinfo->value.enumerated.name, imux->items[index].label); |
| 3483 | return 0; |
| 3484 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3485 | EXPORT_SYMBOL_GPL(snd_hda_input_mux_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3486 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3487 | /** |
Pierre-Louis Bossart | 3531ba2 | 2021-03-01 11:46:17 -0600 | [diff] [blame] | 3488 | * snd_hda_input_mux_put - Put callback helper for the input-mux enum |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3489 | * @codec: the HDA codec |
| 3490 | * @imux: imux helper object |
| 3491 | * @ucontrol: pointer to get/store the data |
| 3492 | * @nid: input mux NID |
| 3493 | * @cur_val: pointer to get/store the current imux value |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3494 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3495 | int snd_hda_input_mux_put(struct hda_codec *codec, |
| 3496 | const struct hda_input_mux *imux, |
| 3497 | struct snd_ctl_elem_value *ucontrol, |
| 3498 | hda_nid_t nid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3499 | unsigned int *cur_val) |
| 3500 | { |
| 3501 | unsigned int idx; |
| 3502 | |
Takashi Iwai | 5513b0c | 2007-10-09 11:58:41 +0200 | [diff] [blame] | 3503 | if (!imux->num_items) |
| 3504 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3505 | idx = ucontrol->value.enumerated.item[0]; |
| 3506 | if (idx >= imux->num_items) |
| 3507 | idx = imux->num_items - 1; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3508 | if (*cur_val == idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3509 | return 0; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3510 | snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, |
| 3511 | imux->items[idx].index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3512 | *cur_val = idx; |
| 3513 | return 1; |
| 3514 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3515 | EXPORT_SYMBOL_GPL(snd_hda_input_mux_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3516 | |
| 3517 | |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3518 | /** |
| 3519 | * snd_hda_enum_helper_info - Helper for simple enum ctls |
| 3520 | * @kcontrol: ctl element |
| 3521 | * @uinfo: pointer to get/store the data |
| 3522 | * @num_items: number of enum items |
| 3523 | * @texts: enum item string array |
| 3524 | * |
Takashi Iwai | dda415d | 2012-11-30 18:34:38 +0100 | [diff] [blame] | 3525 | * process kcontrol info callback of a simple string enum array |
| 3526 | * when @num_items is 0 or @texts is NULL, assume a boolean enum array |
| 3527 | */ |
| 3528 | int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol, |
| 3529 | struct snd_ctl_elem_info *uinfo, |
| 3530 | int num_items, const char * const *texts) |
| 3531 | { |
| 3532 | static const char * const texts_default[] = { |
| 3533 | "Disabled", "Enabled" |
| 3534 | }; |
| 3535 | |
| 3536 | if (!texts || !num_items) { |
| 3537 | num_items = 2; |
| 3538 | texts = texts_default; |
| 3539 | } |
| 3540 | |
Takashi Iwai | 3ff7221 | 2014-10-20 18:17:28 +0200 | [diff] [blame] | 3541 | return snd_ctl_enum_info(uinfo, 1, num_items, texts); |
Takashi Iwai | dda415d | 2012-11-30 18:34:38 +0100 | [diff] [blame] | 3542 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3543 | EXPORT_SYMBOL_GPL(snd_hda_enum_helper_info); |
Takashi Iwai | dda415d | 2012-11-30 18:34:38 +0100 | [diff] [blame] | 3544 | |
| 3545 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3546 | * Multi-channel / digital-out PCM helper functions |
| 3547 | */ |
| 3548 | |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 3549 | /* setup SPDIF output stream */ |
| 3550 | static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid, |
| 3551 | unsigned int stream_tag, unsigned int format) |
| 3552 | { |
Laurence Darby | 3bef1c3 | 2012-11-03 17:00:06 +0000 | [diff] [blame] | 3553 | struct hda_spdif_out *spdif; |
| 3554 | unsigned int curr_fmt; |
| 3555 | bool reset; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3556 | |
Laurence Darby | 3bef1c3 | 2012-11-03 17:00:06 +0000 | [diff] [blame] | 3557 | spdif = snd_hda_spdif_out_of_nid(codec, nid); |
Libin Yang | 960a581 | 2016-06-16 11:13:25 +0800 | [diff] [blame] | 3558 | /* Add sanity check to pass klockwork check. |
| 3559 | * This should never happen. |
| 3560 | */ |
| 3561 | if (WARN_ON(spdif == NULL)) |
| 3562 | return; |
| 3563 | |
Laurence Darby | 3bef1c3 | 2012-11-03 17:00:06 +0000 | [diff] [blame] | 3564 | curr_fmt = snd_hda_codec_read(codec, nid, 0, |
| 3565 | AC_VERB_GET_STREAM_FORMAT, 0); |
| 3566 | reset = codec->spdif_status_reset && |
| 3567 | (spdif->ctls & AC_DIG1_ENABLE) && |
| 3568 | curr_fmt != format; |
| 3569 | |
| 3570 | /* turn off SPDIF if needed; otherwise the IEC958 bits won't be |
| 3571 | updated */ |
| 3572 | if (reset) |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3573 | set_dig_out_convert(codec, nid, |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3574 | spdif->ctls & ~AC_DIG1_ENABLE & 0xff, |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3575 | -1); |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 3576 | snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format); |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 3577 | if (codec->follower_dig_outs) { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 3578 | const hda_nid_t *d; |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 3579 | for (d = codec->follower_dig_outs; *d; d++) |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3580 | snd_hda_codec_setup_stream(codec, *d, stream_tag, 0, |
| 3581 | format); |
Matthew Ranostay | de51ca1 | 2008-09-07 14:31:40 -0400 | [diff] [blame] | 3582 | } |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3583 | /* turn on again (if needed) */ |
Laurence Darby | 3bef1c3 | 2012-11-03 17:00:06 +0000 | [diff] [blame] | 3584 | if (reset) |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3585 | set_dig_out_convert(codec, nid, |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3586 | spdif->ctls & 0xff, -1); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3587 | } |
Matthew Ranostay | de51ca1 | 2008-09-07 14:31:40 -0400 | [diff] [blame] | 3588 | |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3589 | static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid) |
| 3590 | { |
| 3591 | snd_hda_codec_cleanup_stream(codec, nid); |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 3592 | if (codec->follower_dig_outs) { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 3593 | const hda_nid_t *d; |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 3594 | for (d = codec->follower_dig_outs; *d; d++) |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3595 | snd_hda_codec_cleanup_stream(codec, *d); |
| 3596 | } |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 3597 | } |
| 3598 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3599 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3600 | * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3601 | * @codec: the HDA codec |
| 3602 | * @mout: hda_multi_out object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3603 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3604 | int snd_hda_multi_out_dig_open(struct hda_codec *codec, |
| 3605 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3606 | { |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3607 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | 5930ca4 | 2007-04-16 11:23:56 +0200 | [diff] [blame] | 3608 | if (mout->dig_out_used == HDA_DIG_ANALOG_DUP) |
| 3609 | /* already opened as analog dup; reset it once */ |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3610 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3611 | mout->dig_out_used = HDA_DIG_EXCLUSIVE; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3612 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3613 | return 0; |
| 3614 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3615 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3616 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3617 | /** |
| 3618 | * snd_hda_multi_out_dig_prepare - prepare the digital out stream |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3619 | * @codec: the HDA codec |
| 3620 | * @mout: hda_multi_out object |
| 3621 | * @stream_tag: stream tag to assign |
| 3622 | * @format: format id to assign |
| 3623 | * @substream: PCM substream to assign |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3624 | */ |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 3625 | int snd_hda_multi_out_dig_prepare(struct hda_codec *codec, |
| 3626 | struct hda_multi_out *mout, |
| 3627 | unsigned int stream_tag, |
| 3628 | unsigned int format, |
| 3629 | struct snd_pcm_substream *substream) |
| 3630 | { |
| 3631 | mutex_lock(&codec->spdif_mutex); |
| 3632 | setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format); |
| 3633 | mutex_unlock(&codec->spdif_mutex); |
| 3634 | return 0; |
| 3635 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3636 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_prepare); |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 3637 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3638 | /** |
| 3639 | * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3640 | * @codec: the HDA codec |
| 3641 | * @mout: hda_multi_out object |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3642 | */ |
Takashi Iwai | 9411e21 | 2009-02-13 11:32:28 +0100 | [diff] [blame] | 3643 | int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec, |
| 3644 | struct hda_multi_out *mout) |
| 3645 | { |
| 3646 | mutex_lock(&codec->spdif_mutex); |
| 3647 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
| 3648 | mutex_unlock(&codec->spdif_mutex); |
| 3649 | return 0; |
| 3650 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3651 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_cleanup); |
Takashi Iwai | 9411e21 | 2009-02-13 11:32:28 +0100 | [diff] [blame] | 3652 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3653 | /** |
| 3654 | * snd_hda_multi_out_dig_close - release the digital out stream |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3655 | * @codec: the HDA codec |
| 3656 | * @mout: hda_multi_out object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3657 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3658 | int snd_hda_multi_out_dig_close(struct hda_codec *codec, |
| 3659 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3660 | { |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3661 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3662 | mout->dig_out_used = 0; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3663 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3664 | return 0; |
| 3665 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3666 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_close); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3667 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3668 | /** |
| 3669 | * snd_hda_multi_out_analog_open - open analog outputs |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3670 | * @codec: the HDA codec |
| 3671 | * @mout: hda_multi_out object |
| 3672 | * @substream: PCM substream to assign |
| 3673 | * @hinfo: PCM information to assign |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3674 | * |
| 3675 | * Open analog outputs and set up the hw-constraints. |
Takashi Iwai | 9ab0cb3 | 2020-07-17 17:45:17 +0200 | [diff] [blame] | 3676 | * If the digital outputs can be opened as follower, open the digital |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3677 | * outputs, too. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3678 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3679 | int snd_hda_multi_out_analog_open(struct hda_codec *codec, |
| 3680 | struct hda_multi_out *mout, |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3681 | struct snd_pcm_substream *substream, |
| 3682 | struct hda_pcm_stream *hinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3683 | { |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3684 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 3685 | runtime->hw.channels_max = mout->max_channels; |
| 3686 | if (mout->dig_out_nid) { |
| 3687 | if (!mout->analog_rates) { |
| 3688 | mout->analog_rates = hinfo->rates; |
| 3689 | mout->analog_formats = hinfo->formats; |
| 3690 | mout->analog_maxbps = hinfo->maxbps; |
| 3691 | } else { |
| 3692 | runtime->hw.rates = mout->analog_rates; |
| 3693 | runtime->hw.formats = mout->analog_formats; |
| 3694 | hinfo->maxbps = mout->analog_maxbps; |
| 3695 | } |
| 3696 | if (!mout->spdif_rates) { |
| 3697 | snd_hda_query_supported_pcm(codec, mout->dig_out_nid, |
| 3698 | &mout->spdif_rates, |
| 3699 | &mout->spdif_formats, |
| 3700 | &mout->spdif_maxbps); |
| 3701 | } |
| 3702 | mutex_lock(&codec->spdif_mutex); |
| 3703 | if (mout->share_spdif) { |
Takashi Iwai | 022b466 | 2009-07-03 23:03:30 +0200 | [diff] [blame] | 3704 | if ((runtime->hw.rates & mout->spdif_rates) && |
| 3705 | (runtime->hw.formats & mout->spdif_formats)) { |
| 3706 | runtime->hw.rates &= mout->spdif_rates; |
| 3707 | runtime->hw.formats &= mout->spdif_formats; |
| 3708 | if (mout->spdif_maxbps < hinfo->maxbps) |
| 3709 | hinfo->maxbps = mout->spdif_maxbps; |
| 3710 | } else { |
| 3711 | mout->share_spdif = 0; |
| 3712 | /* FIXME: need notify? */ |
| 3713 | } |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3714 | } |
Frederik Deweerdt | eaa9985 | 2008-04-14 13:11:44 +0200 | [diff] [blame] | 3715 | mutex_unlock(&codec->spdif_mutex); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3716 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3717 | return snd_pcm_hw_constraint_step(substream->runtime, 0, |
| 3718 | SNDRV_PCM_HW_PARAM_CHANNELS, 2); |
| 3719 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3720 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3721 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3722 | /** |
| 3723 | * snd_hda_multi_out_analog_prepare - Preapre the analog outputs. |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3724 | * @codec: the HDA codec |
| 3725 | * @mout: hda_multi_out object |
| 3726 | * @stream_tag: stream tag to assign |
| 3727 | * @format: format id to assign |
| 3728 | * @substream: PCM substream to assign |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3729 | * |
| 3730 | * Set up the i/o for analog out. |
| 3731 | * When the digital out is available, copy the front out to digital out, too. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3732 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3733 | int snd_hda_multi_out_analog_prepare(struct hda_codec *codec, |
| 3734 | struct hda_multi_out *mout, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3735 | unsigned int stream_tag, |
| 3736 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3737 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3738 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 3739 | const hda_nid_t *nids = mout->dac_nids; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3740 | int chs = substream->runtime->channels; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3741 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3742 | int i; |
| 3743 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3744 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3745 | spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3746 | if (mout->dig_out_nid && mout->share_spdif && |
| 3747 | mout->dig_out_used != HDA_DIG_EXCLUSIVE) { |
Libin Yang | 960a581 | 2016-06-16 11:13:25 +0800 | [diff] [blame] | 3748 | if (chs == 2 && spdif != NULL && |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3749 | snd_hda_is_supported_format(codec, mout->dig_out_nid, |
| 3750 | format) && |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3751 | !(spdif->status & IEC958_AES0_NONAUDIO)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3752 | mout->dig_out_used = HDA_DIG_ANALOG_DUP; |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 3753 | setup_dig_out_stream(codec, mout->dig_out_nid, |
| 3754 | stream_tag, format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3755 | } else { |
| 3756 | mout->dig_out_used = 0; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3757 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3758 | } |
| 3759 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3760 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3761 | |
| 3762 | /* front */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3763 | snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag, |
| 3764 | 0, format); |
Takashi Iwai | d29240c | 2007-10-26 12:35:56 +0200 | [diff] [blame] | 3765 | if (!mout->no_share_stream && |
| 3766 | mout->hp_nid && mout->hp_nid != nids[HDA_FRONT]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3767 | /* headphone out will just decode front left/right (stereo) */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3768 | snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag, |
| 3769 | 0, format); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3770 | /* extra outputs copied from front */ |
Takashi Iwai | a06dbfc | 2011-08-23 18:16:13 +0200 | [diff] [blame] | 3771 | for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++) |
| 3772 | if (!mout->no_share_stream && mout->hp_out_nid[i]) |
| 3773 | snd_hda_codec_setup_stream(codec, |
| 3774 | mout->hp_out_nid[i], |
| 3775 | stream_tag, 0, format); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3776 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3777 | /* surrounds */ |
| 3778 | for (i = 1; i < mout->num_dacs; i++) { |
Takashi Iwai | 4b3acaf | 2005-06-10 19:48:10 +0200 | [diff] [blame] | 3779 | if (chs >= (i + 1) * 2) /* independent out */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3780 | snd_hda_codec_setup_stream(codec, nids[i], stream_tag, |
| 3781 | i * 2, format); |
Takashi Iwai | d29240c | 2007-10-26 12:35:56 +0200 | [diff] [blame] | 3782 | else if (!mout->no_share_stream) /* copy front */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3783 | snd_hda_codec_setup_stream(codec, nids[i], stream_tag, |
| 3784 | 0, format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3785 | } |
David Henningsson | cd4035e | 2013-10-10 09:01:25 +0200 | [diff] [blame] | 3786 | |
| 3787 | /* extra surrounds */ |
| 3788 | for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) { |
| 3789 | int ch = 0; |
| 3790 | if (!mout->extra_out_nid[i]) |
| 3791 | break; |
| 3792 | if (chs >= (i + 1) * 2) |
| 3793 | ch = i * 2; |
| 3794 | else if (!mout->no_share_stream) |
| 3795 | break; |
| 3796 | snd_hda_codec_setup_stream(codec, mout->extra_out_nid[i], |
| 3797 | stream_tag, ch, format); |
| 3798 | } |
| 3799 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3800 | return 0; |
| 3801 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3802 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_prepare); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3803 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3804 | /** |
| 3805 | * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3806 | * @codec: the HDA codec |
| 3807 | * @mout: hda_multi_out object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3808 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3809 | int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec, |
| 3810 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3811 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 3812 | const hda_nid_t *nids = mout->dac_nids; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3813 | int i; |
| 3814 | |
| 3815 | for (i = 0; i < mout->num_dacs; i++) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 3816 | snd_hda_codec_cleanup_stream(codec, nids[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3817 | if (mout->hp_nid) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 3818 | snd_hda_codec_cleanup_stream(codec, mout->hp_nid); |
Takashi Iwai | a06dbfc | 2011-08-23 18:16:13 +0200 | [diff] [blame] | 3819 | for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++) |
| 3820 | if (mout->hp_out_nid[i]) |
| 3821 | snd_hda_codec_cleanup_stream(codec, |
| 3822 | mout->hp_out_nid[i]); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3823 | for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) |
| 3824 | if (mout->extra_out_nid[i]) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 3825 | snd_hda_codec_cleanup_stream(codec, |
| 3826 | mout->extra_out_nid[i]); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3827 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3828 | if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) { |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3829 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3830 | mout->dig_out_used = 0; |
| 3831 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3832 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3833 | return 0; |
| 3834 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3835 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_cleanup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3836 | |
Takashi Iwai | 4740860 | 2012-04-20 13:06:53 +0200 | [diff] [blame] | 3837 | /** |
| 3838 | * snd_hda_get_default_vref - Get the default (mic) VREF pin bits |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3839 | * @codec: the HDA codec |
| 3840 | * @pin: referred pin NID |
Takashi Iwai | 4740860 | 2012-04-20 13:06:53 +0200 | [diff] [blame] | 3841 | * |
| 3842 | * Guess the suitable VREF pin bits to be set as the pin-control value. |
| 3843 | * Note: the function doesn't set the AC_PINCTL_IN_EN bit. |
| 3844 | */ |
| 3845 | unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin) |
| 3846 | { |
| 3847 | unsigned int pincap; |
| 3848 | unsigned int oldval; |
| 3849 | oldval = snd_hda_codec_read(codec, pin, 0, |
| 3850 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); |
| 3851 | pincap = snd_hda_query_pin_caps(codec, pin); |
| 3852 | pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT; |
| 3853 | /* Exception: if the default pin setup is vref50, we give it priority */ |
| 3854 | if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50) |
| 3855 | return AC_PINCTL_VREF_80; |
| 3856 | else if (pincap & AC_PINCAP_VREF_50) |
| 3857 | return AC_PINCTL_VREF_50; |
| 3858 | else if (pincap & AC_PINCAP_VREF_100) |
| 3859 | return AC_PINCTL_VREF_100; |
| 3860 | else if (pincap & AC_PINCAP_VREF_GRD) |
| 3861 | return AC_PINCTL_VREF_GRD; |
| 3862 | return AC_PINCTL_VREF_HIZ; |
| 3863 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3864 | EXPORT_SYMBOL_GPL(snd_hda_get_default_vref); |
Takashi Iwai | 4740860 | 2012-04-20 13:06:53 +0200 | [diff] [blame] | 3865 | |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3866 | /** |
| 3867 | * snd_hda_correct_pin_ctl - correct the pin ctl value for matching with the pin cap |
| 3868 | * @codec: the HDA codec |
| 3869 | * @pin: referred pin NID |
| 3870 | * @val: pin ctl value to audit |
| 3871 | */ |
Takashi Iwai | 62f3a2f | 2013-01-10 08:56:46 +0100 | [diff] [blame] | 3872 | unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec, |
| 3873 | hda_nid_t pin, unsigned int val) |
| 3874 | { |
Takashi Iwai | bf82326 | 2020-01-05 15:47:24 +0100 | [diff] [blame] | 3875 | static const unsigned int cap_lists[][2] = { |
Takashi Iwai | 62f3a2f | 2013-01-10 08:56:46 +0100 | [diff] [blame] | 3876 | { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 }, |
| 3877 | { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 }, |
| 3878 | { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 }, |
| 3879 | { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD }, |
| 3880 | }; |
| 3881 | unsigned int cap; |
| 3882 | |
| 3883 | if (!val) |
| 3884 | return 0; |
| 3885 | cap = snd_hda_query_pin_caps(codec, pin); |
| 3886 | if (!cap) |
| 3887 | return val; /* don't know what to do... */ |
| 3888 | |
| 3889 | if (val & AC_PINCTL_OUT_EN) { |
| 3890 | if (!(cap & AC_PINCAP_OUT)) |
| 3891 | val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN); |
| 3892 | else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV)) |
| 3893 | val &= ~AC_PINCTL_HP_EN; |
| 3894 | } |
| 3895 | |
| 3896 | if (val & AC_PINCTL_IN_EN) { |
| 3897 | if (!(cap & AC_PINCAP_IN)) |
| 3898 | val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN); |
| 3899 | else { |
| 3900 | unsigned int vcap, vref; |
| 3901 | int i; |
| 3902 | vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT; |
| 3903 | vref = val & AC_PINCTL_VREFEN; |
| 3904 | for (i = 0; i < ARRAY_SIZE(cap_lists); i++) { |
| 3905 | if (vref == cap_lists[i][0] && |
| 3906 | !(vcap & cap_lists[i][1])) { |
| 3907 | if (i == ARRAY_SIZE(cap_lists) - 1) |
| 3908 | vref = AC_PINCTL_VREF_HIZ; |
| 3909 | else |
| 3910 | vref = cap_lists[i + 1][0]; |
| 3911 | } |
| 3912 | } |
| 3913 | val &= ~AC_PINCTL_VREFEN; |
| 3914 | val |= vref; |
| 3915 | } |
| 3916 | } |
| 3917 | |
| 3918 | return val; |
| 3919 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3920 | EXPORT_SYMBOL_GPL(snd_hda_correct_pin_ctl); |
Takashi Iwai | 62f3a2f | 2013-01-10 08:56:46 +0100 | [diff] [blame] | 3921 | |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3922 | /** |
Pierre-Louis Bossart | 3531ba2 | 2021-03-01 11:46:17 -0600 | [diff] [blame] | 3923 | * _snd_hda_set_pin_ctl - Helper to set pin ctl value |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3924 | * @codec: the HDA codec |
| 3925 | * @pin: referred pin NID |
| 3926 | * @val: pin control value to set |
| 3927 | * @cached: access over codec pinctl cache or direct write |
| 3928 | * |
| 3929 | * This function is a helper to set a pin ctl value more safely. |
| 3930 | * It corrects the pin ctl value via snd_hda_correct_pin_ctl(), stores the |
| 3931 | * value in pin target array via snd_hda_codec_set_pin_target(), then |
Takashi Iwai | 401caff | 2018-06-27 11:43:09 +0200 | [diff] [blame] | 3932 | * actually writes the value via either snd_hda_codec_write_cache() or |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3933 | * snd_hda_codec_write() depending on @cached flag. |
| 3934 | */ |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 3935 | int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin, |
| 3936 | unsigned int val, bool cached) |
| 3937 | { |
Takashi Iwai | 62f3a2f | 2013-01-10 08:56:46 +0100 | [diff] [blame] | 3938 | val = snd_hda_correct_pin_ctl(codec, pin, val); |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 3939 | snd_hda_codec_set_pin_target(codec, pin, val); |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 3940 | if (cached) |
Takashi Iwai | 401caff | 2018-06-27 11:43:09 +0200 | [diff] [blame] | 3941 | return snd_hda_codec_write_cache(codec, pin, 0, |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 3942 | AC_VERB_SET_PIN_WIDGET_CONTROL, val); |
| 3943 | else |
| 3944 | return snd_hda_codec_write(codec, pin, 0, |
| 3945 | AC_VERB_SET_PIN_WIDGET_CONTROL, val); |
| 3946 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3947 | EXPORT_SYMBOL_GPL(_snd_hda_set_pin_ctl); |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 3948 | |
Takashi Iwai | 990061c | 2010-09-09 22:08:44 +0200 | [diff] [blame] | 3949 | /** |
| 3950 | * snd_hda_add_imux_item - Add an item to input_mux |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3951 | * @codec: the HDA codec |
| 3952 | * @imux: imux helper object |
| 3953 | * @label: the name of imux item to assign |
| 3954 | * @index: index number of imux item to assign |
| 3955 | * @type_idx: pointer to store the resultant label index |
Takashi Iwai | 990061c | 2010-09-09 22:08:44 +0200 | [diff] [blame] | 3956 | * |
| 3957 | * When the same label is used already in the existing items, the number |
| 3958 | * suffix is appended to the label. This label index number is stored |
| 3959 | * to type_idx when non-NULL pointer is given. |
| 3960 | */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 3961 | int snd_hda_add_imux_item(struct hda_codec *codec, |
| 3962 | struct hda_input_mux *imux, const char *label, |
Takashi Iwai | 10a20af | 2010-09-09 16:28:02 +0200 | [diff] [blame] | 3963 | int index, int *type_idx) |
| 3964 | { |
| 3965 | int i, label_idx = 0; |
| 3966 | if (imux->num_items >= HDA_MAX_NUM_INPUTS) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 3967 | codec_err(codec, "hda_codec: Too many imux items!\n"); |
Takashi Iwai | 10a20af | 2010-09-09 16:28:02 +0200 | [diff] [blame] | 3968 | return -EINVAL; |
| 3969 | } |
| 3970 | for (i = 0; i < imux->num_items; i++) { |
| 3971 | if (!strncmp(label, imux->items[i].label, strlen(label))) |
| 3972 | label_idx++; |
| 3973 | } |
| 3974 | if (type_idx) |
| 3975 | *type_idx = label_idx; |
| 3976 | if (label_idx > 0) |
| 3977 | snprintf(imux->items[imux->num_items].label, |
| 3978 | sizeof(imux->items[imux->num_items].label), |
| 3979 | "%s %d", label, label_idx); |
| 3980 | else |
Joe Perches | 75b1a8f | 2021-01-04 09:17:34 -0800 | [diff] [blame] | 3981 | strscpy(imux->items[imux->num_items].label, label, |
Takashi Iwai | 10a20af | 2010-09-09 16:28:02 +0200 | [diff] [blame] | 3982 | sizeof(imux->items[imux->num_items].label)); |
| 3983 | imux->items[imux->num_items].index = index; |
| 3984 | imux->num_items++; |
| 3985 | return 0; |
| 3986 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3987 | EXPORT_SYMBOL_GPL(snd_hda_add_imux_item); |
Takashi Iwai | d7b1ae9 | 2010-08-30 13:00:16 +0200 | [diff] [blame] | 3988 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3989 | /** |
Takashi Iwai | 0a50575 | 2015-04-16 23:25:02 +0200 | [diff] [blame] | 3990 | * snd_hda_bus_reset_codecs - Reset the bus |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3991 | * @bus: HD-audio bus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3992 | */ |
Takashi Iwai | 0a50575 | 2015-04-16 23:25:02 +0200 | [diff] [blame] | 3993 | void snd_hda_bus_reset_codecs(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3994 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3995 | struct hda_codec *codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3996 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 3997 | list_for_each_codec(codec, bus) { |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 3998 | /* FIXME: maybe a better way needed for forced reset */ |
Takashi Iwai | 1603764 | 2018-08-30 15:13:16 +0200 | [diff] [blame] | 3999 | if (current_work() != &codec->jackpoll_work.work) |
| 4000 | cancel_delayed_work_sync(&codec->jackpoll_work); |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 4001 | #ifdef CONFIG_PM |
Mengdong Lin | 0e24dbb | 2013-11-26 23:00:51 -0500 | [diff] [blame] | 4002 | if (hda_codec_is_power_on(codec)) { |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 4003 | hda_call_codec_suspend(codec); |
Mengdong Lin | 12edb89 | 2013-11-26 23:32:23 -0500 | [diff] [blame] | 4004 | hda_call_codec_resume(codec); |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 4005 | } |
| 4006 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4007 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4008 | } |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4009 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4010 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4011 | * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer |
| 4012 | * @pcm: PCM caps bits |
| 4013 | * @buf: the string buffer to write |
| 4014 | * @buflen: the max buffer length |
| 4015 | * |
| 4016 | * used by hda_proc.c and hda_eld.c |
| 4017 | */ |
Takashi Iwai | b202226 | 2008-11-21 21:24:03 +0100 | [diff] [blame] | 4018 | void snd_print_pcm_bits(int pcm, char *buf, int buflen) |
| 4019 | { |
Takashi Iwai | bf82326 | 2020-01-05 15:47:24 +0100 | [diff] [blame] | 4020 | static const unsigned int bits[] = { 8, 16, 20, 24, 32 }; |
Takashi Iwai | b202226 | 2008-11-21 21:24:03 +0100 | [diff] [blame] | 4021 | int i, j; |
| 4022 | |
| 4023 | for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++) |
| 4024 | if (pcm & (AC_SUPPCM_BITS_8 << i)) |
Takashi Iwai | 44eeb08 | 2020-02-18 10:14:09 +0100 | [diff] [blame] | 4025 | j += scnprintf(buf + j, buflen - j, " %d", bits[i]); |
Takashi Iwai | b202226 | 2008-11-21 21:24:03 +0100 | [diff] [blame] | 4026 | |
| 4027 | buf[j] = '\0'; /* necessary when j == 0 */ |
| 4028 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4029 | EXPORT_SYMBOL_GPL(snd_print_pcm_bits); |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 4030 | |
| 4031 | MODULE_DESCRIPTION("HDA codec core"); |
| 4032 | MODULE_LICENSE("GPL"); |