Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Universal Interface for Intel High Definition Audio Codec |
| 3 | * |
| 4 | * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de> |
| 5 | * |
| 6 | * |
| 7 | * This driver is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This driver is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | */ |
| 21 | |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 22 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/init.h> |
| 24 | #include <linux/delay.h> |
| 25 | #include <linux/slab.h> |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 26 | #include <linux/mutex.h> |
Paul Gortmaker | da155d5 | 2011-07-15 12:38:28 -0400 | [diff] [blame] | 27 | #include <linux/module.h> |
Takashi Iwai | f4d6a55 | 2013-12-05 11:55:05 +0100 | [diff] [blame] | 28 | #include <linux/async.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <sound/core.h> |
| 30 | #include "hda_codec.h" |
| 31 | #include <sound/asoundef.h> |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 32 | #include <sound/tlv.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <sound/initval.h> |
Takashi Iwai | cd372fb | 2011-03-03 14:40:14 +0100 | [diff] [blame] | 34 | #include <sound/jack.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include "hda_local.h" |
Jaroslav Kysela | 123c07a | 2009-10-21 14:48:23 +0200 | [diff] [blame] | 36 | #include "hda_beep.h" |
Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 37 | #include "hda_jack.h" |
Takashi Iwai | 2807314 | 2007-07-27 18:58:06 +0200 | [diff] [blame] | 38 | #include <sound/hda_hwdep.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Takashi Iwai | d66fee5 | 2011-08-02 15:39:31 +0200 | [diff] [blame] | 40 | #define CREATE_TRACE_POINTS |
| 41 | #include "hda_trace.h" |
| 42 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 43 | #ifdef CONFIG_PM |
Takashi Iwai | d846b17 | 2012-11-24 11:58:24 +0100 | [diff] [blame] | 44 | #define codec_in_pm(codec) ((codec)->in_pm) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 45 | static void hda_power_work(struct work_struct *work); |
| 46 | static void hda_keep_power_on(struct hda_codec *codec); |
Takashi Iwai | e581f3d | 2011-07-26 10:19:20 +0200 | [diff] [blame] | 47 | #define hda_codec_is_power_on(codec) ((codec)->power_on) |
Takashi Iwai | a40e0a8 | 2013-11-20 12:41:20 +0100 | [diff] [blame] | 48 | |
| 49 | static void hda_call_pm_notify(struct hda_codec *codec, bool power_up) |
Takashi Iwai | 68467f5 | 2012-08-28 09:14:29 -0700 | [diff] [blame] | 50 | { |
Takashi Iwai | a40e0a8 | 2013-11-20 12:41:20 +0100 | [diff] [blame] | 51 | struct hda_bus *bus = codec->bus; |
| 52 | |
| 53 | if ((power_up && codec->pm_up_notified) || |
| 54 | (!power_up && !codec->pm_up_notified)) |
| 55 | return; |
Takashi Iwai | 68467f5 | 2012-08-28 09:14:29 -0700 | [diff] [blame] | 56 | if (bus->ops.pm_notify) |
| 57 | bus->ops.pm_notify(bus, power_up); |
Takashi Iwai | a40e0a8 | 2013-11-20 12:41:20 +0100 | [diff] [blame] | 58 | codec->pm_up_notified = power_up; |
Takashi Iwai | 68467f5 | 2012-08-28 09:14:29 -0700 | [diff] [blame] | 59 | } |
Takashi Iwai | a40e0a8 | 2013-11-20 12:41:20 +0100 | [diff] [blame] | 60 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 61 | #else |
Takashi Iwai | d846b17 | 2012-11-24 11:58:24 +0100 | [diff] [blame] | 62 | #define codec_in_pm(codec) 0 |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 63 | static inline void hda_keep_power_on(struct hda_codec *codec) {} |
Takashi Iwai | e581f3d | 2011-07-26 10:19:20 +0200 | [diff] [blame] | 64 | #define hda_codec_is_power_on(codec) 1 |
Takashi Iwai | a40e0a8 | 2013-11-20 12:41:20 +0100 | [diff] [blame] | 65 | #define hda_call_pm_notify(codec, state) {} |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 66 | #endif |
| 67 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 68 | /** |
| 69 | * snd_hda_get_jack_location - Give a location string of the jack |
| 70 | * @cfg: pin default config value |
| 71 | * |
| 72 | * Parse the pin default config value and returns the string of the |
| 73 | * jack location, e.g. "Rear", "Front", etc. |
| 74 | */ |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 75 | const char *snd_hda_get_jack_location(u32 cfg) |
| 76 | { |
| 77 | static char *bases[7] = { |
| 78 | "N/A", "Rear", "Front", "Left", "Right", "Top", "Bottom", |
| 79 | }; |
| 80 | static unsigned char specials_idx[] = { |
| 81 | 0x07, 0x08, |
| 82 | 0x17, 0x18, 0x19, |
| 83 | 0x37, 0x38 |
| 84 | }; |
| 85 | static char *specials[] = { |
| 86 | "Rear Panel", "Drive Bar", |
| 87 | "Riser", "HDMI", "ATAPI", |
| 88 | "Mobile-In", "Mobile-Out" |
| 89 | }; |
| 90 | int i; |
| 91 | cfg = (cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT; |
| 92 | if ((cfg & 0x0f) < 7) |
| 93 | return bases[cfg & 0x0f]; |
| 94 | for (i = 0; i < ARRAY_SIZE(specials_idx); i++) { |
| 95 | if (cfg == specials_idx[i]) |
| 96 | return specials[i]; |
| 97 | } |
| 98 | return "UNKNOWN"; |
| 99 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 100 | EXPORT_SYMBOL_GPL(snd_hda_get_jack_location); |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 101 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 102 | /** |
| 103 | * snd_hda_get_jack_connectivity - Give a connectivity string of the jack |
| 104 | * @cfg: pin default config value |
| 105 | * |
| 106 | * Parse the pin default config value and returns the string of the |
| 107 | * jack connectivity, i.e. external or internal connection. |
| 108 | */ |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 109 | const char *snd_hda_get_jack_connectivity(u32 cfg) |
| 110 | { |
| 111 | static char *jack_locations[4] = { "Ext", "Int", "Sep", "Oth" }; |
| 112 | |
| 113 | return jack_locations[(cfg >> (AC_DEFCFG_LOCATION_SHIFT + 4)) & 3]; |
| 114 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 115 | EXPORT_SYMBOL_GPL(snd_hda_get_jack_connectivity); |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 116 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 117 | /** |
| 118 | * snd_hda_get_jack_type - Give a type string of the jack |
| 119 | * @cfg: pin default config value |
| 120 | * |
| 121 | * Parse the pin default config value and returns the string of the |
| 122 | * jack type, i.e. the purpose of the jack, such as Line-Out or CD. |
| 123 | */ |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 124 | const char *snd_hda_get_jack_type(u32 cfg) |
| 125 | { |
| 126 | static char *jack_types[16] = { |
| 127 | "Line Out", "Speaker", "HP Out", "CD", |
| 128 | "SPDIF Out", "Digital Out", "Modem Line", "Modem Hand", |
| 129 | "Line In", "Aux", "Mic", "Telephony", |
David Henningsson | aeb3a97 | 2013-04-04 11:47:13 +0200 | [diff] [blame] | 130 | "SPDIF In", "Digital In", "Reserved", "Other" |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 131 | }; |
| 132 | |
| 133 | return jack_types[(cfg & AC_DEFCFG_DEVICE) |
| 134 | >> AC_DEFCFG_DEVICE_SHIFT]; |
| 135 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 136 | EXPORT_SYMBOL_GPL(snd_hda_get_jack_type); |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 137 | |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 138 | /* |
| 139 | * Compose a 32bit command word to be sent to the HD-audio controller |
| 140 | */ |
| 141 | static inline unsigned int |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 142 | make_codec_cmd(struct hda_codec *codec, hda_nid_t nid, int flags, |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 143 | unsigned int verb, unsigned int parm) |
| 144 | { |
| 145 | u32 val; |
| 146 | |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 147 | if ((codec->addr & ~0xf) || (nid & ~0x7f) || |
Takashi Iwai | 82e1b80 | 2009-07-17 12:47:34 +0200 | [diff] [blame] | 148 | (verb & ~0xfff) || (parm & ~0xffff)) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 149 | codec_err(codec, "hda-codec: out of range cmd %x:%x:%x:%x\n", |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 150 | codec->addr, nid, verb, parm); |
Wu Fengguang | 6430aee | 2009-07-17 16:49:19 +0800 | [diff] [blame] | 151 | return ~0; |
| 152 | } |
| 153 | |
| 154 | val = (u32)codec->addr << 28; |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 155 | val |= (u32)nid << 20; |
| 156 | val |= verb << 8; |
| 157 | val |= parm; |
| 158 | return val; |
| 159 | } |
| 160 | |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 161 | /* |
| 162 | * Send and receive a verb |
| 163 | */ |
| 164 | static int codec_exec_verb(struct hda_codec *codec, unsigned int cmd, |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 165 | int flags, unsigned int *res) |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 166 | { |
| 167 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 168 | int err; |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 169 | |
Wu Fengguang | 6430aee | 2009-07-17 16:49:19 +0800 | [diff] [blame] | 170 | if (cmd == ~0) |
| 171 | return -1; |
| 172 | |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 173 | if (res) |
| 174 | *res = -1; |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 175 | again: |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 176 | snd_hda_power_up(codec); |
| 177 | mutex_lock(&bus->cmd_mutex); |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 178 | if (flags & HDA_RW_NO_RESPONSE_FALLBACK) |
| 179 | bus->no_response_fallback = 1; |
Takashi Iwai | 3bcce5c | 2012-12-20 11:17:17 +0100 | [diff] [blame] | 180 | for (;;) { |
| 181 | trace_hda_send_cmd(codec, cmd); |
| 182 | err = bus->ops.command(bus, cmd); |
| 183 | if (err != -EAGAIN) |
| 184 | break; |
| 185 | /* process pending verbs */ |
| 186 | bus->ops.get_response(bus, codec->addr); |
| 187 | } |
Takashi Iwai | d66fee5 | 2011-08-02 15:39:31 +0200 | [diff] [blame] | 188 | if (!err && res) { |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 189 | *res = bus->ops.get_response(bus, codec->addr); |
Takashi Iwai | d66fee5 | 2011-08-02 15:39:31 +0200 | [diff] [blame] | 190 | trace_hda_get_response(codec, *res); |
| 191 | } |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 192 | bus->no_response_fallback = 0; |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 193 | mutex_unlock(&bus->cmd_mutex); |
| 194 | snd_hda_power_down(codec); |
Takashi Iwai | d846b17 | 2012-11-24 11:58:24 +0100 | [diff] [blame] | 195 | if (!codec_in_pm(codec) && res && *res == -1 && bus->rirb_error) { |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 196 | if (bus->response_reset) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 197 | codec_dbg(codec, |
| 198 | "resetting BUS due to fatal communication error\n"); |
Takashi Iwai | d66fee5 | 2011-08-02 15:39:31 +0200 | [diff] [blame] | 199 | trace_hda_bus_reset(bus); |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 200 | bus->ops.bus_reset(bus); |
| 201 | } |
| 202 | goto again; |
| 203 | } |
| 204 | /* clear reset-flag when the communication gets recovered */ |
Takashi Iwai | d846b17 | 2012-11-24 11:58:24 +0100 | [diff] [blame] | 205 | if (!err || codec_in_pm(codec)) |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 206 | bus->response_reset = 0; |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 207 | return err; |
| 208 | } |
| 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | /** |
| 211 | * snd_hda_codec_read - send a command and get the response |
| 212 | * @codec: the HDA codec |
| 213 | * @nid: NID to send the command |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 214 | * @flags: optional bit flags |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | * @verb: the verb to send |
| 216 | * @parm: the parameter for the verb |
| 217 | * |
| 218 | * Send a single command and read the corresponding response. |
| 219 | * |
| 220 | * Returns the obtained response value, or -1 for an error. |
| 221 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 222 | unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid, |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 223 | int flags, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | unsigned int verb, unsigned int parm) |
| 225 | { |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 226 | unsigned cmd = make_codec_cmd(codec, nid, flags, verb, parm); |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 227 | unsigned int res; |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 228 | if (codec_exec_verb(codec, cmd, flags, &res)) |
Greg Thelen | 9857edf | 2011-06-13 07:45:45 -0700 | [diff] [blame] | 229 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | return res; |
| 231 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 232 | EXPORT_SYMBOL_GPL(snd_hda_codec_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
| 234 | /** |
| 235 | * snd_hda_codec_write - send a single command without waiting for response |
| 236 | * @codec: the HDA codec |
| 237 | * @nid: NID to send the command |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 238 | * @flags: optional bit flags |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | * @verb: the verb to send |
| 240 | * @parm: the parameter for the verb |
| 241 | * |
| 242 | * Send a single command without waiting for response. |
| 243 | * |
| 244 | * Returns 0 if successful, or a negative error code. |
| 245 | */ |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 246 | int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int flags, |
| 247 | unsigned int verb, unsigned int parm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | { |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 249 | unsigned int cmd = make_codec_cmd(codec, nid, flags, verb, parm); |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 250 | unsigned int res; |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 251 | return codec_exec_verb(codec, cmd, flags, |
Takashi Iwai | b20f3b8 | 2009-06-02 01:20:22 +0200 | [diff] [blame] | 252 | codec->bus->sync_write ? &res : NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 254 | EXPORT_SYMBOL_GPL(snd_hda_codec_write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
| 256 | /** |
| 257 | * snd_hda_sequence_write - sequence writes |
| 258 | * @codec: the HDA codec |
| 259 | * @seq: VERB array to send |
| 260 | * |
| 261 | * Send the commands sequentially from the given array. |
| 262 | * The array must be terminated with NID=0. |
| 263 | */ |
| 264 | void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq) |
| 265 | { |
| 266 | for (; seq->nid; seq++) |
| 267 | snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param); |
| 268 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 269 | EXPORT_SYMBOL_GPL(snd_hda_sequence_write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
| 271 | /** |
| 272 | * snd_hda_get_sub_nodes - get the range of sub nodes |
| 273 | * @codec: the HDA codec |
| 274 | * @nid: NID to parse |
| 275 | * @start_id: the pointer to store the start NID |
| 276 | * |
| 277 | * Parse the NID and store the start NID of its sub-nodes. |
| 278 | * Returns the number of sub-nodes. |
| 279 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 280 | int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid, |
| 281 | hda_nid_t *start_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | { |
| 283 | unsigned int parm; |
| 284 | |
| 285 | parm = snd_hda_param_read(codec, nid, AC_PAR_NODE_COUNT); |
Dan Carpenter | 69eba10 | 2014-11-27 01:34:43 +0300 | [diff] [blame] | 286 | if (parm == -1) { |
| 287 | *start_id = 0; |
Danny Tholen | e8a7f13 | 2007-09-11 21:41:56 +0200 | [diff] [blame] | 288 | return 0; |
Dan Carpenter | 69eba10 | 2014-11-27 01:34:43 +0300 | [diff] [blame] | 289 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | *start_id = (parm >> 16) & 0x7fff; |
| 291 | return (int)(parm & 0x7fff); |
| 292 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 293 | EXPORT_SYMBOL_GPL(snd_hda_get_sub_nodes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 295 | /* connection list element */ |
| 296 | struct hda_conn_list { |
| 297 | struct list_head list; |
| 298 | int len; |
| 299 | hda_nid_t nid; |
| 300 | hda_nid_t conns[0]; |
| 301 | }; |
| 302 | |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 303 | /* look up the cached results */ |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 304 | static struct hda_conn_list * |
| 305 | lookup_conn_list(struct hda_codec *codec, hda_nid_t nid) |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 306 | { |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 307 | struct hda_conn_list *p; |
| 308 | list_for_each_entry(p, &codec->conn_list, list) { |
| 309 | if (p->nid == nid) |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 310 | return p; |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 311 | } |
| 312 | return NULL; |
| 313 | } |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 314 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 315 | static int add_conn_list(struct hda_codec *codec, hda_nid_t nid, int len, |
| 316 | const hda_nid_t *list) |
| 317 | { |
| 318 | struct hda_conn_list *p; |
| 319 | |
| 320 | p = kmalloc(sizeof(*p) + len * sizeof(hda_nid_t), GFP_KERNEL); |
| 321 | if (!p) |
| 322 | return -ENOMEM; |
| 323 | p->len = len; |
| 324 | p->nid = nid; |
| 325 | memcpy(p->conns, list, len * sizeof(hda_nid_t)); |
| 326 | list_add(&p->list, &codec->conn_list); |
| 327 | return 0; |
| 328 | } |
| 329 | |
| 330 | static void remove_conn_list(struct hda_codec *codec) |
| 331 | { |
| 332 | while (!list_empty(&codec->conn_list)) { |
| 333 | struct hda_conn_list *p; |
| 334 | p = list_first_entry(&codec->conn_list, typeof(*p), list); |
| 335 | list_del(&p->list); |
| 336 | kfree(p); |
| 337 | } |
| 338 | } |
| 339 | |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 340 | /* read the connection and add to the cache */ |
| 341 | 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] | 342 | { |
Takashi Iwai | 4eea309 | 2013-02-07 18:18:19 +0100 | [diff] [blame] | 343 | hda_nid_t list[32]; |
| 344 | hda_nid_t *result = list; |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 345 | int len; |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 346 | |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 347 | len = snd_hda_get_raw_connections(codec, nid, list, ARRAY_SIZE(list)); |
Takashi Iwai | 4eea309 | 2013-02-07 18:18:19 +0100 | [diff] [blame] | 348 | if (len == -ENOSPC) { |
| 349 | len = snd_hda_get_num_raw_conns(codec, nid); |
| 350 | result = kmalloc(sizeof(hda_nid_t) * len, GFP_KERNEL); |
| 351 | if (!result) |
| 352 | return -ENOMEM; |
| 353 | len = snd_hda_get_raw_connections(codec, nid, result, len); |
| 354 | } |
| 355 | if (len >= 0) |
| 356 | len = snd_hda_override_conn_list(codec, nid, len, result); |
| 357 | if (result != list) |
| 358 | kfree(result); |
| 359 | return len; |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 360 | } |
Takashi Iwai | dce2079 | 2011-06-24 14:10:28 +0200 | [diff] [blame] | 361 | |
| 362 | /** |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 363 | * snd_hda_get_conn_list - get connection list |
| 364 | * @codec: the HDA codec |
| 365 | * @nid: NID to parse |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 366 | * @listp: the pointer to store NID list |
| 367 | * |
| 368 | * Parses the connection list of the given widget and stores the pointer |
| 369 | * to the list of NIDs. |
| 370 | * |
| 371 | * Returns the number of connections, or a negative error code. |
| 372 | * |
| 373 | * Note that the returned pointer isn't protected against the list |
| 374 | * modification. If snd_hda_override_conn_list() might be called |
| 375 | * concurrently, protect with a mutex appropriately. |
| 376 | */ |
| 377 | int snd_hda_get_conn_list(struct hda_codec *codec, hda_nid_t nid, |
| 378 | const hda_nid_t **listp) |
| 379 | { |
| 380 | bool added = false; |
| 381 | |
| 382 | for (;;) { |
| 383 | int err; |
| 384 | const struct hda_conn_list *p; |
| 385 | |
| 386 | /* if the connection-list is already cached, read it */ |
| 387 | p = lookup_conn_list(codec, nid); |
| 388 | if (p) { |
| 389 | if (listp) |
| 390 | *listp = p->conns; |
| 391 | return p->len; |
| 392 | } |
| 393 | if (snd_BUG_ON(added)) |
| 394 | return -EINVAL; |
| 395 | |
| 396 | err = read_and_add_raw_conns(codec, nid); |
| 397 | if (err < 0) |
| 398 | return err; |
| 399 | added = true; |
| 400 | } |
| 401 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 402 | EXPORT_SYMBOL_GPL(snd_hda_get_conn_list); |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 403 | |
| 404 | /** |
Takashi Iwai | dce2079 | 2011-06-24 14:10:28 +0200 | [diff] [blame] | 405 | * snd_hda_get_connections - copy connection list |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | * @codec: the HDA codec |
| 407 | * @nid: NID to parse |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 408 | * @conn_list: connection list array; when NULL, checks only the size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | * @max_conns: max. number of connections to store |
| 410 | * |
| 411 | * Parses the connection list of the given widget and stores the list |
| 412 | * of NIDs. |
| 413 | * |
| 414 | * Returns the number of connections, or a negative error code. |
| 415 | */ |
| 416 | 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] | 417 | hda_nid_t *conn_list, int max_conns) |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 418 | { |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 419 | const hda_nid_t *list; |
| 420 | int len = snd_hda_get_conn_list(codec, nid, &list); |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 421 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 422 | if (len > 0 && conn_list) { |
| 423 | if (len > max_conns) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 424 | codec_err(codec, "Too many connections %d for NID 0x%x\n", |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 425 | len, nid); |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 426 | return -EINVAL; |
| 427 | } |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 428 | memcpy(conn_list, list, len * sizeof(hda_nid_t)); |
Takashi Iwai | dce2079 | 2011-06-24 14:10:28 +0200 | [diff] [blame] | 429 | } |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 430 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 431 | return len; |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 432 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 433 | EXPORT_SYMBOL_GPL(snd_hda_get_connections); |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 434 | |
Takashi Iwai | 4eea309 | 2013-02-07 18:18:19 +0100 | [diff] [blame] | 435 | /* return CONNLIST_LEN parameter of the given widget */ |
| 436 | static unsigned int get_num_conns(struct hda_codec *codec, hda_nid_t nid) |
| 437 | { |
| 438 | unsigned int wcaps = get_wcaps(codec, nid); |
| 439 | unsigned int parm; |
| 440 | |
| 441 | if (!(wcaps & AC_WCAP_CONN_LIST) && |
| 442 | get_wcaps_type(wcaps) != AC_WID_VOL_KNB) |
| 443 | return 0; |
| 444 | |
| 445 | parm = snd_hda_param_read(codec, nid, AC_PAR_CONNLIST_LEN); |
| 446 | if (parm == -1) |
| 447 | parm = 0; |
| 448 | return parm; |
| 449 | } |
| 450 | |
| 451 | int snd_hda_get_num_raw_conns(struct hda_codec *codec, hda_nid_t nid) |
| 452 | { |
Takashi Iwai | b5f82b1 | 2013-03-12 16:47:30 +0100 | [diff] [blame] | 453 | return snd_hda_get_raw_connections(codec, nid, NULL, 0); |
Takashi Iwai | 4eea309 | 2013-02-07 18:18:19 +0100 | [diff] [blame] | 454 | } |
| 455 | |
Takashi Iwai | 9e7717c | 2011-07-11 15:42:52 +0200 | [diff] [blame] | 456 | /** |
| 457 | * snd_hda_get_raw_connections - copy connection list without cache |
| 458 | * @codec: the HDA codec |
| 459 | * @nid: NID to parse |
| 460 | * @conn_list: connection list array |
| 461 | * @max_conns: max. number of connections to store |
| 462 | * |
| 463 | * Like snd_hda_get_connections(), copy the connection list but without |
| 464 | * checking through the connection-list cache. |
| 465 | * Currently called only from hda_proc.c, so not exported. |
| 466 | */ |
| 467 | int snd_hda_get_raw_connections(struct hda_codec *codec, hda_nid_t nid, |
| 468 | hda_nid_t *conn_list, int max_conns) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | { |
| 470 | unsigned int parm; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 471 | int i, conn_len, conns; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | unsigned int shift, num_elems, mask; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 473 | hda_nid_t prev_nid; |
Takashi Iwai | 5fdaecd | 2012-12-20 10:45:55 +0100 | [diff] [blame] | 474 | int null_count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | |
Takashi Iwai | 4eea309 | 2013-02-07 18:18:19 +0100 | [diff] [blame] | 476 | parm = get_num_conns(codec, nid); |
| 477 | if (!parm) |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 478 | return 0; |
Jaroslav Kysela | 16a433d | 2009-07-22 16:20:40 +0200 | [diff] [blame] | 479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | if (parm & AC_CLIST_LONG) { |
| 481 | /* long form */ |
| 482 | shift = 16; |
| 483 | num_elems = 2; |
| 484 | } else { |
| 485 | /* short form */ |
| 486 | shift = 8; |
| 487 | num_elems = 4; |
| 488 | } |
| 489 | conn_len = parm & AC_CLIST_LENGTH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | mask = (1 << (shift-1)) - 1; |
| 491 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 492 | if (!conn_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | return 0; /* no connection */ |
| 494 | |
| 495 | if (conn_len == 1) { |
| 496 | /* single connection */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 497 | parm = snd_hda_codec_read(codec, nid, 0, |
| 498 | AC_VERB_GET_CONNECT_LIST, 0); |
Takashi Iwai | 3c6aae4 | 2009-07-10 12:52:27 +0200 | [diff] [blame] | 499 | if (parm == -1 && codec->bus->rirb_error) |
| 500 | return -EIO; |
Takashi Iwai | b5f82b1 | 2013-03-12 16:47:30 +0100 | [diff] [blame] | 501 | if (conn_list) |
| 502 | conn_list[0] = parm & mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | return 1; |
| 504 | } |
| 505 | |
| 506 | /* multi connection */ |
| 507 | conns = 0; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 508 | prev_nid = 0; |
| 509 | for (i = 0; i < conn_len; i++) { |
| 510 | int range_val; |
| 511 | hda_nid_t val, n; |
| 512 | |
Takashi Iwai | 3c6aae4 | 2009-07-10 12:52:27 +0200 | [diff] [blame] | 513 | if (i % num_elems == 0) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 514 | parm = snd_hda_codec_read(codec, nid, 0, |
| 515 | AC_VERB_GET_CONNECT_LIST, i); |
Takashi Iwai | 3c6aae4 | 2009-07-10 12:52:27 +0200 | [diff] [blame] | 516 | if (parm == -1 && codec->bus->rirb_error) |
| 517 | return -EIO; |
| 518 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 519 | range_val = !!(parm & (1 << (shift-1))); /* ranges */ |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 520 | val = parm & mask; |
Takashi Iwai | 5fdaecd | 2012-12-20 10:45:55 +0100 | [diff] [blame] | 521 | if (val == 0 && null_count++) { /* no second chance */ |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 522 | codec_dbg(codec, |
| 523 | "invalid CONNECT_LIST verb %x[%i]:%x\n", |
Jaroslav Kysela | 2e9bf24 | 2009-07-18 11:48:19 +0200 | [diff] [blame] | 524 | nid, i, parm); |
| 525 | return 0; |
| 526 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 527 | parm >>= shift; |
| 528 | if (range_val) { |
| 529 | /* ranges between the previous and this one */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 530 | if (!prev_nid || prev_nid >= val) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 531 | codec_warn(codec, |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 532 | "invalid dep_range_val %x:%x\n", |
| 533 | prev_nid, val); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 534 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 536 | for (n = prev_nid + 1; n <= val; n++) { |
Takashi Iwai | b5f82b1 | 2013-03-12 16:47:30 +0100 | [diff] [blame] | 537 | if (conn_list) { |
| 538 | if (conns >= max_conns) |
| 539 | return -ENOSPC; |
| 540 | conn_list[conns] = n; |
| 541 | } |
| 542 | conns++; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 543 | } |
| 544 | } else { |
Takashi Iwai | b5f82b1 | 2013-03-12 16:47:30 +0100 | [diff] [blame] | 545 | if (conn_list) { |
| 546 | if (conns >= max_conns) |
| 547 | return -ENOSPC; |
| 548 | conn_list[conns] = val; |
| 549 | } |
| 550 | conns++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 552 | prev_nid = val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | } |
| 554 | return conns; |
| 555 | } |
| 556 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | /** |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 558 | * snd_hda_override_conn_list - add/modify the connection-list to cache |
| 559 | * @codec: the HDA codec |
| 560 | * @nid: NID to parse |
| 561 | * @len: number of connection list entries |
| 562 | * @list: the list of connection entries |
| 563 | * |
| 564 | * Add or modify the given connection-list to the cache. If the corresponding |
| 565 | * cache already exists, invalidate it and append a new one. |
| 566 | * |
| 567 | * Returns zero or a negative error code. |
| 568 | */ |
| 569 | int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int len, |
| 570 | const hda_nid_t *list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | { |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 572 | struct hda_conn_list *p; |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 573 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 574 | p = lookup_conn_list(codec, nid); |
| 575 | if (p) { |
| 576 | list_del(&p->list); |
| 577 | kfree(p); |
| 578 | } |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 579 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 580 | return add_conn_list(codec, nid, len, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 582 | EXPORT_SYMBOL_GPL(snd_hda_override_conn_list); |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 583 | |
| 584 | /** |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 585 | * snd_hda_get_conn_index - get the connection index of the given NID |
| 586 | * @codec: the HDA codec |
| 587 | * @mux: NID containing the list |
| 588 | * @nid: NID to select |
| 589 | * @recursive: 1 when searching NID recursively, otherwise 0 |
| 590 | * |
| 591 | * Parses the connection list of the widget @mux and checks whether the |
| 592 | * widget @nid is present. If it is, return the connection index. |
| 593 | * Otherwise it returns -1. |
| 594 | */ |
| 595 | int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux, |
| 596 | hda_nid_t nid, int recursive) |
| 597 | { |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 598 | const hda_nid_t *conn; |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 599 | int i, nums; |
| 600 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 601 | nums = snd_hda_get_conn_list(codec, mux, &conn); |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 602 | for (i = 0; i < nums; i++) |
| 603 | if (conn[i] == nid) |
| 604 | return i; |
| 605 | if (!recursive) |
| 606 | return -1; |
Takashi Iwai | d94ddd8 | 2012-12-20 14:42:42 +0100 | [diff] [blame] | 607 | if (recursive > 10) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 608 | codec_dbg(codec, "too deep connection for 0x%x\n", nid); |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 609 | return -1; |
| 610 | } |
| 611 | recursive++; |
Takashi Iwai | 99e14c9 | 2011-09-13 10:33:16 +0200 | [diff] [blame] | 612 | for (i = 0; i < nums; i++) { |
| 613 | unsigned int type = get_wcaps_type(get_wcaps(codec, conn[i])); |
| 614 | if (type == AC_WID_PIN || type == AC_WID_AUD_OUT) |
| 615 | continue; |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 616 | if (snd_hda_get_conn_index(codec, conn[i], nid, recursive) >= 0) |
| 617 | return i; |
Takashi Iwai | 99e14c9 | 2011-09-13 10:33:16 +0200 | [diff] [blame] | 618 | } |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 619 | return -1; |
| 620 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 621 | EXPORT_SYMBOL_GPL(snd_hda_get_conn_index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
Mengdong Lin | f1aa068 | 2013-08-26 21:35:21 -0400 | [diff] [blame] | 623 | |
| 624 | /* return DEVLIST_LEN parameter of the given widget */ |
| 625 | static unsigned int get_num_devices(struct hda_codec *codec, hda_nid_t nid) |
| 626 | { |
| 627 | unsigned int wcaps = get_wcaps(codec, nid); |
| 628 | unsigned int parm; |
| 629 | |
| 630 | if (!codec->dp_mst || !(wcaps & AC_WCAP_DIGITAL) || |
| 631 | get_wcaps_type(wcaps) != AC_WID_PIN) |
| 632 | return 0; |
| 633 | |
| 634 | parm = snd_hda_param_read(codec, nid, AC_PAR_DEVLIST_LEN); |
| 635 | if (parm == -1 && codec->bus->rirb_error) |
| 636 | parm = 0; |
| 637 | return parm & AC_DEV_LIST_LEN_MASK; |
| 638 | } |
| 639 | |
| 640 | /** |
| 641 | * snd_hda_get_devices - copy device list without cache |
| 642 | * @codec: the HDA codec |
| 643 | * @nid: NID of the pin to parse |
| 644 | * @dev_list: device list array |
| 645 | * @max_devices: max. number of devices to store |
| 646 | * |
| 647 | * Copy the device list. This info is dynamic and so not cached. |
| 648 | * Currently called only from hda_proc.c, so not exported. |
| 649 | */ |
| 650 | int snd_hda_get_devices(struct hda_codec *codec, hda_nid_t nid, |
| 651 | u8 *dev_list, int max_devices) |
| 652 | { |
| 653 | unsigned int parm; |
| 654 | int i, dev_len, devices; |
| 655 | |
| 656 | parm = get_num_devices(codec, nid); |
| 657 | if (!parm) /* not multi-stream capable */ |
| 658 | return 0; |
| 659 | |
| 660 | dev_len = parm + 1; |
| 661 | dev_len = dev_len < max_devices ? dev_len : max_devices; |
| 662 | |
| 663 | devices = 0; |
| 664 | while (devices < dev_len) { |
| 665 | parm = snd_hda_codec_read(codec, nid, 0, |
| 666 | AC_VERB_GET_DEVICE_LIST, devices); |
| 667 | if (parm == -1 && codec->bus->rirb_error) |
| 668 | break; |
| 669 | |
| 670 | for (i = 0; i < 8; i++) { |
| 671 | dev_list[devices] = (u8)parm; |
| 672 | parm >>= 4; |
| 673 | devices++; |
| 674 | if (devices >= dev_len) |
| 675 | break; |
| 676 | } |
| 677 | } |
| 678 | return devices; |
| 679 | } |
| 680 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | /** |
| 682 | * snd_hda_queue_unsol_event - add an unsolicited event to queue |
| 683 | * @bus: the BUS |
| 684 | * @res: unsolicited event (lower 32bit of RIRB entry) |
| 685 | * @res_ex: codec addr and flags (upper 32bit or RIRB entry) |
| 686 | * |
| 687 | * Adds the given event to the queue. The events are processed in |
| 688 | * the workqueue asynchronously. Call this function in the interrupt |
| 689 | * hanlder when RIRB receives an unsolicited event. |
| 690 | * |
| 691 | * Returns 0 if successful, or a negative error code. |
| 692 | */ |
| 693 | int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex) |
| 694 | { |
| 695 | struct hda_bus_unsolicited *unsol; |
| 696 | unsigned int wp; |
| 697 | |
Wang YanQing | 2195b06 | 2013-05-07 11:27:33 +0800 | [diff] [blame] | 698 | if (!bus || !bus->workq) |
| 699 | return 0; |
| 700 | |
Takashi Iwai | ecf726f | 2011-08-09 14:22:44 +0200 | [diff] [blame] | 701 | trace_hda_unsol_event(bus, res, res_ex); |
Takashi Iwai | 922c88a | 2015-02-17 14:46:40 +0100 | [diff] [blame] | 702 | unsol = &bus->unsol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | wp = (unsol->wp + 1) % HDA_UNSOL_QUEUE_SIZE; |
| 704 | unsol->wp = wp; |
| 705 | |
| 706 | wp <<= 1; |
| 707 | unsol->queue[wp] = res; |
| 708 | unsol->queue[wp + 1] = res_ex; |
| 709 | |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 710 | queue_work(bus->workq, &unsol->work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
| 712 | return 0; |
| 713 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 714 | EXPORT_SYMBOL_GPL(snd_hda_queue_unsol_event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | |
| 716 | /* |
Wu Fengguang | 5c1d1a9 | 2008-10-07 14:17:53 +0800 | [diff] [blame] | 717 | * process queued unsolicited events |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | */ |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 719 | static void process_unsol_events(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | { |
Takashi Iwai | 922c88a | 2015-02-17 14:46:40 +0100 | [diff] [blame] | 721 | struct hda_bus *bus = container_of(work, struct hda_bus, unsol.work); |
| 722 | struct hda_bus_unsolicited *unsol = &bus->unsol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | struct hda_codec *codec; |
| 724 | unsigned int rp, caddr, res; |
| 725 | |
| 726 | while (unsol->rp != unsol->wp) { |
| 727 | rp = (unsol->rp + 1) % HDA_UNSOL_QUEUE_SIZE; |
| 728 | unsol->rp = rp; |
| 729 | rp <<= 1; |
| 730 | res = unsol->queue[rp]; |
| 731 | caddr = unsol->queue[rp + 1]; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 732 | if (!(caddr & (1 << 4))) /* no unsolicited event? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | continue; |
| 734 | codec = bus->caddr_tbl[caddr & 0x0f]; |
| 735 | if (codec && codec->patch_ops.unsol_event) |
| 736 | codec->patch_ops.unsol_event(codec, res); |
| 737 | } |
| 738 | } |
| 739 | |
| 740 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | * destructor |
| 742 | */ |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 743 | static void snd_hda_bus_free(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 745 | if (!bus) |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 746 | return; |
| 747 | |
| 748 | WARN_ON(!list_empty(&bus->codec_list)); |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 749 | if (bus->workq) |
| 750 | flush_workqueue(bus->workq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | if (bus->ops.private_free) |
| 752 | bus->ops.private_free(bus); |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 753 | if (bus->workq) |
| 754 | destroy_workqueue(bus->workq); |
Mengdong Lin | 0e24dbb | 2013-11-26 23:00:51 -0500 | [diff] [blame] | 755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | kfree(bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | } |
| 758 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 759 | static int snd_hda_bus_dev_free(struct snd_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | { |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 761 | snd_hda_bus_free(device->device_data); |
| 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | static int snd_hda_bus_dev_disconnect(struct snd_device *device) |
| 766 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | struct hda_bus *bus = device->device_data; |
Takashi Iwai | b94d3539 | 2008-11-21 09:08:06 +0100 | [diff] [blame] | 768 | bus->shutdown = 1; |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 769 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | } |
| 771 | |
| 772 | /** |
| 773 | * snd_hda_bus_new - create a HDA bus |
| 774 | * @card: the card entry |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | * @busp: the pointer to store the created bus instance |
| 776 | * |
| 777 | * Returns 0 if successful, or a negative error code. |
| 778 | */ |
Takashi Iwai | 6a0f56a | 2012-12-07 07:41:56 +0100 | [diff] [blame] | 779 | int snd_hda_bus_new(struct snd_card *card, |
Takashi Iwai | ef74497 | 2015-02-17 13:56:29 +0100 | [diff] [blame] | 780 | struct hda_bus **busp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | { |
| 782 | struct hda_bus *bus; |
| 783 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 784 | static struct snd_device_ops dev_ops = { |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 785 | .dev_disconnect = snd_hda_bus_dev_disconnect, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | .dev_free = snd_hda_bus_dev_free, |
| 787 | }; |
| 788 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | if (busp) |
| 790 | *busp = NULL; |
| 791 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 792 | bus = kzalloc(sizeof(*bus), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | if (bus == NULL) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 794 | dev_err(card->dev, "can't allocate struct hda_bus\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | return -ENOMEM; |
| 796 | } |
| 797 | |
| 798 | bus->card = card; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 799 | mutex_init(&bus->cmd_mutex); |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 800 | mutex_init(&bus->prepare_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | INIT_LIST_HEAD(&bus->codec_list); |
Takashi Iwai | 922c88a | 2015-02-17 14:46:40 +0100 | [diff] [blame] | 802 | INIT_WORK(&bus->unsol.work, process_unsol_events); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | |
Takashi Iwai | e8c0ee5 | 2009-02-05 07:34:28 +0100 | [diff] [blame] | 804 | snprintf(bus->workq_name, sizeof(bus->workq_name), |
| 805 | "hd-audio%d", card->number); |
| 806 | bus->workq = create_singlethread_workqueue(bus->workq_name); |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 807 | if (!bus->workq) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 808 | dev_err(card->dev, "cannot create workqueue %s\n", |
Takashi Iwai | e8c0ee5 | 2009-02-05 07:34:28 +0100 | [diff] [blame] | 809 | bus->workq_name); |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 810 | kfree(bus); |
| 811 | return -ENOMEM; |
| 812 | } |
| 813 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 814 | err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops); |
| 815 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | snd_hda_bus_free(bus); |
| 817 | return err; |
| 818 | } |
| 819 | if (busp) |
| 820 | *busp = bus; |
| 821 | return 0; |
| 822 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 823 | EXPORT_SYMBOL_GPL(snd_hda_bus_new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | /* |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 826 | * look for an AFG and MFG nodes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | */ |
Takashi Iwai | 6a0f56a | 2012-12-07 07:41:56 +0100 | [diff] [blame] | 828 | static void setup_fg_nodes(struct hda_codec *codec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | { |
Takashi Iwai | 93e82ae | 2009-04-17 18:04:41 +0200 | [diff] [blame] | 830 | int i, total_nodes, function_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | hda_nid_t nid; |
| 832 | |
| 833 | total_nodes = snd_hda_get_sub_nodes(codec, AC_NODE_ROOT, &nid); |
| 834 | for (i = 0; i < total_nodes; i++, nid++) { |
Takashi Iwai | 93e82ae | 2009-04-17 18:04:41 +0200 | [diff] [blame] | 835 | function_id = snd_hda_param_read(codec, nid, |
Jaroslav Kysela | 79c944a | 2010-07-19 15:52:39 +0200 | [diff] [blame] | 836 | AC_PAR_FUNCTION_TYPE); |
Jaroslav Kysela | cd7643b | 2010-07-20 12:11:25 +0200 | [diff] [blame] | 837 | switch (function_id & 0xff) { |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 838 | case AC_GRP_AUDIO_FUNCTION: |
| 839 | codec->afg = nid; |
Jaroslav Kysela | 79c944a | 2010-07-19 15:52:39 +0200 | [diff] [blame] | 840 | codec->afg_function_id = function_id & 0xff; |
| 841 | codec->afg_unsol = (function_id >> 8) & 1; |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 842 | break; |
| 843 | case AC_GRP_MODEM_FUNCTION: |
| 844 | codec->mfg = nid; |
Jaroslav Kysela | 79c944a | 2010-07-19 15:52:39 +0200 | [diff] [blame] | 845 | codec->mfg_function_id = function_id & 0xff; |
| 846 | codec->mfg_unsol = (function_id >> 8) & 1; |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 847 | break; |
| 848 | default: |
| 849 | break; |
| 850 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | } |
| 853 | |
| 854 | /* |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 855 | * read widget caps for each widget and store in cache |
| 856 | */ |
| 857 | static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node) |
| 858 | { |
| 859 | int i; |
| 860 | hda_nid_t nid; |
| 861 | |
| 862 | codec->num_nodes = snd_hda_get_sub_nodes(codec, fg_node, |
| 863 | &codec->start_nid); |
| 864 | codec->wcaps = kmalloc(codec->num_nodes * 4, GFP_KERNEL); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 865 | if (!codec->wcaps) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 866 | return -ENOMEM; |
| 867 | nid = codec->start_nid; |
| 868 | for (i = 0; i < codec->num_nodes; i++, nid++) |
| 869 | codec->wcaps[i] = snd_hda_param_read(codec, nid, |
| 870 | AC_PAR_AUDIO_WIDGET_CAP); |
| 871 | return 0; |
| 872 | } |
| 873 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 874 | /* read all pin default configurations and save codec->init_pins */ |
| 875 | static int read_pin_defaults(struct hda_codec *codec) |
| 876 | { |
| 877 | int i; |
| 878 | hda_nid_t nid = codec->start_nid; |
| 879 | |
| 880 | for (i = 0; i < codec->num_nodes; i++, nid++) { |
| 881 | struct hda_pincfg *pin; |
| 882 | unsigned int wcaps = get_wcaps(codec, nid); |
Takashi Iwai | a22d543 | 2009-07-27 12:54:26 +0200 | [diff] [blame] | 883 | unsigned int wid_type = get_wcaps_type(wcaps); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 884 | if (wid_type != AC_WID_PIN) |
| 885 | continue; |
| 886 | pin = snd_array_new(&codec->init_pins); |
| 887 | if (!pin) |
| 888 | return -ENOMEM; |
| 889 | pin->nid = nid; |
| 890 | pin->cfg = snd_hda_codec_read(codec, nid, 0, |
| 891 | AC_VERB_GET_CONFIG_DEFAULT, 0); |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 892 | pin->ctrl = snd_hda_codec_read(codec, nid, 0, |
| 893 | AC_VERB_GET_PIN_WIDGET_CONTROL, |
| 894 | 0); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 895 | } |
| 896 | return 0; |
| 897 | } |
| 898 | |
| 899 | /* look up the given pin config list and return the item matching with NID */ |
| 900 | static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec, |
| 901 | struct snd_array *array, |
| 902 | hda_nid_t nid) |
| 903 | { |
| 904 | int i; |
| 905 | for (i = 0; i < array->used; i++) { |
| 906 | struct hda_pincfg *pin = snd_array_elem(array, i); |
| 907 | if (pin->nid == nid) |
| 908 | return pin; |
| 909 | } |
| 910 | return NULL; |
| 911 | } |
| 912 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 913 | /* set the current pin config value for the given NID. |
| 914 | * the value is cached, and read via snd_hda_codec_get_pincfg() |
| 915 | */ |
| 916 | int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list, |
| 917 | hda_nid_t nid, unsigned int cfg) |
| 918 | { |
| 919 | struct hda_pincfg *pin; |
| 920 | |
Takashi Iwai | d5657ec | 2013-04-18 09:59:28 +0200 | [diff] [blame] | 921 | /* the check below may be invalid when pins are added by a fixup |
| 922 | * dynamically (e.g. via snd_hda_codec_update_widgets()), so disabled |
| 923 | * for now |
| 924 | */ |
| 925 | /* |
Takashi Iwai | b82855a | 2009-12-27 11:24:56 +0100 | [diff] [blame] | 926 | if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN) |
| 927 | return -EINVAL; |
Takashi Iwai | d5657ec | 2013-04-18 09:59:28 +0200 | [diff] [blame] | 928 | */ |
Takashi Iwai | b82855a | 2009-12-27 11:24:56 +0100 | [diff] [blame] | 929 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 930 | pin = look_up_pincfg(codec, list, nid); |
| 931 | if (!pin) { |
| 932 | pin = snd_array_new(list); |
| 933 | if (!pin) |
| 934 | return -ENOMEM; |
| 935 | pin->nid = nid; |
| 936 | } |
| 937 | pin->cfg = cfg; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 938 | return 0; |
| 939 | } |
| 940 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 941 | /** |
| 942 | * snd_hda_codec_set_pincfg - Override a pin default configuration |
| 943 | * @codec: the HDA codec |
| 944 | * @nid: NID to set the pin config |
| 945 | * @cfg: the pin default config value |
| 946 | * |
| 947 | * Override a pin default configuration value in the cache. |
| 948 | * This value can be read by snd_hda_codec_get_pincfg() in a higher |
| 949 | * priority than the real hardware value. |
| 950 | */ |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 951 | int snd_hda_codec_set_pincfg(struct hda_codec *codec, |
| 952 | hda_nid_t nid, unsigned int cfg) |
| 953 | { |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 954 | return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 955 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 956 | EXPORT_SYMBOL_GPL(snd_hda_codec_set_pincfg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 957 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 958 | /** |
| 959 | * snd_hda_codec_get_pincfg - Obtain a pin-default configuration |
| 960 | * @codec: the HDA codec |
| 961 | * @nid: NID to get the pin config |
| 962 | * |
| 963 | * Get the current pin config value of the given pin NID. |
| 964 | * If the pincfg value is cached or overridden via sysfs or driver, |
| 965 | * returns the cached value. |
| 966 | */ |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 967 | unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid) |
| 968 | { |
| 969 | struct hda_pincfg *pin; |
| 970 | |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 971 | #ifdef CONFIG_SND_HDA_RECONFIG |
Takashi Iwai | 09b70e8 | 2013-01-10 18:21:56 +0100 | [diff] [blame] | 972 | { |
| 973 | unsigned int cfg = 0; |
| 974 | mutex_lock(&codec->user_mutex); |
| 975 | pin = look_up_pincfg(codec, &codec->user_pins, nid); |
| 976 | if (pin) |
| 977 | cfg = pin->cfg; |
| 978 | mutex_unlock(&codec->user_mutex); |
| 979 | if (cfg) |
| 980 | return cfg; |
| 981 | } |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 982 | #endif |
Takashi Iwai | 5e7b8e0 | 2009-02-23 09:45:59 +0100 | [diff] [blame] | 983 | pin = look_up_pincfg(codec, &codec->driver_pins, nid); |
| 984 | if (pin) |
| 985 | return pin->cfg; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 986 | pin = look_up_pincfg(codec, &codec->init_pins, nid); |
| 987 | if (pin) |
| 988 | return pin->cfg; |
| 989 | return 0; |
| 990 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 991 | EXPORT_SYMBOL_GPL(snd_hda_codec_get_pincfg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 992 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 993 | /** |
| 994 | * snd_hda_codec_set_pin_target - remember the current pinctl target value |
| 995 | * @codec: the HDA codec |
| 996 | * @nid: pin NID |
| 997 | * @val: assigned pinctl value |
| 998 | * |
| 999 | * This function stores the given value to a pinctl target value in the |
| 1000 | * pincfg table. This isn't always as same as the actually written value |
| 1001 | * but can be referred at any time via snd_hda_codec_get_pin_target(). |
| 1002 | */ |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 1003 | int snd_hda_codec_set_pin_target(struct hda_codec *codec, hda_nid_t nid, |
| 1004 | unsigned int val) |
| 1005 | { |
| 1006 | struct hda_pincfg *pin; |
| 1007 | |
| 1008 | pin = look_up_pincfg(codec, &codec->init_pins, nid); |
| 1009 | if (!pin) |
| 1010 | return -EINVAL; |
| 1011 | pin->target = val; |
| 1012 | return 0; |
| 1013 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1014 | EXPORT_SYMBOL_GPL(snd_hda_codec_set_pin_target); |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 1015 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1016 | /** |
| 1017 | * snd_hda_codec_get_pin_target - return the current pinctl target value |
| 1018 | * @codec: the HDA codec |
| 1019 | * @nid: pin NID |
| 1020 | */ |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 1021 | int snd_hda_codec_get_pin_target(struct hda_codec *codec, hda_nid_t nid) |
| 1022 | { |
| 1023 | struct hda_pincfg *pin; |
| 1024 | |
| 1025 | pin = look_up_pincfg(codec, &codec->init_pins, nid); |
| 1026 | if (!pin) |
| 1027 | return 0; |
| 1028 | return pin->target; |
| 1029 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1030 | EXPORT_SYMBOL_GPL(snd_hda_codec_get_pin_target); |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 1031 | |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 1032 | /** |
| 1033 | * snd_hda_shutup_pins - Shut up all pins |
| 1034 | * @codec: the HDA codec |
| 1035 | * |
| 1036 | * Clear all pin controls to shup up before suspend for avoiding click noise. |
| 1037 | * The controls aren't cached so that they can be resumed properly. |
| 1038 | */ |
| 1039 | void snd_hda_shutup_pins(struct hda_codec *codec) |
| 1040 | { |
| 1041 | int i; |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 1042 | /* don't shut up pins when unloading the driver; otherwise it breaks |
| 1043 | * the default pin setup at the next load of the driver |
| 1044 | */ |
| 1045 | if (codec->bus->shutdown) |
| 1046 | return; |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 1047 | for (i = 0; i < codec->init_pins.used; i++) { |
| 1048 | struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i); |
| 1049 | /* use read here for syncing after issuing each verb */ |
| 1050 | snd_hda_codec_read(codec, pin->nid, 0, |
| 1051 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0); |
| 1052 | } |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 1053 | codec->pins_shutup = 1; |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 1054 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1055 | EXPORT_SYMBOL_GPL(snd_hda_shutup_pins); |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 1056 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 1057 | #ifdef CONFIG_PM |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 1058 | /* Restore the pin controls cleared previously via snd_hda_shutup_pins() */ |
| 1059 | static void restore_shutup_pins(struct hda_codec *codec) |
| 1060 | { |
| 1061 | int i; |
| 1062 | if (!codec->pins_shutup) |
| 1063 | return; |
| 1064 | if (codec->bus->shutdown) |
| 1065 | return; |
| 1066 | for (i = 0; i < codec->init_pins.used; i++) { |
| 1067 | struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i); |
| 1068 | snd_hda_codec_write(codec, pin->nid, 0, |
| 1069 | AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 1070 | pin->ctrl); |
| 1071 | } |
| 1072 | codec->pins_shutup = 0; |
| 1073 | } |
Mike Waychison | 1c7276c | 2011-04-20 12:04:36 -0700 | [diff] [blame] | 1074 | #endif |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 1075 | |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 1076 | static void hda_jackpoll_work(struct work_struct *work) |
| 1077 | { |
| 1078 | struct hda_codec *codec = |
| 1079 | container_of(work, struct hda_codec, jackpoll_work.work); |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 1080 | |
| 1081 | snd_hda_jack_set_dirty_all(codec); |
| 1082 | snd_hda_jack_poll_all(codec); |
Wang Xingchao | 18e6062 | 2013-07-25 23:34:45 -0400 | [diff] [blame] | 1083 | |
| 1084 | if (!codec->jackpoll_interval) |
| 1085 | return; |
| 1086 | |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 1087 | queue_delayed_work(codec->bus->workq, &codec->jackpoll_work, |
| 1088 | codec->jackpoll_interval); |
| 1089 | } |
| 1090 | |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1091 | static void init_hda_cache(struct hda_cache_rec *cache, |
| 1092 | unsigned int record_size); |
Takashi Iwai | 1fcaee6 | 2007-08-23 00:01:09 +0200 | [diff] [blame] | 1093 | static void free_hda_cache(struct hda_cache_rec *cache); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1094 | |
Takashi Iwai | 3fdf146 | 2012-11-22 08:16:31 +0100 | [diff] [blame] | 1095 | /* release all pincfg lists */ |
| 1096 | static void free_init_pincfgs(struct hda_codec *codec) |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1097 | { |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 1098 | snd_array_free(&codec->driver_pins); |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 1099 | #ifdef CONFIG_SND_HDA_RECONFIG |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 1100 | snd_array_free(&codec->user_pins); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1101 | #endif |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1102 | snd_array_free(&codec->init_pins); |
| 1103 | } |
| 1104 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 1105 | /* |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1106 | * audio-converter setup caches |
| 1107 | */ |
| 1108 | struct hda_cvt_setup { |
| 1109 | hda_nid_t nid; |
| 1110 | u8 stream_tag; |
| 1111 | u8 channel_id; |
| 1112 | u16 format_id; |
| 1113 | unsigned char active; /* cvt is currently used */ |
| 1114 | unsigned char dirty; /* setups should be cleared */ |
| 1115 | }; |
| 1116 | |
| 1117 | /* get or create a cache entry for the given audio converter NID */ |
| 1118 | static struct hda_cvt_setup * |
| 1119 | get_hda_cvt_setup(struct hda_codec *codec, hda_nid_t nid) |
| 1120 | { |
| 1121 | struct hda_cvt_setup *p; |
| 1122 | int i; |
| 1123 | |
| 1124 | for (i = 0; i < codec->cvt_setups.used; i++) { |
| 1125 | p = snd_array_elem(&codec->cvt_setups, i); |
| 1126 | if (p->nid == nid) |
| 1127 | return p; |
| 1128 | } |
| 1129 | p = snd_array_new(&codec->cvt_setups); |
| 1130 | if (p) |
| 1131 | p->nid = nid; |
| 1132 | return p; |
| 1133 | } |
| 1134 | |
| 1135 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | * codec destructor |
| 1137 | */ |
| 1138 | static void snd_hda_codec_free(struct hda_codec *codec) |
| 1139 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1140 | if (!codec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | return; |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 1142 | cancel_delayed_work_sync(&codec->jackpoll_work); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame^] | 1143 | if (device_is_registered(hda_codec_dev(codec))) |
| 1144 | device_del(hda_codec_dev(codec)); |
Takashi Iwai | 59cad16 | 2012-06-26 15:00:20 +0200 | [diff] [blame] | 1145 | snd_hda_jack_tbl_clear(codec); |
Takashi Iwai | 3fdf146 | 2012-11-22 08:16:31 +0100 | [diff] [blame] | 1146 | free_init_pincfgs(codec); |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 1147 | #ifdef CONFIG_PM |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1148 | cancel_delayed_work(&codec->power_work); |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 1149 | flush_workqueue(codec->bus->workq); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1150 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | list_del(&codec->list); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1152 | snd_array_free(&codec->mixers); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1153 | snd_array_free(&codec->nids); |
Takashi Iwai | 59cad16 | 2012-06-26 15:00:20 +0200 | [diff] [blame] | 1154 | snd_array_free(&codec->cvt_setups); |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 1155 | snd_array_free(&codec->spdif_out); |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 1156 | remove_conn_list(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | codec->bus->caddr_tbl[codec->addr] = NULL; |
Takashi Iwai | a40e0a8 | 2013-11-20 12:41:20 +0100 | [diff] [blame] | 1158 | hda_call_pm_notify(codec, false); /* cancel leftover refcounts */ |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 1159 | snd_hda_sysfs_clear(codec); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1160 | free_hda_cache(&codec->amp_cache); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1161 | free_hda_cache(&codec->cmd_cache); |
Takashi Iwai | 812a2cc | 2009-05-16 10:00:49 +0200 | [diff] [blame] | 1162 | kfree(codec->vendor_name); |
| 1163 | kfree(codec->chip_name); |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1164 | kfree(codec->modelname); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 1165 | kfree(codec->wcaps); |
Mengdong Lin | 0e24dbb | 2013-11-26 23:00:51 -0500 | [diff] [blame] | 1166 | codec->bus->num_codecs--; |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame^] | 1167 | put_device(hda_codec_dev(codec)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | } |
| 1169 | |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 1170 | static bool snd_hda_codec_get_supported_ps(struct hda_codec *codec, |
| 1171 | hda_nid_t fg, unsigned int power_state); |
| 1172 | |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 1173 | static unsigned int hda_set_power_state(struct hda_codec *codec, |
Takashi Iwai | bb6ac72 | 2009-03-13 09:02:42 +0100 | [diff] [blame] | 1174 | unsigned int power_state); |
| 1175 | |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 1176 | static int snd_hda_codec_dev_register(struct snd_device *device) |
| 1177 | { |
| 1178 | struct hda_codec *codec = device->device_data; |
| 1179 | |
Takashi Iwai | d604b39 | 2014-02-28 13:42:09 +0100 | [diff] [blame] | 1180 | snd_hda_register_beep_device(codec); |
| 1181 | return 0; |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 1182 | } |
| 1183 | |
| 1184 | static int snd_hda_codec_dev_disconnect(struct snd_device *device) |
| 1185 | { |
| 1186 | struct hda_codec *codec = device->device_data; |
| 1187 | |
Takashi Iwai | d604b39 | 2014-02-28 13:42:09 +0100 | [diff] [blame] | 1188 | snd_hda_detach_beep_device(codec); |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 1189 | return 0; |
| 1190 | } |
| 1191 | |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 1192 | static int snd_hda_codec_dev_free(struct snd_device *device) |
| 1193 | { |
| 1194 | snd_hda_codec_free(device->device_data); |
| 1195 | return 0; |
| 1196 | } |
| 1197 | |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 1198 | /* just free the container */ |
| 1199 | static void snd_hda_codec_dev_release(struct device *dev) |
| 1200 | { |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame^] | 1201 | kfree(dev_to_hda_codec(dev)); |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 1202 | } |
| 1203 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | /** |
| 1205 | * snd_hda_codec_new - create a HDA codec |
| 1206 | * @bus: the bus to assign |
| 1207 | * @codec_addr: the codec address |
| 1208 | * @codecp: the pointer to store the generated codec |
| 1209 | * |
| 1210 | * Returns 0 if successful, or a negative error code. |
| 1211 | */ |
Takashi Iwai | 6a0f56a | 2012-12-07 07:41:56 +0100 | [diff] [blame] | 1212 | int snd_hda_codec_new(struct hda_bus *bus, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 1213 | unsigned int codec_addr, |
| 1214 | struct hda_codec **codecp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | { |
| 1216 | struct hda_codec *codec; |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame^] | 1217 | struct device *dev; |
Jaroslav Kysela | ba44368 | 2008-08-13 20:55:32 +0200 | [diff] [blame] | 1218 | char component[31]; |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 1219 | hda_nid_t fg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | int err; |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 1221 | static struct snd_device_ops dev_ops = { |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 1222 | .dev_register = snd_hda_codec_dev_register, |
| 1223 | .dev_disconnect = snd_hda_codec_dev_disconnect, |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 1224 | .dev_free = snd_hda_codec_dev_free, |
| 1225 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 1227 | if (snd_BUG_ON(!bus)) |
| 1228 | return -EINVAL; |
| 1229 | if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS)) |
| 1230 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | |
| 1232 | if (bus->caddr_tbl[codec_addr]) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1233 | dev_err(bus->card->dev, |
| 1234 | "address 0x%x is already occupied\n", |
| 1235 | codec_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | return -EBUSY; |
| 1237 | } |
| 1238 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 1239 | codec = kzalloc(sizeof(*codec), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | if (codec == NULL) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1241 | dev_err(bus->card->dev, "can't allocate struct hda_codec\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | return -ENOMEM; |
| 1243 | } |
| 1244 | |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame^] | 1245 | dev = hda_codec_dev(codec); |
| 1246 | device_initialize(dev); |
| 1247 | dev->parent = bus->card->dev; |
| 1248 | dev->bus = &snd_hda_bus_type; |
| 1249 | dev->release = snd_hda_codec_dev_release; |
| 1250 | dev->groups = snd_hda_dev_attr_groups; |
| 1251 | dev_set_name(dev, "hdaudioC%dD%d", bus->card->number, codec_addr); |
| 1252 | dev_set_drvdata(dev, codec); /* for sysfs */ |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 1253 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | codec->bus = bus; |
| 1255 | codec->addr = codec_addr; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1256 | mutex_init(&codec->spdif_mutex); |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 1257 | mutex_init(&codec->control_mutex); |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1258 | mutex_init(&codec->hash_mutex); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1259 | init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info)); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1260 | init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head)); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1261 | snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32); |
| 1262 | snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1263 | snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16); |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 1264 | snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1265 | snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8); |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 1266 | snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16); |
Takashi Iwai | 361dab3 | 2012-05-09 14:35:27 +0200 | [diff] [blame] | 1267 | snd_array_init(&codec->jacktbl, sizeof(struct hda_jack_tbl), 16); |
Takashi Iwai | c9ce6b2 | 2012-12-18 18:12:44 +0100 | [diff] [blame] | 1268 | snd_array_init(&codec->verbs, sizeof(struct hda_verb *), 8); |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 1269 | INIT_LIST_HEAD(&codec->conn_list); |
| 1270 | |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 1271 | INIT_DELAYED_WORK(&codec->jackpoll_work, hda_jackpoll_work); |
Mengdong Lin | 7f13292 | 2013-11-29 01:48:45 -0500 | [diff] [blame] | 1272 | codec->depop_delay = -1; |
David Henningsson | f5662e1 | 2014-07-22 14:09:34 +0200 | [diff] [blame] | 1273 | codec->fixup_id = HDA_FIXUP_ID_NOT_SET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 1275 | #ifdef CONFIG_PM |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 1276 | spin_lock_init(&codec->power_lock); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1277 | INIT_DELAYED_WORK(&codec->power_work, hda_power_work); |
| 1278 | /* snd_hda_codec_new() marks the codec as power-up, and leave it as is. |
| 1279 | * the caller has to power down appropriatley after initialization |
| 1280 | * phase. |
| 1281 | */ |
| 1282 | hda_keep_power_on(codec); |
| 1283 | #endif |
| 1284 | |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 1285 | snd_hda_sysfs_init(codec); |
| 1286 | |
Takashi Iwai | c382a9f | 2012-05-07 15:01:02 +0200 | [diff] [blame] | 1287 | if (codec->bus->modelname) { |
| 1288 | codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL); |
| 1289 | if (!codec->modelname) { |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 1290 | err = -ENODEV; |
| 1291 | goto error; |
Takashi Iwai | c382a9f | 2012-05-07 15:01:02 +0200 | [diff] [blame] | 1292 | } |
| 1293 | } |
| 1294 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | list_add_tail(&codec->list, &bus->codec_list); |
Mengdong Lin | 0e24dbb | 2013-11-26 23:00:51 -0500 | [diff] [blame] | 1296 | bus->num_codecs++; |
Mengdong Lin | 0e24dbb | 2013-11-26 23:00:51 -0500 | [diff] [blame] | 1297 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | bus->caddr_tbl[codec_addr] = codec; |
| 1299 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1300 | codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT, |
| 1301 | AC_PAR_VENDOR_ID); |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 1302 | if (codec->vendor_id == -1) |
| 1303 | /* read again, hopefully the access method was corrected |
| 1304 | * in the last read... |
| 1305 | */ |
| 1306 | codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT, |
| 1307 | AC_PAR_VENDOR_ID); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1308 | codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT, |
| 1309 | AC_PAR_SUBSYSTEM_ID); |
| 1310 | codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT, |
| 1311 | AC_PAR_REV_ID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 1313 | setup_fg_nodes(codec); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1314 | if (!codec->afg && !codec->mfg) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1315 | dev_err(bus->card->dev, "no AFG or MFG node found\n"); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1316 | err = -ENODEV; |
| 1317 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | } |
| 1319 | |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 1320 | fg = codec->afg ? codec->afg : codec->mfg; |
| 1321 | err = read_widget_caps(codec, fg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1322 | if (err < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1323 | dev_err(bus->card->dev, "cannot malloc\n"); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1324 | goto error; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 1325 | } |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1326 | err = read_pin_defaults(codec); |
| 1327 | if (err < 0) |
| 1328 | goto error; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 1329 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1330 | if (!codec->subsystem_id) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1331 | codec->subsystem_id = |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 1332 | snd_hda_codec_read(codec, fg, 0, |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1333 | AC_VERB_GET_SUBSYSTEM_ID, 0); |
Takashi Iwai | 86284e4 | 2005-10-11 15:05:54 +0200 | [diff] [blame] | 1334 | } |
| 1335 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 1336 | #ifdef CONFIG_PM |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 1337 | codec->d3_stop_clk = snd_hda_codec_get_supported_ps(codec, fg, |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 1338 | AC_PWRST_CLKSTOP); |
Mengdong Lin | 5d6147f | 2012-08-24 12:06:30 +0800 | [diff] [blame] | 1339 | #endif |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 1340 | codec->epss = snd_hda_codec_get_supported_ps(codec, fg, |
Takashi Iwai | 983f6b9 | 2012-08-28 09:18:01 -0700 | [diff] [blame] | 1341 | AC_PWRST_EPSS); |
Takashi Iwai | 3e9bc58 | 2013-11-26 09:58:46 +0100 | [diff] [blame] | 1342 | #ifdef CONFIG_PM |
| 1343 | if (!codec->d3_stop_clk || !codec->epss) |
| 1344 | bus->power_keep_link_on = 1; |
| 1345 | #endif |
| 1346 | |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 1347 | |
Takashi Iwai | bb6ac72 | 2009-03-13 09:02:42 +0100 | [diff] [blame] | 1348 | /* power-up all before initialization */ |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 1349 | hda_set_power_state(codec, AC_PWRST_D0); |
Takashi Iwai | bb6ac72 | 2009-03-13 09:02:42 +0100 | [diff] [blame] | 1350 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1351 | snd_hda_codec_proc_new(codec); |
| 1352 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1353 | snd_hda_create_hwdep(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1354 | |
| 1355 | sprintf(component, "HDA:%08x,%08x,%08x", codec->vendor_id, |
| 1356 | codec->subsystem_id, codec->revision_id); |
| 1357 | snd_component_add(codec->bus->card, component); |
| 1358 | |
Takashi Iwai | 2565c89 | 2014-02-19 11:41:09 +0100 | [diff] [blame] | 1359 | err = snd_device_new(bus->card, SNDRV_DEV_CODEC, codec, &dev_ops); |
| 1360 | if (err < 0) |
| 1361 | goto error; |
| 1362 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1363 | if (codecp) |
| 1364 | *codecp = codec; |
| 1365 | return 0; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1366 | |
| 1367 | error: |
| 1368 | snd_hda_codec_free(codec); |
| 1369 | return err; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1370 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1371 | EXPORT_SYMBOL_GPL(snd_hda_codec_new); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1372 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1373 | /** |
| 1374 | * snd_hda_codec_update_widgets - Refresh widget caps and pin defaults |
| 1375 | * @codec: the HDA codec |
| 1376 | * |
| 1377 | * Forcibly refresh the all widget caps and the init pin configurations of |
| 1378 | * the given codec. |
| 1379 | */ |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1380 | int snd_hda_codec_update_widgets(struct hda_codec *codec) |
| 1381 | { |
| 1382 | hda_nid_t fg; |
| 1383 | int err; |
| 1384 | |
| 1385 | /* Assume the function group node does not change, |
| 1386 | * only the widget nodes may change. |
| 1387 | */ |
| 1388 | kfree(codec->wcaps); |
| 1389 | fg = codec->afg ? codec->afg : codec->mfg; |
| 1390 | err = read_widget_caps(codec, fg); |
| 1391 | if (err < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1392 | codec_err(codec, "cannot malloc\n"); |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1393 | return err; |
| 1394 | } |
| 1395 | |
| 1396 | snd_array_free(&codec->init_pins); |
| 1397 | err = read_pin_defaults(codec); |
| 1398 | |
| 1399 | return err; |
| 1400 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1401 | EXPORT_SYMBOL_GPL(snd_hda_codec_update_widgets); |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 1402 | |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 1403 | /* update the stream-id if changed */ |
| 1404 | static void update_pcm_stream_id(struct hda_codec *codec, |
| 1405 | struct hda_cvt_setup *p, hda_nid_t nid, |
| 1406 | u32 stream_tag, int channel_id) |
| 1407 | { |
| 1408 | unsigned int oldval, newval; |
| 1409 | |
| 1410 | if (p->stream_tag != stream_tag || p->channel_id != channel_id) { |
| 1411 | oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0); |
| 1412 | newval = (stream_tag << 4) | channel_id; |
| 1413 | if (oldval != newval) |
| 1414 | snd_hda_codec_write(codec, nid, 0, |
| 1415 | AC_VERB_SET_CHANNEL_STREAMID, |
| 1416 | newval); |
| 1417 | p->stream_tag = stream_tag; |
| 1418 | p->channel_id = channel_id; |
| 1419 | } |
| 1420 | } |
| 1421 | |
| 1422 | /* update the format-id if changed */ |
| 1423 | static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p, |
| 1424 | hda_nid_t nid, int format) |
| 1425 | { |
| 1426 | unsigned int oldval; |
| 1427 | |
| 1428 | if (p->format_id != format) { |
| 1429 | oldval = snd_hda_codec_read(codec, nid, 0, |
| 1430 | AC_VERB_GET_STREAM_FORMAT, 0); |
| 1431 | if (oldval != format) { |
| 1432 | msleep(1); |
| 1433 | snd_hda_codec_write(codec, nid, 0, |
| 1434 | AC_VERB_SET_STREAM_FORMAT, |
| 1435 | format); |
| 1436 | } |
| 1437 | p->format_id = format; |
| 1438 | } |
| 1439 | } |
| 1440 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | /** |
| 1442 | * snd_hda_codec_setup_stream - set up the codec for streaming |
| 1443 | * @codec: the CODEC to set up |
| 1444 | * @nid: the NID to set up |
| 1445 | * @stream_tag: stream tag to pass, it's between 0x1 and 0xf. |
| 1446 | * @channel_id: channel id to pass, zero based. |
| 1447 | * @format: stream format. |
| 1448 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1449 | void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 1450 | u32 stream_tag, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | int channel_id, int format) |
| 1452 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1453 | struct hda_codec *c; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1454 | struct hda_cvt_setup *p; |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1455 | int type; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1456 | int i; |
| 1457 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1458 | if (!nid) |
Takashi Iwai | d21b37e | 2005-04-20 13:45:55 +0200 | [diff] [blame] | 1459 | return; |
| 1460 | |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1461 | codec_dbg(codec, |
| 1462 | "hda_codec_setup_stream: NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n", |
| 1463 | nid, stream_tag, channel_id, format); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1464 | p = get_hda_cvt_setup(codec, nid); |
Takashi Iwai | 6c35ae3 | 2013-05-10 13:39:50 +0200 | [diff] [blame] | 1465 | if (!p) |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1466 | return; |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 1467 | |
| 1468 | if (codec->pcm_format_first) |
| 1469 | update_pcm_format(codec, p, nid, format); |
| 1470 | update_pcm_stream_id(codec, p, nid, stream_tag, channel_id); |
| 1471 | if (!codec->pcm_format_first) |
| 1472 | update_pcm_format(codec, p, nid, format); |
| 1473 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1474 | p->active = 1; |
| 1475 | p->dirty = 0; |
| 1476 | |
| 1477 | /* make other inactive cvts with the same stream-tag dirty */ |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1478 | type = get_wcaps_type(get_wcaps(codec, nid)); |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1479 | list_for_each_entry(c, &codec->bus->codec_list, list) { |
| 1480 | for (i = 0; i < c->cvt_setups.used; i++) { |
| 1481 | p = snd_array_elem(&c->cvt_setups, i); |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1482 | if (!p->active && p->stream_tag == stream_tag && |
David Henningsson | 54c2a89 | 2012-02-01 12:05:41 +0100 | [diff] [blame] | 1483 | get_wcaps_type(get_wcaps(c, p->nid)) == type) |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1484 | p->dirty = 1; |
| 1485 | } |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1486 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1488 | EXPORT_SYMBOL_GPL(snd_hda_codec_setup_stream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1490 | static void really_cleanup_stream(struct hda_codec *codec, |
| 1491 | struct hda_cvt_setup *q); |
| 1492 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1493 | /** |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1494 | * __snd_hda_codec_cleanup_stream - clean up the codec for closing |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1495 | * @codec: the CODEC to clean up |
| 1496 | * @nid: the NID to clean up |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1497 | * @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] | 1498 | */ |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1499 | void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 1500 | int do_now) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1501 | { |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1502 | struct hda_cvt_setup *p; |
| 1503 | |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1504 | if (!nid) |
| 1505 | return; |
| 1506 | |
Takashi Iwai | 0e7adbe | 2010-10-25 10:37:11 +0200 | [diff] [blame] | 1507 | if (codec->no_sticky_stream) |
| 1508 | do_now = 1; |
| 1509 | |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1510 | codec_dbg(codec, "hda_codec_cleanup_stream: NID=0x%x\n", nid); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1511 | p = get_hda_cvt_setup(codec, nid); |
Takashi Iwai | 6c35ae3 | 2013-05-10 13:39:50 +0200 | [diff] [blame] | 1512 | if (p) { |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1513 | /* here we just clear the active flag when do_now isn't set; |
| 1514 | * actual clean-ups will be done later in |
| 1515 | * purify_inactive_streams() called from snd_hda_codec_prpapre() |
| 1516 | */ |
| 1517 | if (do_now) |
| 1518 | really_cleanup_stream(codec, p); |
| 1519 | else |
| 1520 | p->active = 0; |
| 1521 | } |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1522 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1523 | EXPORT_SYMBOL_GPL(__snd_hda_codec_cleanup_stream); |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1524 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1525 | static void really_cleanup_stream(struct hda_codec *codec, |
| 1526 | struct hda_cvt_setup *q) |
| 1527 | { |
| 1528 | hda_nid_t nid = q->nid; |
Takashi Iwai | 218264a | 2011-09-27 17:33:45 +0200 | [diff] [blame] | 1529 | if (q->stream_tag || q->channel_id) |
| 1530 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0); |
| 1531 | if (q->format_id) |
| 1532 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0 |
| 1533 | ); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1534 | memset(q, 0, sizeof(*q)); |
| 1535 | q->nid = nid; |
| 1536 | } |
| 1537 | |
| 1538 | /* clean up the all conflicting obsolete streams */ |
| 1539 | static void purify_inactive_streams(struct hda_codec *codec) |
| 1540 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1541 | struct hda_codec *c; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1542 | int i; |
| 1543 | |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1544 | list_for_each_entry(c, &codec->bus->codec_list, list) { |
| 1545 | for (i = 0; i < c->cvt_setups.used; i++) { |
| 1546 | struct hda_cvt_setup *p; |
| 1547 | p = snd_array_elem(&c->cvt_setups, i); |
| 1548 | if (p->dirty) |
| 1549 | really_cleanup_stream(c, p); |
| 1550 | } |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1551 | } |
| 1552 | } |
| 1553 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 1554 | #ifdef CONFIG_PM |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1555 | /* clean up all streams; called from suspend */ |
| 1556 | static void hda_cleanup_all_streams(struct hda_codec *codec) |
| 1557 | { |
| 1558 | int i; |
| 1559 | |
| 1560 | for (i = 0; i < codec->cvt_setups.used; i++) { |
| 1561 | struct hda_cvt_setup *p = snd_array_elem(&codec->cvt_setups, i); |
| 1562 | if (p->stream_tag) |
| 1563 | really_cleanup_stream(codec, p); |
| 1564 | } |
| 1565 | } |
Mike Waychison | 1c7276c | 2011-04-20 12:04:36 -0700 | [diff] [blame] | 1566 | #endif |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1568 | /* |
| 1569 | * amp access functions |
| 1570 | */ |
| 1571 | |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1572 | /* FIXME: more better hash key? */ |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 1573 | #define HDA_HASH_KEY(nid, dir, idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24)) |
Takashi Iwai | 1327a32 | 2009-03-23 13:07:47 +0100 | [diff] [blame] | 1574 | #define HDA_HASH_PINCAP_KEY(nid) (u32)((nid) + (0x02 << 24)) |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 1575 | #define HDA_HASH_PARPCM_KEY(nid) (u32)((nid) + (0x03 << 24)) |
| 1576 | #define HDA_HASH_PARSTR_KEY(nid) (u32)((nid) + (0x04 << 24)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | #define INFO_AMP_CAPS (1<<0) |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1578 | #define INFO_AMP_VOL(ch) (1 << (1 + (ch))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | |
| 1580 | /* initialize the hash table */ |
Takashi Iwai | 6a0f56a | 2012-12-07 07:41:56 +0100 | [diff] [blame] | 1581 | static void init_hda_cache(struct hda_cache_rec *cache, |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1582 | unsigned int record_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | { |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1584 | memset(cache, 0, sizeof(*cache)); |
| 1585 | memset(cache->hash, 0xff, sizeof(cache->hash)); |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1586 | snd_array_init(&cache->buf, record_size, 64); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1587 | } |
| 1588 | |
Takashi Iwai | 1fcaee6 | 2007-08-23 00:01:09 +0200 | [diff] [blame] | 1589 | static void free_hda_cache(struct hda_cache_rec *cache) |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1590 | { |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1591 | snd_array_free(&cache->buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | } |
| 1593 | |
| 1594 | /* query the hash. allocate an entry if not found. */ |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 1595 | static struct hda_cache_head *get_hash(struct hda_cache_rec *cache, u32 key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | { |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1597 | u16 idx = key % (u16)ARRAY_SIZE(cache->hash); |
| 1598 | u16 cur = cache->hash[idx]; |
| 1599 | struct hda_cache_head *info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1600 | |
| 1601 | while (cur != 0xffff) { |
Takashi Iwai | f43aa02 | 2008-11-10 16:24:26 +0100 | [diff] [blame] | 1602 | info = snd_array_elem(&cache->buf, cur); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | if (info->key == key) |
| 1604 | return info; |
| 1605 | cur = info->next; |
| 1606 | } |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 1607 | return NULL; |
| 1608 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 1610 | /* query the hash. allocate an entry if not found. */ |
| 1611 | static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache, |
| 1612 | u32 key) |
| 1613 | { |
| 1614 | struct hda_cache_head *info = get_hash(cache, key); |
| 1615 | if (!info) { |
| 1616 | u16 idx, cur; |
| 1617 | /* add a new hash entry */ |
| 1618 | info = snd_array_new(&cache->buf); |
| 1619 | if (!info) |
| 1620 | return NULL; |
| 1621 | cur = snd_array_index(&cache->buf, info); |
| 1622 | info->key = key; |
| 1623 | info->val = 0; |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 1624 | info->dirty = 0; |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 1625 | idx = key % (u16)ARRAY_SIZE(cache->hash); |
| 1626 | info->next = cache->hash[idx]; |
| 1627 | cache->hash[idx] = cur; |
| 1628 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | return info; |
| 1630 | } |
| 1631 | |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1632 | /* query and allocate an amp hash entry */ |
| 1633 | static inline struct hda_amp_info * |
| 1634 | get_alloc_amp_hash(struct hda_codec *codec, u32 key) |
| 1635 | { |
| 1636 | return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key); |
| 1637 | } |
| 1638 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1639 | /* overwrite the value with the key in the caps hash */ |
| 1640 | static int write_caps_hash(struct hda_codec *codec, u32 key, unsigned int val) |
| 1641 | { |
| 1642 | struct hda_amp_info *info; |
| 1643 | |
| 1644 | mutex_lock(&codec->hash_mutex); |
| 1645 | info = get_alloc_amp_hash(codec, key); |
| 1646 | if (!info) { |
| 1647 | mutex_unlock(&codec->hash_mutex); |
| 1648 | return -EINVAL; |
| 1649 | } |
| 1650 | info->amp_caps = val; |
| 1651 | info->head.val |= INFO_AMP_CAPS; |
| 1652 | mutex_unlock(&codec->hash_mutex); |
| 1653 | return 0; |
| 1654 | } |
| 1655 | |
| 1656 | /* query the value from the caps hash; if not found, fetch the current |
| 1657 | * value from the given function and store in the hash |
| 1658 | */ |
| 1659 | static unsigned int |
| 1660 | query_caps_hash(struct hda_codec *codec, hda_nid_t nid, int dir, u32 key, |
| 1661 | unsigned int (*func)(struct hda_codec *, hda_nid_t, int)) |
| 1662 | { |
| 1663 | struct hda_amp_info *info; |
| 1664 | unsigned int val; |
| 1665 | |
| 1666 | mutex_lock(&codec->hash_mutex); |
| 1667 | info = get_alloc_amp_hash(codec, key); |
| 1668 | if (!info) { |
| 1669 | mutex_unlock(&codec->hash_mutex); |
| 1670 | return 0; |
| 1671 | } |
| 1672 | if (!(info->head.val & INFO_AMP_CAPS)) { |
| 1673 | mutex_unlock(&codec->hash_mutex); /* for reentrance */ |
| 1674 | val = func(codec, nid, dir); |
| 1675 | write_caps_hash(codec, key, val); |
| 1676 | } else { |
| 1677 | val = info->amp_caps; |
| 1678 | mutex_unlock(&codec->hash_mutex); |
| 1679 | } |
| 1680 | return val; |
| 1681 | } |
| 1682 | |
| 1683 | static unsigned int read_amp_cap(struct hda_codec *codec, hda_nid_t nid, |
| 1684 | int direction) |
| 1685 | { |
| 1686 | if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD)) |
| 1687 | nid = codec->afg; |
| 1688 | return snd_hda_param_read(codec, nid, |
| 1689 | direction == HDA_OUTPUT ? |
| 1690 | AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP); |
| 1691 | } |
| 1692 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1693 | /** |
| 1694 | * query_amp_caps - query AMP capabilities |
| 1695 | * @codec: the HD-auio codec |
| 1696 | * @nid: the NID to query |
| 1697 | * @direction: either #HDA_INPUT or #HDA_OUTPUT |
| 1698 | * |
| 1699 | * Query AMP capabilities for the given widget and direction. |
| 1700 | * Returns the obtained capability bits. |
| 1701 | * |
| 1702 | * When cap bits have been already read, this doesn't read again but |
| 1703 | * returns the cached value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | */ |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 1705 | 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] | 1706 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1707 | return query_caps_hash(codec, nid, direction, |
| 1708 | HDA_HASH_KEY(nid, direction, 0), |
| 1709 | read_amp_cap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1710 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1711 | EXPORT_SYMBOL_GPL(query_amp_caps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1713 | /** |
David Henningsson | 861a04e | 2014-09-23 10:38:17 +0200 | [diff] [blame] | 1714 | * snd_hda_check_amp_caps - query AMP capabilities |
| 1715 | * @codec: the HD-audio codec |
| 1716 | * @nid: the NID to query |
| 1717 | * @dir: either #HDA_INPUT or #HDA_OUTPUT |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1718 | * @bits: bit mask to check the result |
David Henningsson | 861a04e | 2014-09-23 10:38:17 +0200 | [diff] [blame] | 1719 | * |
| 1720 | * Check whether the widget has the given amp capability for the direction. |
| 1721 | */ |
| 1722 | bool snd_hda_check_amp_caps(struct hda_codec *codec, hda_nid_t nid, |
| 1723 | int dir, unsigned int bits) |
| 1724 | { |
| 1725 | if (!nid) |
| 1726 | return false; |
| 1727 | if (get_wcaps(codec, nid) & (1 << (dir + 1))) |
| 1728 | if (query_amp_caps(codec, nid, dir) & bits) |
| 1729 | return true; |
| 1730 | return false; |
| 1731 | } |
| 1732 | EXPORT_SYMBOL_GPL(snd_hda_check_amp_caps); |
| 1733 | |
| 1734 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1735 | * snd_hda_override_amp_caps - Override the AMP capabilities |
| 1736 | * @codec: the CODEC to clean up |
| 1737 | * @nid: the NID to clean up |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 1738 | * @dir: either #HDA_INPUT or #HDA_OUTPUT |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1739 | * @caps: the capability bits to set |
| 1740 | * |
| 1741 | * Override the cached AMP caps bits value by the given one. |
| 1742 | * This function is useful if the driver needs to adjust the AMP ranges, |
| 1743 | * e.g. limit to 0dB, etc. |
| 1744 | * |
| 1745 | * Returns zero if successful or a negative error code. |
| 1746 | */ |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1747 | int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 1748 | unsigned int caps) |
| 1749 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1750 | return write_caps_hash(codec, HDA_HASH_KEY(nid, dir, 0), caps); |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1751 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1752 | EXPORT_SYMBOL_GPL(snd_hda_override_amp_caps); |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1753 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1754 | static unsigned int read_pin_cap(struct hda_codec *codec, hda_nid_t nid, |
| 1755 | int dir) |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 1756 | { |
| 1757 | return snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP); |
| 1758 | } |
| 1759 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1760 | /** |
| 1761 | * snd_hda_query_pin_caps - Query PIN capabilities |
| 1762 | * @codec: the HD-auio codec |
| 1763 | * @nid: the NID to query |
| 1764 | * |
| 1765 | * Query PIN capabilities for the given widget. |
| 1766 | * Returns the obtained capability bits. |
| 1767 | * |
| 1768 | * When cap bits have been already read, this doesn't read again but |
| 1769 | * returns the cached value. |
| 1770 | */ |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 1771 | u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid) |
| 1772 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1773 | return query_caps_hash(codec, nid, 0, HDA_HASH_PINCAP_KEY(nid), |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 1774 | read_pin_cap); |
| 1775 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1776 | EXPORT_SYMBOL_GPL(snd_hda_query_pin_caps); |
Takashi Iwai | 1327a32 | 2009-03-23 13:07:47 +0100 | [diff] [blame] | 1777 | |
Wu Fengguang | 864f92b | 2009-11-18 12:38:02 +0800 | [diff] [blame] | 1778 | /** |
Takashi Iwai | f57c256 | 2011-08-15 12:49:07 +0200 | [diff] [blame] | 1779 | * snd_hda_override_pin_caps - Override the pin capabilities |
| 1780 | * @codec: the CODEC |
| 1781 | * @nid: the NID to override |
| 1782 | * @caps: the capability bits to set |
| 1783 | * |
| 1784 | * Override the cached PIN capabilitiy bits value by the given one. |
| 1785 | * |
| 1786 | * Returns zero if successful or a negative error code. |
| 1787 | */ |
| 1788 | int snd_hda_override_pin_caps(struct hda_codec *codec, hda_nid_t nid, |
| 1789 | unsigned int caps) |
| 1790 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1791 | return write_caps_hash(codec, HDA_HASH_PINCAP_KEY(nid), caps); |
Takashi Iwai | f57c256 | 2011-08-15 12:49:07 +0200 | [diff] [blame] | 1792 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1793 | EXPORT_SYMBOL_GPL(snd_hda_override_pin_caps); |
Takashi Iwai | f57c256 | 2011-08-15 12:49:07 +0200 | [diff] [blame] | 1794 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1795 | /* read or sync the hash value with the current value; |
| 1796 | * call within hash_mutex |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | */ |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1798 | static struct hda_amp_info * |
| 1799 | update_amp_hash(struct hda_codec *codec, hda_nid_t nid, int ch, |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1800 | int direction, int index, bool init_only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1801 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1802 | struct hda_amp_info *info; |
| 1803 | unsigned int parm, val = 0; |
| 1804 | bool val_read = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1805 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1806 | retry: |
| 1807 | info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index)); |
| 1808 | if (!info) |
| 1809 | return NULL; |
| 1810 | if (!(info->head.val & INFO_AMP_VOL(ch))) { |
| 1811 | if (!val_read) { |
| 1812 | mutex_unlock(&codec->hash_mutex); |
| 1813 | parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT; |
| 1814 | parm |= direction == HDA_OUTPUT ? |
| 1815 | AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT; |
| 1816 | parm |= index; |
| 1817 | val = snd_hda_codec_read(codec, nid, 0, |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1818 | AC_VERB_GET_AMP_GAIN_MUTE, parm); |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1819 | val &= 0xff; |
| 1820 | val_read = true; |
| 1821 | mutex_lock(&codec->hash_mutex); |
| 1822 | goto retry; |
| 1823 | } |
| 1824 | info->vol[ch] = val; |
| 1825 | info->head.val |= INFO_AMP_VOL(ch); |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1826 | } else if (init_only) |
| 1827 | return NULL; |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1828 | return info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | } |
| 1830 | |
| 1831 | /* |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1832 | * write the current volume in info to the h/w |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | */ |
Takashi Iwai | 2ce4886a | 2012-12-20 12:58:12 +0100 | [diff] [blame] | 1834 | static void put_vol_mute(struct hda_codec *codec, unsigned int amp_caps, |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1835 | hda_nid_t nid, int ch, int direction, int index, |
| 1836 | int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1837 | { |
| 1838 | u32 parm; |
| 1839 | |
| 1840 | parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT; |
| 1841 | parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT; |
| 1842 | parm |= index << AC_AMP_SET_INDEX_SHIFT; |
Takashi Iwai | 2ce4886a | 2012-12-20 12:58:12 +0100 | [diff] [blame] | 1843 | if ((val & HDA_AMP_MUTE) && !(amp_caps & AC_AMPCAP_MUTE) && |
| 1844 | (amp_caps & AC_AMPCAP_MIN_MUTE)) |
Takashi Iwai | 3868137 | 2012-02-27 15:00:58 +0100 | [diff] [blame] | 1845 | ; /* set the zero value as a fake mute */ |
| 1846 | else |
| 1847 | parm |= val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm); |
| 1849 | } |
| 1850 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1851 | /** |
| 1852 | * snd_hda_codec_amp_read - Read AMP value |
| 1853 | * @codec: HD-audio codec |
| 1854 | * @nid: NID to read the AMP value |
| 1855 | * @ch: channel (left=0 or right=1) |
| 1856 | * @direction: #HDA_INPUT or #HDA_OUTPUT |
| 1857 | * @index: the index value (only for input direction) |
| 1858 | * |
| 1859 | * Read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | */ |
Takashi Iwai | 834be88 | 2006-03-01 14:16:17 +0100 | [diff] [blame] | 1861 | int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch, |
| 1862 | int direction, int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1863 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1864 | struct hda_amp_info *info; |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1865 | unsigned int val = 0; |
| 1866 | |
| 1867 | mutex_lock(&codec->hash_mutex); |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1868 | info = update_amp_hash(codec, nid, ch, direction, index, false); |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1869 | if (info) |
| 1870 | val = info->vol[ch]; |
| 1871 | mutex_unlock(&codec->hash_mutex); |
| 1872 | return val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1874 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1876 | static int codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch, |
| 1877 | int direction, int idx, int mask, int val, |
Takashi Iwai | 781c7b9 | 2015-02-20 10:26:25 +0100 | [diff] [blame] | 1878 | bool init_only, bool cache_only) |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1879 | { |
| 1880 | struct hda_amp_info *info; |
Takashi Iwai | 2ce4886a | 2012-12-20 12:58:12 +0100 | [diff] [blame] | 1881 | unsigned int caps; |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1882 | |
| 1883 | if (snd_BUG_ON(mask & ~0xff)) |
| 1884 | mask &= 0xff; |
| 1885 | val &= mask; |
| 1886 | |
| 1887 | mutex_lock(&codec->hash_mutex); |
| 1888 | info = update_amp_hash(codec, nid, ch, direction, idx, init_only); |
| 1889 | if (!info) { |
| 1890 | mutex_unlock(&codec->hash_mutex); |
| 1891 | return 0; |
| 1892 | } |
| 1893 | val |= info->vol[ch] & ~mask; |
| 1894 | if (info->vol[ch] == val) { |
| 1895 | mutex_unlock(&codec->hash_mutex); |
| 1896 | return 0; |
| 1897 | } |
| 1898 | info->vol[ch] = val; |
Takashi Iwai | 781c7b9 | 2015-02-20 10:26:25 +0100 | [diff] [blame] | 1899 | info->head.dirty |= cache_only; |
Takashi Iwai | 2ce4886a | 2012-12-20 12:58:12 +0100 | [diff] [blame] | 1900 | caps = info->amp_caps; |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1901 | mutex_unlock(&codec->hash_mutex); |
Takashi Iwai | de1e37b | 2012-12-20 11:00:21 +0100 | [diff] [blame] | 1902 | if (!cache_only) |
Takashi Iwai | 2ce4886a | 2012-12-20 12:58:12 +0100 | [diff] [blame] | 1903 | put_vol_mute(codec, caps, nid, ch, direction, idx, val); |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1904 | return 1; |
| 1905 | } |
| 1906 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1907 | /** |
| 1908 | * snd_hda_codec_amp_update - update the AMP value |
| 1909 | * @codec: HD-audio codec |
| 1910 | * @nid: NID to read the AMP value |
| 1911 | * @ch: channel (left=0 or right=1) |
| 1912 | * @direction: #HDA_INPUT or #HDA_OUTPUT |
| 1913 | * @idx: the index value (only for input direction) |
| 1914 | * @mask: bit mask to set |
| 1915 | * @val: the bits value to set |
| 1916 | * |
| 1917 | * Update the AMP value with a bit mask. |
| 1918 | * Returns 0 if the value is unchanged, 1 if changed. |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1919 | */ |
Takashi Iwai | 834be88 | 2006-03-01 14:16:17 +0100 | [diff] [blame] | 1920 | int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch, |
| 1921 | int direction, int idx, int mask, int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1922 | { |
Takashi Iwai | 781c7b9 | 2015-02-20 10:26:25 +0100 | [diff] [blame] | 1923 | return codec_amp_update(codec, nid, ch, direction, idx, mask, val, |
| 1924 | false, codec->cached_write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1926 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_update); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1928 | /** |
| 1929 | * snd_hda_codec_amp_stereo - update the AMP stereo values |
| 1930 | * @codec: HD-audio codec |
| 1931 | * @nid: NID to read the AMP value |
| 1932 | * @direction: #HDA_INPUT or #HDA_OUTPUT |
| 1933 | * @idx: the index value (only for input direction) |
| 1934 | * @mask: bit mask to set |
| 1935 | * @val: the bits value to set |
| 1936 | * |
| 1937 | * Update the AMP values like snd_hda_codec_amp_update(), but for a |
| 1938 | * stereo widget with the same mask and value. |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1939 | */ |
| 1940 | int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid, |
| 1941 | int direction, int idx, int mask, int val) |
| 1942 | { |
| 1943 | int ch, ret = 0; |
Takashi Iwai | 46712646 | 2010-03-29 09:19:38 +0200 | [diff] [blame] | 1944 | |
| 1945 | if (snd_BUG_ON(mask & ~0xff)) |
| 1946 | mask &= 0xff; |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1947 | for (ch = 0; ch < 2; ch++) |
| 1948 | ret |= snd_hda_codec_amp_update(codec, nid, ch, direction, |
| 1949 | idx, mask, val); |
| 1950 | return ret; |
| 1951 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1952 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_stereo); |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1953 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1954 | /** |
| 1955 | * snd_hda_codec_amp_init - initialize the AMP value |
| 1956 | * @codec: the HDA codec |
| 1957 | * @nid: NID to read the AMP value |
| 1958 | * @ch: channel (left=0 or right=1) |
| 1959 | * @dir: #HDA_INPUT or #HDA_OUTPUT |
| 1960 | * @idx: the index value (only for input direction) |
| 1961 | * @mask: bit mask to set |
| 1962 | * @val: the bits value to set |
| 1963 | * |
| 1964 | * 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] | 1965 | * the first access. If the amp was already initialized / updated beforehand, |
| 1966 | * this does nothing. |
| 1967 | */ |
| 1968 | int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch, |
| 1969 | int dir, int idx, int mask, int val) |
| 1970 | { |
Takashi Iwai | 781c7b9 | 2015-02-20 10:26:25 +0100 | [diff] [blame] | 1971 | return codec_amp_update(codec, nid, ch, dir, idx, mask, val, true, |
| 1972 | codec->cached_write); |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1973 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1974 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init); |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1975 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 1976 | /** |
| 1977 | * snd_hda_codec_amp_init_stereo - initialize the stereo AMP value |
| 1978 | * @codec: the HDA codec |
| 1979 | * @nid: NID to read the AMP value |
| 1980 | * @dir: #HDA_INPUT or #HDA_OUTPUT |
| 1981 | * @idx: the index value (only for input direction) |
| 1982 | * @mask: bit mask to set |
| 1983 | * @val: the bits value to set |
| 1984 | * |
| 1985 | * Call snd_hda_codec_amp_init() for both stereo channels. |
| 1986 | */ |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 1987 | int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid, |
| 1988 | int dir, int idx, int mask, int val) |
| 1989 | { |
| 1990 | int ch, ret = 0; |
| 1991 | |
| 1992 | if (snd_BUG_ON(mask & ~0xff)) |
| 1993 | mask &= 0xff; |
| 1994 | for (ch = 0; ch < 2; ch++) |
| 1995 | ret |= snd_hda_codec_amp_init(codec, nid, ch, dir, |
| 1996 | idx, mask, val); |
| 1997 | return ret; |
| 1998 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 1999 | EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init_stereo); |
Takashi Iwai | 280e57d | 2012-12-14 10:32:21 +0100 | [diff] [blame] | 2000 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2001 | /** |
| 2002 | * snd_hda_codec_resume_amp - Resume all AMP commands from the cache |
| 2003 | * @codec: HD-audio codec |
| 2004 | * |
| 2005 | * Resume the all amp commands from the cache. |
| 2006 | */ |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 2007 | void snd_hda_codec_resume_amp(struct hda_codec *codec) |
| 2008 | { |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 2009 | int i; |
| 2010 | |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 2011 | mutex_lock(&codec->hash_mutex); |
Takashi Iwai | aa88a35 | 2012-12-20 11:02:00 +0100 | [diff] [blame] | 2012 | codec->cached_write = 0; |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 2013 | for (i = 0; i < codec->amp_cache.buf.used; i++) { |
| 2014 | struct hda_amp_info *buffer; |
| 2015 | u32 key; |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 2016 | hda_nid_t nid; |
| 2017 | unsigned int idx, dir, ch; |
Takashi Iwai | 2ce4886a | 2012-12-20 12:58:12 +0100 | [diff] [blame] | 2018 | struct hda_amp_info info; |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 2019 | |
| 2020 | buffer = snd_array_elem(&codec->amp_cache.buf, i); |
Takashi Iwai | 8565f05 | 2012-12-20 12:54:18 +0100 | [diff] [blame] | 2021 | if (!buffer->head.dirty) |
| 2022 | continue; |
| 2023 | buffer->head.dirty = 0; |
Takashi Iwai | 2ce4886a | 2012-12-20 12:58:12 +0100 | [diff] [blame] | 2024 | info = *buffer; |
| 2025 | key = info.head.key; |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 2026 | if (!key) |
| 2027 | continue; |
| 2028 | nid = key & 0xff; |
| 2029 | idx = (key >> 16) & 0xff; |
| 2030 | dir = (key >> 24) & 0xff; |
| 2031 | for (ch = 0; ch < 2; ch++) { |
Takashi Iwai | 2ce4886a | 2012-12-20 12:58:12 +0100 | [diff] [blame] | 2032 | if (!(info.head.val & INFO_AMP_VOL(ch))) |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 2033 | continue; |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 2034 | mutex_unlock(&codec->hash_mutex); |
Takashi Iwai | 2ce4886a | 2012-12-20 12:58:12 +0100 | [diff] [blame] | 2035 | put_vol_mute(codec, info.amp_caps, nid, ch, dir, idx, |
| 2036 | info.vol[ch]); |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 2037 | mutex_lock(&codec->hash_mutex); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 2038 | } |
| 2039 | } |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 2040 | mutex_unlock(&codec->hash_mutex); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 2041 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2042 | EXPORT_SYMBOL_GPL(snd_hda_codec_resume_amp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2043 | |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 2044 | static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 2045 | unsigned int ofs) |
| 2046 | { |
| 2047 | u32 caps = query_amp_caps(codec, nid, dir); |
| 2048 | /* get num steps */ |
| 2049 | caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT; |
| 2050 | if (ofs < caps) |
| 2051 | caps -= ofs; |
| 2052 | return caps; |
| 2053 | } |
| 2054 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2055 | /** |
| 2056 | * 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] | 2057 | * @kcontrol: referred ctl element |
| 2058 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2059 | * |
| 2060 | * The control element is supposed to have the private_value field |
| 2061 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2062 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2063 | int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol, |
| 2064 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | { |
| 2066 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2067 | u16 nid = get_amp_nid(kcontrol); |
| 2068 | u8 chs = get_amp_channels(kcontrol); |
| 2069 | int dir = get_amp_direction(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2070 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 2072 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 2073 | uinfo->count = chs == 3 ? 2 : 1; |
| 2074 | uinfo->value.integer.min = 0; |
| 2075 | uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs); |
| 2076 | if (!uinfo->value.integer.max) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 2077 | codec_warn(codec, |
| 2078 | "num_steps = 0 for NID=0x%x (ctl = %s)\n", |
| 2079 | nid, kcontrol->id.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | return -EINVAL; |
| 2081 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2082 | return 0; |
| 2083 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2084 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2085 | |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2086 | |
| 2087 | static inline unsigned int |
| 2088 | read_amp_value(struct hda_codec *codec, hda_nid_t nid, |
| 2089 | int ch, int dir, int idx, unsigned int ofs) |
| 2090 | { |
| 2091 | unsigned int val; |
| 2092 | val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx); |
| 2093 | val &= HDA_AMP_VOLMASK; |
| 2094 | if (val >= ofs) |
| 2095 | val -= ofs; |
| 2096 | else |
| 2097 | val = 0; |
| 2098 | return val; |
| 2099 | } |
| 2100 | |
| 2101 | static inline int |
| 2102 | update_amp_value(struct hda_codec *codec, hda_nid_t nid, |
| 2103 | int ch, int dir, int idx, unsigned int ofs, |
| 2104 | unsigned int val) |
| 2105 | { |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 2106 | unsigned int maxval; |
| 2107 | |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2108 | if (val > 0) |
| 2109 | val += ofs; |
Takashi Iwai | 7ccc3ef | 2010-07-26 17:00:15 +0200 | [diff] [blame] | 2110 | /* ofs = 0: raw max value */ |
| 2111 | maxval = get_amp_max_value(codec, nid, dir, 0); |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 2112 | if (val > maxval) |
| 2113 | val = maxval; |
Takashi Iwai | 781c7b9 | 2015-02-20 10:26:25 +0100 | [diff] [blame] | 2114 | return codec_amp_update(codec, nid, ch, dir, idx, HDA_AMP_VOLMASK, val, |
| 2115 | false, !hda_codec_is_power_on(codec)); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2116 | } |
| 2117 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2118 | /** |
| 2119 | * 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] | 2120 | * @kcontrol: ctl element |
| 2121 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2122 | * |
| 2123 | * The control element is supposed to have the private_value field |
| 2124 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2125 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2126 | int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol, |
| 2127 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | { |
| 2129 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2130 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2131 | int chs = get_amp_channels(kcontrol); |
| 2132 | int dir = get_amp_direction(kcontrol); |
| 2133 | int idx = get_amp_index(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2134 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2135 | long *valp = ucontrol->value.integer.value; |
| 2136 | |
| 2137 | if (chs & 1) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2138 | *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 | if (chs & 2) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2140 | *valp = read_amp_value(codec, nid, 1, dir, idx, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2141 | return 0; |
| 2142 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2143 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_get); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2144 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2145 | /** |
| 2146 | * 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] | 2147 | * @kcontrol: ctl element |
| 2148 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2149 | * |
| 2150 | * The control element is supposed to have the private_value field |
| 2151 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2152 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2153 | int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol, |
| 2154 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2155 | { |
| 2156 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2157 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2158 | int chs = get_amp_channels(kcontrol); |
| 2159 | int dir = get_amp_direction(kcontrol); |
| 2160 | int idx = get_amp_index(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2161 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2162 | long *valp = ucontrol->value.integer.value; |
| 2163 | int change = 0; |
| 2164 | |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 2165 | if (chs & 1) { |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2166 | change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 2167 | valp++; |
| 2168 | } |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 2169 | if (chs & 2) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2170 | change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | return change; |
| 2172 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2173 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2174 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2175 | /** |
| 2176 | * snd_hda_mixer_amp_volume_put - TLV callback for a standard AMP mixer volume |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2177 | * @kcontrol: ctl element |
| 2178 | * @op_flag: operation flag |
| 2179 | * @size: byte size of input TLV |
| 2180 | * @_tlv: TLV data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2181 | * |
| 2182 | * The control element is supposed to have the private_value field |
| 2183 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2184 | */ |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 2185 | int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
| 2186 | unsigned int size, unsigned int __user *_tlv) |
| 2187 | { |
| 2188 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2189 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2190 | int dir = get_amp_direction(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2191 | unsigned int ofs = get_amp_offset(kcontrol); |
Clemens Ladisch | de8c85f | 2010-10-15 10:32:50 +0200 | [diff] [blame] | 2192 | bool min_mute = get_amp_min_mute(kcontrol); |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 2193 | u32 caps, val1, val2; |
| 2194 | |
| 2195 | if (size < 4 * sizeof(unsigned int)) |
| 2196 | return -ENOMEM; |
| 2197 | caps = query_amp_caps(codec, nid, dir); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2198 | val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT; |
| 2199 | val2 = (val2 + 1) * 25; |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 2200 | val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2201 | val1 += ofs; |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 2202 | val1 = ((int)val1) * ((int)val2); |
Takashi Iwai | 3868137 | 2012-02-27 15:00:58 +0100 | [diff] [blame] | 2203 | if (min_mute || (caps & AC_AMPCAP_MIN_MUTE)) |
Takashi Iwai | c08d916 | 2010-10-17 10:40:53 +0200 | [diff] [blame] | 2204 | val2 |= TLV_DB_SCALE_MUTE; |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 2205 | if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv)) |
| 2206 | return -EFAULT; |
| 2207 | if (put_user(2 * sizeof(unsigned int), _tlv + 1)) |
| 2208 | return -EFAULT; |
| 2209 | if (put_user(val1, _tlv + 2)) |
| 2210 | return -EFAULT; |
| 2211 | if (put_user(val2, _tlv + 3)) |
| 2212 | return -EFAULT; |
| 2213 | return 0; |
| 2214 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2215 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_tlv); |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 2216 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2217 | /** |
| 2218 | * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control |
| 2219 | * @codec: HD-audio codec |
| 2220 | * @nid: NID of a reference widget |
| 2221 | * @dir: #HDA_INPUT or #HDA_OUTPUT |
| 2222 | * @tlv: TLV data to be stored, at least 4 elements |
| 2223 | * |
| 2224 | * Set (static) TLV data for a virtual master volume using the AMP caps |
| 2225 | * obtained from the reference NID. |
| 2226 | * The volume range is recalculated as if the max volume is 0dB. |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2227 | */ |
| 2228 | void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 2229 | unsigned int *tlv) |
| 2230 | { |
| 2231 | u32 caps; |
| 2232 | int nums, step; |
| 2233 | |
| 2234 | caps = query_amp_caps(codec, nid, dir); |
| 2235 | nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT; |
| 2236 | step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT; |
| 2237 | step = (step + 1) * 25; |
| 2238 | tlv[0] = SNDRV_CTL_TLVT_DB_SCALE; |
| 2239 | tlv[1] = 2 * sizeof(unsigned int); |
| 2240 | tlv[2] = -nums * step; |
| 2241 | tlv[3] = step; |
| 2242 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2243 | EXPORT_SYMBOL_GPL(snd_hda_set_vmaster_tlv); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2244 | |
| 2245 | /* find a mixer control element with the given name */ |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2246 | static struct snd_kcontrol * |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2247 | 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] | 2248 | { |
| 2249 | struct snd_ctl_elem_id id; |
| 2250 | memset(&id, 0, sizeof(id)); |
| 2251 | id.iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2252 | id.device = dev; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2253 | id.index = idx; |
Takashi Iwai | 18cb710 | 2009-04-16 10:22:24 +0200 | [diff] [blame] | 2254 | if (snd_BUG_ON(strlen(name) >= sizeof(id.name))) |
| 2255 | return NULL; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2256 | strcpy(id.name, name); |
| 2257 | return snd_ctl_find_id(codec->bus->card, &id); |
| 2258 | } |
| 2259 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2260 | /** |
| 2261 | * snd_hda_find_mixer_ctl - Find a mixer control element with the given name |
| 2262 | * @codec: HD-audio codec |
| 2263 | * @name: ctl id name string |
| 2264 | * |
| 2265 | * Get the control element with the given id string and IFACE_MIXER. |
| 2266 | */ |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2267 | struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec, |
| 2268 | const char *name) |
| 2269 | { |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2270 | return find_mixer_ctl(codec, name, 0, 0); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2271 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2272 | EXPORT_SYMBOL_GPL(snd_hda_find_mixer_ctl); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2273 | |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 2274 | 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] | 2275 | int start_idx) |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 2276 | { |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 2277 | int i, idx; |
| 2278 | /* 16 ctlrs should be large enough */ |
| 2279 | for (i = 0, idx = start_idx; i < 16; i++, idx++) { |
| 2280 | if (!find_mixer_ctl(codec, name, 0, idx)) |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 2281 | return idx; |
| 2282 | } |
| 2283 | return -EBUSY; |
| 2284 | } |
| 2285 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2286 | /** |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 2287 | * 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] | 2288 | * @codec: HD-audio codec |
| 2289 | * @nid: corresponding NID (optional) |
| 2290 | * @kctl: the control element to assign |
| 2291 | * |
| 2292 | * Add the given control element to an array inside the codec instance. |
| 2293 | * All control elements belonging to a codec are supposed to be added |
| 2294 | * by this function so that a proper clean-up works at the free or |
| 2295 | * reconfiguration time. |
| 2296 | * |
| 2297 | * If non-zero @nid is passed, the NID is assigned to the control element. |
| 2298 | * The assignment is shown in the codec proc file. |
| 2299 | * |
| 2300 | * snd_hda_ctl_add() checks the control subdev id field whether |
| 2301 | * #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] | 2302 | * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit |
| 2303 | * specifies if kctl->private_value is a HDA amplifier value. |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2304 | */ |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2305 | int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid, |
| 2306 | struct snd_kcontrol *kctl) |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2307 | { |
| 2308 | int err; |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 2309 | unsigned short flags = 0; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2310 | struct hda_nid_item *item; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2311 | |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 2312 | if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) { |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 2313 | flags |= HDA_NID_ITEM_AMP; |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 2314 | if (nid == 0) |
| 2315 | nid = get_amp_nid_(kctl->private_value); |
| 2316 | } |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 2317 | if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0) |
| 2318 | nid = kctl->id.subdevice & 0xffff; |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 2319 | if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG)) |
Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 2320 | kctl->id.subdevice = 0; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2321 | err = snd_ctl_add(codec->bus->card, kctl); |
| 2322 | if (err < 0) |
| 2323 | return err; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2324 | item = snd_array_new(&codec->mixers); |
| 2325 | if (!item) |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2326 | return -ENOMEM; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2327 | item->kctl = kctl; |
| 2328 | item->nid = nid; |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 2329 | item->flags = flags; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2330 | return 0; |
| 2331 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2332 | EXPORT_SYMBOL_GPL(snd_hda_ctl_add); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2333 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2334 | /** |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 2335 | * snd_hda_add_nid - Assign a NID to a control element |
| 2336 | * @codec: HD-audio codec |
| 2337 | * @nid: corresponding NID (optional) |
| 2338 | * @kctl: the control element to assign |
| 2339 | * @index: index to kctl |
| 2340 | * |
| 2341 | * Add the given control element to an array inside the codec instance. |
| 2342 | * This function is used when #snd_hda_ctl_add cannot be used for 1:1 |
| 2343 | * NID:KCTL mapping - for example "Capture Source" selector. |
| 2344 | */ |
| 2345 | int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl, |
| 2346 | unsigned int index, hda_nid_t nid) |
| 2347 | { |
| 2348 | struct hda_nid_item *item; |
| 2349 | |
| 2350 | if (nid > 0) { |
| 2351 | item = snd_array_new(&codec->nids); |
| 2352 | if (!item) |
| 2353 | return -ENOMEM; |
| 2354 | item->kctl = kctl; |
| 2355 | item->index = index; |
| 2356 | item->nid = nid; |
| 2357 | return 0; |
| 2358 | } |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 2359 | codec_err(codec, "no NID for mapping control %s:%d:%d\n", |
| 2360 | kctl->id.name, kctl->id.index, index); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 2361 | return -EINVAL; |
| 2362 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2363 | EXPORT_SYMBOL_GPL(snd_hda_add_nid); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 2364 | |
| 2365 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2366 | * snd_hda_ctls_clear - Clear all controls assigned to the given codec |
| 2367 | * @codec: HD-audio codec |
| 2368 | */ |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2369 | void snd_hda_ctls_clear(struct hda_codec *codec) |
| 2370 | { |
| 2371 | int i; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2372 | struct hda_nid_item *items = codec->mixers.list; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2373 | for (i = 0; i < codec->mixers.used; i++) |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2374 | snd_ctl_remove(codec->bus->card, items[i].kctl); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2375 | snd_array_free(&codec->mixers); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 2376 | snd_array_free(&codec->nids); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2377 | } |
| 2378 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2379 | /** |
| 2380 | * snd_hda_lock_devices - pseudo device locking |
| 2381 | * @bus: the BUS |
| 2382 | * |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2383 | * toggle card->shutdown to allow/disallow the device access (as a hack) |
| 2384 | */ |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2385 | int snd_hda_lock_devices(struct hda_bus *bus) |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2386 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2387 | struct snd_card *card = bus->card; |
| 2388 | struct hda_codec *codec; |
| 2389 | |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2390 | spin_lock(&card->files_lock); |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2391 | if (card->shutdown) |
| 2392 | goto err_unlock; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2393 | card->shutdown = 1; |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2394 | if (!list_empty(&card->ctl_files)) |
| 2395 | goto err_clear; |
| 2396 | |
| 2397 | list_for_each_entry(codec, &bus->codec_list, list) { |
| 2398 | int pcm; |
| 2399 | for (pcm = 0; pcm < codec->num_pcms; pcm++) { |
| 2400 | struct hda_pcm *cpcm = &codec->pcm_info[pcm]; |
| 2401 | if (!cpcm->pcm) |
| 2402 | continue; |
| 2403 | if (cpcm->pcm->streams[0].substream_opened || |
| 2404 | cpcm->pcm->streams[1].substream_opened) |
| 2405 | goto err_clear; |
| 2406 | } |
| 2407 | } |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2408 | spin_unlock(&card->files_lock); |
| 2409 | return 0; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2410 | |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2411 | err_clear: |
| 2412 | card->shutdown = 0; |
| 2413 | err_unlock: |
| 2414 | spin_unlock(&card->files_lock); |
| 2415 | return -EINVAL; |
| 2416 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2417 | EXPORT_SYMBOL_GPL(snd_hda_lock_devices); |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2418 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2419 | /** |
| 2420 | * snd_hda_unlock_devices - pseudo device unlocking |
| 2421 | * @bus: the BUS |
| 2422 | */ |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2423 | void snd_hda_unlock_devices(struct hda_bus *bus) |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2424 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2425 | struct snd_card *card = bus->card; |
| 2426 | |
| 2427 | card = bus->card; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2428 | spin_lock(&card->files_lock); |
| 2429 | card->shutdown = 0; |
| 2430 | spin_unlock(&card->files_lock); |
| 2431 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2432 | EXPORT_SYMBOL_GPL(snd_hda_unlock_devices); |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2433 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2434 | /** |
| 2435 | * snd_hda_codec_reset - Clear all objects assigned to the codec |
| 2436 | * @codec: HD-audio codec |
| 2437 | * |
| 2438 | * This frees the all PCM and control elements assigned to the codec, and |
| 2439 | * clears the caches and restores the pin default configurations. |
| 2440 | * |
| 2441 | * When a device is being used, it returns -EBSY. If successfully freed, |
| 2442 | * returns zero. |
| 2443 | */ |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2444 | int snd_hda_codec_reset(struct hda_codec *codec) |
| 2445 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2446 | struct hda_bus *bus = codec->bus; |
| 2447 | struct snd_card *card = bus->card; |
| 2448 | int i; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2449 | |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2450 | if (snd_hda_lock_devices(bus) < 0) |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2451 | return -EBUSY; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2452 | |
| 2453 | /* OK, let it free */ |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 2454 | cancel_delayed_work_sync(&codec->jackpoll_work); |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 2455 | #ifdef CONFIG_PM |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 2456 | cancel_delayed_work_sync(&codec->power_work); |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2457 | flush_workqueue(bus->workq); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2458 | #endif |
| 2459 | snd_hda_ctls_clear(codec); |
Geert Uytterhoeven | 83a35e3 | 2013-06-28 11:27:31 +0200 | [diff] [blame] | 2460 | /* release PCMs */ |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2461 | for (i = 0; i < codec->num_pcms; i++) { |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 2462 | if (codec->pcm_info[i].pcm) { |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2463 | snd_device_free(card, codec->pcm_info[i].pcm); |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 2464 | clear_bit(codec->pcm_info[i].device, |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2465 | bus->pcm_dev_bits); |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 2466 | } |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2467 | } |
Takashi Iwai | d604b39 | 2014-02-28 13:42:09 +0100 | [diff] [blame] | 2468 | snd_hda_detach_beep_device(codec); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame^] | 2469 | if (device_is_registered(hda_codec_dev(codec))) |
| 2470 | device_del(hda_codec_dev(codec)); |
| 2471 | |
Takashi Iwai | 07dc59f | 2012-09-10 09:39:31 +0200 | [diff] [blame] | 2472 | memset(&codec->patch_ops, 0, sizeof(codec->patch_ops)); |
Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 2473 | snd_hda_jack_tbl_clear(codec); |
Takashi Iwai | 56d1771 | 2008-11-28 14:36:23 +0100 | [diff] [blame] | 2474 | codec->proc_widget_hook = NULL; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2475 | codec->spec = NULL; |
| 2476 | free_hda_cache(&codec->amp_cache); |
| 2477 | free_hda_cache(&codec->cmd_cache); |
Takashi Iwai | 827057f | 2008-12-19 10:12:02 +0100 | [diff] [blame] | 2478 | init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info)); |
| 2479 | init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head)); |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 2480 | /* free only driver_pins so that init_pins + user_pins are restored */ |
| 2481 | snd_array_free(&codec->driver_pins); |
Takashi Iwai | 09a6071 | 2012-06-26 15:01:33 +0200 | [diff] [blame] | 2482 | snd_array_free(&codec->cvt_setups); |
| 2483 | snd_array_free(&codec->spdif_out); |
Takashi Iwai | c9ce6b2 | 2012-12-18 18:12:44 +0100 | [diff] [blame] | 2484 | snd_array_free(&codec->verbs); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2485 | codec->num_pcms = 0; |
| 2486 | codec->pcm_info = NULL; |
| 2487 | codec->preset = NULL; |
Takashi Iwai | d1f1af2 | 2009-03-02 10:35:29 +0100 | [diff] [blame] | 2488 | codec->slave_dig_outs = NULL; |
| 2489 | codec->spdif_status_reset = 0; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2490 | |
| 2491 | /* allow device access again */ |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2492 | snd_hda_unlock_devices(bus); |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2493 | return 0; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2494 | } |
| 2495 | |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2496 | typedef int (*map_slave_func_t)(struct hda_codec *, void *, struct snd_kcontrol *); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2497 | |
| 2498 | /* apply the function to all matching slave ctls in the mixer list */ |
| 2499 | static int map_slaves(struct hda_codec *codec, const char * const *slaves, |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2500 | const char *suffix, map_slave_func_t func, void *data) |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2501 | { |
| 2502 | struct hda_nid_item *items; |
| 2503 | const char * const *s; |
| 2504 | int i, err; |
| 2505 | |
| 2506 | items = codec->mixers.list; |
| 2507 | for (i = 0; i < codec->mixers.used; i++) { |
| 2508 | struct snd_kcontrol *sctl = items[i].kctl; |
Takashi Iwai | ca16ec0 | 2013-10-28 12:00:35 +0100 | [diff] [blame] | 2509 | if (!sctl || sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER) |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2510 | continue; |
| 2511 | for (s = slaves; *s; s++) { |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2512 | char tmpname[sizeof(sctl->id.name)]; |
| 2513 | const char *name = *s; |
| 2514 | if (suffix) { |
| 2515 | snprintf(tmpname, sizeof(tmpname), "%s %s", |
| 2516 | name, suffix); |
| 2517 | name = tmpname; |
| 2518 | } |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2519 | if (!strcmp(sctl->id.name, name)) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2520 | err = func(codec, data, sctl); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2521 | if (err) |
| 2522 | return err; |
| 2523 | break; |
| 2524 | } |
| 2525 | } |
| 2526 | } |
| 2527 | return 0; |
| 2528 | } |
| 2529 | |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2530 | static int check_slave_present(struct hda_codec *codec, |
| 2531 | void *data, struct snd_kcontrol *sctl) |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2532 | { |
| 2533 | return 1; |
| 2534 | } |
| 2535 | |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2536 | /* guess the value corresponding to 0dB */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2537 | static int get_kctl_0dB_offset(struct hda_codec *codec, |
| 2538 | struct snd_kcontrol *kctl, int *step_to_check) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2539 | { |
| 2540 | int _tlv[4]; |
| 2541 | const int *tlv = NULL; |
| 2542 | int val = -1; |
| 2543 | |
| 2544 | if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) { |
| 2545 | /* FIXME: set_fs() hack for obtaining user-space TLV data */ |
| 2546 | mm_segment_t fs = get_fs(); |
| 2547 | set_fs(get_ds()); |
| 2548 | if (!kctl->tlv.c(kctl, 0, sizeof(_tlv), _tlv)) |
| 2549 | tlv = _tlv; |
| 2550 | set_fs(fs); |
| 2551 | } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ) |
| 2552 | tlv = kctl->tlv.p; |
Takashi Iwai | a4e7a12 | 2013-11-04 15:44:09 +0100 | [diff] [blame] | 2553 | if (tlv && tlv[0] == SNDRV_CTL_TLVT_DB_SCALE) { |
| 2554 | int step = tlv[3]; |
| 2555 | step &= ~TLV_DB_SCALE_MUTE; |
| 2556 | if (!step) |
| 2557 | return -1; |
Takashi Iwai | 485e3e0 | 2013-11-04 15:51:00 +0100 | [diff] [blame] | 2558 | if (*step_to_check && *step_to_check != step) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2559 | codec_err(codec, "Mismatching dB step for vmaster slave (%d!=%d)\n", |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 2560 | - *step_to_check, step); |
Takashi Iwai | 485e3e0 | 2013-11-04 15:51:00 +0100 | [diff] [blame] | 2561 | return -1; |
| 2562 | } |
| 2563 | *step_to_check = step; |
Takashi Iwai | a4e7a12 | 2013-11-04 15:44:09 +0100 | [diff] [blame] | 2564 | val = -tlv[2] / step; |
| 2565 | } |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2566 | return val; |
| 2567 | } |
| 2568 | |
| 2569 | /* call kctl->put with the given value(s) */ |
| 2570 | static int put_kctl_with_value(struct snd_kcontrol *kctl, int val) |
| 2571 | { |
| 2572 | struct snd_ctl_elem_value *ucontrol; |
| 2573 | ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL); |
| 2574 | if (!ucontrol) |
| 2575 | return -ENOMEM; |
| 2576 | ucontrol->value.integer.value[0] = val; |
| 2577 | ucontrol->value.integer.value[1] = val; |
| 2578 | kctl->put(kctl, ucontrol); |
| 2579 | kfree(ucontrol); |
| 2580 | return 0; |
| 2581 | } |
| 2582 | |
| 2583 | /* initialize the slave volume with 0dB */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2584 | static int init_slave_0dB(struct hda_codec *codec, |
| 2585 | void *data, struct snd_kcontrol *slave) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2586 | { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2587 | int offset = get_kctl_0dB_offset(codec, slave, data); |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2588 | if (offset > 0) |
| 2589 | put_kctl_with_value(slave, offset); |
| 2590 | return 0; |
| 2591 | } |
| 2592 | |
| 2593 | /* unmute the slave */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 2594 | static int init_slave_unmute(struct hda_codec *codec, |
| 2595 | void *data, struct snd_kcontrol *slave) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2596 | { |
| 2597 | return put_kctl_with_value(slave, 1); |
| 2598 | } |
| 2599 | |
Takashi Iwai | e875094 | 2014-06-30 14:02:39 +0200 | [diff] [blame] | 2600 | static int add_slave(struct hda_codec *codec, |
| 2601 | void *data, struct snd_kcontrol *slave) |
| 2602 | { |
| 2603 | return snd_ctl_add_slave(data, slave); |
| 2604 | } |
| 2605 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2606 | /** |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2607 | * __snd_hda_add_vmaster - create a virtual master control and add slaves |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2608 | * @codec: HD-audio codec |
| 2609 | * @name: vmaster control name |
| 2610 | * @tlv: TLV data (optional) |
| 2611 | * @slaves: slave control names (optional) |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2612 | * @suffix: suffix string to each slave name (optional) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2613 | * @init_slave_vol: initialize slaves to unmute/0dB |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 2614 | * @ctl_ret: store the vmaster kcontrol in return |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2615 | * |
| 2616 | * Create a virtual master control with the given name. The TLV data |
| 2617 | * must be either NULL or a valid data. |
| 2618 | * |
| 2619 | * @slaves is a NULL-terminated array of strings, each of which is a |
| 2620 | * slave control name. All controls with these names are assigned to |
| 2621 | * the new virtual master control. |
| 2622 | * |
| 2623 | * This function returns zero if successful or a negative error code. |
| 2624 | */ |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2625 | int __snd_hda_add_vmaster(struct hda_codec *codec, char *name, |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2626 | unsigned int *tlv, const char * const *slaves, |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 2627 | const char *suffix, bool init_slave_vol, |
| 2628 | struct snd_kcontrol **ctl_ret) |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2629 | { |
| 2630 | struct snd_kcontrol *kctl; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2631 | int err; |
| 2632 | |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 2633 | if (ctl_ret) |
| 2634 | *ctl_ret = NULL; |
| 2635 | |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2636 | err = map_slaves(codec, slaves, suffix, check_slave_present, NULL); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2637 | if (err != 1) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 2638 | codec_dbg(codec, "No slave found for %s\n", name); |
Takashi Iwai | 2f08554 | 2008-02-22 18:43:50 +0100 | [diff] [blame] | 2639 | return 0; |
| 2640 | } |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2641 | kctl = snd_ctl_make_virtual_master(name, tlv); |
| 2642 | if (!kctl) |
| 2643 | return -ENOMEM; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2644 | err = snd_hda_ctl_add(codec, 0, kctl); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2645 | if (err < 0) |
| 2646 | return err; |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2647 | |
Takashi Iwai | e875094 | 2014-06-30 14:02:39 +0200 | [diff] [blame] | 2648 | err = map_slaves(codec, slaves, suffix, add_slave, kctl); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2649 | if (err < 0) |
| 2650 | return err; |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2651 | |
| 2652 | /* init with master mute & zero volume */ |
| 2653 | put_kctl_with_value(kctl, 0); |
Takashi Iwai | 485e3e0 | 2013-11-04 15:51:00 +0100 | [diff] [blame] | 2654 | if (init_slave_vol) { |
| 2655 | int step = 0; |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2656 | map_slaves(codec, slaves, suffix, |
Takashi Iwai | 485e3e0 | 2013-11-04 15:51:00 +0100 | [diff] [blame] | 2657 | tlv ? init_slave_0dB : init_slave_unmute, &step); |
| 2658 | } |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2659 | |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 2660 | if (ctl_ret) |
| 2661 | *ctl_ret = kctl; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2662 | return 0; |
| 2663 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2664 | EXPORT_SYMBOL_GPL(__snd_hda_add_vmaster); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2665 | |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2666 | /* |
| 2667 | * mute-LED control using vmaster |
| 2668 | */ |
| 2669 | static int vmaster_mute_mode_info(struct snd_kcontrol *kcontrol, |
| 2670 | struct snd_ctl_elem_info *uinfo) |
| 2671 | { |
| 2672 | static const char * const texts[] = { |
David Henningsson | c86c2d4 | 2013-01-03 14:12:29 +0100 | [diff] [blame] | 2673 | "On", "Off", "Follow Master" |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2674 | }; |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2675 | |
Takashi Iwai | 3ff7221 | 2014-10-20 18:17:28 +0200 | [diff] [blame] | 2676 | return snd_ctl_enum_info(uinfo, 1, 3, texts); |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2677 | } |
| 2678 | |
| 2679 | static int vmaster_mute_mode_get(struct snd_kcontrol *kcontrol, |
| 2680 | struct snd_ctl_elem_value *ucontrol) |
| 2681 | { |
| 2682 | struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol); |
| 2683 | ucontrol->value.enumerated.item[0] = hook->mute_mode; |
| 2684 | return 0; |
| 2685 | } |
| 2686 | |
| 2687 | static int vmaster_mute_mode_put(struct snd_kcontrol *kcontrol, |
| 2688 | struct snd_ctl_elem_value *ucontrol) |
| 2689 | { |
| 2690 | struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol); |
| 2691 | unsigned int old_mode = hook->mute_mode; |
| 2692 | |
| 2693 | hook->mute_mode = ucontrol->value.enumerated.item[0]; |
| 2694 | if (hook->mute_mode > HDA_VMUTE_FOLLOW_MASTER) |
| 2695 | hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER; |
| 2696 | if (old_mode == hook->mute_mode) |
| 2697 | return 0; |
| 2698 | snd_hda_sync_vmaster_hook(hook); |
| 2699 | return 1; |
| 2700 | } |
| 2701 | |
| 2702 | static struct snd_kcontrol_new vmaster_mute_mode = { |
| 2703 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2704 | .name = "Mute-LED Mode", |
| 2705 | .info = vmaster_mute_mode_info, |
| 2706 | .get = vmaster_mute_mode_get, |
| 2707 | .put = vmaster_mute_mode_put, |
| 2708 | }; |
| 2709 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2710 | /** |
| 2711 | * snd_hda_add_vmaster_hook - Add a vmaster hook for mute-LED |
| 2712 | * @codec: the HDA codec |
| 2713 | * @hook: the vmaster hook object |
| 2714 | * @expose_enum_ctl: flag to create an enum ctl |
| 2715 | * |
| 2716 | * Add a mute-LED hook with the given vmaster switch kctl. |
| 2717 | * When @expose_enum_ctl is set, "Mute-LED Mode" control is automatically |
| 2718 | * created and associated with the given hook. |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2719 | */ |
| 2720 | int snd_hda_add_vmaster_hook(struct hda_codec *codec, |
Takashi Iwai | f29735c | 2012-03-13 07:55:10 +0100 | [diff] [blame] | 2721 | struct hda_vmaster_mute_hook *hook, |
| 2722 | bool expose_enum_ctl) |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2723 | { |
| 2724 | struct snd_kcontrol *kctl; |
| 2725 | |
| 2726 | if (!hook->hook || !hook->sw_kctl) |
| 2727 | return 0; |
| 2728 | snd_ctl_add_vmaster_hook(hook->sw_kctl, hook->hook, codec); |
| 2729 | hook->codec = codec; |
| 2730 | hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER; |
Takashi Iwai | f29735c | 2012-03-13 07:55:10 +0100 | [diff] [blame] | 2731 | if (!expose_enum_ctl) |
| 2732 | return 0; |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2733 | kctl = snd_ctl_new1(&vmaster_mute_mode, hook); |
| 2734 | if (!kctl) |
| 2735 | return -ENOMEM; |
| 2736 | return snd_hda_ctl_add(codec, 0, kctl); |
| 2737 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2738 | EXPORT_SYMBOL_GPL(snd_hda_add_vmaster_hook); |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2739 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 2740 | /** |
| 2741 | * snd_hda_sync_vmaster_hook - Sync vmaster hook |
| 2742 | * @hook: the vmaster hook |
| 2743 | * |
| 2744 | * Call the hook with the current value for synchronization. |
| 2745 | * Should be called in init callback. |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2746 | */ |
| 2747 | void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook) |
| 2748 | { |
| 2749 | if (!hook->hook || !hook->codec) |
| 2750 | return; |
Takashi Iwai | 594813f | 2013-04-17 18:16:05 +0200 | [diff] [blame] | 2751 | /* don't call vmaster hook in the destructor since it might have |
| 2752 | * been already destroyed |
| 2753 | */ |
| 2754 | if (hook->codec->bus->shutdown) |
| 2755 | return; |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2756 | switch (hook->mute_mode) { |
| 2757 | case HDA_VMUTE_FOLLOW_MASTER: |
| 2758 | snd_ctl_sync_vmaster_hook(hook->sw_kctl); |
| 2759 | break; |
| 2760 | default: |
| 2761 | hook->hook(hook->codec, hook->mute_mode); |
| 2762 | break; |
| 2763 | } |
| 2764 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2765 | EXPORT_SYMBOL_GPL(snd_hda_sync_vmaster_hook); |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2766 | |
| 2767 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2768 | /** |
| 2769 | * 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] | 2770 | * @kcontrol: referred ctl element |
| 2771 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2772 | * |
| 2773 | * The control element is supposed to have the private_value field |
| 2774 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2775 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2776 | int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol, |
| 2777 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2778 | { |
| 2779 | int chs = get_amp_channels(kcontrol); |
| 2780 | |
| 2781 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| 2782 | uinfo->count = chs == 3 ? 2 : 1; |
| 2783 | uinfo->value.integer.min = 0; |
| 2784 | uinfo->value.integer.max = 1; |
| 2785 | return 0; |
| 2786 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2787 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2788 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2789 | /** |
| 2790 | * 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] | 2791 | * @kcontrol: ctl element |
| 2792 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2793 | * |
| 2794 | * The control element is supposed to have the private_value field |
| 2795 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2796 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2797 | int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol, |
| 2798 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2799 | { |
| 2800 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2801 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2802 | int chs = get_amp_channels(kcontrol); |
| 2803 | int dir = get_amp_direction(kcontrol); |
| 2804 | int idx = get_amp_index(kcontrol); |
| 2805 | long *valp = ucontrol->value.integer.value; |
| 2806 | |
| 2807 | if (chs & 1) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2808 | *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) & |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 2809 | HDA_AMP_MUTE) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2810 | if (chs & 2) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2811 | *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) & |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 2812 | HDA_AMP_MUTE) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2813 | return 0; |
| 2814 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2815 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2816 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2817 | /** |
| 2818 | * 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] | 2819 | * @kcontrol: ctl element |
| 2820 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2821 | * |
| 2822 | * The control element is supposed to have the private_value field |
| 2823 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2824 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2825 | int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol, |
| 2826 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2827 | { |
| 2828 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2829 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2830 | int chs = get_amp_channels(kcontrol); |
| 2831 | int dir = get_amp_direction(kcontrol); |
| 2832 | int idx = get_amp_index(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2833 | long *valp = ucontrol->value.integer.value; |
| 2834 | int change = 0; |
| 2835 | |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 2836 | if (chs & 1) { |
Takashi Iwai | 781c7b9 | 2015-02-20 10:26:25 +0100 | [diff] [blame] | 2837 | change = codec_amp_update(codec, nid, 0, dir, idx, |
| 2838 | HDA_AMP_MUTE, |
| 2839 | *valp ? 0 : HDA_AMP_MUTE, false, |
| 2840 | !hda_codec_is_power_on(codec)); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 2841 | valp++; |
| 2842 | } |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 2843 | if (chs & 2) |
Takashi Iwai | 781c7b9 | 2015-02-20 10:26:25 +0100 | [diff] [blame] | 2844 | change |= codec_amp_update(codec, nid, 1, dir, idx, |
| 2845 | HDA_AMP_MUTE, |
| 2846 | *valp ? 0 : HDA_AMP_MUTE, false, |
| 2847 | !hda_codec_is_power_on(codec)); |
Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 2848 | hda_call_check_power_status(codec, nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | return change; |
| 2850 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2851 | EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2852 | |
| 2853 | /* |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2854 | * bound volume controls |
| 2855 | * |
| 2856 | * bind multiple volumes (# indices, from 0) |
| 2857 | */ |
| 2858 | |
| 2859 | #define AMP_VAL_IDX_SHIFT 19 |
| 2860 | #define AMP_VAL_IDX_MASK (0x0f<<19) |
| 2861 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2862 | /** |
| 2863 | * snd_hda_mixer_bind_switch_get - Get callback for a bound volume control |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2864 | * @kcontrol: ctl element |
| 2865 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2866 | * |
| 2867 | * The control element is supposed to have the private_value field |
| 2868 | * set up via HDA_BIND_MUTE*() macros. |
| 2869 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2870 | int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol, |
| 2871 | struct snd_ctl_elem_value *ucontrol) |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2872 | { |
| 2873 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2874 | unsigned long pval; |
| 2875 | int err; |
| 2876 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2877 | mutex_lock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2878 | pval = kcontrol->private_value; |
| 2879 | kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */ |
| 2880 | err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol); |
| 2881 | kcontrol->private_value = pval; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2882 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2883 | return err; |
| 2884 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2885 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_switch_get); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2886 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2887 | /** |
| 2888 | * snd_hda_mixer_bind_switch_put - Put callback for a bound volume control |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2889 | * @kcontrol: ctl element |
| 2890 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2891 | * |
| 2892 | * The control element is supposed to have the private_value field |
| 2893 | * set up via HDA_BIND_MUTE*() macros. |
| 2894 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2895 | int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol, |
| 2896 | struct snd_ctl_elem_value *ucontrol) |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2897 | { |
| 2898 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2899 | unsigned long pval; |
| 2900 | int i, indices, err = 0, change = 0; |
| 2901 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2902 | mutex_lock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2903 | pval = kcontrol->private_value; |
| 2904 | indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT; |
| 2905 | for (i = 0; i < indices; i++) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2906 | kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) | |
| 2907 | (i << AMP_VAL_IDX_SHIFT); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2908 | err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol); |
| 2909 | if (err < 0) |
| 2910 | break; |
| 2911 | change |= err; |
| 2912 | } |
| 2913 | kcontrol->private_value = pval; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2914 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2915 | return err < 0 ? err : change; |
| 2916 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2917 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_switch_put); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2918 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2919 | /** |
| 2920 | * snd_hda_mixer_bind_ctls_info - Info callback for a generic bound control |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2921 | * @kcontrol: referred ctl element |
| 2922 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2923 | * |
| 2924 | * The control element is supposed to have the private_value field |
| 2925 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2926 | */ |
| 2927 | int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol, |
| 2928 | struct snd_ctl_elem_info *uinfo) |
| 2929 | { |
| 2930 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2931 | struct hda_bind_ctls *c; |
| 2932 | int err; |
| 2933 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2934 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2935 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2936 | kcontrol->private_value = *c->values; |
| 2937 | err = c->ops->info(kcontrol, uinfo); |
| 2938 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2939 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2940 | return err; |
| 2941 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2942 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_info); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2943 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2944 | /** |
| 2945 | * snd_hda_mixer_bind_ctls_get - Get callback for a generic bound control |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2946 | * @kcontrol: ctl element |
| 2947 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2948 | * |
| 2949 | * The control element is supposed to have the private_value field |
| 2950 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. |
| 2951 | */ |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2952 | int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol, |
| 2953 | struct snd_ctl_elem_value *ucontrol) |
| 2954 | { |
| 2955 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2956 | struct hda_bind_ctls *c; |
| 2957 | int err; |
| 2958 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2959 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2960 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2961 | kcontrol->private_value = *c->values; |
| 2962 | err = c->ops->get(kcontrol, ucontrol); |
| 2963 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2964 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2965 | return err; |
| 2966 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2967 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_get); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2968 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2969 | /** |
| 2970 | * snd_hda_mixer_bind_ctls_put - Put callback for a generic bound control |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 2971 | * @kcontrol: ctl element |
| 2972 | * @ucontrol: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2973 | * |
| 2974 | * The control element is supposed to have the private_value field |
| 2975 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. |
| 2976 | */ |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2977 | int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol, |
| 2978 | struct snd_ctl_elem_value *ucontrol) |
| 2979 | { |
| 2980 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2981 | struct hda_bind_ctls *c; |
| 2982 | unsigned long *vals; |
| 2983 | int err = 0, change = 0; |
| 2984 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2985 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2986 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2987 | for (vals = c->values; *vals; vals++) { |
| 2988 | kcontrol->private_value = *vals; |
| 2989 | err = c->ops->put(kcontrol, ucontrol); |
| 2990 | if (err < 0) |
| 2991 | break; |
| 2992 | change |= err; |
| 2993 | } |
| 2994 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2995 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2996 | return err < 0 ? err : change; |
| 2997 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 2998 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_put); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2999 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3000 | /** |
| 3001 | * snd_hda_mixer_bind_tlv - TLV callback for a generic bound control |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 3002 | * @kcontrol: ctl element |
| 3003 | * @op_flag: operation flag |
| 3004 | * @size: byte size of input TLV |
| 3005 | * @tlv: TLV data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3006 | * |
| 3007 | * The control element is supposed to have the private_value field |
| 3008 | * set up via HDA_BIND_VOL() macro. |
| 3009 | */ |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 3010 | int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
| 3011 | unsigned int size, unsigned int __user *tlv) |
| 3012 | { |
| 3013 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 3014 | struct hda_bind_ctls *c; |
| 3015 | int err; |
| 3016 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 3017 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 3018 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 3019 | kcontrol->private_value = *c->values; |
| 3020 | err = c->ops->tlv(kcontrol, op_flag, size, tlv); |
| 3021 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 3022 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 3023 | return err; |
| 3024 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3025 | EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_tlv); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 3026 | |
| 3027 | struct hda_ctl_ops snd_hda_bind_vol = { |
| 3028 | .info = snd_hda_mixer_amp_volume_info, |
| 3029 | .get = snd_hda_mixer_amp_volume_get, |
| 3030 | .put = snd_hda_mixer_amp_volume_put, |
| 3031 | .tlv = snd_hda_mixer_amp_tlv |
| 3032 | }; |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3033 | EXPORT_SYMBOL_GPL(snd_hda_bind_vol); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 3034 | |
| 3035 | struct hda_ctl_ops snd_hda_bind_sw = { |
| 3036 | .info = snd_hda_mixer_amp_switch_info, |
| 3037 | .get = snd_hda_mixer_amp_switch_get, |
| 3038 | .put = snd_hda_mixer_amp_switch_put, |
| 3039 | .tlv = snd_hda_mixer_amp_tlv |
| 3040 | }; |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3041 | EXPORT_SYMBOL_GPL(snd_hda_bind_sw); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 3042 | |
| 3043 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3044 | * SPDIF out controls |
| 3045 | */ |
| 3046 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3047 | static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol, |
| 3048 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3049 | { |
| 3050 | uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958; |
| 3051 | uinfo->count = 1; |
| 3052 | return 0; |
| 3053 | } |
| 3054 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3055 | static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol, |
| 3056 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3057 | { |
| 3058 | ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL | |
| 3059 | IEC958_AES0_NONAUDIO | |
| 3060 | IEC958_AES0_CON_EMPHASIS_5015 | |
| 3061 | IEC958_AES0_CON_NOT_COPYRIGHT; |
| 3062 | ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY | |
| 3063 | IEC958_AES1_CON_ORIGINAL; |
| 3064 | return 0; |
| 3065 | } |
| 3066 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3067 | static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol, |
| 3068 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3069 | { |
| 3070 | ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL | |
| 3071 | IEC958_AES0_NONAUDIO | |
| 3072 | IEC958_AES0_PRO_EMPHASIS_5015; |
| 3073 | return 0; |
| 3074 | } |
| 3075 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3076 | static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol, |
| 3077 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3078 | { |
| 3079 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3080 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3081 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3082 | |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3083 | mutex_lock(&codec->spdif_mutex); |
| 3084 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3085 | ucontrol->value.iec958.status[0] = spdif->status & 0xff; |
| 3086 | ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff; |
| 3087 | ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff; |
| 3088 | ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3089 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3090 | |
| 3091 | return 0; |
| 3092 | } |
| 3093 | |
| 3094 | /* convert from SPDIF status bits to HDA SPDIF bits |
| 3095 | * bit 0 (DigEn) is always set zero (to be filled later) |
| 3096 | */ |
| 3097 | static unsigned short convert_from_spdif_status(unsigned int sbits) |
| 3098 | { |
| 3099 | unsigned short val = 0; |
| 3100 | |
| 3101 | if (sbits & IEC958_AES0_PROFESSIONAL) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3102 | val |= AC_DIG1_PROFESSIONAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3103 | if (sbits & IEC958_AES0_NONAUDIO) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3104 | val |= AC_DIG1_NONAUDIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3105 | if (sbits & IEC958_AES0_PROFESSIONAL) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3106 | if ((sbits & IEC958_AES0_PRO_EMPHASIS) == |
| 3107 | IEC958_AES0_PRO_EMPHASIS_5015) |
| 3108 | val |= AC_DIG1_EMPHASIS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3109 | } else { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3110 | if ((sbits & IEC958_AES0_CON_EMPHASIS) == |
| 3111 | IEC958_AES0_CON_EMPHASIS_5015) |
| 3112 | val |= AC_DIG1_EMPHASIS; |
| 3113 | if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT)) |
| 3114 | val |= AC_DIG1_COPYRIGHT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3115 | if (sbits & (IEC958_AES1_CON_ORIGINAL << 8)) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3116 | val |= AC_DIG1_LEVEL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3117 | val |= sbits & (IEC958_AES1_CON_CATEGORY << 8); |
| 3118 | } |
| 3119 | return val; |
| 3120 | } |
| 3121 | |
| 3122 | /* convert to SPDIF status bits from HDA SPDIF bits |
| 3123 | */ |
| 3124 | static unsigned int convert_to_spdif_status(unsigned short val) |
| 3125 | { |
| 3126 | unsigned int sbits = 0; |
| 3127 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3128 | if (val & AC_DIG1_NONAUDIO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3129 | sbits |= IEC958_AES0_NONAUDIO; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3130 | if (val & AC_DIG1_PROFESSIONAL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3131 | sbits |= IEC958_AES0_PROFESSIONAL; |
| 3132 | if (sbits & IEC958_AES0_PROFESSIONAL) { |
Takashi Iwai | a686fd1 | 2013-03-20 15:42:00 +0100 | [diff] [blame] | 3133 | if (val & AC_DIG1_EMPHASIS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3134 | sbits |= IEC958_AES0_PRO_EMPHASIS_5015; |
| 3135 | } else { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3136 | if (val & AC_DIG1_EMPHASIS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3137 | sbits |= IEC958_AES0_CON_EMPHASIS_5015; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3138 | if (!(val & AC_DIG1_COPYRIGHT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3139 | sbits |= IEC958_AES0_CON_NOT_COPYRIGHT; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3140 | if (val & AC_DIG1_LEVEL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3141 | sbits |= (IEC958_AES1_CON_ORIGINAL << 8); |
| 3142 | sbits |= val & (0x7f << 8); |
| 3143 | } |
| 3144 | return sbits; |
| 3145 | } |
| 3146 | |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3147 | /* set digital convert verbs both for the given NID and its slaves */ |
| 3148 | static void set_dig_out(struct hda_codec *codec, hda_nid_t nid, |
| 3149 | int verb, int val) |
| 3150 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 3151 | const hda_nid_t *d; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3152 | |
Takashi Iwai | 9e97697 | 2008-11-25 08:17:20 +0100 | [diff] [blame] | 3153 | snd_hda_codec_write_cache(codec, nid, 0, verb, val); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3154 | d = codec->slave_dig_outs; |
| 3155 | if (!d) |
| 3156 | return; |
| 3157 | for (; *d; d++) |
Takashi Iwai | 9e97697 | 2008-11-25 08:17:20 +0100 | [diff] [blame] | 3158 | snd_hda_codec_write_cache(codec, *d, 0, verb, val); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3159 | } |
| 3160 | |
| 3161 | static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid, |
| 3162 | int dig1, int dig2) |
| 3163 | { |
| 3164 | if (dig1 != -1) |
| 3165 | set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1); |
| 3166 | if (dig2 != -1) |
| 3167 | set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2); |
| 3168 | } |
| 3169 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3170 | static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol, |
| 3171 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3172 | { |
| 3173 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3174 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3175 | struct hda_spdif_out *spdif; |
| 3176 | hda_nid_t nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3177 | unsigned short val; |
| 3178 | int change; |
| 3179 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3180 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3181 | spdif = snd_array_elem(&codec->spdif_out, idx); |
| 3182 | nid = spdif->nid; |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3183 | spdif->status = ucontrol->value.iec958.status[0] | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3184 | ((unsigned int)ucontrol->value.iec958.status[1] << 8) | |
| 3185 | ((unsigned int)ucontrol->value.iec958.status[2] << 16) | |
| 3186 | ((unsigned int)ucontrol->value.iec958.status[3] << 24); |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3187 | val = convert_from_spdif_status(spdif->status); |
| 3188 | val |= spdif->ctls & 1; |
| 3189 | change = spdif->ctls != val; |
| 3190 | spdif->ctls = val; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3191 | if (change && nid != (u16)-1) |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3192 | set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3193 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3194 | return change; |
| 3195 | } |
| 3196 | |
Takashi Iwai | a5ce889 | 2007-07-23 15:42:26 +0200 | [diff] [blame] | 3197 | #define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3198 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3199 | static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol, |
| 3200 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3201 | { |
| 3202 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3203 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3204 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3205 | |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3206 | mutex_lock(&codec->spdif_mutex); |
| 3207 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3208 | ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3209 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3210 | return 0; |
| 3211 | } |
| 3212 | |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3213 | static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid, |
| 3214 | int dig1, int dig2) |
| 3215 | { |
| 3216 | set_dig_out_convert(codec, nid, dig1, dig2); |
| 3217 | /* unmute amp switch (if any) */ |
| 3218 | if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) && |
| 3219 | (dig1 & AC_DIG1_ENABLE)) |
| 3220 | snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0, |
| 3221 | HDA_AMP_MUTE, 0); |
| 3222 | } |
| 3223 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3224 | static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol, |
| 3225 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3226 | { |
| 3227 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3228 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3229 | struct hda_spdif_out *spdif; |
| 3230 | hda_nid_t nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3231 | unsigned short val; |
| 3232 | int change; |
| 3233 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3234 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3235 | spdif = snd_array_elem(&codec->spdif_out, idx); |
| 3236 | nid = spdif->nid; |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3237 | val = spdif->ctls & ~AC_DIG1_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3238 | if (ucontrol->value.integer.value[0]) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3239 | val |= AC_DIG1_ENABLE; |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3240 | change = spdif->ctls != val; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3241 | spdif->ctls = val; |
| 3242 | if (change && nid != (u16)-1) |
| 3243 | set_spdif_ctls(codec, nid, val & 0xff, -1); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3244 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3245 | return change; |
| 3246 | } |
| 3247 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3248 | static struct snd_kcontrol_new dig_mixes[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3249 | { |
| 3250 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 3251 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3252 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3253 | .info = snd_hda_spdif_mask_info, |
| 3254 | .get = snd_hda_spdif_cmask_get, |
| 3255 | }, |
| 3256 | { |
| 3257 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 3258 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3259 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3260 | .info = snd_hda_spdif_mask_info, |
| 3261 | .get = snd_hda_spdif_pmask_get, |
| 3262 | }, |
| 3263 | { |
| 3264 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3265 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3266 | .info = snd_hda_spdif_mask_info, |
| 3267 | .get = snd_hda_spdif_default_get, |
| 3268 | .put = snd_hda_spdif_default_put, |
| 3269 | }, |
| 3270 | { |
| 3271 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3272 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3273 | .info = snd_hda_spdif_out_switch_info, |
| 3274 | .get = snd_hda_spdif_out_switch_get, |
| 3275 | .put = snd_hda_spdif_out_switch_put, |
| 3276 | }, |
| 3277 | { } /* end */ |
| 3278 | }; |
| 3279 | |
| 3280 | /** |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 3281 | * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3282 | * @codec: the HDA codec |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 3283 | * @associated_nid: NID that new ctls associated with |
| 3284 | * @cvt_nid: converter NID |
| 3285 | * @type: HDA_PCM_TYPE_* |
| 3286 | * Creates controls related with the digital output. |
| 3287 | * Called from each patch supporting the digital out. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3288 | * |
| 3289 | * Returns 0 if successful, or a negative error code. |
| 3290 | */ |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 3291 | int snd_hda_create_dig_out_ctls(struct hda_codec *codec, |
| 3292 | hda_nid_t associated_nid, |
| 3293 | hda_nid_t cvt_nid, |
| 3294 | int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3295 | { |
| 3296 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3297 | struct snd_kcontrol *kctl; |
| 3298 | struct snd_kcontrol_new *dig_mix; |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 3299 | int idx = 0; |
| 3300 | const int spdif_index = 16; |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3301 | struct hda_spdif_out *spdif; |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 3302 | struct hda_bus *bus = codec->bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3303 | |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 3304 | if (bus->primary_dig_out_type == HDA_PCM_TYPE_HDMI && |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 3305 | type == HDA_PCM_TYPE_SPDIF) { |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 3306 | idx = spdif_index; |
| 3307 | } else if (bus->primary_dig_out_type == HDA_PCM_TYPE_SPDIF && |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 3308 | type == HDA_PCM_TYPE_HDMI) { |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 3309 | /* suppose a single SPDIF device */ |
| 3310 | for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) { |
| 3311 | kctl = find_mixer_ctl(codec, dig_mix->name, 0, 0); |
| 3312 | if (!kctl) |
| 3313 | break; |
| 3314 | kctl->id.index = spdif_index; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 3315 | } |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 3316 | bus->primary_dig_out_type = HDA_PCM_TYPE_HDMI; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 3317 | } |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 3318 | if (!bus->primary_dig_out_type) |
| 3319 | bus->primary_dig_out_type = type; |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 3320 | |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 3321 | idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", idx); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3322 | if (idx < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 3323 | codec_err(codec, "too many IEC958 outputs\n"); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 3324 | return -EBUSY; |
| 3325 | } |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3326 | spdif = snd_array_new(&codec->spdif_out); |
Mengdong Lin | 25336e8 | 2013-03-07 14:10:25 -0500 | [diff] [blame] | 3327 | if (!spdif) |
| 3328 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3329 | for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) { |
| 3330 | kctl = snd_ctl_new1(dig_mix, codec); |
Takashi Iwai | b91f080 | 2008-11-04 08:43:08 +0100 | [diff] [blame] | 3331 | if (!kctl) |
| 3332 | return -ENOMEM; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 3333 | kctl->id.index = idx; |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3334 | kctl->private_value = codec->spdif_out.used - 1; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3335 | err = snd_hda_ctl_add(codec, associated_nid, kctl); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3336 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3337 | return err; |
| 3338 | } |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3339 | spdif->nid = cvt_nid; |
| 3340 | spdif->ctls = snd_hda_codec_read(codec, cvt_nid, 0, |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3341 | AC_VERB_GET_DIGI_CONVERT_1, 0); |
| 3342 | spdif->status = convert_to_spdif_status(spdif->ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3343 | return 0; |
| 3344 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3345 | EXPORT_SYMBOL_GPL(snd_hda_create_dig_out_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3346 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 3347 | /** |
| 3348 | * snd_hda_spdif_out_of_nid - get the hda_spdif_out entry from the given NID |
| 3349 | * @codec: the HDA codec |
| 3350 | * @nid: widget NID |
| 3351 | * |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3352 | * call within spdif_mutex lock |
| 3353 | */ |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3354 | struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec, |
| 3355 | hda_nid_t nid) |
| 3356 | { |
| 3357 | int i; |
| 3358 | for (i = 0; i < codec->spdif_out.used; i++) { |
| 3359 | struct hda_spdif_out *spdif = |
| 3360 | snd_array_elem(&codec->spdif_out, i); |
| 3361 | if (spdif->nid == nid) |
| 3362 | return spdif; |
| 3363 | } |
| 3364 | return NULL; |
| 3365 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3366 | EXPORT_SYMBOL_GPL(snd_hda_spdif_out_of_nid); |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3367 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 3368 | /** |
| 3369 | * snd_hda_spdif_ctls_unassign - Unassign the given SPDIF ctl |
| 3370 | * @codec: the HDA codec |
| 3371 | * @idx: the SPDIF ctl index |
| 3372 | * |
| 3373 | * Unassign the widget from the given SPDIF control. |
| 3374 | */ |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3375 | void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx) |
| 3376 | { |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3377 | struct hda_spdif_out *spdif; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3378 | |
| 3379 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3380 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3381 | spdif->nid = (u16)-1; |
| 3382 | mutex_unlock(&codec->spdif_mutex); |
| 3383 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3384 | EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_unassign); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3385 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 3386 | /** |
| 3387 | * snd_hda_spdif_ctls_assign - Assign the SPDIF controls to the given NID |
| 3388 | * @codec: the HDA codec |
| 3389 | * @idx: the SPDIF ctl idx |
| 3390 | * @nid: widget NID |
| 3391 | * |
| 3392 | * Assign the widget to the SPDIF control with the given index. |
| 3393 | */ |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3394 | void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid) |
| 3395 | { |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3396 | struct hda_spdif_out *spdif; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3397 | unsigned short val; |
| 3398 | |
| 3399 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3400 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3401 | if (spdif->nid != nid) { |
| 3402 | spdif->nid = nid; |
| 3403 | val = spdif->ctls; |
| 3404 | set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff); |
| 3405 | } |
| 3406 | mutex_unlock(&codec->spdif_mutex); |
| 3407 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3408 | EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_assign); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3410 | /* |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3411 | * SPDIF sharing with analog output |
| 3412 | */ |
| 3413 | static int spdif_share_sw_get(struct snd_kcontrol *kcontrol, |
| 3414 | struct snd_ctl_elem_value *ucontrol) |
| 3415 | { |
| 3416 | struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol); |
| 3417 | ucontrol->value.integer.value[0] = mout->share_spdif; |
| 3418 | return 0; |
| 3419 | } |
| 3420 | |
| 3421 | static int spdif_share_sw_put(struct snd_kcontrol *kcontrol, |
| 3422 | struct snd_ctl_elem_value *ucontrol) |
| 3423 | { |
| 3424 | struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol); |
| 3425 | mout->share_spdif = !!ucontrol->value.integer.value[0]; |
| 3426 | return 0; |
| 3427 | } |
| 3428 | |
| 3429 | static struct snd_kcontrol_new spdif_share_sw = { |
| 3430 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 3431 | .name = "IEC958 Default PCM Playback Switch", |
| 3432 | .info = snd_ctl_boolean_mono_info, |
| 3433 | .get = spdif_share_sw_get, |
| 3434 | .put = spdif_share_sw_put, |
| 3435 | }; |
| 3436 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3437 | /** |
| 3438 | * snd_hda_create_spdif_share_sw - create Default PCM switch |
| 3439 | * @codec: the HDA codec |
| 3440 | * @mout: multi-out instance |
| 3441 | */ |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3442 | int snd_hda_create_spdif_share_sw(struct hda_codec *codec, |
| 3443 | struct hda_multi_out *mout) |
| 3444 | { |
Mengdong Lin | 4c7a548 | 2013-03-07 14:11:05 -0500 | [diff] [blame] | 3445 | struct snd_kcontrol *kctl; |
| 3446 | |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3447 | if (!mout->dig_out_nid) |
| 3448 | return 0; |
Mengdong Lin | 4c7a548 | 2013-03-07 14:11:05 -0500 | [diff] [blame] | 3449 | |
| 3450 | kctl = snd_ctl_new1(&spdif_share_sw, mout); |
| 3451 | if (!kctl) |
| 3452 | return -ENOMEM; |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3453 | /* ATTENTION: here mout is passed as private_data, instead of codec */ |
Mengdong Lin | 4c7a548 | 2013-03-07 14:11:05 -0500 | [diff] [blame] | 3454 | return snd_hda_ctl_add(codec, mout->dig_out_nid, kctl); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3455 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3456 | EXPORT_SYMBOL_GPL(snd_hda_create_spdif_share_sw); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3457 | |
| 3458 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3459 | * SPDIF input |
| 3460 | */ |
| 3461 | |
| 3462 | #define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info |
| 3463 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3464 | static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol, |
| 3465 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3466 | { |
| 3467 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 3468 | |
| 3469 | ucontrol->value.integer.value[0] = codec->spdif_in_enable; |
| 3470 | return 0; |
| 3471 | } |
| 3472 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3473 | static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol, |
| 3474 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3475 | { |
| 3476 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 3477 | hda_nid_t nid = kcontrol->private_value; |
| 3478 | unsigned int val = !!ucontrol->value.integer.value[0]; |
| 3479 | int change; |
| 3480 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3481 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3482 | change = codec->spdif_in_enable != val; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3483 | if (change) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3484 | codec->spdif_in_enable = val; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3485 | snd_hda_codec_write_cache(codec, nid, 0, |
| 3486 | AC_VERB_SET_DIGI_CONVERT_1, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3487 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3488 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3489 | return change; |
| 3490 | } |
| 3491 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3492 | static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol, |
| 3493 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3494 | { |
| 3495 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 3496 | hda_nid_t nid = kcontrol->private_value; |
| 3497 | unsigned short val; |
| 3498 | unsigned int sbits; |
| 3499 | |
Andrew Paprocki | 3982d17 | 2007-12-19 12:13:44 +0100 | [diff] [blame] | 3500 | val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3501 | sbits = convert_to_spdif_status(val); |
| 3502 | ucontrol->value.iec958.status[0] = sbits; |
| 3503 | ucontrol->value.iec958.status[1] = sbits >> 8; |
| 3504 | ucontrol->value.iec958.status[2] = sbits >> 16; |
| 3505 | ucontrol->value.iec958.status[3] = sbits >> 24; |
| 3506 | return 0; |
| 3507 | } |
| 3508 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3509 | static struct snd_kcontrol_new dig_in_ctls[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3510 | { |
| 3511 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3512 | .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3513 | .info = snd_hda_spdif_in_switch_info, |
| 3514 | .get = snd_hda_spdif_in_switch_get, |
| 3515 | .put = snd_hda_spdif_in_switch_put, |
| 3516 | }, |
| 3517 | { |
| 3518 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 3519 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3520 | .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3521 | .info = snd_hda_spdif_mask_info, |
| 3522 | .get = snd_hda_spdif_in_status_get, |
| 3523 | }, |
| 3524 | { } /* end */ |
| 3525 | }; |
| 3526 | |
| 3527 | /** |
| 3528 | * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls |
| 3529 | * @codec: the HDA codec |
| 3530 | * @nid: audio in widget NID |
| 3531 | * |
| 3532 | * Creates controls related with the SPDIF input. |
| 3533 | * Called from each patch supporting the SPDIF in. |
| 3534 | * |
| 3535 | * Returns 0 if successful, or a negative error code. |
| 3536 | */ |
Takashi Iwai | 12f288b | 2007-08-02 15:51:59 +0200 | [diff] [blame] | 3537 | 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] | 3538 | { |
| 3539 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3540 | struct snd_kcontrol *kctl; |
| 3541 | struct snd_kcontrol_new *dig_mix; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 3542 | int idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3543 | |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 3544 | idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3545 | if (idx < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 3546 | codec_err(codec, "too many IEC958 inputs\n"); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 3547 | return -EBUSY; |
| 3548 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3549 | for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) { |
| 3550 | kctl = snd_ctl_new1(dig_mix, codec); |
Takashi Iwai | c8dcdf8 | 2009-02-06 16:21:20 +0100 | [diff] [blame] | 3551 | if (!kctl) |
| 3552 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3553 | kctl->private_value = nid; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 3554 | err = snd_hda_ctl_add(codec, nid, kctl); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3555 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3556 | return err; |
| 3557 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3558 | codec->spdif_in_enable = |
Andrew Paprocki | 3982d17 | 2007-12-19 12:13:44 +0100 | [diff] [blame] | 3559 | snd_hda_codec_read(codec, nid, 0, |
| 3560 | AC_VERB_GET_DIGI_CONVERT_1, 0) & |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3561 | AC_DIG1_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3562 | return 0; |
| 3563 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3564 | EXPORT_SYMBOL_GPL(snd_hda_create_spdif_in_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3565 | |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3566 | /* |
| 3567 | * command cache |
| 3568 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3569 | |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3570 | /* build a 31bit cache key with the widget id and the command parameter */ |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3571 | #define build_cmd_cache_key(nid, verb) ((verb << 8) | nid) |
| 3572 | #define get_cmd_cache_nid(key) ((key) & 0xff) |
| 3573 | #define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff) |
| 3574 | |
| 3575 | /** |
| 3576 | * snd_hda_codec_write_cache - send a single command with caching |
| 3577 | * @codec: the HDA codec |
| 3578 | * @nid: NID to send the command |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 3579 | * @flags: optional bit flags |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3580 | * @verb: the verb to send |
| 3581 | * @parm: the parameter for the verb |
| 3582 | * |
| 3583 | * Send a single command without waiting for response. |
| 3584 | * |
| 3585 | * Returns 0 if successful, or a negative error code. |
| 3586 | */ |
| 3587 | int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid, |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 3588 | int flags, unsigned int verb, unsigned int parm) |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3589 | { |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3590 | int err; |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 3591 | struct hda_cache_head *c; |
| 3592 | u32 key; |
Takashi Iwai | de1e37b | 2012-12-20 11:00:21 +0100 | [diff] [blame] | 3593 | unsigned int cache_only; |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 3594 | |
Takashi Iwai | de1e37b | 2012-12-20 11:00:21 +0100 | [diff] [blame] | 3595 | cache_only = codec->cached_write; |
| 3596 | if (!cache_only) { |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 3597 | err = snd_hda_codec_write(codec, nid, flags, verb, parm); |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3598 | if (err < 0) |
| 3599 | return err; |
| 3600 | } |
| 3601 | |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 3602 | /* parm may contain the verb stuff for get/set amp */ |
| 3603 | verb = verb | (parm >> 8); |
| 3604 | parm &= 0xff; |
| 3605 | key = build_cmd_cache_key(nid, verb); |
| 3606 | mutex_lock(&codec->bus->cmd_mutex); |
| 3607 | c = get_alloc_hash(&codec->cmd_cache, key); |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3608 | if (c) { |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 3609 | c->val = parm; |
Takashi Iwai | de1e37b | 2012-12-20 11:00:21 +0100 | [diff] [blame] | 3610 | c->dirty = cache_only; |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3611 | } |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 3612 | mutex_unlock(&codec->bus->cmd_mutex); |
| 3613 | return 0; |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3614 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3615 | EXPORT_SYMBOL_GPL(snd_hda_codec_write_cache); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3616 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3617 | /** |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 3618 | * snd_hda_codec_update_cache - check cache and write the cmd only when needed |
| 3619 | * @codec: the HDA codec |
| 3620 | * @nid: NID to send the command |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 3621 | * @flags: optional bit flags |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 3622 | * @verb: the verb to send |
| 3623 | * @parm: the parameter for the verb |
| 3624 | * |
| 3625 | * This function works like snd_hda_codec_write_cache(), but it doesn't send |
| 3626 | * command if the parameter is already identical with the cached value. |
| 3627 | * If not, it sends the command and refreshes the cache. |
| 3628 | * |
| 3629 | * Returns 0 if successful, or a negative error code. |
| 3630 | */ |
| 3631 | int snd_hda_codec_update_cache(struct hda_codec *codec, hda_nid_t nid, |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 3632 | int flags, unsigned int verb, unsigned int parm) |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 3633 | { |
| 3634 | struct hda_cache_head *c; |
| 3635 | u32 key; |
| 3636 | |
| 3637 | /* parm may contain the verb stuff for get/set amp */ |
| 3638 | verb = verb | (parm >> 8); |
| 3639 | parm &= 0xff; |
| 3640 | key = build_cmd_cache_key(nid, verb); |
| 3641 | mutex_lock(&codec->bus->cmd_mutex); |
| 3642 | c = get_hash(&codec->cmd_cache, key); |
| 3643 | if (c && c->val == parm) { |
| 3644 | mutex_unlock(&codec->bus->cmd_mutex); |
| 3645 | return 0; |
| 3646 | } |
| 3647 | mutex_unlock(&codec->bus->cmd_mutex); |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 3648 | return snd_hda_codec_write_cache(codec, nid, flags, verb, parm); |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 3649 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3650 | EXPORT_SYMBOL_GPL(snd_hda_codec_update_cache); |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 3651 | |
| 3652 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3653 | * snd_hda_codec_resume_cache - Resume the all commands from the cache |
| 3654 | * @codec: HD-audio codec |
| 3655 | * |
| 3656 | * Execute all verbs recorded in the command caches to resume. |
| 3657 | */ |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3658 | void snd_hda_codec_resume_cache(struct hda_codec *codec) |
| 3659 | { |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3660 | int i; |
| 3661 | |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3662 | mutex_lock(&codec->hash_mutex); |
Takashi Iwai | aa88a35 | 2012-12-20 11:02:00 +0100 | [diff] [blame] | 3663 | codec->cached_write = 0; |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3664 | for (i = 0; i < codec->cmd_cache.buf.used; i++) { |
| 3665 | struct hda_cache_head *buffer; |
| 3666 | u32 key; |
| 3667 | |
| 3668 | buffer = snd_array_elem(&codec->cmd_cache.buf, i); |
| 3669 | key = buffer->key; |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3670 | if (!key) |
| 3671 | continue; |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3672 | if (!buffer->dirty) |
| 3673 | continue; |
| 3674 | buffer->dirty = 0; |
| 3675 | mutex_unlock(&codec->hash_mutex); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3676 | snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0, |
| 3677 | get_cmd_cache_cmd(key), buffer->val); |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3678 | mutex_lock(&codec->hash_mutex); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3679 | } |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3680 | mutex_unlock(&codec->hash_mutex); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3681 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3682 | EXPORT_SYMBOL_GPL(snd_hda_codec_resume_cache); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3683 | |
| 3684 | /** |
| 3685 | * snd_hda_sequence_write_cache - sequence writes with caching |
| 3686 | * @codec: the HDA codec |
| 3687 | * @seq: VERB array to send |
| 3688 | * |
| 3689 | * Send the commands sequentially from the given array. |
| 3690 | * Thte commands are recorded on cache for power-save and resume. |
| 3691 | * The array must be terminated with NID=0. |
| 3692 | */ |
| 3693 | void snd_hda_sequence_write_cache(struct hda_codec *codec, |
| 3694 | const struct hda_verb *seq) |
| 3695 | { |
| 3696 | for (; seq->nid; seq++) |
| 3697 | snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb, |
| 3698 | seq->param); |
| 3699 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3700 | EXPORT_SYMBOL_GPL(snd_hda_sequence_write_cache); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3701 | |
Takashi Iwai | dc870f3 | 2013-01-22 15:24:30 +0100 | [diff] [blame] | 3702 | /** |
| 3703 | * snd_hda_codec_flush_cache - Execute all pending (cached) amps / verbs |
| 3704 | * @codec: HD-audio codec |
| 3705 | */ |
| 3706 | void snd_hda_codec_flush_cache(struct hda_codec *codec) |
| 3707 | { |
| 3708 | snd_hda_codec_resume_amp(codec); |
| 3709 | snd_hda_codec_resume_cache(codec); |
| 3710 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3711 | EXPORT_SYMBOL_GPL(snd_hda_codec_flush_cache); |
Takashi Iwai | dc870f3 | 2013-01-22 15:24:30 +0100 | [diff] [blame] | 3712 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 3713 | /** |
| 3714 | * snd_hda_codec_set_power_to_all - Set the power state to all widgets |
| 3715 | * @codec: the HDA codec |
| 3716 | * @fg: function group (not used now) |
| 3717 | * @power_state: the power state to set (AC_PWRST_*) |
| 3718 | * |
| 3719 | * Set the given power state to all widgets that have the power control. |
| 3720 | * If the codec has power_filter set, it evaluates the power state and |
| 3721 | * filter out if it's unchanged as D3. |
| 3722 | */ |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3723 | 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] | 3724 | unsigned int power_state) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3725 | { |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3726 | hda_nid_t nid = codec->start_nid; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3727 | int i; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3728 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3729 | for (i = 0; i < codec->num_nodes; i++, nid++) { |
Takashi Iwai | 7eba5c9 | 2007-11-14 14:53:42 +0100 | [diff] [blame] | 3730 | unsigned int wcaps = get_wcaps(codec, nid); |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 3731 | unsigned int state = power_state; |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3732 | if (!(wcaps & AC_WCAP_POWER)) |
| 3733 | continue; |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 3734 | if (codec->power_filter) { |
| 3735 | state = codec->power_filter(codec, nid, power_state); |
| 3736 | if (state != power_state && power_state == AC_PWRST_D3) |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3737 | continue; |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 3738 | } |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3739 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE, |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 3740 | state); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3741 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3742 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3743 | EXPORT_SYMBOL_GPL(snd_hda_codec_set_power_to_all); |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3744 | |
| 3745 | /* |
Wang Xingchao | 0c7f46a | 2012-06-06 22:02:48 +0800 | [diff] [blame] | 3746 | * supported power states check |
| 3747 | */ |
| 3748 | static bool snd_hda_codec_get_supported_ps(struct hda_codec *codec, hda_nid_t fg, |
| 3749 | unsigned int power_state) |
| 3750 | { |
| 3751 | int sup = snd_hda_param_read(codec, fg, AC_PAR_POWER_STATE); |
| 3752 | |
Mengdong Lin | e037cb4 | 2012-08-10 14:11:58 +0200 | [diff] [blame] | 3753 | if (sup == -1) |
Wang Xingchao | 0c7f46a | 2012-06-06 22:02:48 +0800 | [diff] [blame] | 3754 | return false; |
| 3755 | if (sup & power_state) |
| 3756 | return true; |
| 3757 | else |
| 3758 | return false; |
| 3759 | } |
| 3760 | |
| 3761 | /* |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 3762 | * wait until the state is reached, returns the current state |
| 3763 | */ |
| 3764 | static unsigned int hda_sync_power_state(struct hda_codec *codec, |
| 3765 | hda_nid_t fg, |
| 3766 | unsigned int power_state) |
| 3767 | { |
| 3768 | unsigned long end_time = jiffies + msecs_to_jiffies(500); |
| 3769 | unsigned int state, actual_state; |
| 3770 | |
| 3771 | for (;;) { |
| 3772 | state = snd_hda_codec_read(codec, fg, 0, |
| 3773 | AC_VERB_GET_POWER_STATE, 0); |
| 3774 | if (state & AC_PWRST_ERROR) |
| 3775 | break; |
| 3776 | actual_state = (state >> 4) & 0x0f; |
| 3777 | if (actual_state == power_state) |
| 3778 | break; |
| 3779 | if (time_after_eq(jiffies, end_time)) |
| 3780 | break; |
| 3781 | /* wait until the codec reachs to the target state */ |
| 3782 | msleep(1); |
| 3783 | } |
| 3784 | return state; |
| 3785 | } |
| 3786 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 3787 | /** |
| 3788 | * snd_hda_codec_eapd_power_filter - A power filter callback for EAPD |
| 3789 | * @codec: the HDA codec |
| 3790 | * @nid: widget NID |
| 3791 | * @power_state: power state to evalue |
| 3792 | * |
| 3793 | * Don't power down the widget if it controls eapd and EAPD_BTLENABLE is set. |
| 3794 | * This can be used a codec power_filter callback. |
| 3795 | */ |
Takashi Iwai | ba615b8 | 2013-03-13 14:47:21 +0100 | [diff] [blame] | 3796 | unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec, |
| 3797 | hda_nid_t nid, |
| 3798 | unsigned int power_state) |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 3799 | { |
Takashi Iwai | dfc6e46 | 2014-01-13 16:09:57 +0100 | [diff] [blame] | 3800 | if (nid == codec->afg || nid == codec->mfg) |
| 3801 | return power_state; |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 3802 | if (power_state == AC_PWRST_D3 && |
| 3803 | get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN && |
| 3804 | (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) { |
| 3805 | int eapd = snd_hda_codec_read(codec, nid, 0, |
| 3806 | AC_VERB_GET_EAPD_BTLENABLE, 0); |
| 3807 | if (eapd & 0x02) |
| 3808 | return AC_PWRST_D0; |
| 3809 | } |
| 3810 | return power_state; |
| 3811 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 3812 | EXPORT_SYMBOL_GPL(snd_hda_codec_eapd_power_filter); |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 3813 | |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 3814 | /* |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3815 | * set power state of the codec, and return the power state |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3816 | */ |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 3817 | static unsigned int hda_set_power_state(struct hda_codec *codec, |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3818 | unsigned int power_state) |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3819 | { |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 3820 | hda_nid_t fg = codec->afg ? codec->afg : codec->mfg; |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 3821 | int count; |
| 3822 | unsigned int state; |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 3823 | int flags = 0; |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 3824 | |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3825 | /* this delay seems necessary to avoid click noise at power-down */ |
Wang Xingchao | 0f4ccbb | 2012-06-07 16:51:33 +0800 | [diff] [blame] | 3826 | if (power_state == AC_PWRST_D3) { |
Mengdong Lin | 7f13292 | 2013-11-29 01:48:45 -0500 | [diff] [blame] | 3827 | if (codec->depop_delay < 0) |
| 3828 | msleep(codec->epss ? 10 : 100); |
| 3829 | else if (codec->depop_delay > 0) |
| 3830 | msleep(codec->depop_delay); |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 3831 | flags = HDA_RW_NO_RESPONSE_FALLBACK; |
Wang Xingchao | 0f4ccbb | 2012-06-07 16:51:33 +0800 | [diff] [blame] | 3832 | } |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 3833 | |
| 3834 | /* repeat power states setting at most 10 times*/ |
| 3835 | for (count = 0; count < 10; count++) { |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 3836 | if (codec->patch_ops.set_power_state) |
| 3837 | codec->patch_ops.set_power_state(codec, fg, |
| 3838 | power_state); |
| 3839 | else { |
Takashi Iwai | dfc6e46 | 2014-01-13 16:09:57 +0100 | [diff] [blame] | 3840 | state = power_state; |
| 3841 | if (codec->power_filter) |
| 3842 | state = codec->power_filter(codec, fg, state); |
| 3843 | if (state == power_state || power_state != AC_PWRST_D3) |
| 3844 | snd_hda_codec_read(codec, fg, flags, |
| 3845 | AC_VERB_SET_POWER_STATE, |
| 3846 | state); |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 3847 | snd_hda_codec_set_power_to_all(codec, fg, power_state); |
Takashi Iwai | 432c641 | 2012-08-28 09:59:20 -0700 | [diff] [blame] | 3848 | } |
| 3849 | state = hda_sync_power_state(codec, fg, power_state); |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 3850 | if (!(state & AC_PWRST_ERROR)) |
| 3851 | break; |
| 3852 | } |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 3853 | |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3854 | return state; |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3855 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3856 | |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3857 | /* sync power states of all widgets; |
| 3858 | * this is called at the end of codec parsing |
| 3859 | */ |
| 3860 | static void sync_power_up_states(struct hda_codec *codec) |
| 3861 | { |
| 3862 | hda_nid_t nid = codec->start_nid; |
| 3863 | int i; |
| 3864 | |
Takashi Iwai | ba615b8 | 2013-03-13 14:47:21 +0100 | [diff] [blame] | 3865 | /* don't care if no filter is used */ |
| 3866 | if (!codec->power_filter) |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3867 | return; |
| 3868 | |
| 3869 | for (i = 0; i < codec->num_nodes; i++, nid++) { |
| 3870 | unsigned int wcaps = get_wcaps(codec, nid); |
Takashi Iwai | 9040d10 | 2013-01-24 17:47:17 +0100 | [diff] [blame] | 3871 | unsigned int target; |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3872 | if (!(wcaps & AC_WCAP_POWER)) |
| 3873 | continue; |
| 3874 | target = codec->power_filter(codec, nid, AC_PWRST_D0); |
| 3875 | if (target == AC_PWRST_D0) |
| 3876 | continue; |
Takashi Iwai | 9040d10 | 2013-01-24 17:47:17 +0100 | [diff] [blame] | 3877 | if (!snd_hda_check_power_state(codec, nid, target)) |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 3878 | snd_hda_codec_write(codec, nid, 0, |
| 3879 | AC_VERB_SET_POWER_STATE, target); |
| 3880 | } |
| 3881 | } |
| 3882 | |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 3883 | #ifdef CONFIG_SND_HDA_RECONFIG |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 3884 | /* execute additional init verbs */ |
| 3885 | static void hda_exec_init_verbs(struct hda_codec *codec) |
| 3886 | { |
| 3887 | if (codec->init_verbs.list) |
| 3888 | snd_hda_sequence_write(codec, codec->init_verbs.list); |
| 3889 | } |
| 3890 | #else |
| 3891 | static inline void hda_exec_init_verbs(struct hda_codec *codec) {} |
| 3892 | #endif |
| 3893 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 3894 | #ifdef CONFIG_PM |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3895 | /* |
| 3896 | * call suspend and power-down; used both from PM and power-save |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3897 | * this function returns the power state in the end |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3898 | */ |
Dylan Reid | d17344b | 2012-09-28 15:57:01 -0700 | [diff] [blame] | 3899 | static unsigned int hda_call_codec_suspend(struct hda_codec *codec, bool in_wq) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3900 | { |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3901 | unsigned int state; |
| 3902 | |
Takashi Iwai | 989c318 | 2012-11-19 14:14:58 +0100 | [diff] [blame] | 3903 | codec->in_pm = 1; |
| 3904 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3905 | if (codec->patch_ops.suspend) |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 3906 | codec->patch_ops.suspend(codec); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3907 | hda_cleanup_all_streams(codec); |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 3908 | state = hda_set_power_state(codec, AC_PWRST_D3); |
Dylan Reid | d17344b | 2012-09-28 15:57:01 -0700 | [diff] [blame] | 3909 | /* Cancel delayed work if we aren't currently running from it. */ |
| 3910 | if (!in_wq) |
| 3911 | cancel_delayed_work_sync(&codec->power_work); |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 3912 | spin_lock(&codec->power_lock); |
| 3913 | snd_hda_update_power_acct(codec); |
| 3914 | trace_hda_power_down(codec); |
Takashi Iwai | 95e99fd | 2007-08-13 15:29:04 +0200 | [diff] [blame] | 3915 | codec->power_on = 0; |
Takashi Iwai | a221e28 | 2007-08-16 16:35:33 +0200 | [diff] [blame] | 3916 | codec->power_transition = 0; |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 3917 | codec->power_jiffies = jiffies; |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 3918 | spin_unlock(&codec->power_lock); |
Takashi Iwai | 989c318 | 2012-11-19 14:14:58 +0100 | [diff] [blame] | 3919 | codec->in_pm = 0; |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 3920 | return state; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3921 | } |
| 3922 | |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3923 | /* mark all entries of cmd and amp caches dirty */ |
| 3924 | static void hda_mark_cmd_cache_dirty(struct hda_codec *codec) |
| 3925 | { |
| 3926 | int i; |
| 3927 | for (i = 0; i < codec->cmd_cache.buf.used; i++) { |
| 3928 | struct hda_cache_head *cmd; |
| 3929 | cmd = snd_array_elem(&codec->cmd_cache.buf, i); |
| 3930 | cmd->dirty = 1; |
| 3931 | } |
| 3932 | for (i = 0; i < codec->amp_cache.buf.used; i++) { |
| 3933 | struct hda_amp_info *amp; |
David Henningsson | f038fca | 2013-01-15 15:27:19 +0100 | [diff] [blame] | 3934 | amp = snd_array_elem(&codec->amp_cache.buf, i); |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3935 | amp->head.dirty = 1; |
| 3936 | } |
| 3937 | } |
| 3938 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3939 | /* |
| 3940 | * kick up codec; used both from PM and power-save |
| 3941 | */ |
| 3942 | static void hda_call_codec_resume(struct hda_codec *codec) |
| 3943 | { |
Takashi Iwai | 989c318 | 2012-11-19 14:14:58 +0100 | [diff] [blame] | 3944 | codec->in_pm = 1; |
| 3945 | |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 3946 | hda_mark_cmd_cache_dirty(codec); |
| 3947 | |
Takashi Iwai | 7f30830 | 2012-05-08 16:52:23 +0200 | [diff] [blame] | 3948 | /* set as if powered on for avoiding re-entering the resume |
| 3949 | * in the resume / power-save sequence |
| 3950 | */ |
| 3951 | hda_keep_power_on(codec); |
Takashi Iwai | d819387 | 2012-08-31 07:54:38 -0700 | [diff] [blame] | 3952 | hda_set_power_state(codec, AC_PWRST_D0); |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 3953 | restore_shutup_pins(codec); |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 3954 | hda_exec_init_verbs(codec); |
Takashi Iwai | 31614bb | 2013-01-23 15:58:40 +0100 | [diff] [blame] | 3955 | snd_hda_jack_set_dirty_all(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3956 | if (codec->patch_ops.resume) |
| 3957 | codec->patch_ops.resume(codec); |
| 3958 | else { |
Takashi Iwai | 9d99f31 | 2007-08-14 15:15:52 +0200 | [diff] [blame] | 3959 | if (codec->patch_ops.init) |
| 3960 | codec->patch_ops.init(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3961 | snd_hda_codec_resume_amp(codec); |
| 3962 | snd_hda_codec_resume_cache(codec); |
| 3963 | } |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 3964 | |
| 3965 | if (codec->jackpoll_interval) |
| 3966 | hda_jackpoll_work(&codec->jackpoll_work.work); |
Takashi Iwai | 31614bb | 2013-01-23 15:58:40 +0100 | [diff] [blame] | 3967 | else |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 3968 | snd_hda_jack_report_sync(codec); |
Takashi Iwai | 989c318 | 2012-11-19 14:14:58 +0100 | [diff] [blame] | 3969 | |
| 3970 | codec->in_pm = 0; |
Takashi Iwai | 7f30830 | 2012-05-08 16:52:23 +0200 | [diff] [blame] | 3971 | snd_hda_power_down(codec); /* flag down before returning */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3972 | } |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 3973 | #endif /* CONFIG_PM */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3974 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3975 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3976 | /** |
| 3977 | * snd_hda_build_controls - build mixer controls |
| 3978 | * @bus: the BUS |
| 3979 | * |
| 3980 | * Creates mixer controls for each codec included in the bus. |
| 3981 | * |
| 3982 | * Returns 0 if successful, otherwise a negative error code. |
| 3983 | */ |
Takashi Iwai | 6a0f56a | 2012-12-07 07:41:56 +0100 | [diff] [blame] | 3984 | int snd_hda_build_controls(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3985 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3986 | struct hda_codec *codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3987 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3988 | list_for_each_entry(codec, &bus->codec_list, list) { |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3989 | int err = snd_hda_codec_build_controls(codec); |
Takashi Iwai | f93d461 | 2009-03-02 10:44:15 +0100 | [diff] [blame] | 3990 | if (err < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 3991 | codec_err(codec, |
| 3992 | "cannot build controls for #%d (error %d)\n", |
| 3993 | codec->addr, err); |
Takashi Iwai | f93d461 | 2009-03-02 10:44:15 +0100 | [diff] [blame] | 3994 | err = snd_hda_codec_reset(codec); |
| 3995 | if (err < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 3996 | codec_err(codec, |
| 3997 | "cannot revert codec\n"); |
Takashi Iwai | f93d461 | 2009-03-02 10:44:15 +0100 | [diff] [blame] | 3998 | return err; |
| 3999 | } |
| 4000 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4001 | } |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 4002 | return 0; |
| 4003 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4004 | EXPORT_SYMBOL_GPL(snd_hda_build_controls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4005 | |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 4006 | /* |
| 4007 | * add standard channel maps if not specified |
| 4008 | */ |
| 4009 | static int add_std_chmaps(struct hda_codec *codec) |
| 4010 | { |
| 4011 | int i, str, err; |
| 4012 | |
| 4013 | for (i = 0; i < codec->num_pcms; i++) { |
| 4014 | for (str = 0; str < 2; str++) { |
| 4015 | struct snd_pcm *pcm = codec->pcm_info[i].pcm; |
| 4016 | struct hda_pcm_stream *hinfo = |
| 4017 | &codec->pcm_info[i].stream[str]; |
| 4018 | struct snd_pcm_chmap *chmap; |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 4019 | const struct snd_pcm_chmap_elem *elem; |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 4020 | |
| 4021 | if (codec->pcm_info[i].own_chmap) |
| 4022 | continue; |
| 4023 | if (!pcm || !hinfo->substreams) |
| 4024 | continue; |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 4025 | elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps; |
| 4026 | err = snd_pcm_add_chmap_ctls(pcm, str, elem, |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 4027 | hinfo->channels_max, |
| 4028 | 0, &chmap); |
| 4029 | if (err < 0) |
| 4030 | return err; |
| 4031 | chmap->channel_mask = SND_PCM_CHMAP_MASK_2468; |
| 4032 | } |
| 4033 | } |
| 4034 | return 0; |
| 4035 | } |
| 4036 | |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 4037 | /* default channel maps for 2.1 speakers; |
| 4038 | * since HD-audio supports only stereo, odd number channels are omitted |
| 4039 | */ |
| 4040 | const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = { |
| 4041 | { .channels = 2, |
| 4042 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } }, |
| 4043 | { .channels = 4, |
| 4044 | .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR, |
| 4045 | SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } }, |
| 4046 | { } |
| 4047 | }; |
| 4048 | EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps); |
| 4049 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 4050 | int snd_hda_codec_build_controls(struct hda_codec *codec) |
| 4051 | { |
| 4052 | int err = 0; |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 4053 | hda_exec_init_verbs(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 4054 | /* continue to initialize... */ |
| 4055 | if (codec->patch_ops.init) |
| 4056 | err = codec->patch_ops.init(codec); |
| 4057 | if (!err && codec->patch_ops.build_controls) |
| 4058 | err = codec->patch_ops.build_controls(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 4059 | if (err < 0) |
| 4060 | return err; |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 4061 | |
| 4062 | /* we create chmaps here instead of build_pcms */ |
| 4063 | err = add_std_chmaps(codec); |
| 4064 | if (err < 0) |
| 4065 | return err; |
| 4066 | |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 4067 | if (codec->jackpoll_interval) |
| 4068 | hda_jackpoll_work(&codec->jackpoll_work.work); |
| 4069 | else |
| 4070 | snd_hda_jack_report_sync(codec); /* call at the last init point */ |
Takashi Iwai | b9c590b | 2013-01-24 17:27:32 +0100 | [diff] [blame] | 4071 | sync_power_up_states(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4072 | return 0; |
| 4073 | } |
| 4074 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4075 | /* |
| 4076 | * stream formats |
| 4077 | */ |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 4078 | struct hda_rate_tbl { |
| 4079 | unsigned int hz; |
| 4080 | unsigned int alsa_bits; |
| 4081 | unsigned int hda_fmt; |
| 4082 | }; |
| 4083 | |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 4084 | /* rate = base * mult / div */ |
| 4085 | #define HDA_RATE(base, mult, div) \ |
| 4086 | (AC_FMT_BASE_##base##K | (((mult) - 1) << AC_FMT_MULT_SHIFT) | \ |
| 4087 | (((div) - 1) << AC_FMT_DIV_SHIFT)) |
| 4088 | |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 4089 | static struct hda_rate_tbl rate_bits[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4090 | /* rate in Hz, ALSA rate bitmask, HDA format value */ |
Nicolas Graziano | 9d8f53f | 2005-08-22 13:47:16 +0200 | [diff] [blame] | 4091 | |
| 4092 | /* autodetected value used in snd_hda_query_supported_pcm */ |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 4093 | { 8000, SNDRV_PCM_RATE_8000, HDA_RATE(48, 1, 6) }, |
| 4094 | { 11025, SNDRV_PCM_RATE_11025, HDA_RATE(44, 1, 4) }, |
| 4095 | { 16000, SNDRV_PCM_RATE_16000, HDA_RATE(48, 1, 3) }, |
| 4096 | { 22050, SNDRV_PCM_RATE_22050, HDA_RATE(44, 1, 2) }, |
| 4097 | { 32000, SNDRV_PCM_RATE_32000, HDA_RATE(48, 2, 3) }, |
| 4098 | { 44100, SNDRV_PCM_RATE_44100, HDA_RATE(44, 1, 1) }, |
| 4099 | { 48000, SNDRV_PCM_RATE_48000, HDA_RATE(48, 1, 1) }, |
| 4100 | { 88200, SNDRV_PCM_RATE_88200, HDA_RATE(44, 2, 1) }, |
| 4101 | { 96000, SNDRV_PCM_RATE_96000, HDA_RATE(48, 2, 1) }, |
| 4102 | { 176400, SNDRV_PCM_RATE_176400, HDA_RATE(44, 4, 1) }, |
| 4103 | { 192000, SNDRV_PCM_RATE_192000, HDA_RATE(48, 4, 1) }, |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 4104 | #define AC_PAR_PCM_RATE_BITS 11 |
| 4105 | /* up to bits 10, 384kHZ isn't supported properly */ |
| 4106 | |
| 4107 | /* not autodetected value */ |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 4108 | { 9600, SNDRV_PCM_RATE_KNOT, HDA_RATE(48, 1, 5) }, |
Nicolas Graziano | 9d8f53f | 2005-08-22 13:47:16 +0200 | [diff] [blame] | 4109 | |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 4110 | { 0 } /* terminator */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4111 | }; |
| 4112 | |
| 4113 | /** |
| 4114 | * snd_hda_calc_stream_format - calculate format bitset |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 4115 | * @codec: HD-audio codec |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4116 | * @rate: the sample rate |
| 4117 | * @channels: the number of channels |
| 4118 | * @format: the PCM format (SNDRV_PCM_FORMAT_XXX) |
| 4119 | * @maxbps: the max. bps |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4120 | * @spdif_ctls: HD-audio SPDIF status bits (0 if irrelevant) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4121 | * |
| 4122 | * Calculate the format bitset from the given rate, channels and th PCM format. |
| 4123 | * |
| 4124 | * Return zero if invalid. |
| 4125 | */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 4126 | unsigned int snd_hda_calc_stream_format(struct hda_codec *codec, |
| 4127 | unsigned int rate, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4128 | unsigned int channels, |
| 4129 | unsigned int format, |
Anssi Hannula | 32c168c | 2010-08-03 13:28:57 +0300 | [diff] [blame] | 4130 | unsigned int maxbps, |
| 4131 | unsigned short spdif_ctls) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4132 | { |
| 4133 | int i; |
| 4134 | unsigned int val = 0; |
| 4135 | |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 4136 | for (i = 0; rate_bits[i].hz; i++) |
| 4137 | if (rate_bits[i].hz == rate) { |
| 4138 | val = rate_bits[i].hda_fmt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4139 | break; |
| 4140 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4141 | if (!rate_bits[i].hz) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 4142 | codec_dbg(codec, "invalid rate %d\n", rate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4143 | return 0; |
| 4144 | } |
| 4145 | |
| 4146 | if (channels == 0 || channels > 8) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 4147 | codec_dbg(codec, "invalid channels %d\n", channels); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4148 | return 0; |
| 4149 | } |
| 4150 | val |= channels - 1; |
| 4151 | |
| 4152 | switch (snd_pcm_format_width(format)) { |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 4153 | case 8: |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 4154 | val |= AC_FMT_BITS_8; |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 4155 | break; |
| 4156 | case 16: |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 4157 | val |= AC_FMT_BITS_16; |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 4158 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4159 | case 20: |
| 4160 | case 24: |
| 4161 | case 32: |
Takashi Iwai | b0bb3aa | 2009-07-03 23:25:37 +0200 | [diff] [blame] | 4162 | if (maxbps >= 32 || format == SNDRV_PCM_FORMAT_FLOAT_LE) |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 4163 | val |= AC_FMT_BITS_32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4164 | else if (maxbps >= 24) |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 4165 | val |= AC_FMT_BITS_24; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4166 | else |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 4167 | val |= AC_FMT_BITS_20; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4168 | break; |
| 4169 | default: |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 4170 | codec_dbg(codec, "invalid format width %d\n", |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 4171 | snd_pcm_format_width(format)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4172 | return 0; |
| 4173 | } |
| 4174 | |
Anssi Hannula | 32c168c | 2010-08-03 13:28:57 +0300 | [diff] [blame] | 4175 | if (spdif_ctls & AC_DIG1_NONAUDIO) |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 4176 | val |= AC_FMT_TYPE_NON_PCM; |
Anssi Hannula | 32c168c | 2010-08-03 13:28:57 +0300 | [diff] [blame] | 4177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4178 | return val; |
| 4179 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4180 | EXPORT_SYMBOL_GPL(snd_hda_calc_stream_format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4181 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 4182 | static unsigned int get_pcm_param(struct hda_codec *codec, hda_nid_t nid, |
| 4183 | int dir) |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 4184 | { |
| 4185 | unsigned int val = 0; |
| 4186 | if (nid != codec->afg && |
| 4187 | (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) |
| 4188 | val = snd_hda_param_read(codec, nid, AC_PAR_PCM); |
| 4189 | if (!val || val == -1) |
| 4190 | val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM); |
| 4191 | if (!val || val == -1) |
| 4192 | return 0; |
| 4193 | return val; |
| 4194 | } |
| 4195 | |
| 4196 | static unsigned int query_pcm_param(struct hda_codec *codec, hda_nid_t nid) |
| 4197 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 4198 | return query_caps_hash(codec, nid, 0, HDA_HASH_PARPCM_KEY(nid), |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 4199 | get_pcm_param); |
| 4200 | } |
| 4201 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 4202 | static unsigned int get_stream_param(struct hda_codec *codec, hda_nid_t nid, |
| 4203 | int dir) |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 4204 | { |
| 4205 | unsigned int streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM); |
| 4206 | if (!streams || streams == -1) |
| 4207 | streams = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM); |
| 4208 | if (!streams || streams == -1) |
| 4209 | return 0; |
| 4210 | return streams; |
| 4211 | } |
| 4212 | |
| 4213 | static unsigned int query_stream_param(struct hda_codec *codec, hda_nid_t nid) |
| 4214 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 4215 | return query_caps_hash(codec, nid, 0, HDA_HASH_PARSTR_KEY(nid), |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 4216 | get_stream_param); |
| 4217 | } |
| 4218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4219 | /** |
| 4220 | * snd_hda_query_supported_pcm - query the supported PCM rates and formats |
| 4221 | * @codec: the HDA codec |
| 4222 | * @nid: NID to query |
| 4223 | * @ratesp: the pointer to store the detected rate bitflags |
| 4224 | * @formatsp: the pointer to store the detected formats |
| 4225 | * @bpsp: the pointer to store the detected format widths |
| 4226 | * |
| 4227 | * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp |
| 4228 | * or @bsps argument is ignored. |
| 4229 | * |
| 4230 | * Returns 0 if successful, otherwise a negative error code. |
| 4231 | */ |
Stephen Warren | 384a48d | 2011-06-01 11:14:21 -0600 | [diff] [blame] | 4232 | int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4233 | u32 *ratesp, u64 *formatsp, unsigned int *bpsp) |
| 4234 | { |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 4235 | unsigned int i, val, wcaps; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4236 | |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 4237 | wcaps = get_wcaps(codec, nid); |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 4238 | val = query_pcm_param(codec, nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4239 | |
| 4240 | if (ratesp) { |
| 4241 | u32 rates = 0; |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 4242 | for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4243 | if (val & (1 << i)) |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 4244 | rates |= rate_bits[i].alsa_bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4245 | } |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 4246 | if (rates == 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 4247 | codec_err(codec, |
| 4248 | "rates == 0 (nid=0x%x, val=0x%x, ovrd=%i)\n", |
| 4249 | nid, val, |
| 4250 | (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0); |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 4251 | return -EIO; |
| 4252 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4253 | *ratesp = rates; |
| 4254 | } |
| 4255 | |
| 4256 | if (formatsp || bpsp) { |
| 4257 | u64 formats = 0; |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 4258 | unsigned int streams, bps; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4259 | |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 4260 | streams = query_stream_param(codec, nid); |
| 4261 | if (!streams) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4262 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4263 | |
| 4264 | bps = 0; |
| 4265 | if (streams & AC_SUPFMT_PCM) { |
| 4266 | if (val & AC_SUPPCM_BITS_8) { |
| 4267 | formats |= SNDRV_PCM_FMTBIT_U8; |
| 4268 | bps = 8; |
| 4269 | } |
| 4270 | if (val & AC_SUPPCM_BITS_16) { |
| 4271 | formats |= SNDRV_PCM_FMTBIT_S16_LE; |
| 4272 | bps = 16; |
| 4273 | } |
| 4274 | if (wcaps & AC_WCAP_DIGITAL) { |
| 4275 | if (val & AC_SUPPCM_BITS_32) |
| 4276 | formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE; |
| 4277 | if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24)) |
| 4278 | formats |= SNDRV_PCM_FMTBIT_S32_LE; |
| 4279 | if (val & AC_SUPPCM_BITS_24) |
| 4280 | bps = 24; |
| 4281 | else if (val & AC_SUPPCM_BITS_20) |
| 4282 | bps = 20; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4283 | } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24| |
| 4284 | AC_SUPPCM_BITS_32)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4285 | formats |= SNDRV_PCM_FMTBIT_S32_LE; |
| 4286 | if (val & AC_SUPPCM_BITS_32) |
| 4287 | bps = 32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4288 | else if (val & AC_SUPPCM_BITS_24) |
| 4289 | bps = 24; |
Nicolas Graziano | 33ef7651 | 2006-09-19 14:23:14 +0200 | [diff] [blame] | 4290 | else if (val & AC_SUPPCM_BITS_20) |
| 4291 | bps = 20; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4292 | } |
| 4293 | } |
Takashi Iwai | 8c7dd89 | 2012-05-12 09:38:05 +0200 | [diff] [blame] | 4294 | #if 0 /* FIXME: CS4206 doesn't work, which is the only codec supporting float */ |
Takashi Iwai | b5025c5 | 2009-07-01 18:05:27 +0200 | [diff] [blame] | 4295 | if (streams & AC_SUPFMT_FLOAT32) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4296 | formats |= SNDRV_PCM_FMTBIT_FLOAT_LE; |
Takashi Iwai | b0bb3aa | 2009-07-03 23:25:37 +0200 | [diff] [blame] | 4297 | if (!bps) |
| 4298 | bps = 32; |
Takashi Iwai | b5025c5 | 2009-07-01 18:05:27 +0200 | [diff] [blame] | 4299 | } |
Takashi Iwai | 8c7dd89 | 2012-05-12 09:38:05 +0200 | [diff] [blame] | 4300 | #endif |
Takashi Iwai | b5025c5 | 2009-07-01 18:05:27 +0200 | [diff] [blame] | 4301 | if (streams == AC_SUPFMT_AC3) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4302 | /* should be exclusive */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4303 | /* temporary hack: we have still no proper support |
| 4304 | * for the direct AC3 stream... |
| 4305 | */ |
| 4306 | formats |= SNDRV_PCM_FMTBIT_U8; |
| 4307 | bps = 8; |
| 4308 | } |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 4309 | if (formats == 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 4310 | codec_err(codec, |
| 4311 | "formats == 0 (nid=0x%x, val=0x%x, ovrd=%i, streams=0x%x)\n", |
| 4312 | nid, val, |
| 4313 | (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0, |
| 4314 | streams); |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 4315 | return -EIO; |
| 4316 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4317 | if (formatsp) |
| 4318 | *formatsp = formats; |
| 4319 | if (bpsp) |
| 4320 | *bpsp = bps; |
| 4321 | } |
| 4322 | |
| 4323 | return 0; |
| 4324 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4325 | EXPORT_SYMBOL_GPL(snd_hda_query_supported_pcm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4326 | |
| 4327 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4328 | * snd_hda_is_supported_format - Check the validity of the format |
| 4329 | * @codec: HD-audio codec |
| 4330 | * @nid: NID to check |
| 4331 | * @format: the HD-audio format value to check |
| 4332 | * |
| 4333 | * Check whether the given node supports the format value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4334 | * |
| 4335 | * Returns 1 if supported, 0 if not. |
| 4336 | */ |
| 4337 | int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid, |
| 4338 | unsigned int format) |
| 4339 | { |
| 4340 | int i; |
| 4341 | unsigned int val = 0, rate, stream; |
| 4342 | |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 4343 | val = query_pcm_param(codec, nid); |
| 4344 | if (!val) |
| 4345 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4346 | |
| 4347 | rate = format & 0xff00; |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 4348 | for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 4349 | if (rate_bits[i].hda_fmt == rate) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4350 | if (val & (1 << i)) |
| 4351 | break; |
| 4352 | return 0; |
| 4353 | } |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 4354 | if (i >= AC_PAR_PCM_RATE_BITS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4355 | return 0; |
| 4356 | |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 4357 | stream = query_stream_param(codec, nid); |
| 4358 | if (!stream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4359 | return 0; |
| 4360 | |
| 4361 | if (stream & AC_SUPFMT_PCM) { |
| 4362 | switch (format & 0xf0) { |
| 4363 | case 0x00: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4364 | if (!(val & AC_SUPPCM_BITS_8)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4365 | return 0; |
| 4366 | break; |
| 4367 | case 0x10: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4368 | if (!(val & AC_SUPPCM_BITS_16)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4369 | return 0; |
| 4370 | break; |
| 4371 | case 0x20: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4372 | if (!(val & AC_SUPPCM_BITS_20)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4373 | return 0; |
| 4374 | break; |
| 4375 | case 0x30: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4376 | if (!(val & AC_SUPPCM_BITS_24)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4377 | return 0; |
| 4378 | break; |
| 4379 | case 0x40: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4380 | if (!(val & AC_SUPPCM_BITS_32)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4381 | return 0; |
| 4382 | break; |
| 4383 | default: |
| 4384 | return 0; |
| 4385 | } |
| 4386 | } else { |
| 4387 | /* FIXME: check for float32 and AC3? */ |
| 4388 | } |
| 4389 | |
| 4390 | return 1; |
| 4391 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4392 | EXPORT_SYMBOL_GPL(snd_hda_is_supported_format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4393 | |
| 4394 | /* |
| 4395 | * PCM stuff |
| 4396 | */ |
| 4397 | static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo, |
| 4398 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 4399 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4400 | { |
| 4401 | return 0; |
| 4402 | } |
| 4403 | |
| 4404 | static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo, |
| 4405 | struct hda_codec *codec, |
| 4406 | unsigned int stream_tag, |
| 4407 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 4408 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4409 | { |
| 4410 | snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format); |
| 4411 | return 0; |
| 4412 | } |
| 4413 | |
| 4414 | static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo, |
| 4415 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 4416 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4417 | { |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 4418 | snd_hda_codec_cleanup_stream(codec, hinfo->nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4419 | return 0; |
| 4420 | } |
| 4421 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 4422 | static int set_pcm_default_values(struct hda_codec *codec, |
| 4423 | struct hda_pcm_stream *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4424 | { |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 4425 | int err; |
| 4426 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4427 | /* query support PCM information from the given NID */ |
| 4428 | if (info->nid && (!info->rates || !info->formats)) { |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 4429 | err = snd_hda_query_supported_pcm(codec, info->nid, |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4430 | info->rates ? NULL : &info->rates, |
| 4431 | info->formats ? NULL : &info->formats, |
| 4432 | info->maxbps ? NULL : &info->maxbps); |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 4433 | if (err < 0) |
| 4434 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4435 | } |
| 4436 | if (info->ops.open == NULL) |
| 4437 | info->ops.open = hda_pcm_default_open_close; |
| 4438 | if (info->ops.close == NULL) |
| 4439 | info->ops.close = hda_pcm_default_open_close; |
| 4440 | if (info->ops.prepare == NULL) { |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 4441 | if (snd_BUG_ON(!info->nid)) |
| 4442 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4443 | info->ops.prepare = hda_pcm_default_prepare; |
| 4444 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4445 | if (info->ops.cleanup == NULL) { |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 4446 | if (snd_BUG_ON(!info->nid)) |
| 4447 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4448 | info->ops.cleanup = hda_pcm_default_cleanup; |
| 4449 | } |
| 4450 | return 0; |
| 4451 | } |
| 4452 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4453 | /* |
| 4454 | * codec prepare/cleanup entries |
| 4455 | */ |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 4456 | /** |
| 4457 | * snd_hda_codec_prepare - Prepare a stream |
| 4458 | * @codec: the HDA codec |
| 4459 | * @hinfo: PCM information |
| 4460 | * @stream: stream tag to assign |
| 4461 | * @format: format id to assign |
| 4462 | * @substream: PCM substream to assign |
| 4463 | * |
| 4464 | * Calls the prepare callback set by the codec with the given arguments. |
| 4465 | * Clean up the inactive streams when successful. |
| 4466 | */ |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4467 | int snd_hda_codec_prepare(struct hda_codec *codec, |
| 4468 | struct hda_pcm_stream *hinfo, |
| 4469 | unsigned int stream, |
| 4470 | unsigned int format, |
| 4471 | struct snd_pcm_substream *substream) |
| 4472 | { |
| 4473 | int ret; |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 4474 | mutex_lock(&codec->bus->prepare_mutex); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4475 | ret = hinfo->ops.prepare(hinfo, codec, stream, format, substream); |
| 4476 | if (ret >= 0) |
| 4477 | purify_inactive_streams(codec); |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 4478 | mutex_unlock(&codec->bus->prepare_mutex); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4479 | return ret; |
| 4480 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4481 | EXPORT_SYMBOL_GPL(snd_hda_codec_prepare); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4482 | |
Takashi Iwai | 95a962c | 2014-10-29 16:03:58 +0100 | [diff] [blame] | 4483 | /** |
| 4484 | * snd_hda_codec_cleanup - Prepare a stream |
| 4485 | * @codec: the HDA codec |
| 4486 | * @hinfo: PCM information |
| 4487 | * @substream: PCM substream |
| 4488 | * |
| 4489 | * Calls the cleanup callback set by the codec with the given arguments. |
| 4490 | */ |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4491 | void snd_hda_codec_cleanup(struct hda_codec *codec, |
| 4492 | struct hda_pcm_stream *hinfo, |
| 4493 | struct snd_pcm_substream *substream) |
| 4494 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 4495 | mutex_lock(&codec->bus->prepare_mutex); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4496 | hinfo->ops.cleanup(hinfo, codec, substream); |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 4497 | mutex_unlock(&codec->bus->prepare_mutex); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4498 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4499 | EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4500 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4501 | /* global */ |
Jaroslav Kysela | e330323 | 2009-11-10 14:53:02 +0100 | [diff] [blame] | 4502 | const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = { |
| 4503 | "Audio", "SPDIF", "HDMI", "Modem" |
| 4504 | }; |
| 4505 | |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4506 | /* |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4507 | * get the empty PCM device number to assign |
| 4508 | */ |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4509 | 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] | 4510 | { |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4511 | /* audio device indices; not linear to keep compatibility */ |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4512 | /* assigned to static slots up to dev#10; if more needed, assign |
| 4513 | * the later slot dynamically (when CONFIG_SND_DYNAMIC_MINORS=y) |
| 4514 | */ |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4515 | static int audio_idx[HDA_PCM_NTYPES][5] = { |
| 4516 | [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 }, |
| 4517 | [HDA_PCM_TYPE_SPDIF] = { 1, -1 }, |
Wu Fengguang | 92608ba | 2009-10-30 11:40:03 +0100 | [diff] [blame] | 4518 | [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 }, |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4519 | [HDA_PCM_TYPE_MODEM] = { 6, -1 }, |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4520 | }; |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4521 | int i; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4522 | |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4523 | if (type >= HDA_PCM_NTYPES) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 4524 | dev_err(bus->card->dev, "Invalid PCM type %d\n", type); |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4525 | return -EINVAL; |
| 4526 | } |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4527 | |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4528 | for (i = 0; audio_idx[type][i] >= 0; i++) { |
| 4529 | #ifndef CONFIG_SND_DYNAMIC_MINORS |
| 4530 | if (audio_idx[type][i] >= 8) |
| 4531 | break; |
| 4532 | #endif |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4533 | if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits)) |
| 4534 | return audio_idx[type][i]; |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4535 | } |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4536 | |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4537 | #ifdef CONFIG_SND_DYNAMIC_MINORS |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 4538 | /* non-fixed slots starting from 10 */ |
| 4539 | for (i = 10; i < 32; i++) { |
| 4540 | if (!test_and_set_bit(i, bus->pcm_dev_bits)) |
| 4541 | return i; |
| 4542 | } |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4543 | #endif |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 4544 | |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 4545 | dev_warn(bus->card->dev, "Too many %s devices\n", |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 4546 | snd_hda_pcm_type_name[type]); |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4547 | #ifndef CONFIG_SND_DYNAMIC_MINORS |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 4548 | dev_warn(bus->card->dev, |
| 4549 | "Consider building the kernel with CONFIG_SND_DYNAMIC_MINORS=y\n"); |
Takashi Iwai | 36bb00d | 2013-06-06 12:10:24 +0200 | [diff] [blame] | 4550 | #endif |
Wu Fengguang | f5d6def | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4551 | return -EAGAIN; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4552 | } |
| 4553 | |
| 4554 | /* |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4555 | * attach a new PCM stream |
| 4556 | */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4557 | static int snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm) |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4558 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 4559 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4560 | struct hda_pcm_stream *info; |
| 4561 | int stream, err; |
| 4562 | |
Takashi Iwai | b91f080 | 2008-11-04 08:43:08 +0100 | [diff] [blame] | 4563 | if (snd_BUG_ON(!pcm->name)) |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4564 | return -EINVAL; |
| 4565 | for (stream = 0; stream < 2; stream++) { |
| 4566 | info = &pcm->stream[stream]; |
| 4567 | if (info->substreams) { |
| 4568 | err = set_pcm_default_values(codec, info); |
| 4569 | if (err < 0) |
| 4570 | return err; |
| 4571 | } |
| 4572 | } |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 4573 | return bus->ops.attach_pcm(bus, codec, pcm); |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4574 | } |
| 4575 | |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4576 | /* assign all PCMs of the given codec */ |
| 4577 | int snd_hda_codec_build_pcms(struct hda_codec *codec) |
| 4578 | { |
| 4579 | unsigned int pcm; |
| 4580 | int err; |
| 4581 | |
| 4582 | if (!codec->num_pcms) { |
| 4583 | if (!codec->patch_ops.build_pcms) |
| 4584 | return 0; |
| 4585 | err = codec->patch_ops.build_pcms(codec); |
Takashi Iwai | 6e655bf | 2009-03-02 10:46:03 +0100 | [diff] [blame] | 4586 | if (err < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 4587 | codec_err(codec, |
| 4588 | "cannot build PCMs for #%d (error %d)\n", |
| 4589 | codec->addr, err); |
Takashi Iwai | 6e655bf | 2009-03-02 10:46:03 +0100 | [diff] [blame] | 4590 | err = snd_hda_codec_reset(codec); |
| 4591 | if (err < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 4592 | codec_err(codec, |
| 4593 | "cannot revert codec\n"); |
Takashi Iwai | 6e655bf | 2009-03-02 10:46:03 +0100 | [diff] [blame] | 4594 | return err; |
| 4595 | } |
| 4596 | } |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4597 | } |
| 4598 | for (pcm = 0; pcm < codec->num_pcms; pcm++) { |
| 4599 | struct hda_pcm *cpcm = &codec->pcm_info[pcm]; |
| 4600 | int dev; |
| 4601 | |
| 4602 | if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams) |
Takashi Iwai | 41b5b01 | 2009-01-20 18:21:23 +0100 | [diff] [blame] | 4603 | continue; /* no substreams assigned */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4604 | |
| 4605 | if (!cpcm->pcm) { |
| 4606 | dev = get_empty_pcm_device(codec->bus, cpcm->pcm_type); |
| 4607 | if (dev < 0) |
Takashi Iwai | 6e655bf | 2009-03-02 10:46:03 +0100 | [diff] [blame] | 4608 | continue; /* no fatal error */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4609 | cpcm->device = dev; |
| 4610 | err = snd_hda_attach_pcm(codec, cpcm); |
Takashi Iwai | 6e655bf | 2009-03-02 10:46:03 +0100 | [diff] [blame] | 4611 | if (err < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 4612 | codec_err(codec, |
| 4613 | "cannot attach PCM stream %d for codec #%d\n", |
| 4614 | dev, codec->addr); |
Takashi Iwai | 6e655bf | 2009-03-02 10:46:03 +0100 | [diff] [blame] | 4615 | continue; /* no fatal error */ |
| 4616 | } |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4617 | } |
| 4618 | } |
| 4619 | return 0; |
| 4620 | } |
| 4621 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4622 | /** |
| 4623 | * snd_hda_build_pcms - build PCM information |
| 4624 | * @bus: the BUS |
| 4625 | * |
| 4626 | * Create PCM information for each codec included in the bus. |
| 4627 | * |
| 4628 | * The build_pcms codec patch is requested to set up codec->num_pcms and |
| 4629 | * codec->pcm_info properly. The array is referred by the top-level driver |
| 4630 | * to create its PCM instances. |
| 4631 | * The allocated codec->pcm_info should be released in codec->patch_ops.free |
| 4632 | * callback. |
| 4633 | * |
| 4634 | * At least, substreams, channels_min and channels_max must be filled for |
| 4635 | * each stream. substreams = 0 indicates that the stream doesn't exist. |
| 4636 | * When rates and/or formats are zero, the supported values are queried |
| 4637 | * from the given nid. The nid is used also by the default ops.prepare |
| 4638 | * and ops.cleanup callbacks. |
| 4639 | * |
| 4640 | * The driver needs to call ops.open in its open callback. Similarly, |
| 4641 | * ops.close is supposed to be called in the close callback. |
| 4642 | * ops.prepare should be called in the prepare or hw_params callback |
| 4643 | * with the proper parameters for set up. |
| 4644 | * ops.cleanup should be called in hw_free for clean up of streams. |
| 4645 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 4646 | * This function returns 0 if successful, or a negative error code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4647 | */ |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 4648 | int snd_hda_build_pcms(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4649 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4650 | struct hda_codec *codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4651 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4652 | list_for_each_entry(codec, &bus->codec_list, list) { |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4653 | int err = snd_hda_codec_build_pcms(codec); |
| 4654 | if (err < 0) |
| 4655 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4656 | } |
| 4657 | return 0; |
| 4658 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4659 | EXPORT_SYMBOL_GPL(snd_hda_build_pcms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4660 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4661 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4662 | * snd_hda_add_new_ctls - create controls from the array |
| 4663 | * @codec: the HDA codec |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 4664 | * @knew: the array of struct snd_kcontrol_new |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4665 | * |
| 4666 | * This helper function creates and add new controls in the given array. |
| 4667 | * The array must be terminated with an empty entry as terminator. |
| 4668 | * |
| 4669 | * Returns 0 if successful, or a negative error code. |
| 4670 | */ |
Takashi Iwai | 031024e | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 4671 | int snd_hda_add_new_ctls(struct hda_codec *codec, |
| 4672 | const struct snd_kcontrol_new *knew) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4673 | { |
Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 4674 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4675 | |
| 4676 | for (; knew->name; knew++) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 4677 | struct snd_kcontrol *kctl; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4678 | int addr = 0, idx = 0; |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 4679 | if (knew->iface == -1) /* skip this codec private value */ |
| 4680 | continue; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4681 | for (;;) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 4682 | kctl = snd_ctl_new1(knew, codec); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4683 | if (!kctl) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 4684 | return -ENOMEM; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4685 | if (addr > 0) |
| 4686 | kctl->id.device = addr; |
| 4687 | if (idx > 0) |
| 4688 | kctl->id.index = idx; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 4689 | err = snd_hda_ctl_add(codec, 0, kctl); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4690 | if (!err) |
| 4691 | break; |
| 4692 | /* try first with another device index corresponding to |
| 4693 | * the codec addr; if it still fails (or it's the |
| 4694 | * primary codec), then try another control index |
| 4695 | */ |
| 4696 | if (!addr && codec->addr) |
| 4697 | addr = codec->addr; |
| 4698 | else if (!idx && !knew->index) { |
| 4699 | idx = find_empty_mixer_ctl_idx(codec, |
Takashi Iwai | dcda580 | 2012-10-12 17:24:51 +0200 | [diff] [blame] | 4700 | knew->name, 0); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4701 | if (idx <= 0) |
| 4702 | return err; |
| 4703 | } else |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 4704 | return err; |
| 4705 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4706 | } |
| 4707 | return 0; |
| 4708 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4709 | EXPORT_SYMBOL_GPL(snd_hda_add_new_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4710 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 4711 | #ifdef CONFIG_PM |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4712 | static void hda_power_work(struct work_struct *work) |
| 4713 | { |
| 4714 | struct hda_codec *codec = |
| 4715 | container_of(work, struct hda_codec, power_work.work); |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 4716 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | 08fa20a | 2012-08-31 07:46:56 -0700 | [diff] [blame] | 4717 | unsigned int state; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4718 | |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4719 | spin_lock(&codec->power_lock); |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 4720 | if (codec->power_transition > 0) { /* during power-up sequence? */ |
| 4721 | spin_unlock(&codec->power_lock); |
| 4722 | return; |
| 4723 | } |
Maxim Levitsky | 2e49246 | 2007-09-03 15:26:57 +0200 | [diff] [blame] | 4724 | if (!codec->power_on || codec->power_count) { |
| 4725 | codec->power_transition = 0; |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4726 | spin_unlock(&codec->power_lock); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4727 | return; |
Maxim Levitsky | 2e49246 | 2007-09-03 15:26:57 +0200 | [diff] [blame] | 4728 | } |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4729 | spin_unlock(&codec->power_lock); |
| 4730 | |
Dylan Reid | d17344b | 2012-09-28 15:57:01 -0700 | [diff] [blame] | 4731 | state = hda_call_codec_suspend(codec, true); |
Takashi Iwai | a40e0a8 | 2013-11-20 12:41:20 +0100 | [diff] [blame] | 4732 | if (!bus->power_keep_link_on && (state & AC_PWRST_CLK_STOP_OK)) |
| 4733 | hda_call_pm_notify(codec, false); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4734 | } |
| 4735 | |
| 4736 | static void hda_keep_power_on(struct hda_codec *codec) |
| 4737 | { |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4738 | spin_lock(&codec->power_lock); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4739 | codec->power_count++; |
| 4740 | codec->power_on = 1; |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 4741 | codec->power_jiffies = jiffies; |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4742 | spin_unlock(&codec->power_lock); |
Takashi Iwai | a40e0a8 | 2013-11-20 12:41:20 +0100 | [diff] [blame] | 4743 | hda_call_pm_notify(codec, true); |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 4744 | } |
| 4745 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4746 | /* update the power on/off account with the current jiffies */ |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 4747 | void snd_hda_update_power_acct(struct hda_codec *codec) |
| 4748 | { |
| 4749 | unsigned long delta = jiffies - codec->power_jiffies; |
| 4750 | if (codec->power_on) |
| 4751 | codec->power_on_acct += delta; |
| 4752 | else |
| 4753 | codec->power_off_acct += delta; |
| 4754 | codec->power_jiffies += delta; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4755 | } |
| 4756 | |
Dylan Reid | b4a91cf | 2012-06-15 19:36:23 -0700 | [diff] [blame] | 4757 | /* Transition to powered up, if wait_power_down then wait for a pending |
| 4758 | * transition to D3 to complete. A pending D3 transition is indicated |
| 4759 | * with power_transition == -1. */ |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4760 | /* call this with codec->power_lock held! */ |
Dylan Reid | b4a91cf | 2012-06-15 19:36:23 -0700 | [diff] [blame] | 4761 | static void __snd_hda_power_up(struct hda_codec *codec, bool wait_power_down) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4762 | { |
Dylan Reid | b4a91cf | 2012-06-15 19:36:23 -0700 | [diff] [blame] | 4763 | /* Return if power_on or transitioning to power_on, unless currently |
| 4764 | * powering down. */ |
| 4765 | if ((codec->power_on || codec->power_transition > 0) && |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4766 | !(wait_power_down && codec->power_transition < 0)) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4767 | return; |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 4768 | spin_unlock(&codec->power_lock); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4769 | |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 4770 | cancel_delayed_work_sync(&codec->power_work); |
| 4771 | |
| 4772 | spin_lock(&codec->power_lock); |
Dylan Reid | b43d224 | 2012-06-21 21:51:22 -0700 | [diff] [blame] | 4773 | /* If the power down delayed work was cancelled above before starting, |
| 4774 | * then there is no need to go through power up here. |
| 4775 | */ |
| 4776 | if (codec->power_on) { |
Takashi Iwai | 535b6c5 | 2012-08-20 21:25:22 +0200 | [diff] [blame] | 4777 | if (codec->power_transition < 0) |
| 4778 | codec->power_transition = 0; |
Dylan Reid | b43d224 | 2012-06-21 21:51:22 -0700 | [diff] [blame] | 4779 | return; |
| 4780 | } |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4781 | |
Takashi Iwai | d66fee5 | 2011-08-02 15:39:31 +0200 | [diff] [blame] | 4782 | trace_hda_power_up(codec); |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 4783 | snd_hda_update_power_acct(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4784 | codec->power_on = 1; |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 4785 | codec->power_jiffies = jiffies; |
Takashi Iwai | 7f30830 | 2012-05-08 16:52:23 +0200 | [diff] [blame] | 4786 | codec->power_transition = 1; /* avoid reentrance */ |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4787 | spin_unlock(&codec->power_lock); |
| 4788 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4789 | hda_call_codec_resume(codec); |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4790 | |
| 4791 | spin_lock(&codec->power_lock); |
Takashi Iwai | a221e28 | 2007-08-16 16:35:33 +0200 | [diff] [blame] | 4792 | codec->power_transition = 0; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4793 | } |
Dylan Reid | b4a91cf | 2012-06-15 19:36:23 -0700 | [diff] [blame] | 4794 | |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 4795 | #define power_save(codec) \ |
| 4796 | ((codec)->bus->power_save ? *(codec)->bus->power_save : 0) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4797 | |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4798 | /* Transition to powered down */ |
| 4799 | static void __snd_hda_power_down(struct hda_codec *codec) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4800 | { |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4801 | if (!codec->power_on || codec->power_count || codec->power_transition) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4802 | return; |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4803 | |
Takashi Iwai | fee2fba | 2008-11-27 12:43:28 +0100 | [diff] [blame] | 4804 | if (power_save(codec)) { |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 4805 | codec->power_transition = -1; /* avoid reentrance */ |
Takashi Iwai | c107b41 | 2009-01-13 17:46:37 +0100 | [diff] [blame] | 4806 | queue_delayed_work(codec->bus->workq, &codec->power_work, |
Takashi Iwai | fee2fba | 2008-11-27 12:43:28 +0100 | [diff] [blame] | 4807 | msecs_to_jiffies(power_save(codec) * 1000)); |
Takashi Iwai | a221e28 | 2007-08-16 16:35:33 +0200 | [diff] [blame] | 4808 | } |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4809 | } |
| 4810 | |
| 4811 | /** |
| 4812 | * snd_hda_power_save - Power-up/down/sync the codec |
| 4813 | * @codec: HD-audio codec |
| 4814 | * @delta: the counter delta to change |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4815 | * @d3wait: sync for D3 transition complete |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4816 | * |
| 4817 | * Change the power-up counter via @delta, and power up or down the hardware |
| 4818 | * appropriately. For the power-down, queue to the delayed action. |
| 4819 | * Passing zero to @delta means to synchronize the power state. |
| 4820 | */ |
| 4821 | void snd_hda_power_save(struct hda_codec *codec, int delta, bool d3wait) |
| 4822 | { |
| 4823 | spin_lock(&codec->power_lock); |
| 4824 | codec->power_count += delta; |
| 4825 | trace_hda_power_count(codec); |
| 4826 | if (delta > 0) |
| 4827 | __snd_hda_power_up(codec, d3wait); |
| 4828 | else |
| 4829 | __snd_hda_power_down(codec); |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4830 | spin_unlock(&codec->power_lock); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4831 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4832 | EXPORT_SYMBOL_GPL(snd_hda_power_save); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4833 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4834 | /** |
| 4835 | * snd_hda_check_amp_list_power - Check the amp list and update the power |
| 4836 | * @codec: HD-audio codec |
| 4837 | * @check: the object containing an AMP list and the status |
| 4838 | * @nid: NID to check / update |
| 4839 | * |
| 4840 | * Check whether the given NID is in the amp list. If it's in the list, |
| 4841 | * check the current AMP status, and update the the power-status according |
| 4842 | * to the mute status. |
| 4843 | * |
| 4844 | * This function is supposed to be set or called from the check_power_status |
| 4845 | * patch ops. |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 4846 | */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4847 | int snd_hda_check_amp_list_power(struct hda_codec *codec, |
| 4848 | struct hda_loopback_check *check, |
| 4849 | hda_nid_t nid) |
| 4850 | { |
Takashi Iwai | 031024e | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 4851 | const struct hda_amp_list *p; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4852 | int ch, v; |
| 4853 | |
| 4854 | if (!check->amplist) |
| 4855 | return 0; |
| 4856 | for (p = check->amplist; p->nid; p++) { |
| 4857 | if (p->nid == nid) |
| 4858 | break; |
| 4859 | } |
| 4860 | if (!p->nid) |
| 4861 | return 0; /* nothing changed */ |
| 4862 | |
| 4863 | for (p = check->amplist; p->nid; p++) { |
| 4864 | for (ch = 0; ch < 2; ch++) { |
| 4865 | v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir, |
| 4866 | p->idx); |
| 4867 | if (!(v & HDA_AMP_MUTE) && v > 0) { |
| 4868 | if (!check->power_on) { |
| 4869 | check->power_on = 1; |
| 4870 | snd_hda_power_up(codec); |
| 4871 | } |
| 4872 | return 1; |
| 4873 | } |
| 4874 | } |
| 4875 | } |
| 4876 | if (check->power_on) { |
| 4877 | check->power_on = 0; |
| 4878 | snd_hda_power_down(codec); |
| 4879 | } |
| 4880 | return 0; |
| 4881 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4882 | EXPORT_SYMBOL_GPL(snd_hda_check_amp_list_power); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4883 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4884 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 4885 | /* |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4886 | * Channel mode helper |
| 4887 | */ |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4888 | |
| 4889 | /** |
| 4890 | * snd_hda_ch_mode_info - Info callback helper for the channel mode enum |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4891 | * @codec: the HDA codec |
| 4892 | * @uinfo: pointer to get/store the data |
| 4893 | * @chmode: channel mode array |
| 4894 | * @num_chmodes: channel mode array size |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4895 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4896 | int snd_hda_ch_mode_info(struct hda_codec *codec, |
| 4897 | struct snd_ctl_elem_info *uinfo, |
| 4898 | const struct hda_channel_mode *chmode, |
| 4899 | int num_chmodes) |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4900 | { |
| 4901 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 4902 | uinfo->count = 1; |
| 4903 | uinfo->value.enumerated.items = num_chmodes; |
| 4904 | if (uinfo->value.enumerated.item >= num_chmodes) |
| 4905 | uinfo->value.enumerated.item = num_chmodes - 1; |
| 4906 | sprintf(uinfo->value.enumerated.name, "%dch", |
| 4907 | chmode[uinfo->value.enumerated.item].channels); |
| 4908 | return 0; |
| 4909 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4910 | EXPORT_SYMBOL_GPL(snd_hda_ch_mode_info); |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4911 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4912 | /** |
| 4913 | * snd_hda_ch_mode_get - Get callback helper for the channel mode enum |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4914 | * @codec: the HDA codec |
| 4915 | * @ucontrol: pointer to get/store the data |
| 4916 | * @chmode: channel mode array |
| 4917 | * @num_chmodes: channel mode array size |
| 4918 | * @max_channels: max number of channels |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4919 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4920 | int snd_hda_ch_mode_get(struct hda_codec *codec, |
| 4921 | struct snd_ctl_elem_value *ucontrol, |
| 4922 | const struct hda_channel_mode *chmode, |
| 4923 | int num_chmodes, |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4924 | int max_channels) |
| 4925 | { |
| 4926 | int i; |
| 4927 | |
| 4928 | for (i = 0; i < num_chmodes; i++) { |
| 4929 | if (max_channels == chmode[i].channels) { |
| 4930 | ucontrol->value.enumerated.item[0] = i; |
| 4931 | break; |
| 4932 | } |
| 4933 | } |
| 4934 | return 0; |
| 4935 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4936 | EXPORT_SYMBOL_GPL(snd_hda_ch_mode_get); |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4937 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4938 | /** |
| 4939 | * snd_hda_ch_mode_put - Put callback helper for the channel mode enum |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4940 | * @codec: the HDA codec |
| 4941 | * @ucontrol: pointer to get/store the data |
| 4942 | * @chmode: channel mode array |
| 4943 | * @num_chmodes: channel mode array size |
| 4944 | * @max_channelsp: pointer to store the max channels |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4945 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4946 | int snd_hda_ch_mode_put(struct hda_codec *codec, |
| 4947 | struct snd_ctl_elem_value *ucontrol, |
| 4948 | const struct hda_channel_mode *chmode, |
| 4949 | int num_chmodes, |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4950 | int *max_channelsp) |
| 4951 | { |
| 4952 | unsigned int mode; |
| 4953 | |
| 4954 | mode = ucontrol->value.enumerated.item[0]; |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 4955 | if (mode >= num_chmodes) |
| 4956 | return -EINVAL; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 4957 | if (*max_channelsp == chmode[mode].channels) |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4958 | return 0; |
| 4959 | /* change the current channel setting */ |
| 4960 | *max_channelsp = chmode[mode].channels; |
| 4961 | if (chmode[mode].sequence) |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 4962 | snd_hda_sequence_write_cache(codec, chmode[mode].sequence); |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4963 | return 1; |
| 4964 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4965 | EXPORT_SYMBOL_GPL(snd_hda_ch_mode_put); |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4966 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4967 | /* |
| 4968 | * input MUX helper |
| 4969 | */ |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4970 | |
| 4971 | /** |
| 4972 | * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4973 | * @imux: imux helper object |
| 4974 | * @uinfo: pointer to get/store the data |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4975 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4976 | int snd_hda_input_mux_info(const struct hda_input_mux *imux, |
| 4977 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4978 | { |
| 4979 | unsigned int index; |
| 4980 | |
| 4981 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 4982 | uinfo->count = 1; |
| 4983 | uinfo->value.enumerated.items = imux->num_items; |
Takashi Iwai | 5513b0c | 2007-10-09 11:58:41 +0200 | [diff] [blame] | 4984 | if (!imux->num_items) |
| 4985 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4986 | index = uinfo->value.enumerated.item; |
| 4987 | if (index >= imux->num_items) |
| 4988 | index = imux->num_items - 1; |
| 4989 | strcpy(uinfo->value.enumerated.name, imux->items[index].label); |
| 4990 | return 0; |
| 4991 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 4992 | EXPORT_SYMBOL_GPL(snd_hda_input_mux_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4993 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4994 | /** |
| 4995 | * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 4996 | * @codec: the HDA codec |
| 4997 | * @imux: imux helper object |
| 4998 | * @ucontrol: pointer to get/store the data |
| 4999 | * @nid: input mux NID |
| 5000 | * @cur_val: pointer to get/store the current imux value |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5001 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5002 | int snd_hda_input_mux_put(struct hda_codec *codec, |
| 5003 | const struct hda_input_mux *imux, |
| 5004 | struct snd_ctl_elem_value *ucontrol, |
| 5005 | hda_nid_t nid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5006 | unsigned int *cur_val) |
| 5007 | { |
| 5008 | unsigned int idx; |
| 5009 | |
Takashi Iwai | 5513b0c | 2007-10-09 11:58:41 +0200 | [diff] [blame] | 5010 | if (!imux->num_items) |
| 5011 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5012 | idx = ucontrol->value.enumerated.item[0]; |
| 5013 | if (idx >= imux->num_items) |
| 5014 | idx = imux->num_items - 1; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 5015 | if (*cur_val == idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5016 | return 0; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 5017 | snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, |
| 5018 | imux->items[idx].index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5019 | *cur_val = idx; |
| 5020 | return 1; |
| 5021 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5022 | EXPORT_SYMBOL_GPL(snd_hda_input_mux_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5023 | |
| 5024 | |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 5025 | /** |
| 5026 | * snd_hda_enum_helper_info - Helper for simple enum ctls |
| 5027 | * @kcontrol: ctl element |
| 5028 | * @uinfo: pointer to get/store the data |
| 5029 | * @num_items: number of enum items |
| 5030 | * @texts: enum item string array |
| 5031 | * |
Takashi Iwai | dda415d | 2012-11-30 18:34:38 +0100 | [diff] [blame] | 5032 | * process kcontrol info callback of a simple string enum array |
| 5033 | * when @num_items is 0 or @texts is NULL, assume a boolean enum array |
| 5034 | */ |
| 5035 | int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol, |
| 5036 | struct snd_ctl_elem_info *uinfo, |
| 5037 | int num_items, const char * const *texts) |
| 5038 | { |
| 5039 | static const char * const texts_default[] = { |
| 5040 | "Disabled", "Enabled" |
| 5041 | }; |
| 5042 | |
| 5043 | if (!texts || !num_items) { |
| 5044 | num_items = 2; |
| 5045 | texts = texts_default; |
| 5046 | } |
| 5047 | |
Takashi Iwai | 3ff7221 | 2014-10-20 18:17:28 +0200 | [diff] [blame] | 5048 | return snd_ctl_enum_info(uinfo, 1, num_items, texts); |
Takashi Iwai | dda415d | 2012-11-30 18:34:38 +0100 | [diff] [blame] | 5049 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5050 | EXPORT_SYMBOL_GPL(snd_hda_enum_helper_info); |
Takashi Iwai | dda415d | 2012-11-30 18:34:38 +0100 | [diff] [blame] | 5051 | |
| 5052 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5053 | * Multi-channel / digital-out PCM helper functions |
| 5054 | */ |
| 5055 | |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 5056 | /* setup SPDIF output stream */ |
| 5057 | static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid, |
| 5058 | unsigned int stream_tag, unsigned int format) |
| 5059 | { |
Laurence Darby | 3bef1c3 | 2012-11-03 17:00:06 +0000 | [diff] [blame] | 5060 | struct hda_spdif_out *spdif; |
| 5061 | unsigned int curr_fmt; |
| 5062 | bool reset; |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 5063 | |
Laurence Darby | 3bef1c3 | 2012-11-03 17:00:06 +0000 | [diff] [blame] | 5064 | spdif = snd_hda_spdif_out_of_nid(codec, nid); |
| 5065 | curr_fmt = snd_hda_codec_read(codec, nid, 0, |
| 5066 | AC_VERB_GET_STREAM_FORMAT, 0); |
| 5067 | reset = codec->spdif_status_reset && |
| 5068 | (spdif->ctls & AC_DIG1_ENABLE) && |
| 5069 | curr_fmt != format; |
| 5070 | |
| 5071 | /* turn off SPDIF if needed; otherwise the IEC958 bits won't be |
| 5072 | updated */ |
| 5073 | if (reset) |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 5074 | set_dig_out_convert(codec, nid, |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 5075 | spdif->ctls & ~AC_DIG1_ENABLE & 0xff, |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 5076 | -1); |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 5077 | snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 5078 | if (codec->slave_dig_outs) { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 5079 | const hda_nid_t *d; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 5080 | for (d = codec->slave_dig_outs; *d; d++) |
| 5081 | snd_hda_codec_setup_stream(codec, *d, stream_tag, 0, |
| 5082 | format); |
Matthew Ranostay | de51ca1 | 2008-09-07 14:31:40 -0400 | [diff] [blame] | 5083 | } |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 5084 | /* turn on again (if needed) */ |
Laurence Darby | 3bef1c3 | 2012-11-03 17:00:06 +0000 | [diff] [blame] | 5085 | if (reset) |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 5086 | set_dig_out_convert(codec, nid, |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 5087 | spdif->ctls & 0xff, -1); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 5088 | } |
Matthew Ranostay | de51ca1 | 2008-09-07 14:31:40 -0400 | [diff] [blame] | 5089 | |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 5090 | static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid) |
| 5091 | { |
| 5092 | snd_hda_codec_cleanup_stream(codec, nid); |
| 5093 | if (codec->slave_dig_outs) { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 5094 | const hda_nid_t *d; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 5095 | for (d = codec->slave_dig_outs; *d; d++) |
| 5096 | snd_hda_codec_cleanup_stream(codec, *d); |
| 5097 | } |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 5098 | } |
| 5099 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5100 | /** |
| 5101 | * snd_hda_bus_reboot_notify - call the reboot notifier of each codec |
| 5102 | * @bus: HD-audio bus |
| 5103 | */ |
Takashi Iwai | fb8d1a3 | 2009-11-10 16:02:29 +0100 | [diff] [blame] | 5104 | void snd_hda_bus_reboot_notify(struct hda_bus *bus) |
| 5105 | { |
| 5106 | struct hda_codec *codec; |
| 5107 | |
| 5108 | if (!bus) |
| 5109 | return; |
| 5110 | list_for_each_entry(codec, &bus->codec_list, list) { |
Takashi Iwai | e581f3d | 2011-07-26 10:19:20 +0200 | [diff] [blame] | 5111 | if (hda_codec_is_power_on(codec) && |
| 5112 | codec->patch_ops.reboot_notify) |
Takashi Iwai | fb8d1a3 | 2009-11-10 16:02:29 +0100 | [diff] [blame] | 5113 | codec->patch_ops.reboot_notify(codec); |
| 5114 | } |
| 5115 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5116 | EXPORT_SYMBOL_GPL(snd_hda_bus_reboot_notify); |
Takashi Iwai | fb8d1a3 | 2009-11-10 16:02:29 +0100 | [diff] [blame] | 5117 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5118 | /** |
| 5119 | * 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] | 5120 | * @codec: the HDA codec |
| 5121 | * @mout: hda_multi_out object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5122 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5123 | int snd_hda_multi_out_dig_open(struct hda_codec *codec, |
| 5124 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5125 | { |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 5126 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | 5930ca4 | 2007-04-16 11:23:56 +0200 | [diff] [blame] | 5127 | if (mout->dig_out_used == HDA_DIG_ANALOG_DUP) |
| 5128 | /* already opened as analog dup; reset it once */ |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 5129 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5130 | mout->dig_out_used = HDA_DIG_EXCLUSIVE; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 5131 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5132 | return 0; |
| 5133 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5134 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5135 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5136 | /** |
| 5137 | * snd_hda_multi_out_dig_prepare - prepare the digital out stream |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 5138 | * @codec: the HDA codec |
| 5139 | * @mout: hda_multi_out object |
| 5140 | * @stream_tag: stream tag to assign |
| 5141 | * @format: format id to assign |
| 5142 | * @substream: PCM substream to assign |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5143 | */ |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 5144 | int snd_hda_multi_out_dig_prepare(struct hda_codec *codec, |
| 5145 | struct hda_multi_out *mout, |
| 5146 | unsigned int stream_tag, |
| 5147 | unsigned int format, |
| 5148 | struct snd_pcm_substream *substream) |
| 5149 | { |
| 5150 | mutex_lock(&codec->spdif_mutex); |
| 5151 | setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format); |
| 5152 | mutex_unlock(&codec->spdif_mutex); |
| 5153 | return 0; |
| 5154 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5155 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_prepare); |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 5156 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5157 | /** |
| 5158 | * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 5159 | * @codec: the HDA codec |
| 5160 | * @mout: hda_multi_out object |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5161 | */ |
Takashi Iwai | 9411e21 | 2009-02-13 11:32:28 +0100 | [diff] [blame] | 5162 | int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec, |
| 5163 | struct hda_multi_out *mout) |
| 5164 | { |
| 5165 | mutex_lock(&codec->spdif_mutex); |
| 5166 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
| 5167 | mutex_unlock(&codec->spdif_mutex); |
| 5168 | return 0; |
| 5169 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5170 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_cleanup); |
Takashi Iwai | 9411e21 | 2009-02-13 11:32:28 +0100 | [diff] [blame] | 5171 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5172 | /** |
| 5173 | * snd_hda_multi_out_dig_close - release the digital out stream |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 5174 | * @codec: the HDA codec |
| 5175 | * @mout: hda_multi_out object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5176 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5177 | int snd_hda_multi_out_dig_close(struct hda_codec *codec, |
| 5178 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5179 | { |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 5180 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5181 | mout->dig_out_used = 0; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 5182 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5183 | return 0; |
| 5184 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5185 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_close); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5186 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5187 | /** |
| 5188 | * snd_hda_multi_out_analog_open - open analog outputs |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 5189 | * @codec: the HDA codec |
| 5190 | * @mout: hda_multi_out object |
| 5191 | * @substream: PCM substream to assign |
| 5192 | * @hinfo: PCM information to assign |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5193 | * |
| 5194 | * Open analog outputs and set up the hw-constraints. |
| 5195 | * If the digital outputs can be opened as slave, open the digital |
| 5196 | * outputs, too. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5197 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5198 | int snd_hda_multi_out_analog_open(struct hda_codec *codec, |
| 5199 | struct hda_multi_out *mout, |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 5200 | struct snd_pcm_substream *substream, |
| 5201 | struct hda_pcm_stream *hinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5202 | { |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 5203 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 5204 | runtime->hw.channels_max = mout->max_channels; |
| 5205 | if (mout->dig_out_nid) { |
| 5206 | if (!mout->analog_rates) { |
| 5207 | mout->analog_rates = hinfo->rates; |
| 5208 | mout->analog_formats = hinfo->formats; |
| 5209 | mout->analog_maxbps = hinfo->maxbps; |
| 5210 | } else { |
| 5211 | runtime->hw.rates = mout->analog_rates; |
| 5212 | runtime->hw.formats = mout->analog_formats; |
| 5213 | hinfo->maxbps = mout->analog_maxbps; |
| 5214 | } |
| 5215 | if (!mout->spdif_rates) { |
| 5216 | snd_hda_query_supported_pcm(codec, mout->dig_out_nid, |
| 5217 | &mout->spdif_rates, |
| 5218 | &mout->spdif_formats, |
| 5219 | &mout->spdif_maxbps); |
| 5220 | } |
| 5221 | mutex_lock(&codec->spdif_mutex); |
| 5222 | if (mout->share_spdif) { |
Takashi Iwai | 022b466 | 2009-07-03 23:03:30 +0200 | [diff] [blame] | 5223 | if ((runtime->hw.rates & mout->spdif_rates) && |
| 5224 | (runtime->hw.formats & mout->spdif_formats)) { |
| 5225 | runtime->hw.rates &= mout->spdif_rates; |
| 5226 | runtime->hw.formats &= mout->spdif_formats; |
| 5227 | if (mout->spdif_maxbps < hinfo->maxbps) |
| 5228 | hinfo->maxbps = mout->spdif_maxbps; |
| 5229 | } else { |
| 5230 | mout->share_spdif = 0; |
| 5231 | /* FIXME: need notify? */ |
| 5232 | } |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 5233 | } |
Frederik Deweerdt | eaa9985 | 2008-04-14 13:11:44 +0200 | [diff] [blame] | 5234 | mutex_unlock(&codec->spdif_mutex); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 5235 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5236 | return snd_pcm_hw_constraint_step(substream->runtime, 0, |
| 5237 | SNDRV_PCM_HW_PARAM_CHANNELS, 2); |
| 5238 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5239 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5240 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5241 | /** |
| 5242 | * snd_hda_multi_out_analog_prepare - Preapre the analog outputs. |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 5243 | * @codec: the HDA codec |
| 5244 | * @mout: hda_multi_out object |
| 5245 | * @stream_tag: stream tag to assign |
| 5246 | * @format: format id to assign |
| 5247 | * @substream: PCM substream to assign |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5248 | * |
| 5249 | * Set up the i/o for analog out. |
| 5250 | * 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] | 5251 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5252 | int snd_hda_multi_out_analog_prepare(struct hda_codec *codec, |
| 5253 | struct hda_multi_out *mout, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5254 | unsigned int stream_tag, |
| 5255 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 5256 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5257 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 5258 | const hda_nid_t *nids = mout->dac_nids; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5259 | int chs = substream->runtime->channels; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 5260 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5261 | int i; |
| 5262 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 5263 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 5264 | spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 5265 | if (mout->dig_out_nid && mout->share_spdif && |
| 5266 | mout->dig_out_used != HDA_DIG_EXCLUSIVE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5267 | if (chs == 2 && |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5268 | snd_hda_is_supported_format(codec, mout->dig_out_nid, |
| 5269 | format) && |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 5270 | !(spdif->status & IEC958_AES0_NONAUDIO)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5271 | mout->dig_out_used = HDA_DIG_ANALOG_DUP; |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 5272 | setup_dig_out_stream(codec, mout->dig_out_nid, |
| 5273 | stream_tag, format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5274 | } else { |
| 5275 | mout->dig_out_used = 0; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 5276 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5277 | } |
| 5278 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 5279 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5280 | |
| 5281 | /* front */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5282 | snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag, |
| 5283 | 0, format); |
Takashi Iwai | d29240c | 2007-10-26 12:35:56 +0200 | [diff] [blame] | 5284 | if (!mout->no_share_stream && |
| 5285 | mout->hp_nid && mout->hp_nid != nids[HDA_FRONT]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5286 | /* headphone out will just decode front left/right (stereo) */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5287 | snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag, |
| 5288 | 0, format); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 5289 | /* extra outputs copied from front */ |
Takashi Iwai | a06dbfc | 2011-08-23 18:16:13 +0200 | [diff] [blame] | 5290 | for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++) |
| 5291 | if (!mout->no_share_stream && mout->hp_out_nid[i]) |
| 5292 | snd_hda_codec_setup_stream(codec, |
| 5293 | mout->hp_out_nid[i], |
| 5294 | stream_tag, 0, format); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 5295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5296 | /* surrounds */ |
| 5297 | for (i = 1; i < mout->num_dacs; i++) { |
Takashi Iwai | 4b3acaf | 2005-06-10 19:48:10 +0200 | [diff] [blame] | 5298 | if (chs >= (i + 1) * 2) /* independent out */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5299 | snd_hda_codec_setup_stream(codec, nids[i], stream_tag, |
| 5300 | i * 2, format); |
Takashi Iwai | d29240c | 2007-10-26 12:35:56 +0200 | [diff] [blame] | 5301 | else if (!mout->no_share_stream) /* copy front */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5302 | snd_hda_codec_setup_stream(codec, nids[i], stream_tag, |
| 5303 | 0, format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5304 | } |
David Henningsson | cd4035e | 2013-10-10 09:01:25 +0200 | [diff] [blame] | 5305 | |
| 5306 | /* extra surrounds */ |
| 5307 | for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) { |
| 5308 | int ch = 0; |
| 5309 | if (!mout->extra_out_nid[i]) |
| 5310 | break; |
| 5311 | if (chs >= (i + 1) * 2) |
| 5312 | ch = i * 2; |
| 5313 | else if (!mout->no_share_stream) |
| 5314 | break; |
| 5315 | snd_hda_codec_setup_stream(codec, mout->extra_out_nid[i], |
| 5316 | stream_tag, ch, format); |
| 5317 | } |
| 5318 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5319 | return 0; |
| 5320 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5321 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_prepare); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5322 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5323 | /** |
| 5324 | * 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] | 5325 | * @codec: the HDA codec |
| 5326 | * @mout: hda_multi_out object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5327 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5328 | int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec, |
| 5329 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5330 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 5331 | const hda_nid_t *nids = mout->dac_nids; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5332 | int i; |
| 5333 | |
| 5334 | for (i = 0; i < mout->num_dacs; i++) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 5335 | snd_hda_codec_cleanup_stream(codec, nids[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5336 | if (mout->hp_nid) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 5337 | snd_hda_codec_cleanup_stream(codec, mout->hp_nid); |
Takashi Iwai | a06dbfc | 2011-08-23 18:16:13 +0200 | [diff] [blame] | 5338 | for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++) |
| 5339 | if (mout->hp_out_nid[i]) |
| 5340 | snd_hda_codec_cleanup_stream(codec, |
| 5341 | mout->hp_out_nid[i]); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 5342 | for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) |
| 5343 | if (mout->extra_out_nid[i]) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 5344 | snd_hda_codec_cleanup_stream(codec, |
| 5345 | mout->extra_out_nid[i]); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 5346 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5347 | 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] | 5348 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5349 | mout->dig_out_used = 0; |
| 5350 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 5351 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5352 | return 0; |
| 5353 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5354 | EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_cleanup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5355 | |
Takashi Iwai | 4740860 | 2012-04-20 13:06:53 +0200 | [diff] [blame] | 5356 | /** |
| 5357 | * snd_hda_get_default_vref - Get the default (mic) VREF pin bits |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 5358 | * @codec: the HDA codec |
| 5359 | * @pin: referred pin NID |
Takashi Iwai | 4740860 | 2012-04-20 13:06:53 +0200 | [diff] [blame] | 5360 | * |
| 5361 | * Guess the suitable VREF pin bits to be set as the pin-control value. |
| 5362 | * Note: the function doesn't set the AC_PINCTL_IN_EN bit. |
| 5363 | */ |
| 5364 | unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin) |
| 5365 | { |
| 5366 | unsigned int pincap; |
| 5367 | unsigned int oldval; |
| 5368 | oldval = snd_hda_codec_read(codec, pin, 0, |
| 5369 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); |
| 5370 | pincap = snd_hda_query_pin_caps(codec, pin); |
| 5371 | pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT; |
| 5372 | /* Exception: if the default pin setup is vref50, we give it priority */ |
| 5373 | if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50) |
| 5374 | return AC_PINCTL_VREF_80; |
| 5375 | else if (pincap & AC_PINCAP_VREF_50) |
| 5376 | return AC_PINCTL_VREF_50; |
| 5377 | else if (pincap & AC_PINCAP_VREF_100) |
| 5378 | return AC_PINCTL_VREF_100; |
| 5379 | else if (pincap & AC_PINCAP_VREF_GRD) |
| 5380 | return AC_PINCTL_VREF_GRD; |
| 5381 | return AC_PINCTL_VREF_HIZ; |
| 5382 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5383 | EXPORT_SYMBOL_GPL(snd_hda_get_default_vref); |
Takashi Iwai | 4740860 | 2012-04-20 13:06:53 +0200 | [diff] [blame] | 5384 | |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 5385 | /** |
| 5386 | * snd_hda_correct_pin_ctl - correct the pin ctl value for matching with the pin cap |
| 5387 | * @codec: the HDA codec |
| 5388 | * @pin: referred pin NID |
| 5389 | * @val: pin ctl value to audit |
| 5390 | */ |
Takashi Iwai | 62f3a2f | 2013-01-10 08:56:46 +0100 | [diff] [blame] | 5391 | unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec, |
| 5392 | hda_nid_t pin, unsigned int val) |
| 5393 | { |
| 5394 | static unsigned int cap_lists[][2] = { |
| 5395 | { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 }, |
| 5396 | { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 }, |
| 5397 | { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 }, |
| 5398 | { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD }, |
| 5399 | }; |
| 5400 | unsigned int cap; |
| 5401 | |
| 5402 | if (!val) |
| 5403 | return 0; |
| 5404 | cap = snd_hda_query_pin_caps(codec, pin); |
| 5405 | if (!cap) |
| 5406 | return val; /* don't know what to do... */ |
| 5407 | |
| 5408 | if (val & AC_PINCTL_OUT_EN) { |
| 5409 | if (!(cap & AC_PINCAP_OUT)) |
| 5410 | val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN); |
| 5411 | else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV)) |
| 5412 | val &= ~AC_PINCTL_HP_EN; |
| 5413 | } |
| 5414 | |
| 5415 | if (val & AC_PINCTL_IN_EN) { |
| 5416 | if (!(cap & AC_PINCAP_IN)) |
| 5417 | val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN); |
| 5418 | else { |
| 5419 | unsigned int vcap, vref; |
| 5420 | int i; |
| 5421 | vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT; |
| 5422 | vref = val & AC_PINCTL_VREFEN; |
| 5423 | for (i = 0; i < ARRAY_SIZE(cap_lists); i++) { |
| 5424 | if (vref == cap_lists[i][0] && |
| 5425 | !(vcap & cap_lists[i][1])) { |
| 5426 | if (i == ARRAY_SIZE(cap_lists) - 1) |
| 5427 | vref = AC_PINCTL_VREF_HIZ; |
| 5428 | else |
| 5429 | vref = cap_lists[i + 1][0]; |
| 5430 | } |
| 5431 | } |
| 5432 | val &= ~AC_PINCTL_VREFEN; |
| 5433 | val |= vref; |
| 5434 | } |
| 5435 | } |
| 5436 | |
| 5437 | return val; |
| 5438 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5439 | EXPORT_SYMBOL_GPL(snd_hda_correct_pin_ctl); |
Takashi Iwai | 62f3a2f | 2013-01-10 08:56:46 +0100 | [diff] [blame] | 5440 | |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 5441 | /** |
| 5442 | * _snd_hda_pin_ctl - Helper to set pin ctl value |
| 5443 | * @codec: the HDA codec |
| 5444 | * @pin: referred pin NID |
| 5445 | * @val: pin control value to set |
| 5446 | * @cached: access over codec pinctl cache or direct write |
| 5447 | * |
| 5448 | * This function is a helper to set a pin ctl value more safely. |
| 5449 | * It corrects the pin ctl value via snd_hda_correct_pin_ctl(), stores the |
| 5450 | * value in pin target array via snd_hda_codec_set_pin_target(), then |
| 5451 | * actually writes the value via either snd_hda_codec_update_cache() or |
| 5452 | * snd_hda_codec_write() depending on @cached flag. |
| 5453 | */ |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 5454 | int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin, |
| 5455 | unsigned int val, bool cached) |
| 5456 | { |
Takashi Iwai | 62f3a2f | 2013-01-10 08:56:46 +0100 | [diff] [blame] | 5457 | val = snd_hda_correct_pin_ctl(codec, pin, val); |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 5458 | snd_hda_codec_set_pin_target(codec, pin, val); |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 5459 | if (cached) |
| 5460 | return snd_hda_codec_update_cache(codec, pin, 0, |
| 5461 | AC_VERB_SET_PIN_WIDGET_CONTROL, val); |
| 5462 | else |
| 5463 | return snd_hda_codec_write(codec, pin, 0, |
| 5464 | AC_VERB_SET_PIN_WIDGET_CONTROL, val); |
| 5465 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5466 | EXPORT_SYMBOL_GPL(_snd_hda_set_pin_ctl); |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 5467 | |
Takashi Iwai | 990061c | 2010-09-09 22:08:44 +0200 | [diff] [blame] | 5468 | /** |
| 5469 | * snd_hda_add_imux_item - Add an item to input_mux |
Takashi Iwai | a11e9b1 | 2014-10-29 15:06:01 +0100 | [diff] [blame] | 5470 | * @codec: the HDA codec |
| 5471 | * @imux: imux helper object |
| 5472 | * @label: the name of imux item to assign |
| 5473 | * @index: index number of imux item to assign |
| 5474 | * @type_idx: pointer to store the resultant label index |
Takashi Iwai | 990061c | 2010-09-09 22:08:44 +0200 | [diff] [blame] | 5475 | * |
| 5476 | * When the same label is used already in the existing items, the number |
| 5477 | * suffix is appended to the label. This label index number is stored |
| 5478 | * to type_idx when non-NULL pointer is given. |
| 5479 | */ |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 5480 | int snd_hda_add_imux_item(struct hda_codec *codec, |
| 5481 | struct hda_input_mux *imux, const char *label, |
Takashi Iwai | 10a20af | 2010-09-09 16:28:02 +0200 | [diff] [blame] | 5482 | int index, int *type_idx) |
| 5483 | { |
| 5484 | int i, label_idx = 0; |
| 5485 | if (imux->num_items >= HDA_MAX_NUM_INPUTS) { |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 5486 | codec_err(codec, "hda_codec: Too many imux items!\n"); |
Takashi Iwai | 10a20af | 2010-09-09 16:28:02 +0200 | [diff] [blame] | 5487 | return -EINVAL; |
| 5488 | } |
| 5489 | for (i = 0; i < imux->num_items; i++) { |
| 5490 | if (!strncmp(label, imux->items[i].label, strlen(label))) |
| 5491 | label_idx++; |
| 5492 | } |
| 5493 | if (type_idx) |
| 5494 | *type_idx = label_idx; |
| 5495 | if (label_idx > 0) |
| 5496 | snprintf(imux->items[imux->num_items].label, |
| 5497 | sizeof(imux->items[imux->num_items].label), |
| 5498 | "%s %d", label, label_idx); |
| 5499 | else |
| 5500 | strlcpy(imux->items[imux->num_items].label, label, |
| 5501 | sizeof(imux->items[imux->num_items].label)); |
| 5502 | imux->items[imux->num_items].index = index; |
| 5503 | imux->num_items++; |
| 5504 | return 0; |
| 5505 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5506 | EXPORT_SYMBOL_GPL(snd_hda_add_imux_item); |
Takashi Iwai | d7b1ae9 | 2010-08-30 13:00:16 +0200 | [diff] [blame] | 5507 | |
Takashi Iwai | 4a471b7 | 2005-12-07 13:56:29 +0100 | [diff] [blame] | 5508 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5509 | #ifdef CONFIG_PM |
| 5510 | /* |
| 5511 | * power management |
| 5512 | */ |
| 5513 | |
Takashi Iwai | f4d6a55 | 2013-12-05 11:55:05 +0100 | [diff] [blame] | 5514 | |
| 5515 | static void hda_async_suspend(void *data, async_cookie_t cookie) |
| 5516 | { |
| 5517 | hda_call_codec_suspend(data, false); |
| 5518 | } |
| 5519 | |
| 5520 | static void hda_async_resume(void *data, async_cookie_t cookie) |
| 5521 | { |
| 5522 | hda_call_codec_resume(data); |
| 5523 | } |
| 5524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5525 | /** |
| 5526 | * snd_hda_suspend - suspend the codecs |
| 5527 | * @bus: the HDA bus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5528 | * |
| 5529 | * Returns 0 if successful. |
| 5530 | */ |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 5531 | int snd_hda_suspend(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5532 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5533 | struct hda_codec *codec; |
Takashi Iwai | f4d6a55 | 2013-12-05 11:55:05 +0100 | [diff] [blame] | 5534 | ASYNC_DOMAIN_EXCLUSIVE(domain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5535 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5536 | list_for_each_entry(codec, &bus->codec_list, list) { |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 5537 | cancel_delayed_work_sync(&codec->jackpoll_work); |
Mengdong Lin | 0e24dbb | 2013-11-26 23:00:51 -0500 | [diff] [blame] | 5538 | if (hda_codec_is_power_on(codec)) { |
| 5539 | if (bus->num_codecs > 1) |
Takashi Iwai | f4d6a55 | 2013-12-05 11:55:05 +0100 | [diff] [blame] | 5540 | async_schedule_domain(hda_async_suspend, codec, |
| 5541 | &domain); |
Mengdong Lin | 0e24dbb | 2013-11-26 23:00:51 -0500 | [diff] [blame] | 5542 | else |
| 5543 | hda_call_codec_suspend(codec, false); |
| 5544 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5545 | } |
Mengdong Lin | 0e24dbb | 2013-11-26 23:00:51 -0500 | [diff] [blame] | 5546 | |
| 5547 | if (bus->num_codecs > 1) |
Takashi Iwai | f4d6a55 | 2013-12-05 11:55:05 +0100 | [diff] [blame] | 5548 | async_synchronize_full_domain(&domain); |
Mengdong Lin | 0e24dbb | 2013-11-26 23:00:51 -0500 | [diff] [blame] | 5549 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5550 | return 0; |
| 5551 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5552 | EXPORT_SYMBOL_GPL(snd_hda_suspend); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5553 | |
| 5554 | /** |
| 5555 | * snd_hda_resume - resume the codecs |
| 5556 | * @bus: the HDA bus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5557 | * |
| 5558 | * Returns 0 if successful. |
| 5559 | */ |
| 5560 | int snd_hda_resume(struct hda_bus *bus) |
| 5561 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5562 | struct hda_codec *codec; |
Takashi Iwai | f4d6a55 | 2013-12-05 11:55:05 +0100 | [diff] [blame] | 5563 | ASYNC_DOMAIN_EXCLUSIVE(domain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5564 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5565 | list_for_each_entry(codec, &bus->codec_list, list) { |
Mengdong Lin | 12edb89 | 2013-11-26 23:32:23 -0500 | [diff] [blame] | 5566 | if (bus->num_codecs > 1) |
Takashi Iwai | f4d6a55 | 2013-12-05 11:55:05 +0100 | [diff] [blame] | 5567 | async_schedule_domain(hda_async_resume, codec, &domain); |
Mengdong Lin | 12edb89 | 2013-11-26 23:32:23 -0500 | [diff] [blame] | 5568 | else |
| 5569 | hda_call_codec_resume(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5570 | } |
Mengdong Lin | 12edb89 | 2013-11-26 23:32:23 -0500 | [diff] [blame] | 5571 | |
| 5572 | if (bus->num_codecs > 1) |
Takashi Iwai | f4d6a55 | 2013-12-05 11:55:05 +0100 | [diff] [blame] | 5573 | async_synchronize_full_domain(&domain); |
Mengdong Lin | 12edb89 | 2013-11-26 23:32:23 -0500 | [diff] [blame] | 5574 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5575 | return 0; |
| 5576 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5577 | EXPORT_SYMBOL_GPL(snd_hda_resume); |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 5578 | #endif /* CONFIG_PM */ |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5579 | |
| 5580 | /* |
| 5581 | * generic arrays |
| 5582 | */ |
| 5583 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5584 | /** |
| 5585 | * snd_array_new - get a new element from the given array |
| 5586 | * @array: the array object |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 5587 | * |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5588 | * Get a new element from the given array. If it exceeds the |
| 5589 | * pre-allocated array size, re-allocate the array. |
| 5590 | * |
| 5591 | * Returns NULL if allocation failed. |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5592 | */ |
| 5593 | void *snd_array_new(struct snd_array *array) |
| 5594 | { |
Takashi Iwai | 12f1771 | 2012-10-10 08:59:14 +0200 | [diff] [blame] | 5595 | if (snd_BUG_ON(!array->elem_size)) |
| 5596 | return NULL; |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5597 | if (array->used >= array->alloced) { |
| 5598 | int num = array->alloced + array->alloc_align; |
Takashi Iwai | 3101ba0 | 2011-07-12 08:05:16 +0200 | [diff] [blame] | 5599 | int size = (num + 1) * array->elem_size; |
Takashi Iwai | b910d9a | 2008-11-07 00:26:52 +0100 | [diff] [blame] | 5600 | void *nlist; |
| 5601 | if (snd_BUG_ON(num >= 4096)) |
| 5602 | return NULL; |
Takashi Iwai | 5265fd9 | 2013-03-13 12:15:28 +0100 | [diff] [blame] | 5603 | nlist = krealloc(array->list, size, GFP_KERNEL | __GFP_ZERO); |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5604 | if (!nlist) |
| 5605 | return NULL; |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5606 | array->list = nlist; |
| 5607 | array->alloced = num; |
| 5608 | } |
Takashi Iwai | f43aa02 | 2008-11-10 16:24:26 +0100 | [diff] [blame] | 5609 | return snd_array_elem(array, array->used++); |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5610 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5611 | EXPORT_SYMBOL_GPL(snd_array_new); |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5612 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5613 | /** |
| 5614 | * snd_array_free - free the given array elements |
| 5615 | * @array: the array object |
| 5616 | */ |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5617 | void snd_array_free(struct snd_array *array) |
| 5618 | { |
| 5619 | kfree(array->list); |
| 5620 | array->used = 0; |
| 5621 | array->alloced = 0; |
| 5622 | array->list = NULL; |
| 5623 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5624 | EXPORT_SYMBOL_GPL(snd_array_free); |
Takashi Iwai | b202226 | 2008-11-21 21:24:03 +0100 | [diff] [blame] | 5625 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5626 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5627 | * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer |
| 5628 | * @pcm: PCM caps bits |
| 5629 | * @buf: the string buffer to write |
| 5630 | * @buflen: the max buffer length |
| 5631 | * |
| 5632 | * used by hda_proc.c and hda_eld.c |
| 5633 | */ |
Takashi Iwai | b202226 | 2008-11-21 21:24:03 +0100 | [diff] [blame] | 5634 | void snd_print_pcm_bits(int pcm, char *buf, int buflen) |
| 5635 | { |
| 5636 | static unsigned int bits[] = { 8, 16, 20, 24, 32 }; |
| 5637 | int i, j; |
| 5638 | |
| 5639 | for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++) |
| 5640 | if (pcm & (AC_SUPPCM_BITS_8 << i)) |
| 5641 | j += snprintf(buf + j, buflen - j, " %d", bits[i]); |
| 5642 | |
| 5643 | buf[j] = '\0'; /* necessary when j == 0 */ |
| 5644 | } |
Takashi Iwai | 2698ea9 | 2013-12-18 07:45:52 +0100 | [diff] [blame] | 5645 | EXPORT_SYMBOL_GPL(snd_print_pcm_bits); |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 5646 | |
| 5647 | MODULE_DESCRIPTION("HDA codec core"); |
| 5648 | MODULE_LICENSE("GPL"); |