1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2006 Stephane E. Potvin <sepotvin@videotron.ca> 5 * Copyright (c) 2006 Ariff Abdullah <ariff@FreeBSD.org> 6 * Copyright (c) 2008-2012 Alexander Motin <mav@FreeBSD.org> 7 * All rights reserved. 8 * 9 * Redistribution and use in source and binary forms, with or without 10 * modification, are permitted provided that the following conditions 11 * are met: 12 * 1. Redistributions of source code must retain the above copyright 13 * notice, this list of conditions and the following disclaimer. 14 * 2. Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in the 16 * documentation and/or other materials provided with the distribution. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28 * SUCH DAMAGE. 29 */ 30 31 /* 32 * Intel High Definition Audio (Audio function) driver for FreeBSD. 33 */ 34 35 #ifdef HAVE_KERNEL_OPTION_HEADERS 36 #include "opt_snd.h" 37 #endif 38 39 #include <dev/sound/pcm/sound.h> 40 41 #include <sys/ctype.h> 42 #include <sys/taskqueue.h> 43 44 #include <dev/sound/pci/hda/hdac.h> 45 #include <dev/sound/pci/hda/hdaa.h> 46 #include <dev/sound/pci/hda/hda_reg.h> 47 48 #include "mixer_if.h" 49 50 SND_DECLARE_FILE("$FreeBSD$"); 51 52 #define hdaa_lock(devinfo) snd_mtxlock((devinfo)->lock) 53 #define hdaa_unlock(devinfo) snd_mtxunlock((devinfo)->lock) 54 #define hdaa_lockassert(devinfo) snd_mtxassert((devinfo)->lock) 55 #define hdaa_lockowned(devinfo) mtx_owned((devinfo)->lock) 56 57 static const struct { 58 const char *key; 59 uint32_t value; 60 } hdaa_quirks_tab[] = { 61 { "softpcmvol", HDAA_QUIRK_SOFTPCMVOL }, 62 { "fixedrate", HDAA_QUIRK_FIXEDRATE }, 63 { "forcestereo", HDAA_QUIRK_FORCESTEREO }, 64 { "eapdinv", HDAA_QUIRK_EAPDINV }, 65 { "senseinv", HDAA_QUIRK_SENSEINV }, 66 { "ivref50", HDAA_QUIRK_IVREF50 }, 67 { "ivref80", HDAA_QUIRK_IVREF80 }, 68 { "ivref100", HDAA_QUIRK_IVREF100 }, 69 { "ovref50", HDAA_QUIRK_OVREF50 }, 70 { "ovref80", HDAA_QUIRK_OVREF80 }, 71 { "ovref100", HDAA_QUIRK_OVREF100 }, 72 { "ivref", HDAA_QUIRK_IVREF }, 73 { "ovref", HDAA_QUIRK_OVREF }, 74 { "vref", HDAA_QUIRK_VREF }, 75 }; 76 77 #define HDA_PARSE_MAXDEPTH 10 78 79 MALLOC_DEFINE(M_HDAA, "hdaa", "HDA Audio"); 80 81 static const char *HDA_COLORS[16] = {"Unknown", "Black", "Grey", "Blue", 82 "Green", "Red", "Orange", "Yellow", "Purple", "Pink", "Res.A", "Res.B", 83 "Res.C", "Res.D", "White", "Other"}; 84 85 static const char *HDA_DEVS[16] = {"Line-out", "Speaker", "Headphones", "CD", 86 "SPDIF-out", "Digital-out", "Modem-line", "Modem-handset", "Line-in", 87 "AUX", "Mic", "Telephony", "SPDIF-in", "Digital-in", "Res.E", "Other"}; 88 89 static const char *HDA_CONNS[4] = {"Jack", "None", "Fixed", "Both"}; 90 91 static const char *HDA_CONNECTORS[16] = { 92 "Unknown", "1/8", "1/4", "ATAPI", "RCA", "Optical", "Digital", "Analog", 93 "DIN", "XLR", "RJ-11", "Combo", "0xc", "0xd", "0xe", "Other" }; 94 95 static const char *HDA_LOCS[64] = { 96 "0x00", "Rear", "Front", "Left", "Right", "Top", "Bottom", "Rear-panel", 97 "Drive-bay", "0x09", "0x0a", "0x0b", "0x0c", "0x0d", "0x0e", "0x0f", 98 "Internal", "0x11", "0x12", "0x13", "0x14", "0x15", "0x16", "Riser", 99 "0x18", "Onboard", "0x1a", "0x1b", "0x1c", "0x1d", "0x1e", "0x1f", 100 "External", "Ext-Rear", "Ext-Front", "Ext-Left", "Ext-Right", "Ext-Top", "Ext-Bottom", "0x07", 101 "0x28", "0x29", "0x2a", "0x2b", "0x2c", "0x2d", "0x2e", "0x2f", 102 "Other", "0x31", "0x32", "0x33", "0x34", "0x35", "Other-Bott", "Lid-In", 103 "Lid-Out", "0x39", "0x3a", "0x3b", "0x3c", "0x3d", "0x3e", "0x3f" }; 104 105 static const char *HDA_GPIO_ACTIONS[8] = { 106 "keep", "set", "clear", "disable", "input", "0x05", "0x06", "0x07"}; 107 108 static const char *HDA_HDMI_CODING_TYPES[18] = { 109 "undefined", "LPCM", "AC-3", "MPEG1", "MP3", "MPEG2", "AAC-LC", "DTS", 110 "ATRAC", "DSD", "E-AC-3", "DTS-HD", "MLP", "DST", "WMAPro", "HE-AAC", 111 "HE-AACv2", "MPEG-Surround" 112 }; 113 114 /* Default */ 115 static uint32_t hdaa_fmt[] = { 116 SND_FORMAT(AFMT_S16_LE, 2, 0), 117 0 118 }; 119 120 static struct pcmchan_caps hdaa_caps = {48000, 48000, hdaa_fmt, 0}; 121 122 static const struct { 123 uint32_t rate; 124 int valid; 125 uint16_t base; 126 uint16_t mul; 127 uint16_t div; 128 } hda_rate_tab[] = { 129 { 8000, 1, 0x0000, 0x0000, 0x0500 }, /* (48000 * 1) / 6 */ 130 { 9600, 0, 0x0000, 0x0000, 0x0400 }, /* (48000 * 1) / 5 */ 131 { 12000, 0, 0x0000, 0x0000, 0x0300 }, /* (48000 * 1) / 4 */ 132 { 16000, 1, 0x0000, 0x0000, 0x0200 }, /* (48000 * 1) / 3 */ 133 { 18000, 0, 0x0000, 0x1000, 0x0700 }, /* (48000 * 3) / 8 */ 134 { 19200, 0, 0x0000, 0x0800, 0x0400 }, /* (48000 * 2) / 5 */ 135 { 24000, 0, 0x0000, 0x0000, 0x0100 }, /* (48000 * 1) / 2 */ 136 { 28800, 0, 0x0000, 0x1000, 0x0400 }, /* (48000 * 3) / 5 */ 137 { 32000, 1, 0x0000, 0x0800, 0x0200 }, /* (48000 * 2) / 3 */ 138 { 36000, 0, 0x0000, 0x1000, 0x0300 }, /* (48000 * 3) / 4 */ 139 { 38400, 0, 0x0000, 0x1800, 0x0400 }, /* (48000 * 4) / 5 */ 140 { 48000, 1, 0x0000, 0x0000, 0x0000 }, /* (48000 * 1) / 1 */ 141 { 64000, 0, 0x0000, 0x1800, 0x0200 }, /* (48000 * 4) / 3 */ 142 { 72000, 0, 0x0000, 0x1000, 0x0100 }, /* (48000 * 3) / 2 */ 143 { 96000, 1, 0x0000, 0x0800, 0x0000 }, /* (48000 * 2) / 1 */ 144 { 144000, 0, 0x0000, 0x1000, 0x0000 }, /* (48000 * 3) / 1 */ 145 { 192000, 1, 0x0000, 0x1800, 0x0000 }, /* (48000 * 4) / 1 */ 146 { 8820, 0, 0x4000, 0x0000, 0x0400 }, /* (44100 * 1) / 5 */ 147 { 11025, 1, 0x4000, 0x0000, 0x0300 }, /* (44100 * 1) / 4 */ 148 { 12600, 0, 0x4000, 0x0800, 0x0600 }, /* (44100 * 2) / 7 */ 149 { 14700, 0, 0x4000, 0x0000, 0x0200 }, /* (44100 * 1) / 3 */ 150 { 17640, 0, 0x4000, 0x0800, 0x0400 }, /* (44100 * 2) / 5 */ 151 { 18900, 0, 0x4000, 0x1000, 0x0600 }, /* (44100 * 3) / 7 */ 152 { 22050, 1, 0x4000, 0x0000, 0x0100 }, /* (44100 * 1) / 2 */ 153 { 25200, 0, 0x4000, 0x1800, 0x0600 }, /* (44100 * 4) / 7 */ 154 { 26460, 0, 0x4000, 0x1000, 0x0400 }, /* (44100 * 3) / 5 */ 155 { 29400, 0, 0x4000, 0x0800, 0x0200 }, /* (44100 * 2) / 3 */ 156 { 33075, 0, 0x4000, 0x1000, 0x0300 }, /* (44100 * 3) / 4 */ 157 { 35280, 0, 0x4000, 0x1800, 0x0400 }, /* (44100 * 4) / 5 */ 158 { 44100, 1, 0x4000, 0x0000, 0x0000 }, /* (44100 * 1) / 1 */ 159 { 58800, 0, 0x4000, 0x1800, 0x0200 }, /* (44100 * 4) / 3 */ 160 { 66150, 0, 0x4000, 0x1000, 0x0100 }, /* (44100 * 3) / 2 */ 161 { 88200, 1, 0x4000, 0x0800, 0x0000 }, /* (44100 * 2) / 1 */ 162 { 132300, 0, 0x4000, 0x1000, 0x0000 }, /* (44100 * 3) / 1 */ 163 { 176400, 1, 0x4000, 0x1800, 0x0000 }, /* (44100 * 4) / 1 */ 164 }; 165 #define HDA_RATE_TAB_LEN (sizeof(hda_rate_tab) / sizeof(hda_rate_tab[0])) 166 167 const static char *ossnames[] = SOUND_DEVICE_NAMES; 168 169 /**************************************************************************** 170 * Function prototypes 171 ****************************************************************************/ 172 static int hdaa_pcmchannel_setup(struct hdaa_chan *); 173 174 static void hdaa_widget_connection_select(struct hdaa_widget *, uint8_t); 175 static void hdaa_audio_ctl_amp_set(struct hdaa_audio_ctl *, 176 uint32_t, int, int); 177 static struct hdaa_audio_ctl *hdaa_audio_ctl_amp_get(struct hdaa_devinfo *, 178 nid_t, int, int, int); 179 static void hdaa_audio_ctl_amp_set_internal(struct hdaa_devinfo *, 180 nid_t, int, int, int, int, int, int); 181 182 static void hdaa_dump_pin_config(struct hdaa_widget *w, uint32_t conf); 183 184 static char * 185 hdaa_audio_ctl_ossmixer_mask2allname(uint32_t mask, char *buf, size_t len) 186 { 187 int i, first = 1; 188 189 bzero(buf, len); 190 for (i = 0; i < SOUND_MIXER_NRDEVICES; i++) { 191 if (mask & (1 << i)) { 192 if (first == 0) 193 strlcat(buf, ", ", len); 194 strlcat(buf, ossnames[i], len); 195 first = 0; 196 } 197 } 198 return (buf); 199 } 200 201 static struct hdaa_audio_ctl * 202 hdaa_audio_ctl_each(struct hdaa_devinfo *devinfo, int *index) 203 { 204 if (devinfo == NULL || 205 index == NULL || devinfo->ctl == NULL || 206 devinfo->ctlcnt < 1 || 207 *index < 0 || *index >= devinfo->ctlcnt) 208 return (NULL); 209 return (&devinfo->ctl[(*index)++]); 210 } 211 212 static struct hdaa_audio_ctl * 213 hdaa_audio_ctl_amp_get(struct hdaa_devinfo *devinfo, nid_t nid, int dir, 214 int index, int cnt) 215 { 216 struct hdaa_audio_ctl *ctl; 217 int i, found = 0; 218 219 if (devinfo == NULL || devinfo->ctl == NULL) 220 return (NULL); 221 222 i = 0; 223 while ((ctl = hdaa_audio_ctl_each(devinfo, &i)) != NULL) { 224 if (ctl->enable == 0) 225 continue; 226 if (ctl->widget->nid != nid) 227 continue; 228 if (dir && ctl->ndir != dir) 229 continue; 230 if (index >= 0 && ctl->ndir == HDAA_CTL_IN && 231 ctl->dir == ctl->ndir && ctl->index != index) 232 continue; 233 found++; 234 if (found == cnt || cnt <= 0) 235 return (ctl); 236 } 237 238 return (NULL); 239 } 240 241 static const struct matrix { 242 struct pcmchan_matrix m; 243 int analog; 244 } matrixes[] = { 245 { SND_CHN_MATRIX_MAP_1_0, 1 }, 246 { SND_CHN_MATRIX_MAP_2_0, 1 }, 247 { SND_CHN_MATRIX_MAP_2_1, 0 }, 248 { SND_CHN_MATRIX_MAP_3_0, 0 }, 249 { SND_CHN_MATRIX_MAP_3_1, 0 }, 250 { SND_CHN_MATRIX_MAP_4_0, 1 }, 251 { SND_CHN_MATRIX_MAP_4_1, 0 }, 252 { SND_CHN_MATRIX_MAP_5_0, 0 }, 253 { SND_CHN_MATRIX_MAP_5_1, 1 }, 254 { SND_CHN_MATRIX_MAP_6_0, 0 }, 255 { SND_CHN_MATRIX_MAP_6_1, 0 }, 256 { SND_CHN_MATRIX_MAP_7_0, 0 }, 257 { SND_CHN_MATRIX_MAP_7_1, 1 }, 258 }; 259 260 static const char *channel_names[] = SND_CHN_T_NAMES; 261 262 /* 263 * Connected channels change handler. 264 */ 265 static void 266 hdaa_channels_handler(struct hdaa_audio_as *as) 267 { 268 struct hdaa_pcm_devinfo *pdevinfo = as->pdevinfo; 269 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 270 struct hdaa_chan *ch = &devinfo->chans[as->chans[0]]; 271 struct hdaa_widget *w; 272 uint8_t *eld; 273 int i, total, sub, assume, channels; 274 uint16_t cpins, upins, tpins; 275 276 cpins = upins = 0; 277 eld = NULL; 278 for (i = 0; i < 16; i++) { 279 if (as->pins[i] <= 0) 280 continue; 281 w = hdaa_widget_get(devinfo, as->pins[i]); 282 if (w == NULL) 283 continue; 284 if (w->wclass.pin.connected == 1) 285 cpins |= (1 << i); 286 else if (w->wclass.pin.connected != 0) 287 upins |= (1 << i); 288 if (w->eld != NULL && w->eld_len >= 8) 289 eld = w->eld; 290 } 291 tpins = cpins | upins; 292 if (as->hpredir >= 0) 293 tpins &= 0x7fff; 294 if (tpins == 0) 295 tpins = as->pinset; 296 297 total = sub = assume = channels = 0; 298 if (eld) { 299 /* Map CEA speakers to sound(4) channels. */ 300 if (eld[7] & 0x01) /* Front Left/Right */ 301 channels |= SND_CHN_T_MASK_FL | SND_CHN_T_MASK_FR; 302 if (eld[7] & 0x02) /* Low Frequency Effect */ 303 channels |= SND_CHN_T_MASK_LF; 304 if (eld[7] & 0x04) /* Front Center */ 305 channels |= SND_CHN_T_MASK_FC; 306 if (eld[7] & 0x08) { /* Rear Left/Right */ 307 /* If we have both RLR and RLRC, report RLR as side. */ 308 if (eld[7] & 0x40) /* Rear Left/Right Center */ 309 channels |= SND_CHN_T_MASK_SL | SND_CHN_T_MASK_SR; 310 else 311 channels |= SND_CHN_T_MASK_BL | SND_CHN_T_MASK_BR; 312 } 313 if (eld[7] & 0x10) /* Rear center */ 314 channels |= SND_CHN_T_MASK_BC; 315 if (eld[7] & 0x20) /* Front Left/Right Center */ 316 channels |= SND_CHN_T_MASK_FLC | SND_CHN_T_MASK_FRC; 317 if (eld[7] & 0x40) /* Rear Left/Right Center */ 318 channels |= SND_CHN_T_MASK_BL | SND_CHN_T_MASK_BR; 319 } else if (as->pinset != 0 && (tpins & 0xffe0) == 0) { 320 /* Map UAA speakers to sound(4) channels. */ 321 if (tpins & 0x0001) 322 channels |= SND_CHN_T_MASK_FL | SND_CHN_T_MASK_FR; 323 if (tpins & 0x0002) 324 channels |= SND_CHN_T_MASK_FC | SND_CHN_T_MASK_LF; 325 if (tpins & 0x0004) 326 channels |= SND_CHN_T_MASK_BL | SND_CHN_T_MASK_BR; 327 if (tpins & 0x0008) 328 channels |= SND_CHN_T_MASK_FLC | SND_CHN_T_MASK_FRC; 329 if (tpins & 0x0010) { 330 /* If there is no back pin, report side as back. */ 331 if ((as->pinset & 0x0004) == 0) 332 channels |= SND_CHN_T_MASK_BL | SND_CHN_T_MASK_BR; 333 else 334 channels |= SND_CHN_T_MASK_SL | SND_CHN_T_MASK_SR; 335 } 336 } else if (as->mixed) { 337 /* Mixed assoc can be only stereo or theoretically mono. */ 338 if (ch->channels == 1) 339 channels |= SND_CHN_T_MASK_FC; 340 else 341 channels |= SND_CHN_T_MASK_FL | SND_CHN_T_MASK_FR; 342 } 343 if (channels) { /* We have some usable channels info. */ 344 HDA_BOOTVERBOSE( 345 device_printf(pdevinfo->dev, "%s channel set is: ", 346 as->dir == HDAA_CTL_OUT ? "Playback" : "Recording"); 347 for (i = 0; i < SND_CHN_T_MAX; i++) 348 if (channels & (1 << i)) 349 printf("%s, ", channel_names[i]); 350 printf("\n"); 351 ); 352 /* Look for maximal fitting matrix. */ 353 for (i = 0; i < sizeof(matrixes) / sizeof(struct matrix); i++) { 354 if (as->pinset != 0 && matrixes[i].analog == 0) 355 continue; 356 if ((matrixes[i].m.mask & ~channels) == 0) { 357 total = matrixes[i].m.channels; 358 sub = matrixes[i].m.ext; 359 } 360 } 361 } 362 if (total == 0) { 363 assume = 1; 364 total = ch->channels; 365 sub = (total == 6 || total == 8) ? 1 : 0; 366 } 367 HDA_BOOTVERBOSE( 368 device_printf(pdevinfo->dev, 369 "%s channel matrix is: %s%d.%d (%s)\n", 370 as->dir == HDAA_CTL_OUT ? "Playback" : "Recording", 371 assume ? "unknown, assuming " : "", total - sub, sub, 372 cpins != 0 ? "connected" : 373 (upins != 0 ? "unknown" : "disconnected")); 374 ); 375 } 376 377 /* 378 * Headphones redirection change handler. 379 */ 380 static void 381 hdaa_hpredir_handler(struct hdaa_widget *w) 382 { 383 struct hdaa_devinfo *devinfo = w->devinfo; 384 struct hdaa_audio_as *as = &devinfo->as[w->bindas]; 385 struct hdaa_widget *w1; 386 struct hdaa_audio_ctl *ctl; 387 uint32_t val; 388 int j, connected = w->wclass.pin.connected; 389 390 HDA_BOOTVERBOSE( 391 device_printf((as->pdevinfo && as->pdevinfo->dev) ? 392 as->pdevinfo->dev : devinfo->dev, 393 "Redirect output to: %s\n", 394 connected ? "headphones": "main"); 395 ); 396 /* (Un)Mute headphone pin. */ 397 ctl = hdaa_audio_ctl_amp_get(devinfo, 398 w->nid, HDAA_CTL_IN, -1, 1); 399 if (ctl != NULL && ctl->mute) { 400 /* If pin has muter - use it. */ 401 val = connected ? 0 : 1; 402 if (val != ctl->forcemute) { 403 ctl->forcemute = val; 404 hdaa_audio_ctl_amp_set(ctl, 405 HDAA_AMP_MUTE_DEFAULT, 406 HDAA_AMP_VOL_DEFAULT, HDAA_AMP_VOL_DEFAULT); 407 } 408 } else { 409 /* If there is no muter - disable pin output. */ 410 if (connected) 411 val = w->wclass.pin.ctrl | 412 HDA_CMD_SET_PIN_WIDGET_CTRL_OUT_ENABLE; 413 else 414 val = w->wclass.pin.ctrl & 415 ~HDA_CMD_SET_PIN_WIDGET_CTRL_OUT_ENABLE; 416 if (val != w->wclass.pin.ctrl) { 417 w->wclass.pin.ctrl = val; 418 hda_command(devinfo->dev, 419 HDA_CMD_SET_PIN_WIDGET_CTRL(0, 420 w->nid, w->wclass.pin.ctrl)); 421 } 422 } 423 /* (Un)Mute other pins. */ 424 for (j = 0; j < 15; j++) { 425 if (as->pins[j] <= 0) 426 continue; 427 ctl = hdaa_audio_ctl_amp_get(devinfo, 428 as->pins[j], HDAA_CTL_IN, -1, 1); 429 if (ctl != NULL && ctl->mute) { 430 /* If pin has muter - use it. */ 431 val = connected ? 1 : 0; 432 if (val == ctl->forcemute) 433 continue; 434 ctl->forcemute = val; 435 hdaa_audio_ctl_amp_set(ctl, 436 HDAA_AMP_MUTE_DEFAULT, 437 HDAA_AMP_VOL_DEFAULT, HDAA_AMP_VOL_DEFAULT); 438 continue; 439 } 440 /* If there is no muter - disable pin output. */ 441 w1 = hdaa_widget_get(devinfo, as->pins[j]); 442 if (w1 != NULL) { 443 if (connected) 444 val = w1->wclass.pin.ctrl & 445 ~HDA_CMD_SET_PIN_WIDGET_CTRL_OUT_ENABLE; 446 else 447 val = w1->wclass.pin.ctrl | 448 HDA_CMD_SET_PIN_WIDGET_CTRL_OUT_ENABLE; 449 if (val != w1->wclass.pin.ctrl) { 450 w1->wclass.pin.ctrl = val; 451 hda_command(devinfo->dev, 452 HDA_CMD_SET_PIN_WIDGET_CTRL(0, 453 w1->nid, w1->wclass.pin.ctrl)); 454 } 455 } 456 } 457 } 458 459 /* 460 * Recording source change handler. 461 */ 462 static void 463 hdaa_autorecsrc_handler(struct hdaa_audio_as *as, struct hdaa_widget *w) 464 { 465 struct hdaa_pcm_devinfo *pdevinfo = as->pdevinfo; 466 struct hdaa_devinfo *devinfo; 467 struct hdaa_widget *w1; 468 int i, mask, fullmask, prio, bestprio; 469 char buf[128]; 470 471 if (!as->mixed || pdevinfo == NULL || pdevinfo->mixer == NULL) 472 return; 473 /* Don't touch anything if we asked not to. */ 474 if (pdevinfo->autorecsrc == 0 || 475 (pdevinfo->autorecsrc == 1 && w != NULL)) 476 return; 477 /* Don't touch anything if "mix" or "speaker" selected. */ 478 if (pdevinfo->recsrc & (SOUND_MASK_IMIX | SOUND_MASK_SPEAKER)) 479 return; 480 /* Don't touch anything if several selected. */ 481 if (ffs(pdevinfo->recsrc) != fls(pdevinfo->recsrc)) 482 return; 483 devinfo = pdevinfo->devinfo; 484 mask = fullmask = 0; 485 bestprio = 0; 486 for (i = 0; i < 16; i++) { 487 if (as->pins[i] <= 0) 488 continue; 489 w1 = hdaa_widget_get(devinfo, as->pins[i]); 490 if (w1 == NULL || w1->enable == 0) 491 continue; 492 if (w1->wclass.pin.connected == 0) 493 continue; 494 prio = (w1->wclass.pin.connected == 1) ? 2 : 1; 495 if (prio < bestprio) 496 continue; 497 if (prio > bestprio) { 498 mask = 0; 499 bestprio = prio; 500 } 501 mask |= (1 << w1->ossdev); 502 fullmask |= (1 << w1->ossdev); 503 } 504 if (mask == 0) 505 return; 506 /* Prefer newly connected input. */ 507 if (w != NULL && (mask & (1 << w->ossdev))) 508 mask = (1 << w->ossdev); 509 /* Prefer previously selected input */ 510 if (mask & pdevinfo->recsrc) 511 mask &= pdevinfo->recsrc; 512 /* Prefer mic. */ 513 if (mask & SOUND_MASK_MIC) 514 mask = SOUND_MASK_MIC; 515 /* Prefer monitor (2nd mic). */ 516 if (mask & SOUND_MASK_MONITOR) 517 mask = SOUND_MASK_MONITOR; 518 /* Just take first one. */ 519 mask = (1 << (ffs(mask) - 1)); 520 HDA_BOOTVERBOSE( 521 hdaa_audio_ctl_ossmixer_mask2allname(mask, buf, sizeof(buf)); 522 device_printf(pdevinfo->dev, 523 "Automatically set rec source to: %s\n", buf); 524 ); 525 hdaa_unlock(devinfo); 526 mix_setrecsrc(pdevinfo->mixer, mask); 527 hdaa_lock(devinfo); 528 } 529 530 /* 531 * Jack presence detection event handler. 532 */ 533 static void 534 hdaa_presence_handler(struct hdaa_widget *w) 535 { 536 struct hdaa_devinfo *devinfo = w->devinfo; 537 struct hdaa_audio_as *as; 538 uint32_t res; 539 int connected, old; 540 541 if (w->enable == 0 || w->type != 542 HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 543 return; 544 545 if (HDA_PARAM_PIN_CAP_PRESENCE_DETECT_CAP(w->wclass.pin.cap) == 0 || 546 (HDA_CONFIG_DEFAULTCONF_MISC(w->wclass.pin.config) & 1) != 0) 547 return; 548 549 res = hda_command(devinfo->dev, HDA_CMD_GET_PIN_SENSE(0, w->nid)); 550 connected = (res & HDA_CMD_GET_PIN_SENSE_PRESENCE_DETECT) != 0; 551 if (devinfo->quirks & HDAA_QUIRK_SENSEINV) 552 connected = !connected; 553 old = w->wclass.pin.connected; 554 if (connected == old) 555 return; 556 w->wclass.pin.connected = connected; 557 HDA_BOOTVERBOSE( 558 if (connected || old != 2) { 559 device_printf(devinfo->dev, 560 "Pin sense: nid=%d sense=0x%08x (%sconnected)\n", 561 w->nid, res, !connected ? "dis" : ""); 562 } 563 ); 564 565 as = &devinfo->as[w->bindas]; 566 if (as->hpredir >= 0 && as->pins[15] == w->nid) 567 hdaa_hpredir_handler(w); 568 if (as->dir == HDAA_CTL_IN && old != 2) 569 hdaa_autorecsrc_handler(as, w); 570 if (old != 2) 571 hdaa_channels_handler(as); 572 } 573 574 /* 575 * Callback for poll based presence detection. 576 */ 577 static void 578 hdaa_jack_poll_callback(void *arg) 579 { 580 struct hdaa_devinfo *devinfo = arg; 581 struct hdaa_widget *w; 582 int i; 583 584 hdaa_lock(devinfo); 585 if (devinfo->poll_ival == 0) { 586 hdaa_unlock(devinfo); 587 return; 588 } 589 for (i = 0; i < devinfo->ascnt; i++) { 590 if (devinfo->as[i].hpredir < 0) 591 continue; 592 w = hdaa_widget_get(devinfo, devinfo->as[i].pins[15]); 593 if (w == NULL || w->enable == 0 || w->type != 594 HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 595 continue; 596 hdaa_presence_handler(w); 597 } 598 callout_reset(&devinfo->poll_jack, devinfo->poll_ival, 599 hdaa_jack_poll_callback, devinfo); 600 hdaa_unlock(devinfo); 601 } 602 603 static void 604 hdaa_eld_dump(struct hdaa_widget *w) 605 { 606 struct hdaa_devinfo *devinfo = w->devinfo; 607 device_t dev = devinfo->dev; 608 uint8_t *sad; 609 int len, mnl, i, sadc, fmt; 610 611 if (w->eld == NULL || w->eld_len < 4) 612 return; 613 device_printf(dev, 614 "ELD nid=%d: ELD_Ver=%u Baseline_ELD_Len=%u\n", 615 w->nid, w->eld[0] >> 3, w->eld[2]); 616 if ((w->eld[0] >> 3) != 0x02) 617 return; 618 len = min(w->eld_len, (u_int)w->eld[2] * 4); 619 mnl = w->eld[4] & 0x1f; 620 device_printf(dev, 621 "ELD nid=%d: CEA_EDID_Ver=%u MNL=%u\n", 622 w->nid, w->eld[4] >> 5, mnl); 623 sadc = w->eld[5] >> 4; 624 device_printf(dev, 625 "ELD nid=%d: SAD_Count=%u Conn_Type=%u S_AI=%u HDCP=%u\n", 626 w->nid, sadc, (w->eld[5] >> 2) & 0x3, 627 (w->eld[5] >> 1) & 0x1, w->eld[5] & 0x1); 628 device_printf(dev, 629 "ELD nid=%d: Aud_Synch_Delay=%ums\n", 630 w->nid, w->eld[6] * 2); 631 device_printf(dev, 632 "ELD nid=%d: Channels=0x%b\n", 633 w->nid, w->eld[7], 634 "\020\07RLRC\06FLRC\05RC\04RLR\03FC\02LFE\01FLR"); 635 device_printf(dev, 636 "ELD nid=%d: Port_ID=0x%02x%02x%02x%02x%02x%02x%02x%02x\n", 637 w->nid, w->eld[8], w->eld[9], w->eld[10], w->eld[11], 638 w->eld[12], w->eld[13], w->eld[14], w->eld[15]); 639 device_printf(dev, 640 "ELD nid=%d: Manufacturer_Name=0x%02x%02x\n", 641 w->nid, w->eld[16], w->eld[17]); 642 device_printf(dev, 643 "ELD nid=%d: Product_Code=0x%02x%02x\n", 644 w->nid, w->eld[18], w->eld[19]); 645 device_printf(dev, 646 "ELD nid=%d: Monitor_Name_String='%.*s'\n", 647 w->nid, mnl, &w->eld[20]); 648 for (i = 0; i < sadc; i++) { 649 sad = &w->eld[20 + mnl + i * 3]; 650 fmt = (sad[0] >> 3) & 0x0f; 651 if (fmt == HDA_HDMI_CODING_TYPE_REF_CTX) { 652 fmt = (sad[2] >> 3) & 0x1f; 653 if (fmt < 1 || fmt > 3) 654 fmt = 0; 655 else 656 fmt += 14; 657 } 658 device_printf(dev, 659 "ELD nid=%d: %s %dch freqs=0x%b", 660 w->nid, HDA_HDMI_CODING_TYPES[fmt], (sad[0] & 0x07) + 1, 661 sad[1], "\020\007192\006176\00596\00488\00348\00244\00132"); 662 switch (fmt) { 663 case HDA_HDMI_CODING_TYPE_LPCM: 664 printf(" sizes=0x%b", 665 sad[2] & 0x07, "\020\00324\00220\00116"); 666 break; 667 case HDA_HDMI_CODING_TYPE_AC3: 668 case HDA_HDMI_CODING_TYPE_MPEG1: 669 case HDA_HDMI_CODING_TYPE_MP3: 670 case HDA_HDMI_CODING_TYPE_MPEG2: 671 case HDA_HDMI_CODING_TYPE_AACLC: 672 case HDA_HDMI_CODING_TYPE_DTS: 673 case HDA_HDMI_CODING_TYPE_ATRAC: 674 printf(" max_bitrate=%d", sad[2] * 8000); 675 break; 676 case HDA_HDMI_CODING_TYPE_WMAPRO: 677 printf(" profile=%d", sad[2] & 0x07); 678 break; 679 } 680 printf("\n"); 681 } 682 } 683 684 static void 685 hdaa_eld_handler(struct hdaa_widget *w) 686 { 687 struct hdaa_devinfo *devinfo = w->devinfo; 688 uint32_t res; 689 int i; 690 691 if (w->enable == 0 || w->type != 692 HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 693 return; 694 695 if (HDA_PARAM_PIN_CAP_PRESENCE_DETECT_CAP(w->wclass.pin.cap) == 0 || 696 (HDA_CONFIG_DEFAULTCONF_MISC(w->wclass.pin.config) & 1) != 0) 697 return; 698 699 res = hda_command(devinfo->dev, HDA_CMD_GET_PIN_SENSE(0, w->nid)); 700 if ((w->eld != 0) == ((res & HDA_CMD_GET_PIN_SENSE_ELD_VALID) != 0)) 701 return; 702 if (w->eld != NULL) { 703 w->eld_len = 0; 704 free(w->eld, M_HDAA); 705 w->eld = NULL; 706 } 707 HDA_BOOTVERBOSE( 708 device_printf(devinfo->dev, 709 "Pin sense: nid=%d sense=0x%08x " 710 "(%sconnected, ELD %svalid)\n", 711 w->nid, res, 712 (res & HDA_CMD_GET_PIN_SENSE_PRESENCE_DETECT) ? "" : "dis", 713 (res & HDA_CMD_GET_PIN_SENSE_ELD_VALID) ? "" : "in"); 714 ); 715 if ((res & HDA_CMD_GET_PIN_SENSE_ELD_VALID) == 0) 716 return; 717 718 res = hda_command(devinfo->dev, 719 HDA_CMD_GET_HDMI_DIP_SIZE(0, w->nid, 0x08)); 720 if (res == HDA_INVALID) 721 return; 722 w->eld_len = res & 0xff; 723 if (w->eld_len != 0) 724 w->eld = malloc(w->eld_len, M_HDAA, M_ZERO | M_NOWAIT); 725 if (w->eld == NULL) { 726 w->eld_len = 0; 727 return; 728 } 729 730 for (i = 0; i < w->eld_len; i++) { 731 res = hda_command(devinfo->dev, 732 HDA_CMD_GET_HDMI_ELDD(0, w->nid, i)); 733 if (res & 0x80000000) 734 w->eld[i] = res & 0xff; 735 } 736 HDA_BOOTVERBOSE( 737 hdaa_eld_dump(w); 738 ); 739 hdaa_channels_handler(&devinfo->as[w->bindas]); 740 } 741 742 /* 743 * Pin sense initializer. 744 */ 745 static void 746 hdaa_sense_init(struct hdaa_devinfo *devinfo) 747 { 748 struct hdaa_audio_as *as; 749 struct hdaa_widget *w; 750 int i, poll = 0; 751 752 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 753 w = hdaa_widget_get(devinfo, i); 754 if (w == NULL || w->enable == 0 || w->type != 755 HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 756 continue; 757 if (HDA_PARAM_AUDIO_WIDGET_CAP_UNSOL_CAP(w->param.widget_cap)) { 758 if (w->unsol < 0) 759 w->unsol = HDAC_UNSOL_ALLOC( 760 device_get_parent(devinfo->dev), 761 devinfo->dev, w->nid); 762 hda_command(devinfo->dev, 763 HDA_CMD_SET_UNSOLICITED_RESPONSE(0, w->nid, 764 HDA_CMD_SET_UNSOLICITED_RESPONSE_ENABLE | w->unsol)); 765 } 766 as = &devinfo->as[w->bindas]; 767 if (as->hpredir >= 0 && as->pins[15] == w->nid) { 768 if (HDA_PARAM_PIN_CAP_PRESENCE_DETECT_CAP(w->wclass.pin.cap) == 0 || 769 (HDA_CONFIG_DEFAULTCONF_MISC(w->wclass.pin.config) & 1) != 0) { 770 device_printf(devinfo->dev, 771 "No presence detection support at nid %d\n", 772 w->nid); 773 } else { 774 if (w->unsol < 0) 775 poll = 1; 776 HDA_BOOTVERBOSE( 777 device_printf(devinfo->dev, 778 "Headphones redirection for " 779 "association %d nid=%d using %s.\n", 780 w->bindas, w->nid, 781 (w->unsol < 0) ? "polling" : 782 "unsolicited responses"); 783 ); 784 } 785 } 786 hdaa_presence_handler(w); 787 if (!HDA_PARAM_PIN_CAP_DP(w->wclass.pin.cap) && 788 !HDA_PARAM_PIN_CAP_HDMI(w->wclass.pin.cap)) 789 continue; 790 hdaa_eld_handler(w); 791 } 792 if (poll) { 793 callout_reset(&devinfo->poll_jack, 1, 794 hdaa_jack_poll_callback, devinfo); 795 } 796 } 797 798 static void 799 hdaa_sense_deinit(struct hdaa_devinfo *devinfo) 800 { 801 struct hdaa_widget *w; 802 int i; 803 804 callout_stop(&devinfo->poll_jack); 805 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 806 w = hdaa_widget_get(devinfo, i); 807 if (w == NULL || w->enable == 0 || w->type != 808 HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 809 continue; 810 if (w->unsol < 0) 811 continue; 812 hda_command(devinfo->dev, 813 HDA_CMD_SET_UNSOLICITED_RESPONSE(0, w->nid, 0)); 814 HDAC_UNSOL_FREE( 815 device_get_parent(devinfo->dev), devinfo->dev, 816 w->unsol); 817 w->unsol = -1; 818 } 819 } 820 821 uint32_t 822 hdaa_widget_pin_patch(uint32_t config, const char *str) 823 { 824 char buf[256]; 825 char *key, *value, *rest, *bad; 826 int ival, i; 827 828 strlcpy(buf, str, sizeof(buf)); 829 rest = buf; 830 while ((key = strsep(&rest, "=")) != NULL) { 831 value = strsep(&rest, " \t"); 832 if (value == NULL) 833 break; 834 ival = strtol(value, &bad, 10); 835 if (strcmp(key, "seq") == 0) { 836 config &= ~HDA_CONFIG_DEFAULTCONF_SEQUENCE_MASK; 837 config |= ((ival << HDA_CONFIG_DEFAULTCONF_SEQUENCE_SHIFT) & 838 HDA_CONFIG_DEFAULTCONF_SEQUENCE_MASK); 839 } else if (strcmp(key, "as") == 0) { 840 config &= ~HDA_CONFIG_DEFAULTCONF_ASSOCIATION_MASK; 841 config |= ((ival << HDA_CONFIG_DEFAULTCONF_ASSOCIATION_SHIFT) & 842 HDA_CONFIG_DEFAULTCONF_ASSOCIATION_MASK); 843 } else if (strcmp(key, "misc") == 0) { 844 config &= ~HDA_CONFIG_DEFAULTCONF_MISC_MASK; 845 config |= ((ival << HDA_CONFIG_DEFAULTCONF_MISC_SHIFT) & 846 HDA_CONFIG_DEFAULTCONF_MISC_MASK); 847 } else if (strcmp(key, "color") == 0) { 848 config &= ~HDA_CONFIG_DEFAULTCONF_COLOR_MASK; 849 if (bad[0] == 0) { 850 config |= ((ival << HDA_CONFIG_DEFAULTCONF_COLOR_SHIFT) & 851 HDA_CONFIG_DEFAULTCONF_COLOR_MASK); 852 } 853 for (i = 0; i < 16; i++) { 854 if (strcasecmp(HDA_COLORS[i], value) == 0) { 855 config |= (i << HDA_CONFIG_DEFAULTCONF_COLOR_SHIFT); 856 break; 857 } 858 } 859 } else if (strcmp(key, "ctype") == 0) { 860 config &= ~HDA_CONFIG_DEFAULTCONF_CONNECTION_TYPE_MASK; 861 if (bad[0] == 0) { 862 config |= ((ival << HDA_CONFIG_DEFAULTCONF_CONNECTION_TYPE_SHIFT) & 863 HDA_CONFIG_DEFAULTCONF_CONNECTION_TYPE_MASK); 864 } 865 for (i = 0; i < 16; i++) { 866 if (strcasecmp(HDA_CONNECTORS[i], value) == 0) { 867 config |= (i << HDA_CONFIG_DEFAULTCONF_CONNECTION_TYPE_SHIFT); 868 break; 869 } 870 } 871 } else if (strcmp(key, "device") == 0) { 872 config &= ~HDA_CONFIG_DEFAULTCONF_DEVICE_MASK; 873 if (bad[0] == 0) { 874 config |= ((ival << HDA_CONFIG_DEFAULTCONF_DEVICE_SHIFT) & 875 HDA_CONFIG_DEFAULTCONF_DEVICE_MASK); 876 continue; 877 } 878 for (i = 0; i < 16; i++) { 879 if (strcasecmp(HDA_DEVS[i], value) == 0) { 880 config |= (i << HDA_CONFIG_DEFAULTCONF_DEVICE_SHIFT); 881 break; 882 } 883 } 884 } else if (strcmp(key, "loc") == 0) { 885 config &= ~HDA_CONFIG_DEFAULTCONF_LOCATION_MASK; 886 if (bad[0] == 0) { 887 config |= ((ival << HDA_CONFIG_DEFAULTCONF_LOCATION_SHIFT) & 888 HDA_CONFIG_DEFAULTCONF_LOCATION_MASK); 889 continue; 890 } 891 for (i = 0; i < 64; i++) { 892 if (strcasecmp(HDA_LOCS[i], value) == 0) { 893 config |= (i << HDA_CONFIG_DEFAULTCONF_LOCATION_SHIFT); 894 break; 895 } 896 } 897 } else if (strcmp(key, "conn") == 0) { 898 config &= ~HDA_CONFIG_DEFAULTCONF_CONNECTIVITY_MASK; 899 if (bad[0] == 0) { 900 config |= ((ival << HDA_CONFIG_DEFAULTCONF_CONNECTIVITY_SHIFT) & 901 HDA_CONFIG_DEFAULTCONF_CONNECTIVITY_MASK); 902 continue; 903 } 904 for (i = 0; i < 4; i++) { 905 if (strcasecmp(HDA_CONNS[i], value) == 0) { 906 config |= (i << HDA_CONFIG_DEFAULTCONF_CONNECTIVITY_SHIFT); 907 break; 908 } 909 } 910 } 911 } 912 return (config); 913 } 914 915 uint32_t 916 hdaa_gpio_patch(uint32_t gpio, const char *str) 917 { 918 char buf[256]; 919 char *key, *value, *rest; 920 int ikey, i; 921 922 strlcpy(buf, str, sizeof(buf)); 923 rest = buf; 924 while ((key = strsep(&rest, "=")) != NULL) { 925 value = strsep(&rest, " \t"); 926 if (value == NULL) 927 break; 928 ikey = strtol(key, NULL, 10); 929 if (ikey < 0 || ikey > 7) 930 continue; 931 for (i = 0; i < 7; i++) { 932 if (strcasecmp(HDA_GPIO_ACTIONS[i], value) == 0) { 933 gpio &= ~HDAA_GPIO_MASK(ikey); 934 gpio |= i << HDAA_GPIO_SHIFT(ikey); 935 break; 936 } 937 } 938 } 939 return (gpio); 940 } 941 942 static void 943 hdaa_local_patch_pin(struct hdaa_widget *w) 944 { 945 device_t dev = w->devinfo->dev; 946 const char *res = NULL; 947 uint32_t config, orig; 948 char buf[32]; 949 950 config = orig = w->wclass.pin.config; 951 snprintf(buf, sizeof(buf), "cad%u.nid%u.config", 952 hda_get_codec_id(dev), w->nid); 953 if (resource_string_value(device_get_name( 954 device_get_parent(device_get_parent(dev))), 955 device_get_unit(device_get_parent(device_get_parent(dev))), 956 buf, &res) == 0) { 957 if (strncmp(res, "0x", 2) == 0) { 958 config = strtol(res + 2, NULL, 16); 959 } else { 960 config = hdaa_widget_pin_patch(config, res); 961 } 962 } 963 snprintf(buf, sizeof(buf), "nid%u.config", w->nid); 964 if (resource_string_value(device_get_name(dev), device_get_unit(dev), 965 buf, &res) == 0) { 966 if (strncmp(res, "0x", 2) == 0) { 967 config = strtol(res + 2, NULL, 16); 968 } else { 969 config = hdaa_widget_pin_patch(config, res); 970 } 971 } 972 HDA_BOOTVERBOSE( 973 if (config != orig) 974 device_printf(w->devinfo->dev, 975 "Patching pin config nid=%u 0x%08x -> 0x%08x\n", 976 w->nid, orig, config); 977 ); 978 w->wclass.pin.newconf = w->wclass.pin.config = config; 979 } 980 981 static void 982 hdaa_dump_audio_formats_sb(struct sbuf *sb, uint32_t fcap, uint32_t pcmcap) 983 { 984 uint32_t cap; 985 986 cap = fcap; 987 if (cap != 0) { 988 sbuf_printf(sb, " Stream cap: 0x%08x", cap); 989 if (HDA_PARAM_SUPP_STREAM_FORMATS_AC3(cap)) 990 sbuf_printf(sb, " AC3"); 991 if (HDA_PARAM_SUPP_STREAM_FORMATS_FLOAT32(cap)) 992 sbuf_printf(sb, " FLOAT32"); 993 if (HDA_PARAM_SUPP_STREAM_FORMATS_PCM(cap)) 994 sbuf_printf(sb, " PCM"); 995 sbuf_printf(sb, "\n"); 996 } 997 cap = pcmcap; 998 if (cap != 0) { 999 sbuf_printf(sb, " PCM cap: 0x%08x", cap); 1000 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_8BIT(cap)) 1001 sbuf_printf(sb, " 8"); 1002 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_16BIT(cap)) 1003 sbuf_printf(sb, " 16"); 1004 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_20BIT(cap)) 1005 sbuf_printf(sb, " 20"); 1006 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_24BIT(cap)) 1007 sbuf_printf(sb, " 24"); 1008 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_32BIT(cap)) 1009 sbuf_printf(sb, " 32"); 1010 sbuf_printf(sb, " bits,"); 1011 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_8KHZ(cap)) 1012 sbuf_printf(sb, " 8"); 1013 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_11KHZ(cap)) 1014 sbuf_printf(sb, " 11"); 1015 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_16KHZ(cap)) 1016 sbuf_printf(sb, " 16"); 1017 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_22KHZ(cap)) 1018 sbuf_printf(sb, " 22"); 1019 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_32KHZ(cap)) 1020 sbuf_printf(sb, " 32"); 1021 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_44KHZ(cap)) 1022 sbuf_printf(sb, " 44"); 1023 sbuf_printf(sb, " 48"); 1024 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_88KHZ(cap)) 1025 sbuf_printf(sb, " 88"); 1026 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_96KHZ(cap)) 1027 sbuf_printf(sb, " 96"); 1028 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_176KHZ(cap)) 1029 sbuf_printf(sb, " 176"); 1030 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_192KHZ(cap)) 1031 sbuf_printf(sb, " 192"); 1032 sbuf_printf(sb, " KHz\n"); 1033 } 1034 } 1035 1036 static void 1037 hdaa_dump_pin_sb(struct sbuf *sb, struct hdaa_widget *w) 1038 { 1039 uint32_t pincap, conf; 1040 1041 pincap = w->wclass.pin.cap; 1042 1043 sbuf_printf(sb, " Pin cap: 0x%08x", pincap); 1044 if (HDA_PARAM_PIN_CAP_IMP_SENSE_CAP(pincap)) 1045 sbuf_printf(sb, " ISC"); 1046 if (HDA_PARAM_PIN_CAP_TRIGGER_REQD(pincap)) 1047 sbuf_printf(sb, " TRQD"); 1048 if (HDA_PARAM_PIN_CAP_PRESENCE_DETECT_CAP(pincap)) 1049 sbuf_printf(sb, " PDC"); 1050 if (HDA_PARAM_PIN_CAP_HEADPHONE_CAP(pincap)) 1051 sbuf_printf(sb, " HP"); 1052 if (HDA_PARAM_PIN_CAP_OUTPUT_CAP(pincap)) 1053 sbuf_printf(sb, " OUT"); 1054 if (HDA_PARAM_PIN_CAP_INPUT_CAP(pincap)) 1055 sbuf_printf(sb, " IN"); 1056 if (HDA_PARAM_PIN_CAP_BALANCED_IO_PINS(pincap)) 1057 sbuf_printf(sb, " BAL"); 1058 if (HDA_PARAM_PIN_CAP_HDMI(pincap)) 1059 sbuf_printf(sb, " HDMI"); 1060 if (HDA_PARAM_PIN_CAP_VREF_CTRL(pincap)) { 1061 sbuf_printf(sb, " VREF["); 1062 if (HDA_PARAM_PIN_CAP_VREF_CTRL_50(pincap)) 1063 sbuf_printf(sb, " 50"); 1064 if (HDA_PARAM_PIN_CAP_VREF_CTRL_80(pincap)) 1065 sbuf_printf(sb, " 80"); 1066 if (HDA_PARAM_PIN_CAP_VREF_CTRL_100(pincap)) 1067 sbuf_printf(sb, " 100"); 1068 if (HDA_PARAM_PIN_CAP_VREF_CTRL_GROUND(pincap)) 1069 sbuf_printf(sb, " GROUND"); 1070 if (HDA_PARAM_PIN_CAP_VREF_CTRL_HIZ(pincap)) 1071 sbuf_printf(sb, " HIZ"); 1072 sbuf_printf(sb, " ]"); 1073 } 1074 if (HDA_PARAM_PIN_CAP_EAPD_CAP(pincap)) 1075 sbuf_printf(sb, " EAPD"); 1076 if (HDA_PARAM_PIN_CAP_DP(pincap)) 1077 sbuf_printf(sb, " DP"); 1078 if (HDA_PARAM_PIN_CAP_HBR(pincap)) 1079 sbuf_printf(sb, " HBR"); 1080 sbuf_printf(sb, "\n"); 1081 conf = w->wclass.pin.config; 1082 sbuf_printf(sb, " Pin config: 0x%08x", conf); 1083 sbuf_printf(sb, " as=%d seq=%d " 1084 "device=%s conn=%s ctype=%s loc=%s color=%s misc=%d\n", 1085 HDA_CONFIG_DEFAULTCONF_ASSOCIATION(conf), 1086 HDA_CONFIG_DEFAULTCONF_SEQUENCE(conf), 1087 HDA_DEVS[HDA_CONFIG_DEFAULTCONF_DEVICE(conf)], 1088 HDA_CONNS[HDA_CONFIG_DEFAULTCONF_CONNECTIVITY(conf)], 1089 HDA_CONNECTORS[HDA_CONFIG_DEFAULTCONF_CONNECTION_TYPE(conf)], 1090 HDA_LOCS[HDA_CONFIG_DEFAULTCONF_LOCATION(conf)], 1091 HDA_COLORS[HDA_CONFIG_DEFAULTCONF_COLOR(conf)], 1092 HDA_CONFIG_DEFAULTCONF_MISC(conf)); 1093 sbuf_printf(sb, " Pin control: 0x%08x", w->wclass.pin.ctrl); 1094 if (w->wclass.pin.ctrl & HDA_CMD_SET_PIN_WIDGET_CTRL_HPHN_ENABLE) 1095 sbuf_printf(sb, " HP"); 1096 if (w->wclass.pin.ctrl & HDA_CMD_SET_PIN_WIDGET_CTRL_IN_ENABLE) 1097 sbuf_printf(sb, " IN"); 1098 if (w->wclass.pin.ctrl & HDA_CMD_SET_PIN_WIDGET_CTRL_OUT_ENABLE) 1099 sbuf_printf(sb, " OUT"); 1100 if (HDA_PARAM_AUDIO_WIDGET_CAP_DIGITAL(w->param.widget_cap)) { 1101 if ((w->wclass.pin.ctrl & 1102 HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE_MASK) == 0x03) 1103 sbuf_printf(sb, " HBR"); 1104 else if ((w->wclass.pin.ctrl & 1105 HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE_MASK) != 0) 1106 sbuf_printf(sb, " EPTs"); 1107 } else { 1108 if ((w->wclass.pin.ctrl & 1109 HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE_MASK) != 0) 1110 sbuf_printf(sb, " VREFs"); 1111 } 1112 sbuf_printf(sb, "\n"); 1113 } 1114 1115 static void 1116 hdaa_dump_amp_sb(struct sbuf *sb, uint32_t cap, const char *banner) 1117 { 1118 int offset, size, step; 1119 1120 offset = HDA_PARAM_OUTPUT_AMP_CAP_OFFSET(cap); 1121 size = HDA_PARAM_OUTPUT_AMP_CAP_STEPSIZE(cap); 1122 step = HDA_PARAM_OUTPUT_AMP_CAP_NUMSTEPS(cap); 1123 sbuf_printf(sb, " %s amp: 0x%08x " 1124 "mute=%d step=%d size=%d offset=%d (%+d/%+ddB)\n", 1125 banner, cap, 1126 HDA_PARAM_OUTPUT_AMP_CAP_MUTE_CAP(cap), 1127 step, size, offset, 1128 ((0 - offset) * (size + 1)) / 4, 1129 ((step - offset) * (size + 1)) / 4); 1130 } 1131 1132 1133 static int 1134 hdaa_sysctl_caps(SYSCTL_HANDLER_ARGS) 1135 { 1136 struct hdaa_devinfo *devinfo; 1137 struct hdaa_widget *w, *cw; 1138 struct sbuf sb; 1139 char buf[64]; 1140 int error, j; 1141 1142 w = (struct hdaa_widget *)oidp->oid_arg1; 1143 devinfo = w->devinfo; 1144 sbuf_new_for_sysctl(&sb, NULL, 256, req); 1145 1146 sbuf_printf(&sb, "%s%s\n", w->name, 1147 (w->enable == 0) ? " [DISABLED]" : ""); 1148 sbuf_printf(&sb, " Widget cap: 0x%08x", 1149 w->param.widget_cap); 1150 if (w->param.widget_cap & 0x0ee1) { 1151 if (HDA_PARAM_AUDIO_WIDGET_CAP_LR_SWAP(w->param.widget_cap)) 1152 sbuf_printf(&sb, " LRSWAP"); 1153 if (HDA_PARAM_AUDIO_WIDGET_CAP_POWER_CTRL(w->param.widget_cap)) 1154 sbuf_printf(&sb, " PWR"); 1155 if (HDA_PARAM_AUDIO_WIDGET_CAP_DIGITAL(w->param.widget_cap)) 1156 sbuf_printf(&sb, " DIGITAL"); 1157 if (HDA_PARAM_AUDIO_WIDGET_CAP_UNSOL_CAP(w->param.widget_cap)) 1158 sbuf_printf(&sb, " UNSOL"); 1159 if (HDA_PARAM_AUDIO_WIDGET_CAP_PROC_WIDGET(w->param.widget_cap)) 1160 sbuf_printf(&sb, " PROC"); 1161 if (HDA_PARAM_AUDIO_WIDGET_CAP_STRIPE(w->param.widget_cap)) 1162 sbuf_printf(&sb, " STRIPE(x%d)", 1163 1 << (fls(w->wclass.conv.stripecap) - 1)); 1164 j = HDA_PARAM_AUDIO_WIDGET_CAP_CC(w->param.widget_cap); 1165 if (j == 1) 1166 sbuf_printf(&sb, " STEREO"); 1167 else if (j > 1) 1168 sbuf_printf(&sb, " %dCH", j + 1); 1169 } 1170 sbuf_printf(&sb, "\n"); 1171 if (w->bindas != -1) { 1172 sbuf_printf(&sb, " Association: %d (0x%04x)\n", 1173 w->bindas, w->bindseqmask); 1174 } 1175 if (w->ossmask != 0 || w->ossdev >= 0) { 1176 sbuf_printf(&sb, " OSS: %s", 1177 hdaa_audio_ctl_ossmixer_mask2allname(w->ossmask, buf, sizeof(buf))); 1178 if (w->ossdev >= 0) 1179 sbuf_printf(&sb, " (%s)", ossnames[w->ossdev]); 1180 sbuf_printf(&sb, "\n"); 1181 } 1182 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_OUTPUT || 1183 w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT) { 1184 hdaa_dump_audio_formats_sb(&sb, 1185 w->param.supp_stream_formats, 1186 w->param.supp_pcm_size_rate); 1187 } else if (w->type == 1188 HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX || w->waspin) 1189 hdaa_dump_pin_sb(&sb, w); 1190 if (w->param.eapdbtl != HDA_INVALID) { 1191 sbuf_printf(&sb, " EAPD: 0x%08x%s%s%s\n", 1192 w->param.eapdbtl, 1193 (w->param.eapdbtl & HDA_CMD_SET_EAPD_BTL_ENABLE_LR_SWAP) ? 1194 " LRSWAP" : "", 1195 (w->param.eapdbtl & HDA_CMD_SET_EAPD_BTL_ENABLE_EAPD) ? 1196 " EAPD" : "", 1197 (w->param.eapdbtl & HDA_CMD_SET_EAPD_BTL_ENABLE_BTL) ? 1198 " BTL" : ""); 1199 } 1200 if (HDA_PARAM_AUDIO_WIDGET_CAP_OUT_AMP(w->param.widget_cap) && 1201 w->param.outamp_cap != 0) 1202 hdaa_dump_amp_sb(&sb, w->param.outamp_cap, "Output"); 1203 if (HDA_PARAM_AUDIO_WIDGET_CAP_IN_AMP(w->param.widget_cap) && 1204 w->param.inamp_cap != 0) 1205 hdaa_dump_amp_sb(&sb, w->param.inamp_cap, " Input"); 1206 if (w->nconns > 0) 1207 sbuf_printf(&sb, " Connections: %d\n", w->nconns); 1208 for (j = 0; j < w->nconns; j++) { 1209 cw = hdaa_widget_get(devinfo, w->conns[j]); 1210 sbuf_printf(&sb, " + %s<- nid=%d [%s]", 1211 (w->connsenable[j] == 0)?"[DISABLED] ":"", 1212 w->conns[j], (cw == NULL) ? "GHOST!" : cw->name); 1213 if (cw == NULL) 1214 sbuf_printf(&sb, " [UNKNOWN]"); 1215 else if (cw->enable == 0) 1216 sbuf_printf(&sb, " [DISABLED]"); 1217 if (w->nconns > 1 && w->selconn == j && w->type != 1218 HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER) 1219 sbuf_printf(&sb, " (selected)"); 1220 sbuf_printf(&sb, "\n"); 1221 } 1222 error = sbuf_finish(&sb); 1223 sbuf_delete(&sb); 1224 return (error); 1225 } 1226 1227 static int 1228 hdaa_sysctl_config(SYSCTL_HANDLER_ARGS) 1229 { 1230 char buf[256]; 1231 int error; 1232 uint32_t conf; 1233 1234 conf = *(uint32_t *)oidp->oid_arg1; 1235 snprintf(buf, sizeof(buf), "0x%08x as=%d seq=%d " 1236 "device=%s conn=%s ctype=%s loc=%s color=%s misc=%d", 1237 conf, 1238 HDA_CONFIG_DEFAULTCONF_ASSOCIATION(conf), 1239 HDA_CONFIG_DEFAULTCONF_SEQUENCE(conf), 1240 HDA_DEVS[HDA_CONFIG_DEFAULTCONF_DEVICE(conf)], 1241 HDA_CONNS[HDA_CONFIG_DEFAULTCONF_CONNECTIVITY(conf)], 1242 HDA_CONNECTORS[HDA_CONFIG_DEFAULTCONF_CONNECTION_TYPE(conf)], 1243 HDA_LOCS[HDA_CONFIG_DEFAULTCONF_LOCATION(conf)], 1244 HDA_COLORS[HDA_CONFIG_DEFAULTCONF_COLOR(conf)], 1245 HDA_CONFIG_DEFAULTCONF_MISC(conf)); 1246 error = sysctl_handle_string(oidp, buf, sizeof(buf), req); 1247 if (error != 0 || req->newptr == NULL) 1248 return (error); 1249 if (strncmp(buf, "0x", 2) == 0) 1250 conf = strtol(buf + 2, NULL, 16); 1251 else 1252 conf = hdaa_widget_pin_patch(conf, buf); 1253 *(uint32_t *)oidp->oid_arg1 = conf; 1254 return (0); 1255 } 1256 1257 static void 1258 hdaa_config_fetch(const char *str, uint32_t *on, uint32_t *off) 1259 { 1260 int i = 0, j, k, len, inv; 1261 1262 for (;;) { 1263 while (str[i] != '\0' && 1264 (str[i] == ',' || isspace(str[i]) != 0)) 1265 i++; 1266 if (str[i] == '\0') 1267 return; 1268 j = i; 1269 while (str[j] != '\0' && 1270 !(str[j] == ',' || isspace(str[j]) != 0)) 1271 j++; 1272 len = j - i; 1273 if (len > 2 && strncmp(str + i, "no", 2) == 0) 1274 inv = 2; 1275 else 1276 inv = 0; 1277 for (k = 0; len > inv && k < nitems(hdaa_quirks_tab); k++) { 1278 if (strncmp(str + i + inv, 1279 hdaa_quirks_tab[k].key, len - inv) != 0) 1280 continue; 1281 if (len - inv != strlen(hdaa_quirks_tab[k].key)) 1282 continue; 1283 if (inv == 0) { 1284 *on |= hdaa_quirks_tab[k].value; 1285 *off &= ~hdaa_quirks_tab[k].value; 1286 } else { 1287 *off |= hdaa_quirks_tab[k].value; 1288 *on &= ~hdaa_quirks_tab[k].value; 1289 } 1290 break; 1291 } 1292 i = j; 1293 } 1294 } 1295 1296 static int 1297 hdaa_sysctl_quirks(SYSCTL_HANDLER_ARGS) 1298 { 1299 char buf[256]; 1300 int error, n = 0, i; 1301 uint32_t quirks, quirks_off; 1302 1303 quirks = *(uint32_t *)oidp->oid_arg1; 1304 buf[0] = 0; 1305 for (i = 0; i < nitems(hdaa_quirks_tab); i++) { 1306 if ((quirks & hdaa_quirks_tab[i].value) != 0) 1307 n += snprintf(buf + n, sizeof(buf) - n, "%s%s", 1308 n != 0 ? "," : "", hdaa_quirks_tab[i].key); 1309 } 1310 error = sysctl_handle_string(oidp, buf, sizeof(buf), req); 1311 if (error != 0 || req->newptr == NULL) 1312 return (error); 1313 if (strncmp(buf, "0x", 2) == 0) 1314 quirks = strtol(buf + 2, NULL, 16); 1315 else { 1316 quirks = 0; 1317 hdaa_config_fetch(buf, &quirks, &quirks_off); 1318 } 1319 *(uint32_t *)oidp->oid_arg1 = quirks; 1320 return (0); 1321 } 1322 1323 static void 1324 hdaa_local_patch(struct hdaa_devinfo *devinfo) 1325 { 1326 struct hdaa_widget *w; 1327 const char *res = NULL; 1328 uint32_t quirks_on = 0, quirks_off = 0, x; 1329 int i; 1330 1331 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 1332 w = hdaa_widget_get(devinfo, i); 1333 if (w == NULL) 1334 continue; 1335 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 1336 hdaa_local_patch_pin(w); 1337 } 1338 1339 if (resource_string_value(device_get_name(devinfo->dev), 1340 device_get_unit(devinfo->dev), "config", &res) == 0) { 1341 if (res != NULL && strlen(res) > 0) 1342 hdaa_config_fetch(res, &quirks_on, &quirks_off); 1343 devinfo->quirks |= quirks_on; 1344 devinfo->quirks &= ~quirks_off; 1345 } 1346 if (devinfo->newquirks == -1) 1347 devinfo->newquirks = devinfo->quirks; 1348 else 1349 devinfo->quirks = devinfo->newquirks; 1350 HDA_BOOTHVERBOSE( 1351 device_printf(devinfo->dev, 1352 "Config options: 0x%08x\n", devinfo->quirks); 1353 ); 1354 1355 if (resource_string_value(device_get_name(devinfo->dev), 1356 device_get_unit(devinfo->dev), "gpio_config", &res) == 0) { 1357 if (strncmp(res, "0x", 2) == 0) { 1358 devinfo->gpio = strtol(res + 2, NULL, 16); 1359 } else { 1360 devinfo->gpio = hdaa_gpio_patch(devinfo->gpio, res); 1361 } 1362 } 1363 if (devinfo->newgpio == -1) 1364 devinfo->newgpio = devinfo->gpio; 1365 else 1366 devinfo->gpio = devinfo->newgpio; 1367 if (devinfo->newgpo == -1) 1368 devinfo->newgpo = devinfo->gpo; 1369 else 1370 devinfo->gpo = devinfo->newgpo; 1371 HDA_BOOTHVERBOSE( 1372 device_printf(devinfo->dev, "GPIO config options:"); 1373 for (i = 0; i < 7; i++) { 1374 x = (devinfo->gpio & HDAA_GPIO_MASK(i)) >> HDAA_GPIO_SHIFT(i); 1375 if (x != 0) 1376 printf(" %d=%s", i, HDA_GPIO_ACTIONS[x]); 1377 } 1378 printf("\n"); 1379 ); 1380 } 1381 1382 static void 1383 hdaa_widget_connection_parse(struct hdaa_widget *w) 1384 { 1385 uint32_t res; 1386 int i, j, max, ents, entnum; 1387 nid_t nid = w->nid; 1388 nid_t cnid, addcnid, prevcnid; 1389 1390 w->nconns = 0; 1391 1392 res = hda_command(w->devinfo->dev, 1393 HDA_CMD_GET_PARAMETER(0, nid, HDA_PARAM_CONN_LIST_LENGTH)); 1394 1395 ents = HDA_PARAM_CONN_LIST_LENGTH_LIST_LENGTH(res); 1396 1397 if (ents < 1) 1398 return; 1399 1400 entnum = HDA_PARAM_CONN_LIST_LENGTH_LONG_FORM(res) ? 2 : 4; 1401 max = (sizeof(w->conns) / sizeof(w->conns[0])) - 1; 1402 prevcnid = 0; 1403 1404 #define CONN_RMASK(e) (1 << ((32 / (e)) - 1)) 1405 #define CONN_NMASK(e) (CONN_RMASK(e) - 1) 1406 #define CONN_RESVAL(r, e, n) ((r) >> ((32 / (e)) * (n))) 1407 #define CONN_RANGE(r, e, n) (CONN_RESVAL(r, e, n) & CONN_RMASK(e)) 1408 #define CONN_CNID(r, e, n) (CONN_RESVAL(r, e, n) & CONN_NMASK(e)) 1409 1410 for (i = 0; i < ents; i += entnum) { 1411 res = hda_command(w->devinfo->dev, 1412 HDA_CMD_GET_CONN_LIST_ENTRY(0, nid, i)); 1413 for (j = 0; j < entnum; j++) { 1414 cnid = CONN_CNID(res, entnum, j); 1415 if (cnid == 0) { 1416 if (w->nconns < ents) 1417 device_printf(w->devinfo->dev, 1418 "WARNING: nid=%d has zero cnid " 1419 "entnum=%d j=%d index=%d " 1420 "entries=%d found=%d res=0x%08x\n", 1421 nid, entnum, j, i, 1422 ents, w->nconns, res); 1423 else 1424 goto getconns_out; 1425 } 1426 if (cnid < w->devinfo->startnode || 1427 cnid >= w->devinfo->endnode) { 1428 HDA_BOOTVERBOSE( 1429 device_printf(w->devinfo->dev, 1430 "WARNING: nid=%d has cnid outside " 1431 "of the AFG range j=%d " 1432 "entnum=%d index=%d res=0x%08x\n", 1433 nid, j, entnum, i, res); 1434 ); 1435 } 1436 if (CONN_RANGE(res, entnum, j) == 0) 1437 addcnid = cnid; 1438 else if (prevcnid == 0 || prevcnid >= cnid) { 1439 device_printf(w->devinfo->dev, 1440 "WARNING: Invalid child range " 1441 "nid=%d index=%d j=%d entnum=%d " 1442 "prevcnid=%d cnid=%d res=0x%08x\n", 1443 nid, i, j, entnum, prevcnid, 1444 cnid, res); 1445 addcnid = cnid; 1446 } else 1447 addcnid = prevcnid + 1; 1448 while (addcnid <= cnid) { 1449 if (w->nconns > max) { 1450 device_printf(w->devinfo->dev, 1451 "Adding %d (nid=%d): " 1452 "Max connection reached! max=%d\n", 1453 addcnid, nid, max + 1); 1454 goto getconns_out; 1455 } 1456 w->connsenable[w->nconns] = 1; 1457 w->conns[w->nconns++] = addcnid++; 1458 } 1459 prevcnid = cnid; 1460 } 1461 } 1462 1463 getconns_out: 1464 return; 1465 } 1466 1467 static void 1468 hdaa_widget_parse(struct hdaa_widget *w) 1469 { 1470 device_t dev = w->devinfo->dev; 1471 uint32_t wcap, cap; 1472 nid_t nid = w->nid; 1473 char buf[64]; 1474 1475 w->param.widget_cap = wcap = hda_command(dev, 1476 HDA_CMD_GET_PARAMETER(0, nid, HDA_PARAM_AUDIO_WIDGET_CAP)); 1477 w->type = HDA_PARAM_AUDIO_WIDGET_CAP_TYPE(wcap); 1478 1479 hdaa_widget_connection_parse(w); 1480 1481 if (HDA_PARAM_AUDIO_WIDGET_CAP_OUT_AMP(wcap)) { 1482 if (HDA_PARAM_AUDIO_WIDGET_CAP_AMP_OVR(wcap)) 1483 w->param.outamp_cap = 1484 hda_command(dev, 1485 HDA_CMD_GET_PARAMETER(0, nid, 1486 HDA_PARAM_OUTPUT_AMP_CAP)); 1487 else 1488 w->param.outamp_cap = 1489 w->devinfo->outamp_cap; 1490 } else 1491 w->param.outamp_cap = 0; 1492 1493 if (HDA_PARAM_AUDIO_WIDGET_CAP_IN_AMP(wcap)) { 1494 if (HDA_PARAM_AUDIO_WIDGET_CAP_AMP_OVR(wcap)) 1495 w->param.inamp_cap = 1496 hda_command(dev, 1497 HDA_CMD_GET_PARAMETER(0, nid, 1498 HDA_PARAM_INPUT_AMP_CAP)); 1499 else 1500 w->param.inamp_cap = 1501 w->devinfo->inamp_cap; 1502 } else 1503 w->param.inamp_cap = 0; 1504 1505 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_OUTPUT || 1506 w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT) { 1507 if (HDA_PARAM_AUDIO_WIDGET_CAP_FORMAT_OVR(wcap)) { 1508 cap = hda_command(dev, 1509 HDA_CMD_GET_PARAMETER(0, nid, 1510 HDA_PARAM_SUPP_STREAM_FORMATS)); 1511 w->param.supp_stream_formats = (cap != 0) ? cap : 1512 w->devinfo->supp_stream_formats; 1513 cap = hda_command(dev, 1514 HDA_CMD_GET_PARAMETER(0, nid, 1515 HDA_PARAM_SUPP_PCM_SIZE_RATE)); 1516 w->param.supp_pcm_size_rate = (cap != 0) ? cap : 1517 w->devinfo->supp_pcm_size_rate; 1518 } else { 1519 w->param.supp_stream_formats = 1520 w->devinfo->supp_stream_formats; 1521 w->param.supp_pcm_size_rate = 1522 w->devinfo->supp_pcm_size_rate; 1523 } 1524 if (HDA_PARAM_AUDIO_WIDGET_CAP_STRIPE(w->param.widget_cap)) { 1525 w->wclass.conv.stripecap = hda_command(dev, 1526 HDA_CMD_GET_STRIPE_CONTROL(0, w->nid)) >> 20; 1527 } else 1528 w->wclass.conv.stripecap = 1; 1529 } else { 1530 w->param.supp_stream_formats = 0; 1531 w->param.supp_pcm_size_rate = 0; 1532 } 1533 1534 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) { 1535 w->wclass.pin.original = w->wclass.pin.newconf = 1536 w->wclass.pin.config = hda_command(dev, 1537 HDA_CMD_GET_CONFIGURATION_DEFAULT(0, w->nid)); 1538 w->wclass.pin.cap = hda_command(dev, 1539 HDA_CMD_GET_PARAMETER(0, w->nid, HDA_PARAM_PIN_CAP)); 1540 w->wclass.pin.ctrl = hda_command(dev, 1541 HDA_CMD_GET_PIN_WIDGET_CTRL(0, nid)); 1542 w->wclass.pin.connected = 2; 1543 if (HDA_PARAM_PIN_CAP_EAPD_CAP(w->wclass.pin.cap)) { 1544 w->param.eapdbtl = hda_command(dev, 1545 HDA_CMD_GET_EAPD_BTL_ENABLE(0, nid)); 1546 w->param.eapdbtl &= 0x7; 1547 w->param.eapdbtl |= HDA_CMD_SET_EAPD_BTL_ENABLE_EAPD; 1548 } else 1549 w->param.eapdbtl = HDA_INVALID; 1550 } 1551 w->unsol = -1; 1552 1553 hdaa_unlock(w->devinfo); 1554 snprintf(buf, sizeof(buf), "nid%d", w->nid); 1555 SYSCTL_ADD_PROC(device_get_sysctl_ctx(dev), 1556 SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO, 1557 buf, CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_MPSAFE, 1558 w, 0, hdaa_sysctl_caps, "A", "Node capabilities"); 1559 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) { 1560 snprintf(buf, sizeof(buf), "nid%d_config", w->nid); 1561 SYSCTL_ADD_PROC(device_get_sysctl_ctx(dev), 1562 SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO, 1563 buf, CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_MPSAFE, 1564 &w->wclass.pin.newconf, 0, hdaa_sysctl_config, "A", 1565 "Current pin configuration"); 1566 snprintf(buf, sizeof(buf), "nid%d_original", w->nid); 1567 SYSCTL_ADD_PROC(device_get_sysctl_ctx(dev), 1568 SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO, 1569 buf, CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_MPSAFE, 1570 &w->wclass.pin.original, 0, hdaa_sysctl_config, "A", 1571 "Original pin configuration"); 1572 } 1573 hdaa_lock(w->devinfo); 1574 } 1575 1576 static void 1577 hdaa_widget_postprocess(struct hdaa_widget *w) 1578 { 1579 const char *typestr; 1580 1581 w->type = HDA_PARAM_AUDIO_WIDGET_CAP_TYPE(w->param.widget_cap); 1582 switch (w->type) { 1583 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_OUTPUT: 1584 typestr = "audio output"; 1585 break; 1586 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT: 1587 typestr = "audio input"; 1588 break; 1589 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER: 1590 typestr = "audio mixer"; 1591 break; 1592 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_SELECTOR: 1593 typestr = "audio selector"; 1594 break; 1595 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX: 1596 typestr = "pin"; 1597 break; 1598 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_POWER_WIDGET: 1599 typestr = "power widget"; 1600 break; 1601 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_VOLUME_WIDGET: 1602 typestr = "volume widget"; 1603 break; 1604 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_BEEP_WIDGET: 1605 typestr = "beep widget"; 1606 break; 1607 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_VENDOR_WIDGET: 1608 typestr = "vendor widget"; 1609 break; 1610 default: 1611 typestr = "unknown type"; 1612 break; 1613 } 1614 strlcpy(w->name, typestr, sizeof(w->name)); 1615 1616 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) { 1617 uint32_t config; 1618 const char *devstr; 1619 int conn, color; 1620 1621 config = w->wclass.pin.config; 1622 devstr = HDA_DEVS[(config & HDA_CONFIG_DEFAULTCONF_DEVICE_MASK) >> 1623 HDA_CONFIG_DEFAULTCONF_DEVICE_SHIFT]; 1624 conn = (config & HDA_CONFIG_DEFAULTCONF_CONNECTIVITY_MASK) >> 1625 HDA_CONFIG_DEFAULTCONF_CONNECTIVITY_SHIFT; 1626 color = (config & HDA_CONFIG_DEFAULTCONF_COLOR_MASK) >> 1627 HDA_CONFIG_DEFAULTCONF_COLOR_SHIFT; 1628 strlcat(w->name, ": ", sizeof(w->name)); 1629 strlcat(w->name, devstr, sizeof(w->name)); 1630 strlcat(w->name, " (", sizeof(w->name)); 1631 if (conn == 0 && color != 0 && color != 15) { 1632 strlcat(w->name, HDA_COLORS[color], sizeof(w->name)); 1633 strlcat(w->name, " ", sizeof(w->name)); 1634 } 1635 strlcat(w->name, HDA_CONNS[conn], sizeof(w->name)); 1636 strlcat(w->name, ")", sizeof(w->name)); 1637 } 1638 } 1639 1640 struct hdaa_widget * 1641 hdaa_widget_get(struct hdaa_devinfo *devinfo, nid_t nid) 1642 { 1643 if (devinfo == NULL || devinfo->widget == NULL || 1644 nid < devinfo->startnode || nid >= devinfo->endnode) 1645 return (NULL); 1646 return (&devinfo->widget[nid - devinfo->startnode]); 1647 } 1648 1649 static void 1650 hdaa_audio_ctl_amp_set_internal(struct hdaa_devinfo *devinfo, nid_t nid, 1651 int index, int lmute, int rmute, 1652 int left, int right, int dir) 1653 { 1654 uint16_t v = 0; 1655 1656 HDA_BOOTHVERBOSE( 1657 device_printf(devinfo->dev, 1658 "Setting amplifier nid=%d index=%d %s mute=%d/%d vol=%d/%d\n", 1659 nid,index,dir ? "in" : "out",lmute,rmute,left,right); 1660 ); 1661 if (left != right || lmute != rmute) { 1662 v = (1 << (15 - dir)) | (1 << 13) | (index << 8) | 1663 (lmute << 7) | left; 1664 hda_command(devinfo->dev, 1665 HDA_CMD_SET_AMP_GAIN_MUTE(0, nid, v)); 1666 v = (1 << (15 - dir)) | (1 << 12) | (index << 8) | 1667 (rmute << 7) | right; 1668 } else 1669 v = (1 << (15 - dir)) | (3 << 12) | (index << 8) | 1670 (lmute << 7) | left; 1671 1672 hda_command(devinfo->dev, 1673 HDA_CMD_SET_AMP_GAIN_MUTE(0, nid, v)); 1674 } 1675 1676 static void 1677 hdaa_audio_ctl_amp_set(struct hdaa_audio_ctl *ctl, uint32_t mute, 1678 int left, int right) 1679 { 1680 nid_t nid; 1681 int lmute, rmute; 1682 1683 nid = ctl->widget->nid; 1684 1685 /* Save new values if valid. */ 1686 if (mute != HDAA_AMP_MUTE_DEFAULT) 1687 ctl->muted = mute; 1688 if (left != HDAA_AMP_VOL_DEFAULT) 1689 ctl->left = left; 1690 if (right != HDAA_AMP_VOL_DEFAULT) 1691 ctl->right = right; 1692 /* Prepare effective values */ 1693 if (ctl->forcemute) { 1694 lmute = 1; 1695 rmute = 1; 1696 left = 0; 1697 right = 0; 1698 } else { 1699 lmute = HDAA_AMP_LEFT_MUTED(ctl->muted); 1700 rmute = HDAA_AMP_RIGHT_MUTED(ctl->muted); 1701 left = ctl->left; 1702 right = ctl->right; 1703 } 1704 /* Apply effective values */ 1705 if (ctl->dir & HDAA_CTL_OUT) 1706 hdaa_audio_ctl_amp_set_internal(ctl->widget->devinfo, nid, ctl->index, 1707 lmute, rmute, left, right, 0); 1708 if (ctl->dir & HDAA_CTL_IN) 1709 hdaa_audio_ctl_amp_set_internal(ctl->widget->devinfo, nid, ctl->index, 1710 lmute, rmute, left, right, 1); 1711 } 1712 1713 static void 1714 hdaa_widget_connection_select(struct hdaa_widget *w, uint8_t index) 1715 { 1716 if (w == NULL || w->nconns < 1 || index > (w->nconns - 1)) 1717 return; 1718 HDA_BOOTHVERBOSE( 1719 device_printf(w->devinfo->dev, 1720 "Setting selector nid=%d index=%d\n", w->nid, index); 1721 ); 1722 hda_command(w->devinfo->dev, 1723 HDA_CMD_SET_CONNECTION_SELECT_CONTROL(0, w->nid, index)); 1724 w->selconn = index; 1725 } 1726 1727 /**************************************************************************** 1728 * Device Methods 1729 ****************************************************************************/ 1730 1731 static void * 1732 hdaa_channel_init(kobj_t obj, void *data, struct snd_dbuf *b, 1733 struct pcm_channel *c, int dir) 1734 { 1735 struct hdaa_chan *ch = data; 1736 struct hdaa_pcm_devinfo *pdevinfo = ch->pdevinfo; 1737 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 1738 1739 hdaa_lock(devinfo); 1740 if (devinfo->quirks & HDAA_QUIRK_FIXEDRATE) { 1741 ch->caps.minspeed = ch->caps.maxspeed = 48000; 1742 ch->pcmrates[0] = 48000; 1743 ch->pcmrates[1] = 0; 1744 } 1745 ch->dir = dir; 1746 ch->b = b; 1747 ch->c = c; 1748 ch->blksz = pdevinfo->chan_size / pdevinfo->chan_blkcnt; 1749 ch->blkcnt = pdevinfo->chan_blkcnt; 1750 hdaa_unlock(devinfo); 1751 1752 if (sndbuf_alloc(ch->b, bus_get_dma_tag(devinfo->dev), 1753 hda_get_dma_nocache(devinfo->dev) ? BUS_DMA_NOCACHE : 0, 1754 pdevinfo->chan_size) != 0) 1755 return (NULL); 1756 1757 return (ch); 1758 } 1759 1760 static int 1761 hdaa_channel_setformat(kobj_t obj, void *data, uint32_t format) 1762 { 1763 struct hdaa_chan *ch = data; 1764 int i; 1765 1766 for (i = 0; ch->caps.fmtlist[i] != 0; i++) { 1767 if (format == ch->caps.fmtlist[i]) { 1768 ch->fmt = format; 1769 return (0); 1770 } 1771 } 1772 1773 return (EINVAL); 1774 } 1775 1776 static uint32_t 1777 hdaa_channel_setspeed(kobj_t obj, void *data, uint32_t speed) 1778 { 1779 struct hdaa_chan *ch = data; 1780 uint32_t spd = 0, threshold; 1781 int i; 1782 1783 /* First look for equal or multiple frequency. */ 1784 for (i = 0; ch->pcmrates[i] != 0; i++) { 1785 spd = ch->pcmrates[i]; 1786 if (speed != 0 && spd / speed * speed == spd) { 1787 ch->spd = spd; 1788 return (spd); 1789 } 1790 } 1791 /* If no match, just find nearest. */ 1792 for (i = 0; ch->pcmrates[i] != 0; i++) { 1793 spd = ch->pcmrates[i]; 1794 threshold = spd + ((ch->pcmrates[i + 1] != 0) ? 1795 ((ch->pcmrates[i + 1] - spd) >> 1) : 0); 1796 if (speed < threshold) 1797 break; 1798 } 1799 ch->spd = spd; 1800 return (spd); 1801 } 1802 1803 static uint16_t 1804 hdaa_stream_format(struct hdaa_chan *ch) 1805 { 1806 int i; 1807 uint16_t fmt; 1808 1809 fmt = 0; 1810 if (ch->fmt & AFMT_S16_LE) 1811 fmt |= ch->bit16 << 4; 1812 else if (ch->fmt & AFMT_S32_LE) 1813 fmt |= ch->bit32 << 4; 1814 else 1815 fmt |= 1 << 4; 1816 for (i = 0; i < HDA_RATE_TAB_LEN; i++) { 1817 if (hda_rate_tab[i].valid && ch->spd == hda_rate_tab[i].rate) { 1818 fmt |= hda_rate_tab[i].base; 1819 fmt |= hda_rate_tab[i].mul; 1820 fmt |= hda_rate_tab[i].div; 1821 break; 1822 } 1823 } 1824 fmt |= (AFMT_CHANNEL(ch->fmt) - 1); 1825 1826 return (fmt); 1827 } 1828 1829 static int 1830 hdaa_allowed_stripes(uint16_t fmt) 1831 { 1832 static const int bits[8] = { 8, 16, 20, 24, 32, 32, 32, 32 }; 1833 int size; 1834 1835 size = bits[(fmt >> 4) & 0x03]; 1836 size *= (fmt & 0x0f) + 1; 1837 size *= ((fmt >> 11) & 0x07) + 1; 1838 return (0xffffffffU >> (32 - fls(size / 8))); 1839 } 1840 1841 static void 1842 hdaa_audio_setup(struct hdaa_chan *ch) 1843 { 1844 struct hdaa_audio_as *as = &ch->devinfo->as[ch->as]; 1845 struct hdaa_widget *w, *wp; 1846 int i, j, k, chn, cchn, totalchn, totalextchn, c; 1847 uint16_t fmt, dfmt; 1848 /* Mapping channel pairs to codec pins/converters. */ 1849 const static uint16_t convmap[2][5] = 1850 /* 1.0 2.0 4.0 5.1 7.1 */ 1851 {{ 0x0010, 0x0001, 0x0201, 0x0231, 0x4231 }, /* no dup. */ 1852 { 0x0010, 0x0001, 0x2201, 0x2231, 0x4231 }}; /* side dup. */ 1853 /* Mapping formats to HDMI channel allocations. */ 1854 const static uint8_t hdmica[2][8] = 1855 /* 1 2 3 4 5 6 7 8 */ 1856 {{ 0x02, 0x00, 0x04, 0x08, 0x0a, 0x0e, 0x12, 0x12 }, /* x.0 */ 1857 { 0x01, 0x03, 0x01, 0x03, 0x09, 0x0b, 0x0f, 0x13 }}; /* x.1 */ 1858 /* Mapping formats to HDMI channels order. */ 1859 const static uint32_t hdmich[2][8] = 1860 /* 1 / 5 2 / 6 3 / 7 4 / 8 */ 1861 {{ 0xFFFF0F00, 0xFFFFFF10, 0xFFF2FF10, 0xFF32FF10, 1862 0xFF324F10, 0xF5324F10, 0x54326F10, 0x54326F10 }, /* x.0 */ 1863 { 0xFFFFF000, 0xFFFF0100, 0xFFFFF210, 0xFFFF2310, 1864 0xFF32F410, 0xFF324510, 0xF6324510, 0x76325410 }}; /* x.1 */ 1865 int convmapid = -1; 1866 nid_t nid; 1867 uint8_t csum; 1868 1869 totalchn = AFMT_CHANNEL(ch->fmt); 1870 totalextchn = AFMT_EXTCHANNEL(ch->fmt); 1871 HDA_BOOTHVERBOSE( 1872 device_printf(ch->pdevinfo->dev, 1873 "PCMDIR_%s: Stream setup fmt=%08x (%d.%d) speed=%d\n", 1874 (ch->dir == PCMDIR_PLAY) ? "PLAY" : "REC", 1875 ch->fmt, totalchn - totalextchn, totalextchn, ch->spd); 1876 ); 1877 fmt = hdaa_stream_format(ch); 1878 1879 /* Set channels to I/O converters mapping for known speaker setups. */ 1880 if ((as->pinset == 0x0007 || as->pinset == 0x0013) || /* Standard 5.1 */ 1881 (as->pinset == 0x0017)) /* Standard 7.1 */ 1882 convmapid = (ch->dir == PCMDIR_PLAY); 1883 1884 dfmt = HDA_CMD_SET_DIGITAL_CONV_FMT1_DIGEN; 1885 if (ch->fmt & AFMT_AC3) 1886 dfmt |= HDA_CMD_SET_DIGITAL_CONV_FMT1_NAUDIO; 1887 1888 chn = 0; 1889 for (i = 0; ch->io[i] != -1; i++) { 1890 w = hdaa_widget_get(ch->devinfo, ch->io[i]); 1891 if (w == NULL) 1892 continue; 1893 1894 /* If HP redirection is enabled, but failed to use same 1895 DAC, make last DAC to duplicate first one. */ 1896 if (as->fakeredir && i == (as->pincnt - 1)) { 1897 c = (ch->sid << 4); 1898 } else { 1899 /* Map channels to I/O converters, if set. */ 1900 if (convmapid >= 0) 1901 chn = (((convmap[convmapid][totalchn / 2] 1902 >> i * 4) & 0xf) - 1) * 2; 1903 if (chn < 0 || chn >= totalchn) { 1904 c = 0; 1905 } else { 1906 c = (ch->sid << 4) | chn; 1907 } 1908 } 1909 hda_command(ch->devinfo->dev, 1910 HDA_CMD_SET_CONV_FMT(0, ch->io[i], fmt)); 1911 if (HDA_PARAM_AUDIO_WIDGET_CAP_DIGITAL(w->param.widget_cap)) { 1912 hda_command(ch->devinfo->dev, 1913 HDA_CMD_SET_DIGITAL_CONV_FMT1(0, ch->io[i], dfmt)); 1914 } 1915 hda_command(ch->devinfo->dev, 1916 HDA_CMD_SET_CONV_STREAM_CHAN(0, ch->io[i], c)); 1917 if (HDA_PARAM_AUDIO_WIDGET_CAP_STRIPE(w->param.widget_cap)) { 1918 hda_command(ch->devinfo->dev, 1919 HDA_CMD_SET_STRIPE_CONTROL(0, w->nid, ch->stripectl)); 1920 } 1921 cchn = HDA_PARAM_AUDIO_WIDGET_CAP_CC(w->param.widget_cap); 1922 if (cchn > 1 && chn < totalchn) { 1923 cchn = min(cchn, totalchn - chn - 1); 1924 hda_command(ch->devinfo->dev, 1925 HDA_CMD_SET_CONV_CHAN_COUNT(0, ch->io[i], cchn)); 1926 } 1927 HDA_BOOTHVERBOSE( 1928 device_printf(ch->pdevinfo->dev, 1929 "PCMDIR_%s: Stream setup nid=%d: " 1930 "fmt=0x%04x, dfmt=0x%04x, chan=0x%04x, " 1931 "chan_count=0x%02x, stripe=%d\n", 1932 (ch->dir == PCMDIR_PLAY) ? "PLAY" : "REC", 1933 ch->io[i], fmt, dfmt, c, cchn, ch->stripectl); 1934 ); 1935 for (j = 0; j < 16; j++) { 1936 if (as->dacs[ch->asindex][j] != ch->io[i]) 1937 continue; 1938 nid = as->pins[j]; 1939 wp = hdaa_widget_get(ch->devinfo, nid); 1940 if (wp == NULL) 1941 continue; 1942 if (!HDA_PARAM_PIN_CAP_DP(wp->wclass.pin.cap) && 1943 !HDA_PARAM_PIN_CAP_HDMI(wp->wclass.pin.cap)) 1944 continue; 1945 1946 /* Set channel mapping. */ 1947 for (k = 0; k < 8; k++) { 1948 hda_command(ch->devinfo->dev, 1949 HDA_CMD_SET_HDMI_CHAN_SLOT(0, nid, 1950 (((hdmich[totalextchn == 0 ? 0 : 1][totalchn - 1] 1951 >> (k * 4)) & 0xf) << 4) | k)); 1952 } 1953 1954 /* 1955 * Enable High Bit Rate (HBR) Encoded Packet Type 1956 * (EPT), if supported and needed (8ch data). 1957 */ 1958 if (HDA_PARAM_PIN_CAP_HDMI(wp->wclass.pin.cap) && 1959 HDA_PARAM_PIN_CAP_HBR(wp->wclass.pin.cap)) { 1960 wp->wclass.pin.ctrl &= 1961 ~HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE_MASK; 1962 if ((ch->fmt & AFMT_AC3) && (cchn == 7)) 1963 wp->wclass.pin.ctrl |= 0x03; 1964 hda_command(ch->devinfo->dev, 1965 HDA_CMD_SET_PIN_WIDGET_CTRL(0, nid, 1966 wp->wclass.pin.ctrl)); 1967 } 1968 1969 /* Stop audio infoframe transmission. */ 1970 hda_command(ch->devinfo->dev, 1971 HDA_CMD_SET_HDMI_DIP_INDEX(0, nid, 0x00)); 1972 hda_command(ch->devinfo->dev, 1973 HDA_CMD_SET_HDMI_DIP_XMIT(0, nid, 0x00)); 1974 1975 /* Clear audio infoframe buffer. */ 1976 hda_command(ch->devinfo->dev, 1977 HDA_CMD_SET_HDMI_DIP_INDEX(0, nid, 0x00)); 1978 for (k = 0; k < 32; k++) 1979 hda_command(ch->devinfo->dev, 1980 HDA_CMD_SET_HDMI_DIP_DATA(0, nid, 0x00)); 1981 1982 /* Write HDMI/DisplayPort audio infoframe. */ 1983 hda_command(ch->devinfo->dev, 1984 HDA_CMD_SET_HDMI_DIP_INDEX(0, nid, 0x00)); 1985 if (w->eld != NULL && w->eld_len >= 6 && 1986 ((w->eld[5] >> 2) & 0x3) == 1) { /* DisplayPort */ 1987 hda_command(ch->devinfo->dev, 1988 HDA_CMD_SET_HDMI_DIP_DATA(0, nid, 0x84)); 1989 hda_command(ch->devinfo->dev, 1990 HDA_CMD_SET_HDMI_DIP_DATA(0, nid, 0x1b)); 1991 hda_command(ch->devinfo->dev, 1992 HDA_CMD_SET_HDMI_DIP_DATA(0, nid, 0x44)); 1993 } else { /* HDMI */ 1994 hda_command(ch->devinfo->dev, 1995 HDA_CMD_SET_HDMI_DIP_DATA(0, nid, 0x84)); 1996 hda_command(ch->devinfo->dev, 1997 HDA_CMD_SET_HDMI_DIP_DATA(0, nid, 0x01)); 1998 hda_command(ch->devinfo->dev, 1999 HDA_CMD_SET_HDMI_DIP_DATA(0, nid, 0x0a)); 2000 csum = 0; 2001 csum -= 0x84 + 0x01 + 0x0a + (totalchn - 1) + 2002 hdmica[totalextchn == 0 ? 0 : 1][totalchn - 1]; 2003 hda_command(ch->devinfo->dev, 2004 HDA_CMD_SET_HDMI_DIP_DATA(0, nid, csum)); 2005 } 2006 hda_command(ch->devinfo->dev, 2007 HDA_CMD_SET_HDMI_DIP_DATA(0, nid, totalchn - 1)); 2008 hda_command(ch->devinfo->dev, 2009 HDA_CMD_SET_HDMI_DIP_DATA(0, nid, 0x00)); 2010 hda_command(ch->devinfo->dev, 2011 HDA_CMD_SET_HDMI_DIP_DATA(0, nid, 0x00)); 2012 hda_command(ch->devinfo->dev, 2013 HDA_CMD_SET_HDMI_DIP_DATA(0, nid, 2014 hdmica[totalextchn == 0 ? 0 : 1][totalchn - 1])); 2015 2016 /* Start audio infoframe transmission. */ 2017 hda_command(ch->devinfo->dev, 2018 HDA_CMD_SET_HDMI_DIP_INDEX(0, nid, 0x00)); 2019 hda_command(ch->devinfo->dev, 2020 HDA_CMD_SET_HDMI_DIP_XMIT(0, nid, 0xc0)); 2021 } 2022 chn += cchn + 1; 2023 } 2024 } 2025 2026 /* 2027 * Greatest Common Divisor. 2028 */ 2029 static unsigned 2030 gcd(unsigned a, unsigned b) 2031 { 2032 u_int c; 2033 2034 while (b != 0) { 2035 c = a; 2036 a = b; 2037 b = (c % b); 2038 } 2039 return (a); 2040 } 2041 2042 /* 2043 * Least Common Multiple. 2044 */ 2045 static unsigned 2046 lcm(unsigned a, unsigned b) 2047 { 2048 2049 return ((a * b) / gcd(a, b)); 2050 } 2051 2052 static int 2053 hdaa_channel_setfragments(kobj_t obj, void *data, 2054 uint32_t blksz, uint32_t blkcnt) 2055 { 2056 struct hdaa_chan *ch = data; 2057 2058 blksz -= blksz % lcm(HDA_DMA_ALIGNMENT, sndbuf_getalign(ch->b)); 2059 2060 if (blksz > (sndbuf_getmaxsize(ch->b) / HDA_BDL_MIN)) 2061 blksz = sndbuf_getmaxsize(ch->b) / HDA_BDL_MIN; 2062 if (blksz < HDA_BLK_MIN) 2063 blksz = HDA_BLK_MIN; 2064 if (blkcnt > HDA_BDL_MAX) 2065 blkcnt = HDA_BDL_MAX; 2066 if (blkcnt < HDA_BDL_MIN) 2067 blkcnt = HDA_BDL_MIN; 2068 2069 while ((blksz * blkcnt) > sndbuf_getmaxsize(ch->b)) { 2070 if ((blkcnt >> 1) >= HDA_BDL_MIN) 2071 blkcnt >>= 1; 2072 else if ((blksz >> 1) >= HDA_BLK_MIN) 2073 blksz >>= 1; 2074 else 2075 break; 2076 } 2077 2078 if ((sndbuf_getblksz(ch->b) != blksz || 2079 sndbuf_getblkcnt(ch->b) != blkcnt) && 2080 sndbuf_resize(ch->b, blkcnt, blksz) != 0) 2081 device_printf(ch->devinfo->dev, "%s: failed blksz=%u blkcnt=%u\n", 2082 __func__, blksz, blkcnt); 2083 2084 ch->blksz = sndbuf_getblksz(ch->b); 2085 ch->blkcnt = sndbuf_getblkcnt(ch->b); 2086 2087 return (0); 2088 } 2089 2090 static uint32_t 2091 hdaa_channel_setblocksize(kobj_t obj, void *data, uint32_t blksz) 2092 { 2093 struct hdaa_chan *ch = data; 2094 2095 hdaa_channel_setfragments(obj, data, blksz, ch->pdevinfo->chan_blkcnt); 2096 2097 return (ch->blksz); 2098 } 2099 2100 static void 2101 hdaa_channel_stop(struct hdaa_chan *ch) 2102 { 2103 struct hdaa_devinfo *devinfo = ch->devinfo; 2104 struct hdaa_widget *w; 2105 int i; 2106 2107 if ((ch->flags & HDAA_CHN_RUNNING) == 0) 2108 return; 2109 ch->flags &= ~HDAA_CHN_RUNNING; 2110 HDAC_STREAM_STOP(device_get_parent(devinfo->dev), devinfo->dev, 2111 ch->dir == PCMDIR_PLAY ? 1 : 0, ch->sid); 2112 for (i = 0; ch->io[i] != -1; i++) { 2113 w = hdaa_widget_get(ch->devinfo, ch->io[i]); 2114 if (w == NULL) 2115 continue; 2116 if (HDA_PARAM_AUDIO_WIDGET_CAP_DIGITAL(w->param.widget_cap)) { 2117 hda_command(devinfo->dev, 2118 HDA_CMD_SET_DIGITAL_CONV_FMT1(0, ch->io[i], 0)); 2119 } 2120 hda_command(devinfo->dev, 2121 HDA_CMD_SET_CONV_STREAM_CHAN(0, ch->io[i], 2122 0)); 2123 } 2124 HDAC_STREAM_FREE(device_get_parent(devinfo->dev), devinfo->dev, 2125 ch->dir == PCMDIR_PLAY ? 1 : 0, ch->sid); 2126 } 2127 2128 static int 2129 hdaa_channel_start(struct hdaa_chan *ch) 2130 { 2131 struct hdaa_devinfo *devinfo = ch->devinfo; 2132 uint32_t fmt; 2133 2134 fmt = hdaa_stream_format(ch); 2135 ch->stripectl = fls(ch->stripecap & hdaa_allowed_stripes(fmt) & 2136 hda_get_stripes_mask(devinfo->dev)) - 1; 2137 ch->sid = HDAC_STREAM_ALLOC(device_get_parent(devinfo->dev), devinfo->dev, 2138 ch->dir == PCMDIR_PLAY ? 1 : 0, fmt, ch->stripectl, &ch->dmapos); 2139 if (ch->sid <= 0) 2140 return (EBUSY); 2141 hdaa_audio_setup(ch); 2142 HDAC_STREAM_RESET(device_get_parent(devinfo->dev), devinfo->dev, 2143 ch->dir == PCMDIR_PLAY ? 1 : 0, ch->sid); 2144 HDAC_STREAM_START(device_get_parent(devinfo->dev), devinfo->dev, 2145 ch->dir == PCMDIR_PLAY ? 1 : 0, ch->sid, 2146 sndbuf_getbufaddr(ch->b), ch->blksz, ch->blkcnt); 2147 ch->flags |= HDAA_CHN_RUNNING; 2148 return (0); 2149 } 2150 2151 static int 2152 hdaa_channel_trigger(kobj_t obj, void *data, int go) 2153 { 2154 struct hdaa_chan *ch = data; 2155 int error = 0; 2156 2157 if (!PCMTRIG_COMMON(go)) 2158 return (0); 2159 2160 hdaa_lock(ch->devinfo); 2161 switch (go) { 2162 case PCMTRIG_START: 2163 error = hdaa_channel_start(ch); 2164 break; 2165 case PCMTRIG_STOP: 2166 case PCMTRIG_ABORT: 2167 hdaa_channel_stop(ch); 2168 break; 2169 default: 2170 break; 2171 } 2172 hdaa_unlock(ch->devinfo); 2173 2174 return (error); 2175 } 2176 2177 static uint32_t 2178 hdaa_channel_getptr(kobj_t obj, void *data) 2179 { 2180 struct hdaa_chan *ch = data; 2181 struct hdaa_devinfo *devinfo = ch->devinfo; 2182 uint32_t ptr; 2183 2184 hdaa_lock(devinfo); 2185 if (ch->dmapos != NULL) { 2186 ptr = *(ch->dmapos); 2187 } else { 2188 ptr = HDAC_STREAM_GETPTR( 2189 device_get_parent(devinfo->dev), devinfo->dev, 2190 ch->dir == PCMDIR_PLAY ? 1 : 0, ch->sid); 2191 } 2192 hdaa_unlock(devinfo); 2193 2194 /* 2195 * Round to available space and force 128 bytes aligment. 2196 */ 2197 ptr %= ch->blksz * ch->blkcnt; 2198 ptr &= HDA_BLK_ALIGN; 2199 2200 return (ptr); 2201 } 2202 2203 static struct pcmchan_caps * 2204 hdaa_channel_getcaps(kobj_t obj, void *data) 2205 { 2206 return (&((struct hdaa_chan *)data)->caps); 2207 } 2208 2209 static kobj_method_t hdaa_channel_methods[] = { 2210 KOBJMETHOD(channel_init, hdaa_channel_init), 2211 KOBJMETHOD(channel_setformat, hdaa_channel_setformat), 2212 KOBJMETHOD(channel_setspeed, hdaa_channel_setspeed), 2213 KOBJMETHOD(channel_setblocksize, hdaa_channel_setblocksize), 2214 KOBJMETHOD(channel_setfragments, hdaa_channel_setfragments), 2215 KOBJMETHOD(channel_trigger, hdaa_channel_trigger), 2216 KOBJMETHOD(channel_getptr, hdaa_channel_getptr), 2217 KOBJMETHOD(channel_getcaps, hdaa_channel_getcaps), 2218 KOBJMETHOD_END 2219 }; 2220 CHANNEL_DECLARE(hdaa_channel); 2221 2222 static int 2223 hdaa_audio_ctl_ossmixer_init(struct snd_mixer *m) 2224 { 2225 struct hdaa_pcm_devinfo *pdevinfo = mix_getdevinfo(m); 2226 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 2227 struct hdaa_widget *w, *cw; 2228 uint32_t mask, recmask; 2229 int i, j; 2230 2231 hdaa_lock(devinfo); 2232 pdevinfo->mixer = m; 2233 2234 /* Make sure that in case of soft volume it won't stay muted. */ 2235 for (i = 0; i < SOUND_MIXER_NRDEVICES; i++) { 2236 pdevinfo->left[i] = 100; 2237 pdevinfo->right[i] = 100; 2238 } 2239 2240 /* Declare volume controls assigned to this association. */ 2241 mask = pdevinfo->ossmask; 2242 if (pdevinfo->playas >= 0) { 2243 /* Declate EAPD as ogain control. */ 2244 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 2245 w = hdaa_widget_get(devinfo, i); 2246 if (w == NULL || w->enable == 0) 2247 continue; 2248 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX || 2249 w->param.eapdbtl == HDA_INVALID || 2250 w->bindas != pdevinfo->playas) 2251 continue; 2252 mask |= SOUND_MASK_OGAIN; 2253 break; 2254 } 2255 2256 /* Declare soft PCM volume if needed. */ 2257 if ((mask & SOUND_MASK_PCM) == 0 || 2258 (devinfo->quirks & HDAA_QUIRK_SOFTPCMVOL) || 2259 pdevinfo->minamp[SOUND_MIXER_PCM] == 2260 pdevinfo->maxamp[SOUND_MIXER_PCM]) { 2261 mask |= SOUND_MASK_PCM; 2262 pcm_setflags(pdevinfo->dev, pcm_getflags(pdevinfo->dev) | SD_F_SOFTPCMVOL); 2263 HDA_BOOTHVERBOSE( 2264 device_printf(pdevinfo->dev, 2265 "Forcing Soft PCM volume\n"); 2266 ); 2267 } 2268 2269 /* Declare master volume if needed. */ 2270 if ((mask & SOUND_MASK_VOLUME) == 0) { 2271 mask |= SOUND_MASK_VOLUME; 2272 mix_setparentchild(m, SOUND_MIXER_VOLUME, 2273 SOUND_MASK_PCM); 2274 mix_setrealdev(m, SOUND_MIXER_VOLUME, 2275 SOUND_MIXER_NONE); 2276 HDA_BOOTHVERBOSE( 2277 device_printf(pdevinfo->dev, 2278 "Forcing master volume with PCM\n"); 2279 ); 2280 } 2281 } 2282 2283 /* Declare record sources available to this association. */ 2284 recmask = 0; 2285 if (pdevinfo->recas >= 0) { 2286 for (i = 0; i < 16; i++) { 2287 if (devinfo->as[pdevinfo->recas].dacs[0][i] < 0) 2288 continue; 2289 w = hdaa_widget_get(devinfo, 2290 devinfo->as[pdevinfo->recas].dacs[0][i]); 2291 if (w == NULL || w->enable == 0) 2292 continue; 2293 for (j = 0; j < w->nconns; j++) { 2294 if (w->connsenable[j] == 0) 2295 continue; 2296 cw = hdaa_widget_get(devinfo, w->conns[j]); 2297 if (cw == NULL || cw->enable == 0) 2298 continue; 2299 if (cw->bindas != pdevinfo->recas && 2300 cw->bindas != -2) 2301 continue; 2302 recmask |= cw->ossmask; 2303 } 2304 } 2305 } 2306 2307 recmask &= (1 << SOUND_MIXER_NRDEVICES) - 1; 2308 mask &= (1 << SOUND_MIXER_NRDEVICES) - 1; 2309 pdevinfo->ossmask = mask; 2310 2311 mix_setrecdevs(m, recmask); 2312 mix_setdevs(m, mask); 2313 2314 hdaa_unlock(devinfo); 2315 2316 return (0); 2317 } 2318 2319 /* 2320 * Update amplification per pdevinfo per ossdev, calculate summary coefficient 2321 * and write it to codec, update *left and *right to reflect remaining error. 2322 */ 2323 static void 2324 hdaa_audio_ctl_dev_set(struct hdaa_audio_ctl *ctl, int ossdev, 2325 int mute, int *left, int *right) 2326 { 2327 int i, zleft, zright, sleft, sright, smute, lval, rval; 2328 2329 ctl->devleft[ossdev] = *left; 2330 ctl->devright[ossdev] = *right; 2331 ctl->devmute[ossdev] = mute; 2332 smute = sleft = sright = zleft = zright = 0; 2333 for (i = 0; i < SOUND_MIXER_NRDEVICES; i++) { 2334 sleft += ctl->devleft[i]; 2335 sright += ctl->devright[i]; 2336 smute |= ctl->devmute[i]; 2337 if (i == ossdev) 2338 continue; 2339 zleft += ctl->devleft[i]; 2340 zright += ctl->devright[i]; 2341 } 2342 lval = QDB2VAL(ctl, sleft); 2343 rval = QDB2VAL(ctl, sright); 2344 hdaa_audio_ctl_amp_set(ctl, smute, lval, rval); 2345 *left -= VAL2QDB(ctl, lval) - VAL2QDB(ctl, QDB2VAL(ctl, zleft)); 2346 *right -= VAL2QDB(ctl, rval) - VAL2QDB(ctl, QDB2VAL(ctl, zright)); 2347 } 2348 2349 /* 2350 * Trace signal from source, setting volumes on the way. 2351 */ 2352 static void 2353 hdaa_audio_ctl_source_volume(struct hdaa_pcm_devinfo *pdevinfo, 2354 int ossdev, nid_t nid, int index, int mute, int left, int right, int depth) 2355 { 2356 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 2357 struct hdaa_widget *w, *wc; 2358 struct hdaa_audio_ctl *ctl; 2359 int i, j, conns = 0; 2360 2361 if (depth > HDA_PARSE_MAXDEPTH) 2362 return; 2363 2364 w = hdaa_widget_get(devinfo, nid); 2365 if (w == NULL || w->enable == 0) 2366 return; 2367 2368 /* Count number of active inputs. */ 2369 if (depth > 0) { 2370 for (j = 0; j < w->nconns; j++) { 2371 if (!w->connsenable[j]) 2372 continue; 2373 conns++; 2374 } 2375 } 2376 2377 /* If this is not a first step - use input mixer. 2378 Pins have common input ctl so care must be taken. */ 2379 if (depth > 0 && (conns == 1 || 2380 w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX)) { 2381 ctl = hdaa_audio_ctl_amp_get(devinfo, w->nid, HDAA_CTL_IN, 2382 index, 1); 2383 if (ctl) 2384 hdaa_audio_ctl_dev_set(ctl, ossdev, mute, &left, &right); 2385 } 2386 2387 /* If widget has own ossdev - not traverse it. 2388 It will be traversed on its own. */ 2389 if (w->ossdev >= 0 && depth > 0) 2390 return; 2391 2392 /* We must not traverse pin */ 2393 if ((w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT || 2394 w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) && 2395 depth > 0) 2396 return; 2397 2398 /* 2399 * If signals mixed, we can't assign controls farther. 2400 * Ignore this on depth zero. Caller must knows why. 2401 */ 2402 if (conns > 1 && 2403 (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER || 2404 w->selconn != index)) 2405 return; 2406 2407 ctl = hdaa_audio_ctl_amp_get(devinfo, w->nid, HDAA_CTL_OUT, -1, 1); 2408 if (ctl) 2409 hdaa_audio_ctl_dev_set(ctl, ossdev, mute, &left, &right); 2410 2411 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 2412 wc = hdaa_widget_get(devinfo, i); 2413 if (wc == NULL || wc->enable == 0) 2414 continue; 2415 for (j = 0; j < wc->nconns; j++) { 2416 if (wc->connsenable[j] && wc->conns[j] == nid) { 2417 hdaa_audio_ctl_source_volume(pdevinfo, ossdev, 2418 wc->nid, j, mute, left, right, depth + 1); 2419 } 2420 } 2421 } 2422 return; 2423 } 2424 2425 /* 2426 * Trace signal from destination, setting volumes on the way. 2427 */ 2428 static void 2429 hdaa_audio_ctl_dest_volume(struct hdaa_pcm_devinfo *pdevinfo, 2430 int ossdev, nid_t nid, int index, int mute, int left, int right, int depth) 2431 { 2432 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 2433 struct hdaa_audio_as *as = devinfo->as; 2434 struct hdaa_widget *w, *wc; 2435 struct hdaa_audio_ctl *ctl; 2436 int i, j, consumers, cleft, cright; 2437 2438 if (depth > HDA_PARSE_MAXDEPTH) 2439 return; 2440 2441 w = hdaa_widget_get(devinfo, nid); 2442 if (w == NULL || w->enable == 0) 2443 return; 2444 2445 if (depth > 0) { 2446 /* If this node produce output for several consumers, 2447 we can't touch it. */ 2448 consumers = 0; 2449 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 2450 wc = hdaa_widget_get(devinfo, i); 2451 if (wc == NULL || wc->enable == 0) 2452 continue; 2453 for (j = 0; j < wc->nconns; j++) { 2454 if (wc->connsenable[j] && wc->conns[j] == nid) 2455 consumers++; 2456 } 2457 } 2458 /* The only exception is if real HP redirection is configured 2459 and this is a duplication point. 2460 XXX: Actually exception is not completely correct. 2461 XXX: Duplication point check is not perfect. */ 2462 if ((consumers == 2 && (w->bindas < 0 || 2463 as[w->bindas].hpredir < 0 || as[w->bindas].fakeredir || 2464 (w->bindseqmask & (1 << 15)) == 0)) || 2465 consumers > 2) 2466 return; 2467 2468 /* Else use it's output mixer. */ 2469 ctl = hdaa_audio_ctl_amp_get(devinfo, w->nid, 2470 HDAA_CTL_OUT, -1, 1); 2471 if (ctl) 2472 hdaa_audio_ctl_dev_set(ctl, ossdev, mute, &left, &right); 2473 } 2474 2475 /* We must not traverse pin */ 2476 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX && 2477 depth > 0) 2478 return; 2479 2480 for (i = 0; i < w->nconns; i++) { 2481 if (w->connsenable[i] == 0) 2482 continue; 2483 if (index >= 0 && i != index) 2484 continue; 2485 cleft = left; 2486 cright = right; 2487 ctl = hdaa_audio_ctl_amp_get(devinfo, w->nid, 2488 HDAA_CTL_IN, i, 1); 2489 if (ctl) 2490 hdaa_audio_ctl_dev_set(ctl, ossdev, mute, &cleft, &cright); 2491 hdaa_audio_ctl_dest_volume(pdevinfo, ossdev, w->conns[i], -1, 2492 mute, cleft, cright, depth + 1); 2493 } 2494 } 2495 2496 /* 2497 * Set volumes for the specified pdevinfo and ossdev. 2498 */ 2499 static void 2500 hdaa_audio_ctl_dev_volume(struct hdaa_pcm_devinfo *pdevinfo, unsigned dev) 2501 { 2502 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 2503 struct hdaa_widget *w, *cw; 2504 uint32_t mute; 2505 int lvol, rvol; 2506 int i, j; 2507 2508 mute = 0; 2509 if (pdevinfo->left[dev] == 0) { 2510 mute |= HDAA_AMP_MUTE_LEFT; 2511 lvol = -4000; 2512 } else 2513 lvol = ((pdevinfo->maxamp[dev] - pdevinfo->minamp[dev]) * 2514 pdevinfo->left[dev] + 50) / 100 + pdevinfo->minamp[dev]; 2515 if (pdevinfo->right[dev] == 0) { 2516 mute |= HDAA_AMP_MUTE_RIGHT; 2517 rvol = -4000; 2518 } else 2519 rvol = ((pdevinfo->maxamp[dev] - pdevinfo->minamp[dev]) * 2520 pdevinfo->right[dev] + 50) / 100 + pdevinfo->minamp[dev]; 2521 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 2522 w = hdaa_widget_get(devinfo, i); 2523 if (w == NULL || w->enable == 0) 2524 continue; 2525 if (w->bindas < 0) { 2526 if (pdevinfo->index != 0) 2527 continue; 2528 } else { 2529 if (w->bindas != pdevinfo->playas && 2530 w->bindas != pdevinfo->recas) 2531 continue; 2532 } 2533 if (dev == SOUND_MIXER_RECLEV && 2534 w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT) { 2535 hdaa_audio_ctl_dest_volume(pdevinfo, dev, 2536 w->nid, -1, mute, lvol, rvol, 0); 2537 continue; 2538 } 2539 if (dev == SOUND_MIXER_VOLUME && 2540 w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX && 2541 devinfo->as[w->bindas].dir == HDAA_CTL_OUT) { 2542 hdaa_audio_ctl_dest_volume(pdevinfo, dev, 2543 w->nid, -1, mute, lvol, rvol, 0); 2544 continue; 2545 } 2546 if (dev == SOUND_MIXER_IGAIN && 2547 w->pflags & HDAA_ADC_MONITOR) { 2548 for (j = 0; j < w->nconns; j++) { 2549 if (!w->connsenable[j]) 2550 continue; 2551 cw = hdaa_widget_get(devinfo, w->conns[j]); 2552 if (cw == NULL || cw->enable == 0) 2553 continue; 2554 if (cw->bindas == -1) 2555 continue; 2556 if (cw->bindas >= 0 && 2557 devinfo->as[cw->bindas].dir != HDAA_CTL_IN) 2558 continue; 2559 hdaa_audio_ctl_dest_volume(pdevinfo, dev, 2560 w->nid, j, mute, lvol, rvol, 0); 2561 } 2562 continue; 2563 } 2564 if (w->ossdev != dev) 2565 continue; 2566 hdaa_audio_ctl_source_volume(pdevinfo, dev, 2567 w->nid, -1, mute, lvol, rvol, 0); 2568 if (dev == SOUND_MIXER_IMIX && (w->pflags & HDAA_IMIX_AS_DST)) 2569 hdaa_audio_ctl_dest_volume(pdevinfo, dev, 2570 w->nid, -1, mute, lvol, rvol, 0); 2571 } 2572 } 2573 2574 /* 2575 * OSS Mixer set method. 2576 */ 2577 static int 2578 hdaa_audio_ctl_ossmixer_set(struct snd_mixer *m, unsigned dev, 2579 unsigned left, unsigned right) 2580 { 2581 struct hdaa_pcm_devinfo *pdevinfo = mix_getdevinfo(m); 2582 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 2583 struct hdaa_widget *w; 2584 int i; 2585 2586 hdaa_lock(devinfo); 2587 2588 /* Save new values. */ 2589 pdevinfo->left[dev] = left; 2590 pdevinfo->right[dev] = right; 2591 2592 /* 'ogain' is the special case implemented with EAPD. */ 2593 if (dev == SOUND_MIXER_OGAIN) { 2594 uint32_t orig; 2595 w = NULL; 2596 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 2597 w = hdaa_widget_get(devinfo, i); 2598 if (w == NULL || w->enable == 0) 2599 continue; 2600 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX || 2601 w->param.eapdbtl == HDA_INVALID) 2602 continue; 2603 break; 2604 } 2605 if (i >= devinfo->endnode) { 2606 hdaa_unlock(devinfo); 2607 return (-1); 2608 } 2609 orig = w->param.eapdbtl; 2610 if (left == 0) 2611 w->param.eapdbtl &= ~HDA_CMD_SET_EAPD_BTL_ENABLE_EAPD; 2612 else 2613 w->param.eapdbtl |= HDA_CMD_SET_EAPD_BTL_ENABLE_EAPD; 2614 if (orig != w->param.eapdbtl) { 2615 uint32_t val; 2616 2617 val = w->param.eapdbtl; 2618 if (devinfo->quirks & HDAA_QUIRK_EAPDINV) 2619 val ^= HDA_CMD_SET_EAPD_BTL_ENABLE_EAPD; 2620 hda_command(devinfo->dev, 2621 HDA_CMD_SET_EAPD_BTL_ENABLE(0, w->nid, val)); 2622 } 2623 hdaa_unlock(devinfo); 2624 return (left | (left << 8)); 2625 } 2626 2627 /* Recalculate all controls related to this OSS device. */ 2628 hdaa_audio_ctl_dev_volume(pdevinfo, dev); 2629 2630 hdaa_unlock(devinfo); 2631 return (left | (right << 8)); 2632 } 2633 2634 /* 2635 * Set mixer settings to our own default values: 2636 * +20dB for mics, -10dB for analog vol, mute for igain, 0dB for others. 2637 */ 2638 static void 2639 hdaa_audio_ctl_set_defaults(struct hdaa_pcm_devinfo *pdevinfo) 2640 { 2641 int amp, vol, dev; 2642 2643 for (dev = 0; dev < SOUND_MIXER_NRDEVICES; dev++) { 2644 if ((pdevinfo->ossmask & (1 << dev)) == 0) 2645 continue; 2646 2647 /* If the value was overriden, leave it as is. */ 2648 if (resource_int_value(device_get_name(pdevinfo->dev), 2649 device_get_unit(pdevinfo->dev), ossnames[dev], &vol) == 0) 2650 continue; 2651 2652 vol = -1; 2653 if (dev == SOUND_MIXER_OGAIN) 2654 vol = 100; 2655 else if (dev == SOUND_MIXER_IGAIN) 2656 vol = 0; 2657 else if (dev == SOUND_MIXER_MIC || 2658 dev == SOUND_MIXER_MONITOR) 2659 amp = 20 * 4; /* +20dB */ 2660 else if (dev == SOUND_MIXER_VOLUME && !pdevinfo->digital) 2661 amp = -10 * 4; /* -10dB */ 2662 else 2663 amp = 0; 2664 if (vol < 0 && 2665 (pdevinfo->maxamp[dev] - pdevinfo->minamp[dev]) <= 0) { 2666 vol = 100; 2667 } else if (vol < 0) { 2668 vol = ((amp - pdevinfo->minamp[dev]) * 100 + 2669 (pdevinfo->maxamp[dev] - pdevinfo->minamp[dev]) / 2) / 2670 (pdevinfo->maxamp[dev] - pdevinfo->minamp[dev]); 2671 vol = imin(imax(vol, 1), 100); 2672 } 2673 mix_set(pdevinfo->mixer, dev, vol, vol); 2674 } 2675 } 2676 2677 /* 2678 * Recursively commutate specified record source. 2679 */ 2680 static uint32_t 2681 hdaa_audio_ctl_recsel_comm(struct hdaa_pcm_devinfo *pdevinfo, uint32_t src, nid_t nid, int depth) 2682 { 2683 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 2684 struct hdaa_widget *w, *cw; 2685 struct hdaa_audio_ctl *ctl; 2686 char buf[64]; 2687 int i, muted; 2688 uint32_t res = 0; 2689 2690 if (depth > HDA_PARSE_MAXDEPTH) 2691 return (0); 2692 2693 w = hdaa_widget_get(devinfo, nid); 2694 if (w == NULL || w->enable == 0) 2695 return (0); 2696 2697 for (i = 0; i < w->nconns; i++) { 2698 if (w->connsenable[i] == 0) 2699 continue; 2700 cw = hdaa_widget_get(devinfo, w->conns[i]); 2701 if (cw == NULL || cw->enable == 0 || cw->bindas == -1) 2702 continue; 2703 /* Call recursively to trace signal to it's source if needed. */ 2704 if ((src & cw->ossmask) != 0) { 2705 if (cw->ossdev < 0) { 2706 res |= hdaa_audio_ctl_recsel_comm(pdevinfo, src, 2707 w->conns[i], depth + 1); 2708 } else { 2709 res |= cw->ossmask; 2710 } 2711 } 2712 /* We have two special cases: mixers and others (selectors). */ 2713 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER) { 2714 ctl = hdaa_audio_ctl_amp_get(devinfo, 2715 w->nid, HDAA_CTL_IN, i, 1); 2716 if (ctl == NULL) 2717 continue; 2718 /* If we have input control on this node mute them 2719 * according to requested sources. */ 2720 muted = (src & cw->ossmask) ? 0 : 1; 2721 if (muted != ctl->forcemute) { 2722 ctl->forcemute = muted; 2723 hdaa_audio_ctl_amp_set(ctl, 2724 HDAA_AMP_MUTE_DEFAULT, 2725 HDAA_AMP_VOL_DEFAULT, HDAA_AMP_VOL_DEFAULT); 2726 } 2727 HDA_BOOTHVERBOSE( 2728 device_printf(pdevinfo->dev, 2729 "Recsel (%s): nid %d source %d %s\n", 2730 hdaa_audio_ctl_ossmixer_mask2allname( 2731 src, buf, sizeof(buf)), 2732 nid, i, muted?"mute":"unmute"); 2733 ); 2734 } else { 2735 if (w->nconns == 1) 2736 break; 2737 if ((src & cw->ossmask) == 0) 2738 continue; 2739 /* If we found requested source - select it and exit. */ 2740 hdaa_widget_connection_select(w, i); 2741 HDA_BOOTHVERBOSE( 2742 device_printf(pdevinfo->dev, 2743 "Recsel (%s): nid %d source %d select\n", 2744 hdaa_audio_ctl_ossmixer_mask2allname( 2745 src, buf, sizeof(buf)), 2746 nid, i); 2747 ); 2748 break; 2749 } 2750 } 2751 return (res); 2752 } 2753 2754 static uint32_t 2755 hdaa_audio_ctl_ossmixer_setrecsrc(struct snd_mixer *m, uint32_t src) 2756 { 2757 struct hdaa_pcm_devinfo *pdevinfo = mix_getdevinfo(m); 2758 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 2759 struct hdaa_widget *w; 2760 struct hdaa_audio_as *as; 2761 struct hdaa_audio_ctl *ctl; 2762 struct hdaa_chan *ch; 2763 int i, j; 2764 uint32_t ret = 0xffffffff; 2765 2766 hdaa_lock(devinfo); 2767 if (pdevinfo->recas < 0) { 2768 hdaa_unlock(devinfo); 2769 return (0); 2770 } 2771 as = &devinfo->as[pdevinfo->recas]; 2772 2773 /* For non-mixed associations we always recording everything. */ 2774 if (!as->mixed) { 2775 hdaa_unlock(devinfo); 2776 return (mix_getrecdevs(m)); 2777 } 2778 2779 /* Commutate requested recsrc for each ADC. */ 2780 for (j = 0; j < as->num_chans; j++) { 2781 ch = &devinfo->chans[as->chans[j]]; 2782 for (i = 0; ch->io[i] >= 0; i++) { 2783 w = hdaa_widget_get(devinfo, ch->io[i]); 2784 if (w == NULL || w->enable == 0) 2785 continue; 2786 ret &= hdaa_audio_ctl_recsel_comm(pdevinfo, src, 2787 ch->io[i], 0); 2788 } 2789 } 2790 if (ret == 0xffffffff) 2791 ret = 0; 2792 2793 /* 2794 * Some controls could be shared. Reset volumes for controls 2795 * related to previously chosen devices, as they may no longer 2796 * affect the signal. 2797 */ 2798 i = 0; 2799 while ((ctl = hdaa_audio_ctl_each(devinfo, &i)) != NULL) { 2800 if (ctl->enable == 0 || 2801 !(ctl->ossmask & pdevinfo->recsrc)) 2802 continue; 2803 if (!((pdevinfo->playas >= 0 && 2804 ctl->widget->bindas == pdevinfo->playas) || 2805 (pdevinfo->recas >= 0 && 2806 ctl->widget->bindas == pdevinfo->recas) || 2807 (pdevinfo->index == 0 && 2808 ctl->widget->bindas == -2))) 2809 continue; 2810 for (j = 0; j < SOUND_MIXER_NRDEVICES; j++) { 2811 if (pdevinfo->recsrc & (1 << j)) { 2812 ctl->devleft[j] = 0; 2813 ctl->devright[j] = 0; 2814 ctl->devmute[j] = 0; 2815 } 2816 } 2817 } 2818 2819 /* 2820 * Some controls could be shared. Set volumes for controls 2821 * related to devices selected both previously and now. 2822 */ 2823 for (j = 0; j < SOUND_MIXER_NRDEVICES; j++) { 2824 if ((ret | pdevinfo->recsrc) & (1 << j)) 2825 hdaa_audio_ctl_dev_volume(pdevinfo, j); 2826 } 2827 2828 pdevinfo->recsrc = ret; 2829 hdaa_unlock(devinfo); 2830 return (ret); 2831 } 2832 2833 static kobj_method_t hdaa_audio_ctl_ossmixer_methods[] = { 2834 KOBJMETHOD(mixer_init, hdaa_audio_ctl_ossmixer_init), 2835 KOBJMETHOD(mixer_set, hdaa_audio_ctl_ossmixer_set), 2836 KOBJMETHOD(mixer_setrecsrc, hdaa_audio_ctl_ossmixer_setrecsrc), 2837 KOBJMETHOD_END 2838 }; 2839 MIXER_DECLARE(hdaa_audio_ctl_ossmixer); 2840 2841 static void 2842 hdaa_dump_gpi(struct hdaa_devinfo *devinfo) 2843 { 2844 device_t dev = devinfo->dev; 2845 int i; 2846 uint32_t data, wake, unsol, sticky; 2847 2848 if (HDA_PARAM_GPIO_COUNT_NUM_GPI(devinfo->gpio_cap) > 0) { 2849 data = hda_command(dev, 2850 HDA_CMD_GET_GPI_DATA(0, devinfo->nid)); 2851 wake = hda_command(dev, 2852 HDA_CMD_GET_GPI_WAKE_ENABLE_MASK(0, devinfo->nid)); 2853 unsol = hda_command(dev, 2854 HDA_CMD_GET_GPI_UNSOLICITED_ENABLE_MASK(0, devinfo->nid)); 2855 sticky = hda_command(dev, 2856 HDA_CMD_GET_GPI_STICKY_MASK(0, devinfo->nid)); 2857 for (i = 0; i < HDA_PARAM_GPIO_COUNT_NUM_GPI(devinfo->gpio_cap); i++) { 2858 device_printf(dev, " GPI%d:%s%s%s state=%d", i, 2859 (sticky & (1 << i)) ? " sticky" : "", 2860 (unsol & (1 << i)) ? " unsol" : "", 2861 (wake & (1 << i)) ? " wake" : "", 2862 (data >> i) & 1); 2863 } 2864 } 2865 } 2866 2867 static void 2868 hdaa_dump_gpio(struct hdaa_devinfo *devinfo) 2869 { 2870 device_t dev = devinfo->dev; 2871 int i; 2872 uint32_t data, dir, enable, wake, unsol, sticky; 2873 2874 if (HDA_PARAM_GPIO_COUNT_NUM_GPIO(devinfo->gpio_cap) > 0) { 2875 data = hda_command(dev, 2876 HDA_CMD_GET_GPIO_DATA(0, devinfo->nid)); 2877 enable = hda_command(dev, 2878 HDA_CMD_GET_GPIO_ENABLE_MASK(0, devinfo->nid)); 2879 dir = hda_command(dev, 2880 HDA_CMD_GET_GPIO_DIRECTION(0, devinfo->nid)); 2881 wake = hda_command(dev, 2882 HDA_CMD_GET_GPIO_WAKE_ENABLE_MASK(0, devinfo->nid)); 2883 unsol = hda_command(dev, 2884 HDA_CMD_GET_GPIO_UNSOLICITED_ENABLE_MASK(0, devinfo->nid)); 2885 sticky = hda_command(dev, 2886 HDA_CMD_GET_GPIO_STICKY_MASK(0, devinfo->nid)); 2887 for (i = 0; i < HDA_PARAM_GPIO_COUNT_NUM_GPIO(devinfo->gpio_cap); i++) { 2888 device_printf(dev, " GPIO%d: ", i); 2889 if ((enable & (1 << i)) == 0) { 2890 printf("disabled\n"); 2891 continue; 2892 } 2893 if ((dir & (1 << i)) == 0) { 2894 printf("input%s%s%s", 2895 (sticky & (1 << i)) ? " sticky" : "", 2896 (unsol & (1 << i)) ? " unsol" : "", 2897 (wake & (1 << i)) ? " wake" : ""); 2898 } else 2899 printf("output"); 2900 printf(" state=%d\n", (data >> i) & 1); 2901 } 2902 } 2903 } 2904 2905 static void 2906 hdaa_dump_gpo(struct hdaa_devinfo *devinfo) 2907 { 2908 device_t dev = devinfo->dev; 2909 int i; 2910 uint32_t data; 2911 2912 if (HDA_PARAM_GPIO_COUNT_NUM_GPO(devinfo->gpio_cap) > 0) { 2913 data = hda_command(dev, 2914 HDA_CMD_GET_GPO_DATA(0, devinfo->nid)); 2915 for (i = 0; i < HDA_PARAM_GPIO_COUNT_NUM_GPO(devinfo->gpio_cap); i++) { 2916 device_printf(dev, " GPO%d: state=%d", i, 2917 (data >> i) & 1); 2918 } 2919 } 2920 } 2921 2922 static void 2923 hdaa_audio_parse(struct hdaa_devinfo *devinfo) 2924 { 2925 struct hdaa_widget *w; 2926 uint32_t res; 2927 int i; 2928 nid_t nid; 2929 2930 nid = devinfo->nid; 2931 2932 res = hda_command(devinfo->dev, 2933 HDA_CMD_GET_PARAMETER(0, nid, HDA_PARAM_GPIO_COUNT)); 2934 devinfo->gpio_cap = res; 2935 2936 HDA_BOOTVERBOSE( 2937 device_printf(devinfo->dev, 2938 "NumGPIO=%d NumGPO=%d " 2939 "NumGPI=%d GPIWake=%d GPIUnsol=%d\n", 2940 HDA_PARAM_GPIO_COUNT_NUM_GPIO(devinfo->gpio_cap), 2941 HDA_PARAM_GPIO_COUNT_NUM_GPO(devinfo->gpio_cap), 2942 HDA_PARAM_GPIO_COUNT_NUM_GPI(devinfo->gpio_cap), 2943 HDA_PARAM_GPIO_COUNT_GPI_WAKE(devinfo->gpio_cap), 2944 HDA_PARAM_GPIO_COUNT_GPI_UNSOL(devinfo->gpio_cap)); 2945 hdaa_dump_gpi(devinfo); 2946 hdaa_dump_gpio(devinfo); 2947 hdaa_dump_gpo(devinfo); 2948 ); 2949 2950 res = hda_command(devinfo->dev, 2951 HDA_CMD_GET_PARAMETER(0, nid, HDA_PARAM_SUPP_STREAM_FORMATS)); 2952 devinfo->supp_stream_formats = res; 2953 2954 res = hda_command(devinfo->dev, 2955 HDA_CMD_GET_PARAMETER(0, nid, HDA_PARAM_SUPP_PCM_SIZE_RATE)); 2956 devinfo->supp_pcm_size_rate = res; 2957 2958 res = hda_command(devinfo->dev, 2959 HDA_CMD_GET_PARAMETER(0, nid, HDA_PARAM_OUTPUT_AMP_CAP)); 2960 devinfo->outamp_cap = res; 2961 2962 res = hda_command(devinfo->dev, 2963 HDA_CMD_GET_PARAMETER(0, nid, HDA_PARAM_INPUT_AMP_CAP)); 2964 devinfo->inamp_cap = res; 2965 2966 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 2967 w = hdaa_widget_get(devinfo, i); 2968 if (w == NULL) 2969 device_printf(devinfo->dev, "Ghost widget! nid=%d!\n", i); 2970 else { 2971 w->devinfo = devinfo; 2972 w->nid = i; 2973 w->enable = 1; 2974 w->selconn = -1; 2975 w->pflags = 0; 2976 w->ossdev = -1; 2977 w->bindas = -1; 2978 w->param.eapdbtl = HDA_INVALID; 2979 hdaa_widget_parse(w); 2980 } 2981 } 2982 } 2983 2984 static void 2985 hdaa_audio_postprocess(struct hdaa_devinfo *devinfo) 2986 { 2987 struct hdaa_widget *w; 2988 int i; 2989 2990 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 2991 w = hdaa_widget_get(devinfo, i); 2992 if (w == NULL) 2993 continue; 2994 hdaa_widget_postprocess(w); 2995 } 2996 } 2997 2998 static void 2999 hdaa_audio_ctl_parse(struct hdaa_devinfo *devinfo) 3000 { 3001 struct hdaa_audio_ctl *ctls; 3002 struct hdaa_widget *w, *cw; 3003 int i, j, cnt, max, ocap, icap; 3004 int mute, offset, step, size; 3005 3006 /* XXX This is redundant */ 3007 max = 0; 3008 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 3009 w = hdaa_widget_get(devinfo, i); 3010 if (w == NULL || w->enable == 0) 3011 continue; 3012 if (w->param.outamp_cap != 0) 3013 max++; 3014 if (w->param.inamp_cap != 0) { 3015 switch (w->type) { 3016 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_SELECTOR: 3017 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER: 3018 for (j = 0; j < w->nconns; j++) { 3019 cw = hdaa_widget_get(devinfo, 3020 w->conns[j]); 3021 if (cw == NULL || cw->enable == 0) 3022 continue; 3023 max++; 3024 } 3025 break; 3026 default: 3027 max++; 3028 break; 3029 } 3030 } 3031 } 3032 devinfo->ctlcnt = max; 3033 3034 if (max < 1) 3035 return; 3036 3037 ctls = (struct hdaa_audio_ctl *)malloc( 3038 sizeof(*ctls) * max, M_HDAA, M_ZERO | M_NOWAIT); 3039 3040 if (ctls == NULL) { 3041 /* Blekh! */ 3042 device_printf(devinfo->dev, "unable to allocate ctls!\n"); 3043 devinfo->ctlcnt = 0; 3044 return; 3045 } 3046 3047 cnt = 0; 3048 for (i = devinfo->startnode; cnt < max && i < devinfo->endnode; i++) { 3049 if (cnt >= max) { 3050 device_printf(devinfo->dev, "%s: Ctl overflow!\n", 3051 __func__); 3052 break; 3053 } 3054 w = hdaa_widget_get(devinfo, i); 3055 if (w == NULL || w->enable == 0) 3056 continue; 3057 ocap = w->param.outamp_cap; 3058 icap = w->param.inamp_cap; 3059 if (ocap != 0) { 3060 mute = HDA_PARAM_OUTPUT_AMP_CAP_MUTE_CAP(ocap); 3061 step = HDA_PARAM_OUTPUT_AMP_CAP_NUMSTEPS(ocap); 3062 size = HDA_PARAM_OUTPUT_AMP_CAP_STEPSIZE(ocap); 3063 offset = HDA_PARAM_OUTPUT_AMP_CAP_OFFSET(ocap); 3064 /*if (offset > step) { 3065 HDA_BOOTVERBOSE( 3066 device_printf(devinfo->dev, 3067 "BUGGY outamp: nid=%d " 3068 "[offset=%d > step=%d]\n", 3069 w->nid, offset, step); 3070 ); 3071 offset = step; 3072 }*/ 3073 ctls[cnt].enable = 1; 3074 ctls[cnt].widget = w; 3075 ctls[cnt].mute = mute; 3076 ctls[cnt].step = step; 3077 ctls[cnt].size = size; 3078 ctls[cnt].offset = offset; 3079 ctls[cnt].left = offset; 3080 ctls[cnt].right = offset; 3081 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX || 3082 w->waspin) 3083 ctls[cnt].ndir = HDAA_CTL_IN; 3084 else 3085 ctls[cnt].ndir = HDAA_CTL_OUT; 3086 ctls[cnt++].dir = HDAA_CTL_OUT; 3087 } 3088 3089 if (icap != 0) { 3090 mute = HDA_PARAM_OUTPUT_AMP_CAP_MUTE_CAP(icap); 3091 step = HDA_PARAM_OUTPUT_AMP_CAP_NUMSTEPS(icap); 3092 size = HDA_PARAM_OUTPUT_AMP_CAP_STEPSIZE(icap); 3093 offset = HDA_PARAM_OUTPUT_AMP_CAP_OFFSET(icap); 3094 /*if (offset > step) { 3095 HDA_BOOTVERBOSE( 3096 device_printf(devinfo->dev, 3097 "BUGGY inamp: nid=%d " 3098 "[offset=%d > step=%d]\n", 3099 w->nid, offset, step); 3100 ); 3101 offset = step; 3102 }*/ 3103 switch (w->type) { 3104 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_SELECTOR: 3105 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER: 3106 for (j = 0; j < w->nconns; j++) { 3107 if (cnt >= max) { 3108 device_printf(devinfo->dev, 3109 "%s: Ctl overflow!\n", 3110 __func__); 3111 break; 3112 } 3113 cw = hdaa_widget_get(devinfo, 3114 w->conns[j]); 3115 if (cw == NULL || cw->enable == 0) 3116 continue; 3117 ctls[cnt].enable = 1; 3118 ctls[cnt].widget = w; 3119 ctls[cnt].childwidget = cw; 3120 ctls[cnt].index = j; 3121 ctls[cnt].mute = mute; 3122 ctls[cnt].step = step; 3123 ctls[cnt].size = size; 3124 ctls[cnt].offset = offset; 3125 ctls[cnt].left = offset; 3126 ctls[cnt].right = offset; 3127 ctls[cnt].ndir = HDAA_CTL_IN; 3128 ctls[cnt++].dir = HDAA_CTL_IN; 3129 } 3130 break; 3131 default: 3132 if (cnt >= max) { 3133 device_printf(devinfo->dev, 3134 "%s: Ctl overflow!\n", 3135 __func__); 3136 break; 3137 } 3138 ctls[cnt].enable = 1; 3139 ctls[cnt].widget = w; 3140 ctls[cnt].mute = mute; 3141 ctls[cnt].step = step; 3142 ctls[cnt].size = size; 3143 ctls[cnt].offset = offset; 3144 ctls[cnt].left = offset; 3145 ctls[cnt].right = offset; 3146 if (w->type == 3147 HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 3148 ctls[cnt].ndir = HDAA_CTL_OUT; 3149 else 3150 ctls[cnt].ndir = HDAA_CTL_IN; 3151 ctls[cnt++].dir = HDAA_CTL_IN; 3152 break; 3153 } 3154 } 3155 } 3156 3157 devinfo->ctl = ctls; 3158 } 3159 3160 static void 3161 hdaa_audio_as_parse(struct hdaa_devinfo *devinfo) 3162 { 3163 struct hdaa_audio_as *as; 3164 struct hdaa_widget *w; 3165 int i, j, cnt, max, type, dir, assoc, seq, first, hpredir; 3166 3167 /* Count present associations */ 3168 max = 0; 3169 for (j = 1; j < 16; j++) { 3170 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 3171 w = hdaa_widget_get(devinfo, i); 3172 if (w == NULL || w->enable == 0) 3173 continue; 3174 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 3175 continue; 3176 if (HDA_CONFIG_DEFAULTCONF_ASSOCIATION(w->wclass.pin.config) 3177 != j) 3178 continue; 3179 max++; 3180 if (j != 15) /* There could be many 1-pin assocs #15 */ 3181 break; 3182 } 3183 } 3184 3185 devinfo->ascnt = max; 3186 3187 if (max < 1) 3188 return; 3189 3190 as = (struct hdaa_audio_as *)malloc( 3191 sizeof(*as) * max, M_HDAA, M_ZERO | M_NOWAIT); 3192 3193 if (as == NULL) { 3194 /* Blekh! */ 3195 device_printf(devinfo->dev, "unable to allocate assocs!\n"); 3196 devinfo->ascnt = 0; 3197 return; 3198 } 3199 3200 for (i = 0; i < max; i++) { 3201 as[i].hpredir = -1; 3202 as[i].digital = 0; 3203 as[i].num_chans = 1; 3204 as[i].location = -1; 3205 } 3206 3207 /* Scan associations skipping as=0. */ 3208 cnt = 0; 3209 for (j = 1; j < 16 && cnt < max; j++) { 3210 first = 16; 3211 hpredir = 0; 3212 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 3213 w = hdaa_widget_get(devinfo, i); 3214 if (w == NULL || w->enable == 0) 3215 continue; 3216 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 3217 continue; 3218 assoc = HDA_CONFIG_DEFAULTCONF_ASSOCIATION(w->wclass.pin.config); 3219 seq = HDA_CONFIG_DEFAULTCONF_SEQUENCE(w->wclass.pin.config); 3220 if (assoc != j) { 3221 continue; 3222 } 3223 KASSERT(cnt < max, 3224 ("%s: Associations owerflow (%d of %d)", 3225 __func__, cnt, max)); 3226 type = w->wclass.pin.config & 3227 HDA_CONFIG_DEFAULTCONF_DEVICE_MASK; 3228 /* Get pin direction. */ 3229 if (type == HDA_CONFIG_DEFAULTCONF_DEVICE_LINE_OUT || 3230 type == HDA_CONFIG_DEFAULTCONF_DEVICE_SPEAKER || 3231 type == HDA_CONFIG_DEFAULTCONF_DEVICE_HP_OUT || 3232 type == HDA_CONFIG_DEFAULTCONF_DEVICE_SPDIF_OUT || 3233 type == HDA_CONFIG_DEFAULTCONF_DEVICE_DIGITAL_OTHER_OUT) 3234 dir = HDAA_CTL_OUT; 3235 else 3236 dir = HDAA_CTL_IN; 3237 /* If this is a first pin - create new association. */ 3238 if (as[cnt].pincnt == 0) { 3239 as[cnt].enable = 1; 3240 as[cnt].index = j; 3241 as[cnt].dir = dir; 3242 } 3243 if (seq < first) 3244 first = seq; 3245 /* Check association correctness. */ 3246 if (as[cnt].pins[seq] != 0) { 3247 device_printf(devinfo->dev, "%s: Duplicate pin %d (%d) " 3248 "in association %d! Disabling association.\n", 3249 __func__, seq, w->nid, j); 3250 as[cnt].enable = 0; 3251 } 3252 if (dir != as[cnt].dir) { 3253 device_printf(devinfo->dev, "%s: Pin %d has wrong " 3254 "direction for association %d! Disabling " 3255 "association.\n", 3256 __func__, w->nid, j); 3257 as[cnt].enable = 0; 3258 } 3259 if (HDA_PARAM_AUDIO_WIDGET_CAP_DIGITAL(w->param.widget_cap)) { 3260 as[cnt].digital |= 0x1; 3261 if (HDA_PARAM_PIN_CAP_HDMI(w->wclass.pin.cap)) 3262 as[cnt].digital |= 0x2; 3263 if (HDA_PARAM_PIN_CAP_DP(w->wclass.pin.cap)) 3264 as[cnt].digital |= 0x4; 3265 } 3266 if (as[cnt].location == -1) { 3267 as[cnt].location = 3268 HDA_CONFIG_DEFAULTCONF_LOCATION(w->wclass.pin.config); 3269 } else if (as[cnt].location != 3270 HDA_CONFIG_DEFAULTCONF_LOCATION(w->wclass.pin.config)) { 3271 as[cnt].location = -2; 3272 } 3273 /* Headphones with seq=15 may mean redirection. */ 3274 if (type == HDA_CONFIG_DEFAULTCONF_DEVICE_HP_OUT && 3275 seq == 15) 3276 hpredir = 1; 3277 as[cnt].pins[seq] = w->nid; 3278 as[cnt].pincnt++; 3279 /* Association 15 is a multiple unassociated pins. */ 3280 if (j == 15) 3281 cnt++; 3282 } 3283 if (j != 15 && as[cnt].pincnt > 0) { 3284 if (hpredir && as[cnt].pincnt > 1) 3285 as[cnt].hpredir = first; 3286 cnt++; 3287 } 3288 } 3289 for (i = 0; i < max; i++) { 3290 if (as[i].dir == HDAA_CTL_IN && (as[i].pincnt == 1 || 3291 as[i].pins[14] > 0 || as[i].pins[15] > 0)) 3292 as[i].mixed = 1; 3293 } 3294 HDA_BOOTVERBOSE( 3295 device_printf(devinfo->dev, 3296 "%d associations found:\n", max); 3297 for (i = 0; i < max; i++) { 3298 device_printf(devinfo->dev, 3299 "Association %d (%d) %s%s:\n", 3300 i, as[i].index, (as[i].dir == HDAA_CTL_IN)?"in":"out", 3301 as[i].enable?"":" (disabled)"); 3302 for (j = 0; j < 16; j++) { 3303 if (as[i].pins[j] == 0) 3304 continue; 3305 device_printf(devinfo->dev, 3306 " Pin nid=%d seq=%d\n", 3307 as[i].pins[j], j); 3308 } 3309 } 3310 ); 3311 3312 devinfo->as = as; 3313 } 3314 3315 /* 3316 * Trace path from DAC to pin. 3317 */ 3318 static nid_t 3319 hdaa_audio_trace_dac(struct hdaa_devinfo *devinfo, int as, int seq, nid_t nid, 3320 int dupseq, int min, int only, int depth) 3321 { 3322 struct hdaa_widget *w; 3323 int i, im = -1; 3324 nid_t m = 0, ret; 3325 3326 if (depth > HDA_PARSE_MAXDEPTH) 3327 return (0); 3328 w = hdaa_widget_get(devinfo, nid); 3329 if (w == NULL || w->enable == 0) 3330 return (0); 3331 HDA_BOOTHVERBOSE( 3332 if (!only) { 3333 device_printf(devinfo->dev, 3334 " %*stracing via nid %d\n", 3335 depth + 1, "", w->nid); 3336 } 3337 ); 3338 /* Use only unused widgets */ 3339 if (w->bindas >= 0 && w->bindas != as) { 3340 HDA_BOOTHVERBOSE( 3341 if (!only) { 3342 device_printf(devinfo->dev, 3343 " %*snid %d busy by association %d\n", 3344 depth + 1, "", w->nid, w->bindas); 3345 } 3346 ); 3347 return (0); 3348 } 3349 if (dupseq < 0) { 3350 if (w->bindseqmask != 0) { 3351 HDA_BOOTHVERBOSE( 3352 if (!only) { 3353 device_printf(devinfo->dev, 3354 " %*snid %d busy by seqmask %x\n", 3355 depth + 1, "", w->nid, w->bindseqmask); 3356 } 3357 ); 3358 return (0); 3359 } 3360 } else { 3361 /* If this is headphones - allow duplicate first pin. */ 3362 if (w->bindseqmask != 0 && 3363 (w->bindseqmask & (1 << dupseq)) == 0) { 3364 HDA_BOOTHVERBOSE( 3365 device_printf(devinfo->dev, 3366 " %*snid %d busy by seqmask %x\n", 3367 depth + 1, "", w->nid, w->bindseqmask); 3368 ); 3369 return (0); 3370 } 3371 } 3372 3373 switch (w->type) { 3374 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT: 3375 /* Do not traverse input. AD1988 has digital monitor 3376 for which we are not ready. */ 3377 break; 3378 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_OUTPUT: 3379 /* If we are tracing HP take only dac of first pin. */ 3380 if ((only == 0 || only == w->nid) && 3381 (w->nid >= min) && (dupseq < 0 || w->nid == 3382 devinfo->as[as].dacs[0][dupseq])) 3383 m = w->nid; 3384 break; 3385 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX: 3386 if (depth > 0) 3387 break; 3388 /* Fall */ 3389 default: 3390 /* Find reachable DACs with smallest nid respecting constraints. */ 3391 for (i = 0; i < w->nconns; i++) { 3392 if (w->connsenable[i] == 0) 3393 continue; 3394 if (w->selconn != -1 && w->selconn != i) 3395 continue; 3396 if ((ret = hdaa_audio_trace_dac(devinfo, as, seq, 3397 w->conns[i], dupseq, min, only, depth + 1)) != 0) { 3398 if (m == 0 || ret < m) { 3399 m = ret; 3400 im = i; 3401 } 3402 if (only || dupseq >= 0) 3403 break; 3404 } 3405 } 3406 if (im >= 0 && only && ((w->nconns > 1 && 3407 w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER) || 3408 w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_SELECTOR)) 3409 w->selconn = im; 3410 break; 3411 } 3412 if (m && only) { 3413 w->bindas = as; 3414 w->bindseqmask |= (1 << seq); 3415 } 3416 HDA_BOOTHVERBOSE( 3417 if (!only) { 3418 device_printf(devinfo->dev, 3419 " %*snid %d returned %d\n", 3420 depth + 1, "", w->nid, m); 3421 } 3422 ); 3423 return (m); 3424 } 3425 3426 /* 3427 * Trace path from widget to ADC. 3428 */ 3429 static nid_t 3430 hdaa_audio_trace_adc(struct hdaa_devinfo *devinfo, int as, int seq, nid_t nid, 3431 int mixed, int min, int only, int depth, int *length, int onlylength) 3432 { 3433 struct hdaa_widget *w, *wc; 3434 int i, j, im, lm = HDA_PARSE_MAXDEPTH; 3435 nid_t m = 0, ret; 3436 3437 if (depth > HDA_PARSE_MAXDEPTH) 3438 return (0); 3439 w = hdaa_widget_get(devinfo, nid); 3440 if (w == NULL || w->enable == 0) 3441 return (0); 3442 HDA_BOOTHVERBOSE( 3443 device_printf(devinfo->dev, 3444 " %*stracing via nid %d\n", 3445 depth + 1, "", w->nid); 3446 ); 3447 /* Use only unused widgets */ 3448 if (w->bindas >= 0 && w->bindas != as) { 3449 HDA_BOOTHVERBOSE( 3450 device_printf(devinfo->dev, 3451 " %*snid %d busy by association %d\n", 3452 depth + 1, "", w->nid, w->bindas); 3453 ); 3454 return (0); 3455 } 3456 if (!mixed && w->bindseqmask != 0) { 3457 HDA_BOOTHVERBOSE( 3458 device_printf(devinfo->dev, 3459 " %*snid %d busy by seqmask %x\n", 3460 depth + 1, "", w->nid, w->bindseqmask); 3461 ); 3462 return (0); 3463 } 3464 switch (w->type) { 3465 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT: 3466 if ((only == 0 || only == w->nid) && (w->nid >= min) && 3467 (onlylength == 0 || onlylength == depth)) { 3468 m = w->nid; 3469 *length = depth; 3470 } 3471 break; 3472 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX: 3473 if (depth > 0) 3474 break; 3475 /* Fall */ 3476 default: 3477 /* Try to find reachable ADCs with specified nid. */ 3478 for (j = devinfo->startnode; j < devinfo->endnode; j++) { 3479 wc = hdaa_widget_get(devinfo, j); 3480 if (wc == NULL || wc->enable == 0) 3481 continue; 3482 im = -1; 3483 for (i = 0; i < wc->nconns; i++) { 3484 if (wc->connsenable[i] == 0) 3485 continue; 3486 if (wc->conns[i] != nid) 3487 continue; 3488 if ((ret = hdaa_audio_trace_adc(devinfo, as, seq, 3489 j, mixed, min, only, depth + 1, 3490 length, onlylength)) != 0) { 3491 if (m == 0 || ret < m || 3492 (ret == m && *length < lm)) { 3493 m = ret; 3494 im = i; 3495 lm = *length; 3496 } else 3497 *length = lm; 3498 if (only) 3499 break; 3500 } 3501 } 3502 if (im >= 0 && only && ((wc->nconns > 1 && 3503 wc->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER) || 3504 wc->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_SELECTOR)) 3505 wc->selconn = im; 3506 } 3507 break; 3508 } 3509 if (m && only) { 3510 w->bindas = as; 3511 w->bindseqmask |= (1 << seq); 3512 } 3513 HDA_BOOTHVERBOSE( 3514 device_printf(devinfo->dev, 3515 " %*snid %d returned %d\n", 3516 depth + 1, "", w->nid, m); 3517 ); 3518 return (m); 3519 } 3520 3521 /* 3522 * Erase trace path of the specified association. 3523 */ 3524 static void 3525 hdaa_audio_undo_trace(struct hdaa_devinfo *devinfo, int as, int seq) 3526 { 3527 struct hdaa_widget *w; 3528 int i; 3529 3530 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 3531 w = hdaa_widget_get(devinfo, i); 3532 if (w == NULL || w->enable == 0) 3533 continue; 3534 if (w->bindas == as) { 3535 if (seq >= 0) { 3536 w->bindseqmask &= ~(1 << seq); 3537 if (w->bindseqmask == 0) { 3538 w->bindas = -1; 3539 w->selconn = -1; 3540 } 3541 } else { 3542 w->bindas = -1; 3543 w->bindseqmask = 0; 3544 w->selconn = -1; 3545 } 3546 } 3547 } 3548 } 3549 3550 /* 3551 * Trace association path from DAC to output 3552 */ 3553 static int 3554 hdaa_audio_trace_as_out(struct hdaa_devinfo *devinfo, int as, int seq) 3555 { 3556 struct hdaa_audio_as *ases = devinfo->as; 3557 int i, hpredir; 3558 nid_t min, res; 3559 3560 /* Find next pin */ 3561 for (i = seq; i < 16 && ases[as].pins[i] == 0; i++) 3562 ; 3563 /* Check if there is no any left. If so - we succeeded. */ 3564 if (i == 16) 3565 return (1); 3566 3567 hpredir = (i == 15 && ases[as].fakeredir == 0)?ases[as].hpredir:-1; 3568 min = 0; 3569 do { 3570 HDA_BOOTHVERBOSE( 3571 device_printf(devinfo->dev, 3572 " Tracing pin %d with min nid %d", 3573 ases[as].pins[i], min); 3574 if (hpredir >= 0) 3575 printf(" and hpredir %d", hpredir); 3576 printf("\n"); 3577 ); 3578 /* Trace this pin taking min nid into account. */ 3579 res = hdaa_audio_trace_dac(devinfo, as, i, 3580 ases[as].pins[i], hpredir, min, 0, 0); 3581 if (res == 0) { 3582 /* If we failed - return to previous and redo it. */ 3583 HDA_BOOTVERBOSE( 3584 device_printf(devinfo->dev, 3585 " Unable to trace pin %d seq %d with min " 3586 "nid %d", 3587 ases[as].pins[i], i, min); 3588 if (hpredir >= 0) 3589 printf(" and hpredir %d", hpredir); 3590 printf("\n"); 3591 ); 3592 return (0); 3593 } 3594 HDA_BOOTVERBOSE( 3595 device_printf(devinfo->dev, 3596 " Pin %d traced to DAC %d", 3597 ases[as].pins[i], res); 3598 if (hpredir >= 0) 3599 printf(" and hpredir %d", hpredir); 3600 if (ases[as].fakeredir) 3601 printf(" with fake redirection"); 3602 printf("\n"); 3603 ); 3604 /* Trace again to mark the path */ 3605 hdaa_audio_trace_dac(devinfo, as, i, 3606 ases[as].pins[i], hpredir, min, res, 0); 3607 ases[as].dacs[0][i] = res; 3608 /* We succeeded, so call next. */ 3609 if (hdaa_audio_trace_as_out(devinfo, as, i + 1)) 3610 return (1); 3611 /* If next failed, we should retry with next min */ 3612 hdaa_audio_undo_trace(devinfo, as, i); 3613 ases[as].dacs[0][i] = 0; 3614 min = res + 1; 3615 } while (1); 3616 } 3617 3618 /* 3619 * Check equivalency of two DACs. 3620 */ 3621 static int 3622 hdaa_audio_dacs_equal(struct hdaa_widget *w1, struct hdaa_widget *w2) 3623 { 3624 struct hdaa_devinfo *devinfo = w1->devinfo; 3625 struct hdaa_widget *w3; 3626 int i, j, c1, c2; 3627 3628 if (memcmp(&w1->param, &w2->param, sizeof(w1->param))) 3629 return (0); 3630 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 3631 w3 = hdaa_widget_get(devinfo, i); 3632 if (w3 == NULL || w3->enable == 0) 3633 continue; 3634 if (w3->bindas != w1->bindas) 3635 continue; 3636 if (w3->nconns == 0) 3637 continue; 3638 c1 = c2 = -1; 3639 for (j = 0; j < w3->nconns; j++) { 3640 if (w3->connsenable[j] == 0) 3641 continue; 3642 if (w3->conns[j] == w1->nid) 3643 c1 = j; 3644 if (w3->conns[j] == w2->nid) 3645 c2 = j; 3646 } 3647 if (c1 < 0) 3648 continue; 3649 if (c2 < 0) 3650 return (0); 3651 if (w3->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER) 3652 return (0); 3653 } 3654 return (1); 3655 } 3656 3657 /* 3658 * Check equivalency of two ADCs. 3659 */ 3660 static int 3661 hdaa_audio_adcs_equal(struct hdaa_widget *w1, struct hdaa_widget *w2) 3662 { 3663 struct hdaa_devinfo *devinfo = w1->devinfo; 3664 struct hdaa_widget *w3, *w4; 3665 int i; 3666 3667 if (memcmp(&w1->param, &w2->param, sizeof(w1->param))) 3668 return (0); 3669 if (w1->nconns != 1 || w2->nconns != 1) 3670 return (0); 3671 if (w1->conns[0] == w2->conns[0]) 3672 return (1); 3673 w3 = hdaa_widget_get(devinfo, w1->conns[0]); 3674 if (w3 == NULL || w3->enable == 0) 3675 return (0); 3676 w4 = hdaa_widget_get(devinfo, w2->conns[0]); 3677 if (w4 == NULL || w4->enable == 0) 3678 return (0); 3679 if (w3->bindas == w4->bindas && w3->bindseqmask == w4->bindseqmask) 3680 return (1); 3681 if (w4->bindas >= 0) 3682 return (0); 3683 if (w3->type != w4->type) 3684 return (0); 3685 if (memcmp(&w3->param, &w4->param, sizeof(w3->param))) 3686 return (0); 3687 if (w3->nconns != w4->nconns) 3688 return (0); 3689 for (i = 0; i < w3->nconns; i++) { 3690 if (w3->conns[i] != w4->conns[i]) 3691 return (0); 3692 } 3693 return (1); 3694 } 3695 3696 /* 3697 * Look for equivalent DAC/ADC to implement second channel. 3698 */ 3699 static void 3700 hdaa_audio_adddac(struct hdaa_devinfo *devinfo, int asid) 3701 { 3702 struct hdaa_audio_as *as = &devinfo->as[asid]; 3703 struct hdaa_widget *w1, *w2; 3704 int i, pos; 3705 nid_t nid1, nid2; 3706 3707 HDA_BOOTVERBOSE( 3708 device_printf(devinfo->dev, 3709 "Looking for additional %sC " 3710 "for association %d (%d)\n", 3711 (as->dir == HDAA_CTL_OUT) ? "DA" : "AD", 3712 asid, as->index); 3713 ); 3714 3715 /* Find the exisitng DAC position and return if found more the one. */ 3716 pos = -1; 3717 for (i = 0; i < 16; i++) { 3718 if (as->dacs[0][i] <= 0) 3719 continue; 3720 if (pos >= 0 && as->dacs[0][i] != as->dacs[0][pos]) 3721 return; 3722 pos = i; 3723 } 3724 3725 nid1 = as->dacs[0][pos]; 3726 w1 = hdaa_widget_get(devinfo, nid1); 3727 w2 = NULL; 3728 for (nid2 = devinfo->startnode; nid2 < devinfo->endnode; nid2++) { 3729 w2 = hdaa_widget_get(devinfo, nid2); 3730 if (w2 == NULL || w2->enable == 0) 3731 continue; 3732 if (w2->bindas >= 0) 3733 continue; 3734 if (w1->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_OUTPUT) { 3735 if (w2->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_OUTPUT) 3736 continue; 3737 if (hdaa_audio_dacs_equal(w1, w2)) 3738 break; 3739 } else { 3740 if (w2->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT) 3741 continue; 3742 if (hdaa_audio_adcs_equal(w1, w2)) 3743 break; 3744 } 3745 } 3746 if (nid2 >= devinfo->endnode) 3747 return; 3748 w2->bindas = w1->bindas; 3749 w2->bindseqmask = w1->bindseqmask; 3750 if (w1->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT) { 3751 HDA_BOOTVERBOSE( 3752 device_printf(devinfo->dev, 3753 " ADC %d considered equal to ADC %d\n", nid2, nid1); 3754 ); 3755 w1 = hdaa_widget_get(devinfo, w1->conns[0]); 3756 w2 = hdaa_widget_get(devinfo, w2->conns[0]); 3757 w2->bindas = w1->bindas; 3758 w2->bindseqmask = w1->bindseqmask; 3759 } else { 3760 HDA_BOOTVERBOSE( 3761 device_printf(devinfo->dev, 3762 " DAC %d considered equal to DAC %d\n", nid2, nid1); 3763 ); 3764 } 3765 for (i = 0; i < 16; i++) { 3766 if (as->dacs[0][i] <= 0) 3767 continue; 3768 as->dacs[as->num_chans][i] = nid2; 3769 } 3770 as->num_chans++; 3771 } 3772 3773 /* 3774 * Trace association path from input to ADC 3775 */ 3776 static int 3777 hdaa_audio_trace_as_in(struct hdaa_devinfo *devinfo, int as) 3778 { 3779 struct hdaa_audio_as *ases = devinfo->as; 3780 struct hdaa_widget *w; 3781 int i, j, k, length; 3782 3783 for (j = devinfo->startnode; j < devinfo->endnode; j++) { 3784 w = hdaa_widget_get(devinfo, j); 3785 if (w == NULL || w->enable == 0) 3786 continue; 3787 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT) 3788 continue; 3789 if (w->bindas >= 0 && w->bindas != as) 3790 continue; 3791 3792 /* Find next pin */ 3793 for (i = 0; i < 16; i++) { 3794 if (ases[as].pins[i] == 0) 3795 continue; 3796 3797 HDA_BOOTHVERBOSE( 3798 device_printf(devinfo->dev, 3799 " Tracing pin %d to ADC %d\n", 3800 ases[as].pins[i], j); 3801 ); 3802 /* Trace this pin taking goal into account. */ 3803 if (hdaa_audio_trace_adc(devinfo, as, i, 3804 ases[as].pins[i], 1, 0, j, 0, &length, 0) == 0) { 3805 /* If we failed - return to previous and redo it. */ 3806 HDA_BOOTVERBOSE( 3807 device_printf(devinfo->dev, 3808 " Unable to trace pin %d to ADC %d, undo traces\n", 3809 ases[as].pins[i], j); 3810 ); 3811 hdaa_audio_undo_trace(devinfo, as, -1); 3812 for (k = 0; k < 16; k++) 3813 ases[as].dacs[0][k] = 0; 3814 break; 3815 } 3816 HDA_BOOTVERBOSE( 3817 device_printf(devinfo->dev, 3818 " Pin %d traced to ADC %d\n", 3819 ases[as].pins[i], j); 3820 ); 3821 ases[as].dacs[0][i] = j; 3822 } 3823 if (i == 16) 3824 return (1); 3825 } 3826 return (0); 3827 } 3828 3829 /* 3830 * Trace association path from input to multiple ADCs 3831 */ 3832 static int 3833 hdaa_audio_trace_as_in_mch(struct hdaa_devinfo *devinfo, int as, int seq) 3834 { 3835 struct hdaa_audio_as *ases = devinfo->as; 3836 int i, length; 3837 nid_t min, res; 3838 3839 /* Find next pin */ 3840 for (i = seq; i < 16 && ases[as].pins[i] == 0; i++) 3841 ; 3842 /* Check if there is no any left. If so - we succeeded. */ 3843 if (i == 16) 3844 return (1); 3845 3846 min = 0; 3847 do { 3848 HDA_BOOTHVERBOSE( 3849 device_printf(devinfo->dev, 3850 " Tracing pin %d with min nid %d", 3851 ases[as].pins[i], min); 3852 printf("\n"); 3853 ); 3854 /* Trace this pin taking min nid into account. */ 3855 res = hdaa_audio_trace_adc(devinfo, as, i, 3856 ases[as].pins[i], 0, min, 0, 0, &length, 0); 3857 if (res == 0) { 3858 /* If we failed - return to previous and redo it. */ 3859 HDA_BOOTVERBOSE( 3860 device_printf(devinfo->dev, 3861 " Unable to trace pin %d seq %d with min " 3862 "nid %d", 3863 ases[as].pins[i], i, min); 3864 printf("\n"); 3865 ); 3866 return (0); 3867 } 3868 HDA_BOOTVERBOSE( 3869 device_printf(devinfo->dev, 3870 " Pin %d traced to ADC %d\n", 3871 ases[as].pins[i], res); 3872 ); 3873 /* Trace again to mark the path */ 3874 hdaa_audio_trace_adc(devinfo, as, i, 3875 ases[as].pins[i], 0, min, res, 0, &length, length); 3876 ases[as].dacs[0][i] = res; 3877 /* We succeeded, so call next. */ 3878 if (hdaa_audio_trace_as_in_mch(devinfo, as, i + 1)) 3879 return (1); 3880 /* If next failed, we should retry with next min */ 3881 hdaa_audio_undo_trace(devinfo, as, i); 3882 ases[as].dacs[0][i] = 0; 3883 min = res + 1; 3884 } while (1); 3885 } 3886 3887 /* 3888 * Trace input monitor path from mixer to output association. 3889 */ 3890 static int 3891 hdaa_audio_trace_to_out(struct hdaa_devinfo *devinfo, nid_t nid, int depth) 3892 { 3893 struct hdaa_audio_as *ases = devinfo->as; 3894 struct hdaa_widget *w, *wc; 3895 int i, j; 3896 nid_t res = 0; 3897 3898 if (depth > HDA_PARSE_MAXDEPTH) 3899 return (0); 3900 w = hdaa_widget_get(devinfo, nid); 3901 if (w == NULL || w->enable == 0) 3902 return (0); 3903 HDA_BOOTHVERBOSE( 3904 device_printf(devinfo->dev, 3905 " %*stracing via nid %d\n", 3906 depth + 1, "", w->nid); 3907 ); 3908 /* Use only unused widgets */ 3909 if (depth > 0 && w->bindas != -1) { 3910 if (w->bindas < 0 || ases[w->bindas].dir == HDAA_CTL_OUT) { 3911 HDA_BOOTHVERBOSE( 3912 device_printf(devinfo->dev, 3913 " %*snid %d found output association %d\n", 3914 depth + 1, "", w->nid, w->bindas); 3915 ); 3916 if (w->bindas >= 0) 3917 w->pflags |= HDAA_ADC_MONITOR; 3918 return (1); 3919 } else { 3920 HDA_BOOTHVERBOSE( 3921 device_printf(devinfo->dev, 3922 " %*snid %d busy by input association %d\n", 3923 depth + 1, "", w->nid, w->bindas); 3924 ); 3925 return (0); 3926 } 3927 } 3928 3929 switch (w->type) { 3930 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT: 3931 /* Do not traverse input. AD1988 has digital monitor 3932 for which we are not ready. */ 3933 break; 3934 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX: 3935 if (depth > 0) 3936 break; 3937 /* Fall */ 3938 default: 3939 /* Try to find reachable ADCs with specified nid. */ 3940 for (j = devinfo->startnode; j < devinfo->endnode; j++) { 3941 wc = hdaa_widget_get(devinfo, j); 3942 if (wc == NULL || wc->enable == 0) 3943 continue; 3944 for (i = 0; i < wc->nconns; i++) { 3945 if (wc->connsenable[i] == 0) 3946 continue; 3947 if (wc->conns[i] != nid) 3948 continue; 3949 if (hdaa_audio_trace_to_out(devinfo, 3950 j, depth + 1) != 0) { 3951 res = 1; 3952 if (wc->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_SELECTOR && 3953 wc->selconn == -1) 3954 wc->selconn = i; 3955 } 3956 } 3957 } 3958 break; 3959 } 3960 if (res && w->bindas == -1) 3961 w->bindas = -2; 3962 3963 HDA_BOOTHVERBOSE( 3964 device_printf(devinfo->dev, 3965 " %*snid %d returned %d\n", 3966 depth + 1, "", w->nid, res); 3967 ); 3968 return (res); 3969 } 3970 3971 /* 3972 * Trace extra associations (beeper, monitor) 3973 */ 3974 static void 3975 hdaa_audio_trace_as_extra(struct hdaa_devinfo *devinfo) 3976 { 3977 struct hdaa_audio_as *as = devinfo->as; 3978 struct hdaa_widget *w; 3979 int j; 3980 3981 /* Input monitor */ 3982 /* Find mixer associated with input, but supplying signal 3983 for output associations. Hope it will be input monitor. */ 3984 HDA_BOOTVERBOSE( 3985 device_printf(devinfo->dev, 3986 "Tracing input monitor\n"); 3987 ); 3988 for (j = devinfo->startnode; j < devinfo->endnode; j++) { 3989 w = hdaa_widget_get(devinfo, j); 3990 if (w == NULL || w->enable == 0) 3991 continue; 3992 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER) 3993 continue; 3994 if (w->bindas < 0 || as[w->bindas].dir != HDAA_CTL_IN) 3995 continue; 3996 HDA_BOOTVERBOSE( 3997 device_printf(devinfo->dev, 3998 " Tracing nid %d to out\n", 3999 j); 4000 ); 4001 if (hdaa_audio_trace_to_out(devinfo, w->nid, 0)) { 4002 HDA_BOOTVERBOSE( 4003 device_printf(devinfo->dev, 4004 " nid %d is input monitor\n", 4005 w->nid); 4006 ); 4007 w->ossdev = SOUND_MIXER_IMIX; 4008 } 4009 } 4010 4011 /* Other inputs monitor */ 4012 /* Find input pins supplying signal for output associations. 4013 Hope it will be input monitoring. */ 4014 HDA_BOOTVERBOSE( 4015 device_printf(devinfo->dev, 4016 "Tracing other input monitors\n"); 4017 ); 4018 for (j = devinfo->startnode; j < devinfo->endnode; j++) { 4019 w = hdaa_widget_get(devinfo, j); 4020 if (w == NULL || w->enable == 0) 4021 continue; 4022 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 4023 continue; 4024 if (w->bindas < 0 || as[w->bindas].dir != HDAA_CTL_IN) 4025 continue; 4026 HDA_BOOTVERBOSE( 4027 device_printf(devinfo->dev, 4028 " Tracing nid %d to out\n", 4029 j); 4030 ); 4031 if (hdaa_audio_trace_to_out(devinfo, w->nid, 0)) { 4032 HDA_BOOTVERBOSE( 4033 device_printf(devinfo->dev, 4034 " nid %d is input monitor\n", 4035 w->nid); 4036 ); 4037 } 4038 } 4039 4040 /* Beeper */ 4041 HDA_BOOTVERBOSE( 4042 device_printf(devinfo->dev, 4043 "Tracing beeper\n"); 4044 ); 4045 for (j = devinfo->startnode; j < devinfo->endnode; j++) { 4046 w = hdaa_widget_get(devinfo, j); 4047 if (w == NULL || w->enable == 0) 4048 continue; 4049 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_BEEP_WIDGET) 4050 continue; 4051 HDA_BOOTHVERBOSE( 4052 device_printf(devinfo->dev, 4053 " Tracing nid %d to out\n", 4054 j); 4055 ); 4056 if (hdaa_audio_trace_to_out(devinfo, w->nid, 0)) { 4057 HDA_BOOTVERBOSE( 4058 device_printf(devinfo->dev, 4059 " nid %d traced to out\n", 4060 j); 4061 ); 4062 } 4063 w->bindas = -2; 4064 } 4065 } 4066 4067 /* 4068 * Bind assotiations to PCM channels 4069 */ 4070 static void 4071 hdaa_audio_bind_as(struct hdaa_devinfo *devinfo) 4072 { 4073 struct hdaa_audio_as *as = devinfo->as; 4074 int i, j, cnt = 0, free; 4075 4076 for (j = 0; j < devinfo->ascnt; j++) { 4077 if (as[j].enable) 4078 cnt += as[j].num_chans; 4079 } 4080 if (devinfo->num_chans == 0) { 4081 devinfo->chans = (struct hdaa_chan *)malloc( 4082 sizeof(struct hdaa_chan) * cnt, 4083 M_HDAA, M_ZERO | M_NOWAIT); 4084 if (devinfo->chans == NULL) { 4085 device_printf(devinfo->dev, 4086 "Channels memory allocation failed!\n"); 4087 return; 4088 } 4089 } else { 4090 devinfo->chans = (struct hdaa_chan *)realloc(devinfo->chans, 4091 sizeof(struct hdaa_chan) * (devinfo->num_chans + cnt), 4092 M_HDAA, M_ZERO | M_NOWAIT); 4093 if (devinfo->chans == NULL) { 4094 devinfo->num_chans = 0; 4095 device_printf(devinfo->dev, 4096 "Channels memory allocation failed!\n"); 4097 return; 4098 } 4099 /* Fixup relative pointers after realloc */ 4100 for (j = 0; j < devinfo->num_chans; j++) 4101 devinfo->chans[j].caps.fmtlist = devinfo->chans[j].fmtlist; 4102 } 4103 free = devinfo->num_chans; 4104 devinfo->num_chans += cnt; 4105 4106 for (j = free; j < free + cnt; j++) { 4107 devinfo->chans[j].devinfo = devinfo; 4108 devinfo->chans[j].as = -1; 4109 } 4110 4111 /* Assign associations in order of their numbers, */ 4112 for (j = 0; j < devinfo->ascnt; j++) { 4113 if (as[j].enable == 0) 4114 continue; 4115 for (i = 0; i < as[j].num_chans; i++) { 4116 devinfo->chans[free].as = j; 4117 devinfo->chans[free].asindex = i; 4118 devinfo->chans[free].dir = 4119 (as[j].dir == HDAA_CTL_IN) ? PCMDIR_REC : PCMDIR_PLAY; 4120 hdaa_pcmchannel_setup(&devinfo->chans[free]); 4121 as[j].chans[i] = free; 4122 free++; 4123 } 4124 } 4125 } 4126 4127 static void 4128 hdaa_audio_disable_nonaudio(struct hdaa_devinfo *devinfo) 4129 { 4130 struct hdaa_widget *w; 4131 int i; 4132 4133 /* Disable power and volume widgets. */ 4134 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 4135 w = hdaa_widget_get(devinfo, i); 4136 if (w == NULL || w->enable == 0) 4137 continue; 4138 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_POWER_WIDGET || 4139 w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_VOLUME_WIDGET) { 4140 w->enable = 0; 4141 HDA_BOOTHVERBOSE( 4142 device_printf(devinfo->dev, 4143 " Disabling nid %d due to it's" 4144 " non-audio type.\n", 4145 w->nid); 4146 ); 4147 } 4148 } 4149 } 4150 4151 static void 4152 hdaa_audio_disable_useless(struct hdaa_devinfo *devinfo) 4153 { 4154 struct hdaa_widget *w, *cw; 4155 struct hdaa_audio_ctl *ctl; 4156 int done, found, i, j, k; 4157 4158 /* Disable useless pins. */ 4159 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 4160 w = hdaa_widget_get(devinfo, i); 4161 if (w == NULL || w->enable == 0) 4162 continue; 4163 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) { 4164 if ((w->wclass.pin.config & 4165 HDA_CONFIG_DEFAULTCONF_CONNECTIVITY_MASK) == 4166 HDA_CONFIG_DEFAULTCONF_CONNECTIVITY_NONE) { 4167 w->enable = 0; 4168 HDA_BOOTHVERBOSE( 4169 device_printf(devinfo->dev, 4170 " Disabling pin nid %d due" 4171 " to None connectivity.\n", 4172 w->nid); 4173 ); 4174 } else if ((w->wclass.pin.config & 4175 HDA_CONFIG_DEFAULTCONF_ASSOCIATION_MASK) == 0) { 4176 w->enable = 0; 4177 HDA_BOOTHVERBOSE( 4178 device_printf(devinfo->dev, 4179 " Disabling unassociated" 4180 " pin nid %d.\n", 4181 w->nid); 4182 ); 4183 } 4184 } 4185 } 4186 do { 4187 done = 1; 4188 /* Disable and mute controls for disabled widgets. */ 4189 i = 0; 4190 while ((ctl = hdaa_audio_ctl_each(devinfo, &i)) != NULL) { 4191 if (ctl->enable == 0) 4192 continue; 4193 if (ctl->widget->enable == 0 || 4194 (ctl->childwidget != NULL && 4195 ctl->childwidget->enable == 0)) { 4196 ctl->forcemute = 1; 4197 ctl->muted = HDAA_AMP_MUTE_ALL; 4198 ctl->left = 0; 4199 ctl->right = 0; 4200 ctl->enable = 0; 4201 if (ctl->ndir == HDAA_CTL_IN) 4202 ctl->widget->connsenable[ctl->index] = 0; 4203 done = 0; 4204 HDA_BOOTHVERBOSE( 4205 device_printf(devinfo->dev, 4206 " Disabling ctl %d nid %d cnid %d due" 4207 " to disabled widget.\n", i, 4208 ctl->widget->nid, 4209 (ctl->childwidget != NULL)? 4210 ctl->childwidget->nid:-1); 4211 ); 4212 } 4213 } 4214 /* Disable useless widgets. */ 4215 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 4216 w = hdaa_widget_get(devinfo, i); 4217 if (w == NULL || w->enable == 0) 4218 continue; 4219 /* Disable inputs with disabled child widgets. */ 4220 for (j = 0; j < w->nconns; j++) { 4221 if (w->connsenable[j]) { 4222 cw = hdaa_widget_get(devinfo, w->conns[j]); 4223 if (cw == NULL || cw->enable == 0) { 4224 w->connsenable[j] = 0; 4225 HDA_BOOTHVERBOSE( 4226 device_printf(devinfo->dev, 4227 " Disabling nid %d connection %d due" 4228 " to disabled child widget.\n", 4229 i, j); 4230 ); 4231 } 4232 } 4233 } 4234 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_SELECTOR && 4235 w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER) 4236 continue; 4237 /* Disable mixers and selectors without inputs. */ 4238 found = 0; 4239 for (j = 0; j < w->nconns; j++) { 4240 if (w->connsenable[j]) { 4241 found = 1; 4242 break; 4243 } 4244 } 4245 if (found == 0) { 4246 w->enable = 0; 4247 done = 0; 4248 HDA_BOOTHVERBOSE( 4249 device_printf(devinfo->dev, 4250 " Disabling nid %d due to all it's" 4251 " inputs disabled.\n", w->nid); 4252 ); 4253 } 4254 /* Disable nodes without consumers. */ 4255 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_SELECTOR && 4256 w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER) 4257 continue; 4258 found = 0; 4259 for (k = devinfo->startnode; k < devinfo->endnode; k++) { 4260 cw = hdaa_widget_get(devinfo, k); 4261 if (cw == NULL || cw->enable == 0) 4262 continue; 4263 for (j = 0; j < cw->nconns; j++) { 4264 if (cw->connsenable[j] && cw->conns[j] == i) { 4265 found = 1; 4266 break; 4267 } 4268 } 4269 } 4270 if (found == 0) { 4271 w->enable = 0; 4272 done = 0; 4273 HDA_BOOTHVERBOSE( 4274 device_printf(devinfo->dev, 4275 " Disabling nid %d due to all it's" 4276 " consumers disabled.\n", w->nid); 4277 ); 4278 } 4279 } 4280 } while (done == 0); 4281 4282 } 4283 4284 static void 4285 hdaa_audio_disable_unas(struct hdaa_devinfo *devinfo) 4286 { 4287 struct hdaa_audio_as *as = devinfo->as; 4288 struct hdaa_widget *w, *cw; 4289 struct hdaa_audio_ctl *ctl; 4290 int i, j, k; 4291 4292 /* Disable unassosiated widgets. */ 4293 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 4294 w = hdaa_widget_get(devinfo, i); 4295 if (w == NULL || w->enable == 0) 4296 continue; 4297 if (w->bindas == -1) { 4298 w->enable = 0; 4299 HDA_BOOTHVERBOSE( 4300 device_printf(devinfo->dev, 4301 " Disabling unassociated nid %d.\n", 4302 w->nid); 4303 ); 4304 } 4305 } 4306 /* Disable input connections on input pin and 4307 * output on output. */ 4308 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 4309 w = hdaa_widget_get(devinfo, i); 4310 if (w == NULL || w->enable == 0) 4311 continue; 4312 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 4313 continue; 4314 if (w->bindas < 0) 4315 continue; 4316 if (as[w->bindas].dir == HDAA_CTL_IN) { 4317 for (j = 0; j < w->nconns; j++) { 4318 if (w->connsenable[j] == 0) 4319 continue; 4320 w->connsenable[j] = 0; 4321 HDA_BOOTHVERBOSE( 4322 device_printf(devinfo->dev, 4323 " Disabling connection to input pin " 4324 "nid %d conn %d.\n", 4325 i, j); 4326 ); 4327 } 4328 ctl = hdaa_audio_ctl_amp_get(devinfo, w->nid, 4329 HDAA_CTL_IN, -1, 1); 4330 if (ctl && ctl->enable) { 4331 ctl->forcemute = 1; 4332 ctl->muted = HDAA_AMP_MUTE_ALL; 4333 ctl->left = 0; 4334 ctl->right = 0; 4335 ctl->enable = 0; 4336 } 4337 } else { 4338 ctl = hdaa_audio_ctl_amp_get(devinfo, w->nid, 4339 HDAA_CTL_OUT, -1, 1); 4340 if (ctl && ctl->enable) { 4341 ctl->forcemute = 1; 4342 ctl->muted = HDAA_AMP_MUTE_ALL; 4343 ctl->left = 0; 4344 ctl->right = 0; 4345 ctl->enable = 0; 4346 } 4347 for (k = devinfo->startnode; k < devinfo->endnode; k++) { 4348 cw = hdaa_widget_get(devinfo, k); 4349 if (cw == NULL || cw->enable == 0) 4350 continue; 4351 for (j = 0; j < cw->nconns; j++) { 4352 if (cw->connsenable[j] && cw->conns[j] == i) { 4353 cw->connsenable[j] = 0; 4354 HDA_BOOTHVERBOSE( 4355 device_printf(devinfo->dev, 4356 " Disabling connection from output pin " 4357 "nid %d conn %d cnid %d.\n", 4358 k, j, i); 4359 ); 4360 if (cw->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX && 4361 cw->nconns > 1) 4362 continue; 4363 ctl = hdaa_audio_ctl_amp_get(devinfo, k, 4364 HDAA_CTL_IN, j, 1); 4365 if (ctl && ctl->enable) { 4366 ctl->forcemute = 1; 4367 ctl->muted = HDAA_AMP_MUTE_ALL; 4368 ctl->left = 0; 4369 ctl->right = 0; 4370 ctl->enable = 0; 4371 } 4372 } 4373 } 4374 } 4375 } 4376 } 4377 } 4378 4379 static void 4380 hdaa_audio_disable_notselected(struct hdaa_devinfo *devinfo) 4381 { 4382 struct hdaa_audio_as *as = devinfo->as; 4383 struct hdaa_widget *w; 4384 int i, j; 4385 4386 /* On playback path we can safely disable all unseleted inputs. */ 4387 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 4388 w = hdaa_widget_get(devinfo, i); 4389 if (w == NULL || w->enable == 0) 4390 continue; 4391 if (w->nconns <= 1) 4392 continue; 4393 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER) 4394 continue; 4395 if (w->bindas < 0 || as[w->bindas].dir == HDAA_CTL_IN) 4396 continue; 4397 for (j = 0; j < w->nconns; j++) { 4398 if (w->connsenable[j] == 0) 4399 continue; 4400 if (w->selconn < 0 || w->selconn == j) 4401 continue; 4402 w->connsenable[j] = 0; 4403 HDA_BOOTHVERBOSE( 4404 device_printf(devinfo->dev, 4405 " Disabling unselected connection " 4406 "nid %d conn %d.\n", 4407 i, j); 4408 ); 4409 } 4410 } 4411 } 4412 4413 static void 4414 hdaa_audio_disable_crossas(struct hdaa_devinfo *devinfo) 4415 { 4416 struct hdaa_audio_as *ases = devinfo->as; 4417 struct hdaa_widget *w, *cw; 4418 struct hdaa_audio_ctl *ctl; 4419 int i, j; 4420 4421 /* Disable crossassociatement and unwanted crosschannel connections. */ 4422 /* ... using selectors */ 4423 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 4424 w = hdaa_widget_get(devinfo, i); 4425 if (w == NULL || w->enable == 0) 4426 continue; 4427 if (w->nconns <= 1) 4428 continue; 4429 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER) 4430 continue; 4431 /* Allow any -> mix */ 4432 if (w->bindas == -2) 4433 continue; 4434 for (j = 0; j < w->nconns; j++) { 4435 if (w->connsenable[j] == 0) 4436 continue; 4437 cw = hdaa_widget_get(devinfo, w->conns[j]); 4438 if (cw == NULL || w->enable == 0) 4439 continue; 4440 /* Allow mix -> out. */ 4441 if (cw->bindas == -2 && w->bindas >= 0 && 4442 ases[w->bindas].dir == HDAA_CTL_OUT) 4443 continue; 4444 /* Allow mix -> mixed-in. */ 4445 if (cw->bindas == -2 && w->bindas >= 0 && 4446 ases[w->bindas].mixed) 4447 continue; 4448 /* Allow in -> mix. */ 4449 if ((w->pflags & HDAA_ADC_MONITOR) && 4450 cw->bindas >= 0 && 4451 ases[cw->bindas].dir == HDAA_CTL_IN) 4452 continue; 4453 /* Allow if have common as/seqs. */ 4454 if (w->bindas == cw->bindas && 4455 (w->bindseqmask & cw->bindseqmask) != 0) 4456 continue; 4457 w->connsenable[j] = 0; 4458 HDA_BOOTHVERBOSE( 4459 device_printf(devinfo->dev, 4460 " Disabling crossassociatement connection " 4461 "nid %d conn %d cnid %d.\n", 4462 i, j, cw->nid); 4463 ); 4464 } 4465 } 4466 /* ... using controls */ 4467 i = 0; 4468 while ((ctl = hdaa_audio_ctl_each(devinfo, &i)) != NULL) { 4469 if (ctl->enable == 0 || ctl->childwidget == NULL) 4470 continue; 4471 /* Allow any -> mix */ 4472 if (ctl->widget->bindas == -2) 4473 continue; 4474 /* Allow mix -> out. */ 4475 if (ctl->childwidget->bindas == -2 && 4476 ctl->widget->bindas >= 0 && 4477 ases[ctl->widget->bindas].dir == HDAA_CTL_OUT) 4478 continue; 4479 /* Allow mix -> mixed-in. */ 4480 if (ctl->childwidget->bindas == -2 && 4481 ctl->widget->bindas >= 0 && 4482 ases[ctl->widget->bindas].mixed) 4483 continue; 4484 /* Allow in -> mix. */ 4485 if ((ctl->widget->pflags & HDAA_ADC_MONITOR) && 4486 ctl->childwidget->bindas >= 0 && 4487 ases[ctl->childwidget->bindas].dir == HDAA_CTL_IN) 4488 continue; 4489 /* Allow if have common as/seqs. */ 4490 if (ctl->widget->bindas == ctl->childwidget->bindas && 4491 (ctl->widget->bindseqmask & ctl->childwidget->bindseqmask) != 0) 4492 continue; 4493 ctl->forcemute = 1; 4494 ctl->muted = HDAA_AMP_MUTE_ALL; 4495 ctl->left = 0; 4496 ctl->right = 0; 4497 ctl->enable = 0; 4498 if (ctl->ndir == HDAA_CTL_IN) 4499 ctl->widget->connsenable[ctl->index] = 0; 4500 HDA_BOOTHVERBOSE( 4501 device_printf(devinfo->dev, 4502 " Disabling crossassociatement connection " 4503 "ctl %d nid %d cnid %d.\n", i, 4504 ctl->widget->nid, 4505 ctl->childwidget->nid); 4506 ); 4507 } 4508 4509 } 4510 4511 /* 4512 * Find controls to control amplification for source and calculate possible 4513 * amplification range. 4514 */ 4515 static int 4516 hdaa_audio_ctl_source_amp(struct hdaa_devinfo *devinfo, nid_t nid, int index, 4517 int ossdev, int ctlable, int depth, int *minamp, int *maxamp) 4518 { 4519 struct hdaa_widget *w, *wc; 4520 struct hdaa_audio_ctl *ctl; 4521 int i, j, conns = 0, tminamp, tmaxamp, cminamp, cmaxamp, found = 0; 4522 4523 if (depth > HDA_PARSE_MAXDEPTH) 4524 return (found); 4525 4526 w = hdaa_widget_get(devinfo, nid); 4527 if (w == NULL || w->enable == 0) 4528 return (found); 4529 4530 /* Count number of active inputs. */ 4531 if (depth > 0) { 4532 for (j = 0; j < w->nconns; j++) { 4533 if (!w->connsenable[j]) 4534 continue; 4535 conns++; 4536 } 4537 } 4538 4539 /* If this is not a first step - use input mixer. 4540 Pins have common input ctl so care must be taken. */ 4541 if (depth > 0 && ctlable && (conns == 1 || 4542 w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX)) { 4543 ctl = hdaa_audio_ctl_amp_get(devinfo, w->nid, HDAA_CTL_IN, 4544 index, 1); 4545 if (ctl) { 4546 ctl->ossmask |= (1 << ossdev); 4547 found++; 4548 if (*minamp == *maxamp) { 4549 *minamp += MINQDB(ctl); 4550 *maxamp += MAXQDB(ctl); 4551 } 4552 } 4553 } 4554 4555 /* If widget has own ossdev - not traverse it. 4556 It will be traversed on its own. */ 4557 if (w->ossdev >= 0 && depth > 0) 4558 return (found); 4559 4560 /* We must not traverse pin */ 4561 if ((w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT || 4562 w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) && 4563 depth > 0) 4564 return (found); 4565 4566 /* record that this widget exports such signal, */ 4567 w->ossmask |= (1 << ossdev); 4568 4569 /* 4570 * If signals mixed, we can't assign controls farther. 4571 * Ignore this on depth zero. Caller must knows why. 4572 */ 4573 if (conns > 1 && 4574 w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER) 4575 ctlable = 0; 4576 4577 if (ctlable) { 4578 ctl = hdaa_audio_ctl_amp_get(devinfo, w->nid, HDAA_CTL_OUT, -1, 1); 4579 if (ctl) { 4580 ctl->ossmask |= (1 << ossdev); 4581 found++; 4582 if (*minamp == *maxamp) { 4583 *minamp += MINQDB(ctl); 4584 *maxamp += MAXQDB(ctl); 4585 } 4586 } 4587 } 4588 4589 cminamp = cmaxamp = 0; 4590 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 4591 wc = hdaa_widget_get(devinfo, i); 4592 if (wc == NULL || wc->enable == 0) 4593 continue; 4594 for (j = 0; j < wc->nconns; j++) { 4595 if (wc->connsenable[j] && wc->conns[j] == nid) { 4596 tminamp = tmaxamp = 0; 4597 found += hdaa_audio_ctl_source_amp(devinfo, 4598 wc->nid, j, ossdev, ctlable, depth + 1, 4599 &tminamp, &tmaxamp); 4600 if (cminamp == 0 && cmaxamp == 0) { 4601 cminamp = tminamp; 4602 cmaxamp = tmaxamp; 4603 } else if (tminamp != tmaxamp) { 4604 cminamp = imax(cminamp, tminamp); 4605 cmaxamp = imin(cmaxamp, tmaxamp); 4606 } 4607 } 4608 } 4609 } 4610 if (*minamp == *maxamp && cminamp < cmaxamp) { 4611 *minamp += cminamp; 4612 *maxamp += cmaxamp; 4613 } 4614 return (found); 4615 } 4616 4617 /* 4618 * Find controls to control amplification for destination and calculate 4619 * possible amplification range. 4620 */ 4621 static int 4622 hdaa_audio_ctl_dest_amp(struct hdaa_devinfo *devinfo, nid_t nid, int index, 4623 int ossdev, int depth, int *minamp, int *maxamp) 4624 { 4625 struct hdaa_audio_as *as = devinfo->as; 4626 struct hdaa_widget *w, *wc; 4627 struct hdaa_audio_ctl *ctl; 4628 int i, j, consumers, tminamp, tmaxamp, cminamp, cmaxamp, found = 0; 4629 4630 if (depth > HDA_PARSE_MAXDEPTH) 4631 return (found); 4632 4633 w = hdaa_widget_get(devinfo, nid); 4634 if (w == NULL || w->enable == 0) 4635 return (found); 4636 4637 if (depth > 0) { 4638 /* If this node produce output for several consumers, 4639 we can't touch it. */ 4640 consumers = 0; 4641 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 4642 wc = hdaa_widget_get(devinfo, i); 4643 if (wc == NULL || wc->enable == 0) 4644 continue; 4645 for (j = 0; j < wc->nconns; j++) { 4646 if (wc->connsenable[j] && wc->conns[j] == nid) 4647 consumers++; 4648 } 4649 } 4650 /* The only exception is if real HP redirection is configured 4651 and this is a duplication point. 4652 XXX: Actually exception is not completely correct. 4653 XXX: Duplication point check is not perfect. */ 4654 if ((consumers == 2 && (w->bindas < 0 || 4655 as[w->bindas].hpredir < 0 || as[w->bindas].fakeredir || 4656 (w->bindseqmask & (1 << 15)) == 0)) || 4657 consumers > 2) 4658 return (found); 4659 4660 /* Else use it's output mixer. */ 4661 ctl = hdaa_audio_ctl_amp_get(devinfo, w->nid, 4662 HDAA_CTL_OUT, -1, 1); 4663 if (ctl) { 4664 ctl->ossmask |= (1 << ossdev); 4665 found++; 4666 if (*minamp == *maxamp) { 4667 *minamp += MINQDB(ctl); 4668 *maxamp += MAXQDB(ctl); 4669 } 4670 } 4671 } 4672 4673 /* We must not traverse pin */ 4674 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX && 4675 depth > 0) 4676 return (found); 4677 4678 cminamp = cmaxamp = 0; 4679 for (i = 0; i < w->nconns; i++) { 4680 if (w->connsenable[i] == 0) 4681 continue; 4682 if (index >= 0 && i != index) 4683 continue; 4684 tminamp = tmaxamp = 0; 4685 ctl = hdaa_audio_ctl_amp_get(devinfo, w->nid, 4686 HDAA_CTL_IN, i, 1); 4687 if (ctl) { 4688 ctl->ossmask |= (1 << ossdev); 4689 found++; 4690 if (*minamp == *maxamp) { 4691 tminamp += MINQDB(ctl); 4692 tmaxamp += MAXQDB(ctl); 4693 } 4694 } 4695 found += hdaa_audio_ctl_dest_amp(devinfo, w->conns[i], -1, ossdev, 4696 depth + 1, &tminamp, &tmaxamp); 4697 if (cminamp == 0 && cmaxamp == 0) { 4698 cminamp = tminamp; 4699 cmaxamp = tmaxamp; 4700 } else if (tminamp != tmaxamp) { 4701 cminamp = imax(cminamp, tminamp); 4702 cmaxamp = imin(cmaxamp, tmaxamp); 4703 } 4704 } 4705 if (*minamp == *maxamp && cminamp < cmaxamp) { 4706 *minamp += cminamp; 4707 *maxamp += cmaxamp; 4708 } 4709 return (found); 4710 } 4711 4712 /* 4713 * Assign OSS names to sound sources 4714 */ 4715 static void 4716 hdaa_audio_assign_names(struct hdaa_devinfo *devinfo) 4717 { 4718 struct hdaa_audio_as *as = devinfo->as; 4719 struct hdaa_widget *w; 4720 int i, j; 4721 int type = -1, use, used = 0; 4722 static const int types[7][13] = { 4723 { SOUND_MIXER_LINE, SOUND_MIXER_LINE1, SOUND_MIXER_LINE2, 4724 SOUND_MIXER_LINE3, -1 }, /* line */ 4725 { SOUND_MIXER_MONITOR, SOUND_MIXER_MIC, -1 }, /* int mic */ 4726 { SOUND_MIXER_MIC, SOUND_MIXER_MONITOR, -1 }, /* ext mic */ 4727 { SOUND_MIXER_CD, -1 }, /* cd */ 4728 { SOUND_MIXER_SPEAKER, -1 }, /* speaker */ 4729 { SOUND_MIXER_DIGITAL1, SOUND_MIXER_DIGITAL2, SOUND_MIXER_DIGITAL3, 4730 -1 }, /* digital */ 4731 { SOUND_MIXER_LINE, SOUND_MIXER_LINE1, SOUND_MIXER_LINE2, 4732 SOUND_MIXER_LINE3, SOUND_MIXER_PHONEIN, SOUND_MIXER_PHONEOUT, 4733 SOUND_MIXER_VIDEO, SOUND_MIXER_RADIO, SOUND_MIXER_DIGITAL1, 4734 SOUND_MIXER_DIGITAL2, SOUND_MIXER_DIGITAL3, SOUND_MIXER_MONITOR, 4735 -1 } /* others */ 4736 }; 4737 4738 /* Surely known names */ 4739 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 4740 w = hdaa_widget_get(devinfo, i); 4741 if (w == NULL || w->enable == 0) 4742 continue; 4743 if (w->bindas == -1) 4744 continue; 4745 use = -1; 4746 switch (w->type) { 4747 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX: 4748 if (as[w->bindas].dir == HDAA_CTL_OUT) 4749 break; 4750 type = -1; 4751 switch (w->wclass.pin.config & HDA_CONFIG_DEFAULTCONF_DEVICE_MASK) { 4752 case HDA_CONFIG_DEFAULTCONF_DEVICE_LINE_IN: 4753 type = 0; 4754 break; 4755 case HDA_CONFIG_DEFAULTCONF_DEVICE_MIC_IN: 4756 if ((w->wclass.pin.config & HDA_CONFIG_DEFAULTCONF_CONNECTIVITY_MASK) 4757 == HDA_CONFIG_DEFAULTCONF_CONNECTIVITY_JACK) 4758 break; 4759 type = 1; 4760 break; 4761 case HDA_CONFIG_DEFAULTCONF_DEVICE_CD: 4762 type = 3; 4763 break; 4764 case HDA_CONFIG_DEFAULTCONF_DEVICE_SPEAKER: 4765 type = 4; 4766 break; 4767 case HDA_CONFIG_DEFAULTCONF_DEVICE_SPDIF_IN: 4768 case HDA_CONFIG_DEFAULTCONF_DEVICE_DIGITAL_OTHER_IN: 4769 type = 5; 4770 break; 4771 } 4772 if (type == -1) 4773 break; 4774 j = 0; 4775 while (types[type][j] >= 0 && 4776 (used & (1 << types[type][j])) != 0) { 4777 j++; 4778 } 4779 if (types[type][j] >= 0) 4780 use = types[type][j]; 4781 break; 4782 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_OUTPUT: 4783 use = SOUND_MIXER_PCM; 4784 break; 4785 case HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_BEEP_WIDGET: 4786 use = SOUND_MIXER_SPEAKER; 4787 break; 4788 default: 4789 break; 4790 } 4791 if (use >= 0) { 4792 w->ossdev = use; 4793 used |= (1 << use); 4794 } 4795 } 4796 /* Semi-known names */ 4797 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 4798 w = hdaa_widget_get(devinfo, i); 4799 if (w == NULL || w->enable == 0) 4800 continue; 4801 if (w->ossdev >= 0) 4802 continue; 4803 if (w->bindas == -1) 4804 continue; 4805 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 4806 continue; 4807 if (as[w->bindas].dir == HDAA_CTL_OUT) 4808 continue; 4809 type = -1; 4810 switch (w->wclass.pin.config & HDA_CONFIG_DEFAULTCONF_DEVICE_MASK) { 4811 case HDA_CONFIG_DEFAULTCONF_DEVICE_LINE_OUT: 4812 case HDA_CONFIG_DEFAULTCONF_DEVICE_SPEAKER: 4813 case HDA_CONFIG_DEFAULTCONF_DEVICE_HP_OUT: 4814 case HDA_CONFIG_DEFAULTCONF_DEVICE_AUX: 4815 type = 0; 4816 break; 4817 case HDA_CONFIG_DEFAULTCONF_DEVICE_MIC_IN: 4818 type = 2; 4819 break; 4820 case HDA_CONFIG_DEFAULTCONF_DEVICE_SPDIF_OUT: 4821 case HDA_CONFIG_DEFAULTCONF_DEVICE_DIGITAL_OTHER_OUT: 4822 type = 5; 4823 break; 4824 } 4825 if (type == -1) 4826 break; 4827 j = 0; 4828 while (types[type][j] >= 0 && 4829 (used & (1 << types[type][j])) != 0) { 4830 j++; 4831 } 4832 if (types[type][j] >= 0) { 4833 w->ossdev = types[type][j]; 4834 used |= (1 << types[type][j]); 4835 } 4836 } 4837 /* Others */ 4838 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 4839 w = hdaa_widget_get(devinfo, i); 4840 if (w == NULL || w->enable == 0) 4841 continue; 4842 if (w->ossdev >= 0) 4843 continue; 4844 if (w->bindas == -1) 4845 continue; 4846 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 4847 continue; 4848 if (as[w->bindas].dir == HDAA_CTL_OUT) 4849 continue; 4850 j = 0; 4851 while (types[6][j] >= 0 && 4852 (used & (1 << types[6][j])) != 0) { 4853 j++; 4854 } 4855 if (types[6][j] >= 0) { 4856 w->ossdev = types[6][j]; 4857 used |= (1 << types[6][j]); 4858 } 4859 } 4860 } 4861 4862 static void 4863 hdaa_audio_build_tree(struct hdaa_devinfo *devinfo) 4864 { 4865 struct hdaa_audio_as *as = devinfo->as; 4866 int j, res; 4867 4868 /* Trace all associations in order of their numbers. */ 4869 for (j = 0; j < devinfo->ascnt; j++) { 4870 if (as[j].enable == 0) 4871 continue; 4872 HDA_BOOTVERBOSE( 4873 device_printf(devinfo->dev, 4874 "Tracing association %d (%d)\n", j, as[j].index); 4875 ); 4876 if (as[j].dir == HDAA_CTL_OUT) { 4877 retry: 4878 res = hdaa_audio_trace_as_out(devinfo, j, 0); 4879 if (res == 0 && as[j].hpredir >= 0 && 4880 as[j].fakeredir == 0) { 4881 /* If CODEC can't do analog HP redirection 4882 try to make it using one more DAC. */ 4883 as[j].fakeredir = 1; 4884 goto retry; 4885 } 4886 } else if (as[j].mixed) 4887 res = hdaa_audio_trace_as_in(devinfo, j); 4888 else 4889 res = hdaa_audio_trace_as_in_mch(devinfo, j, 0); 4890 if (res) { 4891 HDA_BOOTVERBOSE( 4892 device_printf(devinfo->dev, 4893 "Association %d (%d) trace succeeded\n", 4894 j, as[j].index); 4895 ); 4896 } else { 4897 HDA_BOOTVERBOSE( 4898 device_printf(devinfo->dev, 4899 "Association %d (%d) trace failed\n", 4900 j, as[j].index); 4901 ); 4902 as[j].enable = 0; 4903 } 4904 } 4905 4906 /* Look for additional DACs/ADCs. */ 4907 for (j = 0; j < devinfo->ascnt; j++) { 4908 if (as[j].enable == 0) 4909 continue; 4910 hdaa_audio_adddac(devinfo, j); 4911 } 4912 4913 /* Trace mixer and beeper pseudo associations. */ 4914 hdaa_audio_trace_as_extra(devinfo); 4915 } 4916 4917 /* 4918 * Store in pdevinfo new data about whether and how we can control signal 4919 * for OSS device to/from specified widget. 4920 */ 4921 static void 4922 hdaa_adjust_amp(struct hdaa_widget *w, int ossdev, 4923 int found, int minamp, int maxamp) 4924 { 4925 struct hdaa_devinfo *devinfo = w->devinfo; 4926 struct hdaa_pcm_devinfo *pdevinfo; 4927 4928 if (w->bindas >= 0) 4929 pdevinfo = devinfo->as[w->bindas].pdevinfo; 4930 else 4931 pdevinfo = &devinfo->devs[0]; 4932 if (found) 4933 pdevinfo->ossmask |= (1 << ossdev); 4934 if (minamp == 0 && maxamp == 0) 4935 return; 4936 if (pdevinfo->minamp[ossdev] == 0 && pdevinfo->maxamp[ossdev] == 0) { 4937 pdevinfo->minamp[ossdev] = minamp; 4938 pdevinfo->maxamp[ossdev] = maxamp; 4939 } else { 4940 pdevinfo->minamp[ossdev] = imax(pdevinfo->minamp[ossdev], minamp); 4941 pdevinfo->maxamp[ossdev] = imin(pdevinfo->maxamp[ossdev], maxamp); 4942 } 4943 } 4944 4945 /* 4946 * Trace signals from/to all possible sources/destionstions to find possible 4947 * recording sources, OSS device control ranges and to assign controls. 4948 */ 4949 static void 4950 hdaa_audio_assign_mixers(struct hdaa_devinfo *devinfo) 4951 { 4952 struct hdaa_audio_as *as = devinfo->as; 4953 struct hdaa_widget *w, *cw; 4954 int i, j, minamp, maxamp, found; 4955 4956 /* Assign mixers to the tree. */ 4957 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 4958 w = hdaa_widget_get(devinfo, i); 4959 if (w == NULL || w->enable == 0) 4960 continue; 4961 minamp = maxamp = 0; 4962 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_OUTPUT || 4963 w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_BEEP_WIDGET || 4964 (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX && 4965 as[w->bindas].dir == HDAA_CTL_IN)) { 4966 if (w->ossdev < 0) 4967 continue; 4968 found = hdaa_audio_ctl_source_amp(devinfo, w->nid, -1, 4969 w->ossdev, 1, 0, &minamp, &maxamp); 4970 hdaa_adjust_amp(w, w->ossdev, found, minamp, maxamp); 4971 } else if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT) { 4972 found = hdaa_audio_ctl_dest_amp(devinfo, w->nid, -1, 4973 SOUND_MIXER_RECLEV, 0, &minamp, &maxamp); 4974 hdaa_adjust_amp(w, SOUND_MIXER_RECLEV, found, minamp, maxamp); 4975 } else if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX && 4976 as[w->bindas].dir == HDAA_CTL_OUT) { 4977 found = hdaa_audio_ctl_dest_amp(devinfo, w->nid, -1, 4978 SOUND_MIXER_VOLUME, 0, &minamp, &maxamp); 4979 hdaa_adjust_amp(w, SOUND_MIXER_VOLUME, found, minamp, maxamp); 4980 } 4981 if (w->ossdev == SOUND_MIXER_IMIX) { 4982 minamp = maxamp = 0; 4983 found = hdaa_audio_ctl_source_amp(devinfo, w->nid, -1, 4984 w->ossdev, 1, 0, &minamp, &maxamp); 4985 if (minamp == maxamp) { 4986 /* If we are unable to control input monitor 4987 as source - try to control it as destination. */ 4988 found += hdaa_audio_ctl_dest_amp(devinfo, w->nid, -1, 4989 w->ossdev, 0, &minamp, &maxamp); 4990 w->pflags |= HDAA_IMIX_AS_DST; 4991 } 4992 hdaa_adjust_amp(w, w->ossdev, found, minamp, maxamp); 4993 } 4994 if (w->pflags & HDAA_ADC_MONITOR) { 4995 for (j = 0; j < w->nconns; j++) { 4996 if (!w->connsenable[j]) 4997 continue; 4998 cw = hdaa_widget_get(devinfo, w->conns[j]); 4999 if (cw == NULL || cw->enable == 0) 5000 continue; 5001 if (cw->bindas == -1) 5002 continue; 5003 if (cw->bindas >= 0 && 5004 as[cw->bindas].dir != HDAA_CTL_IN) 5005 continue; 5006 minamp = maxamp = 0; 5007 found = hdaa_audio_ctl_dest_amp(devinfo, 5008 w->nid, j, SOUND_MIXER_IGAIN, 0, 5009 &minamp, &maxamp); 5010 hdaa_adjust_amp(w, SOUND_MIXER_IGAIN, 5011 found, minamp, maxamp); 5012 } 5013 } 5014 } 5015 } 5016 5017 static void 5018 hdaa_audio_prepare_pin_ctrl(struct hdaa_devinfo *devinfo) 5019 { 5020 struct hdaa_audio_as *as = devinfo->as; 5021 struct hdaa_widget *w; 5022 uint32_t pincap; 5023 int i; 5024 5025 for (i = 0; i < devinfo->nodecnt; i++) { 5026 w = &devinfo->widget[i]; 5027 if (w == NULL) 5028 continue; 5029 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX && 5030 w->waspin == 0) 5031 continue; 5032 5033 pincap = w->wclass.pin.cap; 5034 5035 /* Disable everything. */ 5036 w->wclass.pin.ctrl &= ~( 5037 HDA_CMD_SET_PIN_WIDGET_CTRL_HPHN_ENABLE | 5038 HDA_CMD_SET_PIN_WIDGET_CTRL_OUT_ENABLE | 5039 HDA_CMD_SET_PIN_WIDGET_CTRL_IN_ENABLE | 5040 HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE_MASK); 5041 5042 if (w->enable == 0) { 5043 /* Pin is unused so left it disabled. */ 5044 continue; 5045 } else if (w->waspin) { 5046 /* Enable input for beeper input. */ 5047 w->wclass.pin.ctrl |= 5048 HDA_CMD_SET_PIN_WIDGET_CTRL_IN_ENABLE; 5049 } else if (w->bindas < 0 || as[w->bindas].enable == 0) { 5050 /* Pin is unused so left it disabled. */ 5051 continue; 5052 } else if (as[w->bindas].dir == HDAA_CTL_IN) { 5053 /* Input pin, configure for input. */ 5054 if (HDA_PARAM_PIN_CAP_INPUT_CAP(pincap)) 5055 w->wclass.pin.ctrl |= 5056 HDA_CMD_SET_PIN_WIDGET_CTRL_IN_ENABLE; 5057 5058 if ((devinfo->quirks & HDAA_QUIRK_IVREF100) && 5059 HDA_PARAM_PIN_CAP_VREF_CTRL_100(pincap)) 5060 w->wclass.pin.ctrl |= 5061 HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE( 5062 HDA_CMD_PIN_WIDGET_CTRL_VREF_ENABLE_100); 5063 else if ((devinfo->quirks & HDAA_QUIRK_IVREF80) && 5064 HDA_PARAM_PIN_CAP_VREF_CTRL_80(pincap)) 5065 w->wclass.pin.ctrl |= 5066 HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE( 5067 HDA_CMD_PIN_WIDGET_CTRL_VREF_ENABLE_80); 5068 else if ((devinfo->quirks & HDAA_QUIRK_IVREF50) && 5069 HDA_PARAM_PIN_CAP_VREF_CTRL_50(pincap)) 5070 w->wclass.pin.ctrl |= 5071 HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE( 5072 HDA_CMD_PIN_WIDGET_CTRL_VREF_ENABLE_50); 5073 } else { 5074 /* Output pin, configure for output. */ 5075 if (HDA_PARAM_PIN_CAP_OUTPUT_CAP(pincap)) 5076 w->wclass.pin.ctrl |= 5077 HDA_CMD_SET_PIN_WIDGET_CTRL_OUT_ENABLE; 5078 5079 if (HDA_PARAM_PIN_CAP_HEADPHONE_CAP(pincap) && 5080 (w->wclass.pin.config & 5081 HDA_CONFIG_DEFAULTCONF_DEVICE_MASK) == 5082 HDA_CONFIG_DEFAULTCONF_DEVICE_HP_OUT) 5083 w->wclass.pin.ctrl |= 5084 HDA_CMD_SET_PIN_WIDGET_CTRL_HPHN_ENABLE; 5085 5086 if ((devinfo->quirks & HDAA_QUIRK_OVREF100) && 5087 HDA_PARAM_PIN_CAP_VREF_CTRL_100(pincap)) 5088 w->wclass.pin.ctrl |= 5089 HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE( 5090 HDA_CMD_PIN_WIDGET_CTRL_VREF_ENABLE_100); 5091 else if ((devinfo->quirks & HDAA_QUIRK_OVREF80) && 5092 HDA_PARAM_PIN_CAP_VREF_CTRL_80(pincap)) 5093 w->wclass.pin.ctrl |= 5094 HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE( 5095 HDA_CMD_PIN_WIDGET_CTRL_VREF_ENABLE_80); 5096 else if ((devinfo->quirks & HDAA_QUIRK_OVREF50) && 5097 HDA_PARAM_PIN_CAP_VREF_CTRL_50(pincap)) 5098 w->wclass.pin.ctrl |= 5099 HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE( 5100 HDA_CMD_PIN_WIDGET_CTRL_VREF_ENABLE_50); 5101 } 5102 } 5103 } 5104 5105 static void 5106 hdaa_audio_ctl_commit(struct hdaa_devinfo *devinfo) 5107 { 5108 struct hdaa_audio_ctl *ctl; 5109 int i, z; 5110 5111 i = 0; 5112 while ((ctl = hdaa_audio_ctl_each(devinfo, &i)) != NULL) { 5113 if (ctl->enable == 0 || ctl->ossmask != 0) { 5114 /* Mute disabled and mixer controllable controls. 5115 * Last will be initialized by mixer_init(). 5116 * This expected to reduce click on startup. */ 5117 hdaa_audio_ctl_amp_set(ctl, HDAA_AMP_MUTE_ALL, 0, 0); 5118 continue; 5119 } 5120 /* Init fixed controls to 0dB amplification. */ 5121 z = ctl->offset; 5122 if (z > ctl->step) 5123 z = ctl->step; 5124 hdaa_audio_ctl_amp_set(ctl, HDAA_AMP_MUTE_NONE, z, z); 5125 } 5126 } 5127 5128 static void 5129 hdaa_gpio_commit(struct hdaa_devinfo *devinfo) 5130 { 5131 uint32_t gdata, gmask, gdir; 5132 int i, numgpio; 5133 5134 numgpio = HDA_PARAM_GPIO_COUNT_NUM_GPIO(devinfo->gpio_cap); 5135 if (devinfo->gpio != 0 && numgpio != 0) { 5136 gdata = hda_command(devinfo->dev, 5137 HDA_CMD_GET_GPIO_DATA(0, devinfo->nid)); 5138 gmask = hda_command(devinfo->dev, 5139 HDA_CMD_GET_GPIO_ENABLE_MASK(0, devinfo->nid)); 5140 gdir = hda_command(devinfo->dev, 5141 HDA_CMD_GET_GPIO_DIRECTION(0, devinfo->nid)); 5142 for (i = 0; i < numgpio; i++) { 5143 if ((devinfo->gpio & HDAA_GPIO_MASK(i)) == 5144 HDAA_GPIO_SET(i)) { 5145 gdata |= (1 << i); 5146 gmask |= (1 << i); 5147 gdir |= (1 << i); 5148 } else if ((devinfo->gpio & HDAA_GPIO_MASK(i)) == 5149 HDAA_GPIO_CLEAR(i)) { 5150 gdata &= ~(1 << i); 5151 gmask |= (1 << i); 5152 gdir |= (1 << i); 5153 } else if ((devinfo->gpio & HDAA_GPIO_MASK(i)) == 5154 HDAA_GPIO_DISABLE(i)) { 5155 gmask &= ~(1 << i); 5156 } else if ((devinfo->gpio & HDAA_GPIO_MASK(i)) == 5157 HDAA_GPIO_INPUT(i)) { 5158 gmask |= (1 << i); 5159 gdir &= ~(1 << i); 5160 } 5161 } 5162 HDA_BOOTVERBOSE( 5163 device_printf(devinfo->dev, "GPIO commit\n"); 5164 ); 5165 hda_command(devinfo->dev, 5166 HDA_CMD_SET_GPIO_ENABLE_MASK(0, devinfo->nid, gmask)); 5167 hda_command(devinfo->dev, 5168 HDA_CMD_SET_GPIO_DIRECTION(0, devinfo->nid, gdir)); 5169 hda_command(devinfo->dev, 5170 HDA_CMD_SET_GPIO_DATA(0, devinfo->nid, gdata)); 5171 HDA_BOOTVERBOSE( 5172 hdaa_dump_gpio(devinfo); 5173 ); 5174 } 5175 } 5176 5177 static void 5178 hdaa_gpo_commit(struct hdaa_devinfo *devinfo) 5179 { 5180 uint32_t gdata; 5181 int i, numgpo; 5182 5183 numgpo = HDA_PARAM_GPIO_COUNT_NUM_GPO(devinfo->gpio_cap); 5184 if (devinfo->gpo != 0 && numgpo != 0) { 5185 gdata = hda_command(devinfo->dev, 5186 HDA_CMD_GET_GPO_DATA(0, devinfo->nid)); 5187 for (i = 0; i < numgpo; i++) { 5188 if ((devinfo->gpio & HDAA_GPIO_MASK(i)) == 5189 HDAA_GPIO_SET(i)) { 5190 gdata |= (1 << i); 5191 } else if ((devinfo->gpio & HDAA_GPIO_MASK(i)) == 5192 HDAA_GPIO_CLEAR(i)) { 5193 gdata &= ~(1 << i); 5194 } 5195 } 5196 HDA_BOOTVERBOSE( 5197 device_printf(devinfo->dev, "GPO commit\n"); 5198 ); 5199 hda_command(devinfo->dev, 5200 HDA_CMD_SET_GPO_DATA(0, devinfo->nid, gdata)); 5201 HDA_BOOTVERBOSE( 5202 hdaa_dump_gpo(devinfo); 5203 ); 5204 } 5205 } 5206 5207 static void 5208 hdaa_audio_commit(struct hdaa_devinfo *devinfo) 5209 { 5210 struct hdaa_widget *w; 5211 int i; 5212 5213 /* Commit controls. */ 5214 hdaa_audio_ctl_commit(devinfo); 5215 5216 /* Commit selectors, pins and EAPD. */ 5217 for (i = 0; i < devinfo->nodecnt; i++) { 5218 w = &devinfo->widget[i]; 5219 if (w == NULL) 5220 continue; 5221 if (w->selconn == -1) 5222 w->selconn = 0; 5223 if (w->nconns > 0) 5224 hdaa_widget_connection_select(w, w->selconn); 5225 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX || 5226 w->waspin) { 5227 hda_command(devinfo->dev, 5228 HDA_CMD_SET_PIN_WIDGET_CTRL(0, w->nid, 5229 w->wclass.pin.ctrl)); 5230 } 5231 if (w->param.eapdbtl != HDA_INVALID) { 5232 uint32_t val; 5233 5234 val = w->param.eapdbtl; 5235 if (devinfo->quirks & 5236 HDAA_QUIRK_EAPDINV) 5237 val ^= HDA_CMD_SET_EAPD_BTL_ENABLE_EAPD; 5238 hda_command(devinfo->dev, 5239 HDA_CMD_SET_EAPD_BTL_ENABLE(0, w->nid, 5240 val)); 5241 } 5242 } 5243 5244 hdaa_gpio_commit(devinfo); 5245 hdaa_gpo_commit(devinfo); 5246 } 5247 5248 static void 5249 hdaa_powerup(struct hdaa_devinfo *devinfo) 5250 { 5251 int i; 5252 5253 hda_command(devinfo->dev, 5254 HDA_CMD_SET_POWER_STATE(0, 5255 devinfo->nid, HDA_CMD_POWER_STATE_D0)); 5256 DELAY(100); 5257 5258 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 5259 hda_command(devinfo->dev, 5260 HDA_CMD_SET_POWER_STATE(0, 5261 i, HDA_CMD_POWER_STATE_D0)); 5262 } 5263 DELAY(1000); 5264 } 5265 5266 static int 5267 hdaa_pcmchannel_setup(struct hdaa_chan *ch) 5268 { 5269 struct hdaa_devinfo *devinfo = ch->devinfo; 5270 struct hdaa_audio_as *as = devinfo->as; 5271 struct hdaa_widget *w; 5272 uint32_t cap, fmtcap, pcmcap; 5273 int i, j, ret, channels, onlystereo; 5274 uint16_t pinset; 5275 5276 ch->caps = hdaa_caps; 5277 ch->caps.fmtlist = ch->fmtlist; 5278 ch->bit16 = 1; 5279 ch->bit32 = 0; 5280 ch->pcmrates[0] = 48000; 5281 ch->pcmrates[1] = 0; 5282 ch->stripecap = 0xff; 5283 5284 ret = 0; 5285 channels = 0; 5286 onlystereo = 1; 5287 pinset = 0; 5288 fmtcap = devinfo->supp_stream_formats; 5289 pcmcap = devinfo->supp_pcm_size_rate; 5290 5291 for (i = 0; i < 16; i++) { 5292 /* Check as is correct */ 5293 if (ch->as < 0) 5294 break; 5295 /* Cound only present DACs */ 5296 if (as[ch->as].dacs[ch->asindex][i] <= 0) 5297 continue; 5298 /* Ignore duplicates */ 5299 for (j = 0; j < ret; j++) { 5300 if (ch->io[j] == as[ch->as].dacs[ch->asindex][i]) 5301 break; 5302 } 5303 if (j < ret) 5304 continue; 5305 5306 w = hdaa_widget_get(devinfo, as[ch->as].dacs[ch->asindex][i]); 5307 if (w == NULL || w->enable == 0) 5308 continue; 5309 cap = w->param.supp_stream_formats; 5310 if (!HDA_PARAM_SUPP_STREAM_FORMATS_PCM(cap) && 5311 !HDA_PARAM_SUPP_STREAM_FORMATS_AC3(cap)) 5312 continue; 5313 /* Many CODECs does not declare AC3 support on SPDIF. 5314 I don't beleave that they doesn't support it! */ 5315 if (HDA_PARAM_AUDIO_WIDGET_CAP_DIGITAL(w->param.widget_cap)) 5316 cap |= HDA_PARAM_SUPP_STREAM_FORMATS_AC3_MASK; 5317 if (ret == 0) { 5318 fmtcap = cap; 5319 pcmcap = w->param.supp_pcm_size_rate; 5320 } else { 5321 fmtcap &= cap; 5322 pcmcap &= w->param.supp_pcm_size_rate; 5323 } 5324 ch->io[ret++] = as[ch->as].dacs[ch->asindex][i]; 5325 ch->stripecap &= w->wclass.conv.stripecap; 5326 /* Do not count redirection pin/dac channels. */ 5327 if (i == 15 && as[ch->as].hpredir >= 0) 5328 continue; 5329 channels += HDA_PARAM_AUDIO_WIDGET_CAP_CC(w->param.widget_cap) + 1; 5330 if (HDA_PARAM_AUDIO_WIDGET_CAP_CC(w->param.widget_cap) != 1) 5331 onlystereo = 0; 5332 pinset |= (1 << i); 5333 } 5334 ch->io[ret] = -1; 5335 ch->channels = channels; 5336 5337 if (as[ch->as].fakeredir) 5338 ret--; 5339 /* Standard speaks only about stereo pins and playback, ... */ 5340 if ((!onlystereo) || as[ch->as].mixed) 5341 pinset = 0; 5342 /* ..., but there it gives us info about speakers layout. */ 5343 as[ch->as].pinset = pinset; 5344 5345 ch->supp_stream_formats = fmtcap; 5346 ch->supp_pcm_size_rate = pcmcap; 5347 5348 /* 5349 * 8bit = 0 5350 * 16bit = 1 5351 * 20bit = 2 5352 * 24bit = 3 5353 * 32bit = 4 5354 */ 5355 if (ret > 0) { 5356 i = 0; 5357 if (HDA_PARAM_SUPP_STREAM_FORMATS_PCM(fmtcap)) { 5358 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_16BIT(pcmcap)) 5359 ch->bit16 = 1; 5360 else if (HDA_PARAM_SUPP_PCM_SIZE_RATE_8BIT(pcmcap)) 5361 ch->bit16 = 0; 5362 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_24BIT(pcmcap)) 5363 ch->bit32 = 3; 5364 else if (HDA_PARAM_SUPP_PCM_SIZE_RATE_20BIT(pcmcap)) 5365 ch->bit32 = 2; 5366 else if (HDA_PARAM_SUPP_PCM_SIZE_RATE_32BIT(pcmcap)) 5367 ch->bit32 = 4; 5368 if (!(devinfo->quirks & HDAA_QUIRK_FORCESTEREO)) { 5369 ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 1, 0); 5370 if (ch->bit32) 5371 ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 1, 0); 5372 } 5373 if (channels >= 2) { 5374 ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 2, 0); 5375 if (ch->bit32) 5376 ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 2, 0); 5377 } 5378 if (channels >= 3 && !onlystereo) { 5379 ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 3, 0); 5380 if (ch->bit32) 5381 ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 3, 0); 5382 ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 3, 1); 5383 if (ch->bit32) 5384 ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 3, 1); 5385 } 5386 if (channels >= 4) { 5387 ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 4, 0); 5388 if (ch->bit32) 5389 ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 4, 0); 5390 if (!onlystereo) { 5391 ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 4, 1); 5392 if (ch->bit32) 5393 ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 4, 1); 5394 } 5395 } 5396 if (channels >= 5 && !onlystereo) { 5397 ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 5, 0); 5398 if (ch->bit32) 5399 ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 5, 0); 5400 ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 5, 1); 5401 if (ch->bit32) 5402 ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 5, 1); 5403 } 5404 if (channels >= 6) { 5405 ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 6, 1); 5406 if (ch->bit32) 5407 ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 6, 1); 5408 if (!onlystereo) { 5409 ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 6, 0); 5410 if (ch->bit32) 5411 ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 6, 0); 5412 } 5413 } 5414 if (channels >= 7 && !onlystereo) { 5415 ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 7, 0); 5416 if (ch->bit32) 5417 ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 7, 0); 5418 ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 7, 1); 5419 if (ch->bit32) 5420 ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 7, 1); 5421 } 5422 if (channels >= 8) { 5423 ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 8, 1); 5424 if (ch->bit32) 5425 ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 8, 1); 5426 } 5427 } 5428 if (HDA_PARAM_SUPP_STREAM_FORMATS_AC3(fmtcap)) { 5429 ch->fmtlist[i++] = SND_FORMAT(AFMT_AC3, 2, 0); 5430 if (channels >= 8) { 5431 ch->fmtlist[i++] = SND_FORMAT(AFMT_AC3, 8, 0); 5432 ch->fmtlist[i++] = SND_FORMAT(AFMT_AC3, 8, 1); 5433 } 5434 } 5435 ch->fmtlist[i] = 0; 5436 i = 0; 5437 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_8KHZ(pcmcap)) 5438 ch->pcmrates[i++] = 8000; 5439 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_11KHZ(pcmcap)) 5440 ch->pcmrates[i++] = 11025; 5441 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_16KHZ(pcmcap)) 5442 ch->pcmrates[i++] = 16000; 5443 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_22KHZ(pcmcap)) 5444 ch->pcmrates[i++] = 22050; 5445 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_32KHZ(pcmcap)) 5446 ch->pcmrates[i++] = 32000; 5447 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_44KHZ(pcmcap)) 5448 ch->pcmrates[i++] = 44100; 5449 /* if (HDA_PARAM_SUPP_PCM_SIZE_RATE_48KHZ(pcmcap)) */ 5450 ch->pcmrates[i++] = 48000; 5451 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_88KHZ(pcmcap)) 5452 ch->pcmrates[i++] = 88200; 5453 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_96KHZ(pcmcap)) 5454 ch->pcmrates[i++] = 96000; 5455 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_176KHZ(pcmcap)) 5456 ch->pcmrates[i++] = 176400; 5457 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_192KHZ(pcmcap)) 5458 ch->pcmrates[i++] = 192000; 5459 /* if (HDA_PARAM_SUPP_PCM_SIZE_RATE_384KHZ(pcmcap)) */ 5460 ch->pcmrates[i] = 0; 5461 if (i > 0) { 5462 ch->caps.minspeed = ch->pcmrates[0]; 5463 ch->caps.maxspeed = ch->pcmrates[i - 1]; 5464 } 5465 } 5466 5467 return (ret); 5468 } 5469 5470 static void 5471 hdaa_prepare_pcms(struct hdaa_devinfo *devinfo) 5472 { 5473 struct hdaa_audio_as *as = devinfo->as; 5474 int i, j, k, apdev = 0, ardev = 0, dpdev = 0, drdev = 0; 5475 5476 for (i = 0; i < devinfo->ascnt; i++) { 5477 if (as[i].enable == 0) 5478 continue; 5479 if (as[i].dir == HDAA_CTL_IN) { 5480 if (as[i].digital) 5481 drdev++; 5482 else 5483 ardev++; 5484 } else { 5485 if (as[i].digital) 5486 dpdev++; 5487 else 5488 apdev++; 5489 } 5490 } 5491 devinfo->num_devs = 5492 max(ardev, apdev) + max(drdev, dpdev); 5493 devinfo->devs = 5494 (struct hdaa_pcm_devinfo *)malloc( 5495 devinfo->num_devs * sizeof(struct hdaa_pcm_devinfo), 5496 M_HDAA, M_ZERO | M_NOWAIT); 5497 if (devinfo->devs == NULL) { 5498 device_printf(devinfo->dev, 5499 "Unable to allocate memory for devices\n"); 5500 return; 5501 } 5502 for (i = 0; i < devinfo->num_devs; i++) { 5503 devinfo->devs[i].index = i; 5504 devinfo->devs[i].devinfo = devinfo; 5505 devinfo->devs[i].playas = -1; 5506 devinfo->devs[i].recas = -1; 5507 devinfo->devs[i].digital = 255; 5508 } 5509 for (i = 0; i < devinfo->ascnt; i++) { 5510 if (as[i].enable == 0) 5511 continue; 5512 for (j = 0; j < devinfo->num_devs; j++) { 5513 if (devinfo->devs[j].digital != 255 && 5514 (!devinfo->devs[j].digital) != 5515 (!as[i].digital)) 5516 continue; 5517 if (as[i].dir == HDAA_CTL_IN) { 5518 if (devinfo->devs[j].recas >= 0) 5519 continue; 5520 devinfo->devs[j].recas = i; 5521 } else { 5522 if (devinfo->devs[j].playas >= 0) 5523 continue; 5524 devinfo->devs[j].playas = i; 5525 } 5526 as[i].pdevinfo = &devinfo->devs[j]; 5527 for (k = 0; k < as[i].num_chans; k++) { 5528 devinfo->chans[as[i].chans[k]].pdevinfo = 5529 &devinfo->devs[j]; 5530 } 5531 devinfo->devs[j].digital = as[i].digital; 5532 break; 5533 } 5534 } 5535 } 5536 5537 static void 5538 hdaa_create_pcms(struct hdaa_devinfo *devinfo) 5539 { 5540 int i; 5541 5542 for (i = 0; i < devinfo->num_devs; i++) { 5543 struct hdaa_pcm_devinfo *pdevinfo = &devinfo->devs[i]; 5544 5545 pdevinfo->dev = device_add_child(devinfo->dev, "pcm", -1); 5546 device_set_ivars(pdevinfo->dev, (void *)pdevinfo); 5547 } 5548 } 5549 5550 static void 5551 hdaa_dump_ctls(struct hdaa_pcm_devinfo *pdevinfo, const char *banner, uint32_t flag) 5552 { 5553 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 5554 struct hdaa_audio_ctl *ctl; 5555 char buf[64]; 5556 int i, j, printed = 0; 5557 5558 if (flag == 0) { 5559 flag = ~(SOUND_MASK_VOLUME | SOUND_MASK_PCM | 5560 SOUND_MASK_CD | SOUND_MASK_LINE | SOUND_MASK_RECLEV | 5561 SOUND_MASK_MIC | SOUND_MASK_SPEAKER | SOUND_MASK_IGAIN | 5562 SOUND_MASK_OGAIN | SOUND_MASK_IMIX | SOUND_MASK_MONITOR); 5563 } 5564 5565 for (j = 0; j < SOUND_MIXER_NRDEVICES; j++) { 5566 if ((flag & (1 << j)) == 0) 5567 continue; 5568 i = 0; 5569 printed = 0; 5570 while ((ctl = hdaa_audio_ctl_each(devinfo, &i)) != NULL) { 5571 if (ctl->enable == 0 || 5572 ctl->widget->enable == 0) 5573 continue; 5574 if (!((pdevinfo->playas >= 0 && 5575 ctl->widget->bindas == pdevinfo->playas) || 5576 (pdevinfo->recas >= 0 && 5577 ctl->widget->bindas == pdevinfo->recas) || 5578 (ctl->widget->bindas == -2 && pdevinfo->index == 0))) 5579 continue; 5580 if ((ctl->ossmask & (1 << j)) == 0) 5581 continue; 5582 5583 if (printed == 0) { 5584 if (banner != NULL) { 5585 device_printf(pdevinfo->dev, "%s", banner); 5586 } else { 5587 device_printf(pdevinfo->dev, "Unknown Ctl"); 5588 } 5589 printf(" (OSS: %s)", 5590 hdaa_audio_ctl_ossmixer_mask2allname(1 << j, 5591 buf, sizeof(buf))); 5592 if (pdevinfo->ossmask & (1 << j)) { 5593 printf(": %+d/%+ddB\n", 5594 pdevinfo->minamp[j] / 4, 5595 pdevinfo->maxamp[j] / 4); 5596 } else 5597 printf("\n"); 5598 printed = 1; 5599 } 5600 device_printf(pdevinfo->dev, " +- ctl %2d (nid %3d %s", i, 5601 ctl->widget->nid, 5602 (ctl->ndir == HDAA_CTL_IN)?"in ":"out"); 5603 if (ctl->ndir == HDAA_CTL_IN && ctl->ndir == ctl->dir) 5604 printf(" %2d): ", ctl->index); 5605 else 5606 printf("): "); 5607 if (ctl->step > 0) { 5608 printf("%+d/%+ddB (%d steps)%s\n", 5609 MINQDB(ctl) / 4, 5610 MAXQDB(ctl) / 4, 5611 ctl->step + 1, 5612 ctl->mute?" + mute":""); 5613 } else 5614 printf("%s\n", ctl->mute?"mute":""); 5615 } 5616 } 5617 if (printed) 5618 device_printf(pdevinfo->dev, "\n"); 5619 } 5620 5621 static void 5622 hdaa_dump_audio_formats(device_t dev, uint32_t fcap, uint32_t pcmcap) 5623 { 5624 uint32_t cap; 5625 5626 cap = fcap; 5627 if (cap != 0) { 5628 device_printf(dev, " Stream cap: 0x%08x", cap); 5629 if (HDA_PARAM_SUPP_STREAM_FORMATS_AC3(cap)) 5630 printf(" AC3"); 5631 if (HDA_PARAM_SUPP_STREAM_FORMATS_FLOAT32(cap)) 5632 printf(" FLOAT32"); 5633 if (HDA_PARAM_SUPP_STREAM_FORMATS_PCM(cap)) 5634 printf(" PCM"); 5635 printf("\n"); 5636 } 5637 cap = pcmcap; 5638 if (cap != 0) { 5639 device_printf(dev, " PCM cap: 0x%08x", cap); 5640 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_8BIT(cap)) 5641 printf(" 8"); 5642 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_16BIT(cap)) 5643 printf(" 16"); 5644 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_20BIT(cap)) 5645 printf(" 20"); 5646 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_24BIT(cap)) 5647 printf(" 24"); 5648 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_32BIT(cap)) 5649 printf(" 32"); 5650 printf(" bits,"); 5651 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_8KHZ(cap)) 5652 printf(" 8"); 5653 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_11KHZ(cap)) 5654 printf(" 11"); 5655 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_16KHZ(cap)) 5656 printf(" 16"); 5657 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_22KHZ(cap)) 5658 printf(" 22"); 5659 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_32KHZ(cap)) 5660 printf(" 32"); 5661 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_44KHZ(cap)) 5662 printf(" 44"); 5663 printf(" 48"); 5664 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_88KHZ(cap)) 5665 printf(" 88"); 5666 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_96KHZ(cap)) 5667 printf(" 96"); 5668 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_176KHZ(cap)) 5669 printf(" 176"); 5670 if (HDA_PARAM_SUPP_PCM_SIZE_RATE_192KHZ(cap)) 5671 printf(" 192"); 5672 printf(" KHz\n"); 5673 } 5674 } 5675 5676 static void 5677 hdaa_dump_pin(struct hdaa_widget *w) 5678 { 5679 uint32_t pincap; 5680 5681 pincap = w->wclass.pin.cap; 5682 5683 device_printf(w->devinfo->dev, " Pin cap: 0x%08x", pincap); 5684 if (HDA_PARAM_PIN_CAP_IMP_SENSE_CAP(pincap)) 5685 printf(" ISC"); 5686 if (HDA_PARAM_PIN_CAP_TRIGGER_REQD(pincap)) 5687 printf(" TRQD"); 5688 if (HDA_PARAM_PIN_CAP_PRESENCE_DETECT_CAP(pincap)) 5689 printf(" PDC"); 5690 if (HDA_PARAM_PIN_CAP_HEADPHONE_CAP(pincap)) 5691 printf(" HP"); 5692 if (HDA_PARAM_PIN_CAP_OUTPUT_CAP(pincap)) 5693 printf(" OUT"); 5694 if (HDA_PARAM_PIN_CAP_INPUT_CAP(pincap)) 5695 printf(" IN"); 5696 if (HDA_PARAM_PIN_CAP_BALANCED_IO_PINS(pincap)) 5697 printf(" BAL"); 5698 if (HDA_PARAM_PIN_CAP_HDMI(pincap)) 5699 printf(" HDMI"); 5700 if (HDA_PARAM_PIN_CAP_VREF_CTRL(pincap)) { 5701 printf(" VREF["); 5702 if (HDA_PARAM_PIN_CAP_VREF_CTRL_50(pincap)) 5703 printf(" 50"); 5704 if (HDA_PARAM_PIN_CAP_VREF_CTRL_80(pincap)) 5705 printf(" 80"); 5706 if (HDA_PARAM_PIN_CAP_VREF_CTRL_100(pincap)) 5707 printf(" 100"); 5708 if (HDA_PARAM_PIN_CAP_VREF_CTRL_GROUND(pincap)) 5709 printf(" GROUND"); 5710 if (HDA_PARAM_PIN_CAP_VREF_CTRL_HIZ(pincap)) 5711 printf(" HIZ"); 5712 printf(" ]"); 5713 } 5714 if (HDA_PARAM_PIN_CAP_EAPD_CAP(pincap)) 5715 printf(" EAPD"); 5716 if (HDA_PARAM_PIN_CAP_DP(pincap)) 5717 printf(" DP"); 5718 if (HDA_PARAM_PIN_CAP_HBR(pincap)) 5719 printf(" HBR"); 5720 printf("\n"); 5721 device_printf(w->devinfo->dev, " Pin config: 0x%08x\n", 5722 w->wclass.pin.config); 5723 device_printf(w->devinfo->dev, " Pin control: 0x%08x", w->wclass.pin.ctrl); 5724 if (w->wclass.pin.ctrl & HDA_CMD_SET_PIN_WIDGET_CTRL_HPHN_ENABLE) 5725 printf(" HP"); 5726 if (w->wclass.pin.ctrl & HDA_CMD_SET_PIN_WIDGET_CTRL_IN_ENABLE) 5727 printf(" IN"); 5728 if (w->wclass.pin.ctrl & HDA_CMD_SET_PIN_WIDGET_CTRL_OUT_ENABLE) 5729 printf(" OUT"); 5730 if (HDA_PARAM_AUDIO_WIDGET_CAP_DIGITAL(w->param.widget_cap)) { 5731 if ((w->wclass.pin.ctrl & 5732 HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE_MASK) == 0x03) 5733 printf(" HBR"); 5734 else if ((w->wclass.pin.ctrl & 5735 HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE_MASK) != 0) 5736 printf(" EPTs"); 5737 } else { 5738 if ((w->wclass.pin.ctrl & 5739 HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE_MASK) != 0) 5740 printf(" VREFs"); 5741 } 5742 printf("\n"); 5743 } 5744 5745 static void 5746 hdaa_dump_pin_config(struct hdaa_widget *w, uint32_t conf) 5747 { 5748 5749 device_printf(w->devinfo->dev, "%2d %08x %-2d %-2d " 5750 "%-13s %-5s %-7s %-10s %-7s %d%s\n", 5751 w->nid, conf, 5752 HDA_CONFIG_DEFAULTCONF_ASSOCIATION(conf), 5753 HDA_CONFIG_DEFAULTCONF_SEQUENCE(conf), 5754 HDA_DEVS[HDA_CONFIG_DEFAULTCONF_DEVICE(conf)], 5755 HDA_CONNS[HDA_CONFIG_DEFAULTCONF_CONNECTIVITY(conf)], 5756 HDA_CONNECTORS[HDA_CONFIG_DEFAULTCONF_CONNECTION_TYPE(conf)], 5757 HDA_LOCS[HDA_CONFIG_DEFAULTCONF_LOCATION(conf)], 5758 HDA_COLORS[HDA_CONFIG_DEFAULTCONF_COLOR(conf)], 5759 HDA_CONFIG_DEFAULTCONF_MISC(conf), 5760 (w->enable == 0)?" DISA":""); 5761 } 5762 5763 static void 5764 hdaa_dump_pin_configs(struct hdaa_devinfo *devinfo) 5765 { 5766 struct hdaa_widget *w; 5767 int i; 5768 5769 device_printf(devinfo->dev, "nid 0x as seq " 5770 "device conn jack loc color misc\n"); 5771 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 5772 w = hdaa_widget_get(devinfo, i); 5773 if (w == NULL) 5774 continue; 5775 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 5776 continue; 5777 hdaa_dump_pin_config(w, w->wclass.pin.config); 5778 } 5779 } 5780 5781 static void 5782 hdaa_dump_amp(device_t dev, uint32_t cap, const char *banner) 5783 { 5784 int offset, size, step; 5785 5786 offset = HDA_PARAM_OUTPUT_AMP_CAP_OFFSET(cap); 5787 size = HDA_PARAM_OUTPUT_AMP_CAP_STEPSIZE(cap); 5788 step = HDA_PARAM_OUTPUT_AMP_CAP_NUMSTEPS(cap); 5789 device_printf(dev, " %s amp: 0x%08x " 5790 "mute=%d step=%d size=%d offset=%d (%+d/%+ddB)\n", 5791 banner, cap, 5792 HDA_PARAM_OUTPUT_AMP_CAP_MUTE_CAP(cap), 5793 step, size, offset, 5794 ((0 - offset) * (size + 1)) / 4, 5795 ((step - offset) * (size + 1)) / 4); 5796 } 5797 5798 static void 5799 hdaa_dump_nodes(struct hdaa_devinfo *devinfo) 5800 { 5801 struct hdaa_widget *w, *cw; 5802 char buf[64]; 5803 int i, j; 5804 5805 device_printf(devinfo->dev, "\n"); 5806 device_printf(devinfo->dev, "Default parameters:\n"); 5807 hdaa_dump_audio_formats(devinfo->dev, 5808 devinfo->supp_stream_formats, 5809 devinfo->supp_pcm_size_rate); 5810 hdaa_dump_amp(devinfo->dev, devinfo->inamp_cap, " Input"); 5811 hdaa_dump_amp(devinfo->dev, devinfo->outamp_cap, "Output"); 5812 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 5813 w = hdaa_widget_get(devinfo, i); 5814 if (w == NULL) { 5815 device_printf(devinfo->dev, "Ghost widget nid=%d\n", i); 5816 continue; 5817 } 5818 device_printf(devinfo->dev, "\n"); 5819 device_printf(devinfo->dev, " nid: %d%s\n", w->nid, 5820 (w->enable == 0) ? " [DISABLED]" : ""); 5821 device_printf(devinfo->dev, " Name: %s\n", w->name); 5822 device_printf(devinfo->dev, " Widget cap: 0x%08x", 5823 w->param.widget_cap); 5824 if (w->param.widget_cap & 0x0ee1) { 5825 if (HDA_PARAM_AUDIO_WIDGET_CAP_LR_SWAP(w->param.widget_cap)) 5826 printf(" LRSWAP"); 5827 if (HDA_PARAM_AUDIO_WIDGET_CAP_POWER_CTRL(w->param.widget_cap)) 5828 printf(" PWR"); 5829 if (HDA_PARAM_AUDIO_WIDGET_CAP_DIGITAL(w->param.widget_cap)) 5830 printf(" DIGITAL"); 5831 if (HDA_PARAM_AUDIO_WIDGET_CAP_UNSOL_CAP(w->param.widget_cap)) 5832 printf(" UNSOL"); 5833 if (HDA_PARAM_AUDIO_WIDGET_CAP_PROC_WIDGET(w->param.widget_cap)) 5834 printf(" PROC"); 5835 if (HDA_PARAM_AUDIO_WIDGET_CAP_STRIPE(w->param.widget_cap)) 5836 printf(" STRIPE(x%d)", 5837 1 << (fls(w->wclass.conv.stripecap) - 1)); 5838 j = HDA_PARAM_AUDIO_WIDGET_CAP_CC(w->param.widget_cap); 5839 if (j == 1) 5840 printf(" STEREO"); 5841 else if (j > 1) 5842 printf(" %dCH", j + 1); 5843 } 5844 printf("\n"); 5845 if (w->bindas != -1) { 5846 device_printf(devinfo->dev, " Association: %d (0x%04x)\n", 5847 w->bindas, w->bindseqmask); 5848 } 5849 if (w->ossmask != 0 || w->ossdev >= 0) { 5850 device_printf(devinfo->dev, " OSS: %s", 5851 hdaa_audio_ctl_ossmixer_mask2allname(w->ossmask, buf, sizeof(buf))); 5852 if (w->ossdev >= 0) 5853 printf(" (%s)", ossnames[w->ossdev]); 5854 printf("\n"); 5855 } 5856 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_OUTPUT || 5857 w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT) { 5858 hdaa_dump_audio_formats(devinfo->dev, 5859 w->param.supp_stream_formats, 5860 w->param.supp_pcm_size_rate); 5861 } else if (w->type == 5862 HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX || w->waspin) 5863 hdaa_dump_pin(w); 5864 if (w->param.eapdbtl != HDA_INVALID) 5865 device_printf(devinfo->dev, " EAPD: 0x%08x\n", 5866 w->param.eapdbtl); 5867 if (HDA_PARAM_AUDIO_WIDGET_CAP_OUT_AMP(w->param.widget_cap) && 5868 w->param.outamp_cap != 0) 5869 hdaa_dump_amp(devinfo->dev, w->param.outamp_cap, "Output"); 5870 if (HDA_PARAM_AUDIO_WIDGET_CAP_IN_AMP(w->param.widget_cap) && 5871 w->param.inamp_cap != 0) 5872 hdaa_dump_amp(devinfo->dev, w->param.inamp_cap, " Input"); 5873 if (w->nconns > 0) 5874 device_printf(devinfo->dev, " Connections: %d\n", w->nconns); 5875 for (j = 0; j < w->nconns; j++) { 5876 cw = hdaa_widget_get(devinfo, w->conns[j]); 5877 device_printf(devinfo->dev, " + %s<- nid=%d [%s]", 5878 (w->connsenable[j] == 0)?"[DISABLED] ":"", 5879 w->conns[j], (cw == NULL) ? "GHOST!" : cw->name); 5880 if (cw == NULL) 5881 printf(" [UNKNOWN]"); 5882 else if (cw->enable == 0) 5883 printf(" [DISABLED]"); 5884 if (w->nconns > 1 && w->selconn == j && w->type != 5885 HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER) 5886 printf(" (selected)"); 5887 printf("\n"); 5888 } 5889 } 5890 5891 } 5892 5893 static void 5894 hdaa_dump_dst_nid(struct hdaa_pcm_devinfo *pdevinfo, nid_t nid, int depth) 5895 { 5896 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 5897 struct hdaa_widget *w, *cw; 5898 char buf[64]; 5899 int i; 5900 5901 if (depth > HDA_PARSE_MAXDEPTH) 5902 return; 5903 5904 w = hdaa_widget_get(devinfo, nid); 5905 if (w == NULL || w->enable == 0) 5906 return; 5907 5908 if (depth == 0) 5909 device_printf(pdevinfo->dev, "%*s", 4, ""); 5910 else 5911 device_printf(pdevinfo->dev, "%*s + <- ", 4 + (depth - 1) * 7, ""); 5912 printf("nid=%d [%s]", w->nid, w->name); 5913 5914 if (depth > 0) { 5915 if (w->ossmask == 0) { 5916 printf("\n"); 5917 return; 5918 } 5919 printf(" [src: %s]", 5920 hdaa_audio_ctl_ossmixer_mask2allname( 5921 w->ossmask, buf, sizeof(buf))); 5922 if (w->ossdev >= 0) { 5923 printf("\n"); 5924 return; 5925 } 5926 } 5927 printf("\n"); 5928 5929 for (i = 0; i < w->nconns; i++) { 5930 if (w->connsenable[i] == 0) 5931 continue; 5932 cw = hdaa_widget_get(devinfo, w->conns[i]); 5933 if (cw == NULL || cw->enable == 0 || cw->bindas == -1) 5934 continue; 5935 hdaa_dump_dst_nid(pdevinfo, w->conns[i], depth + 1); 5936 } 5937 5938 } 5939 5940 static void 5941 hdaa_dump_dac(struct hdaa_pcm_devinfo *pdevinfo) 5942 { 5943 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 5944 struct hdaa_audio_as *as; 5945 struct hdaa_widget *w; 5946 nid_t *nids; 5947 int chid, i; 5948 5949 if (pdevinfo->playas < 0) 5950 return; 5951 5952 device_printf(pdevinfo->dev, "Playback:\n"); 5953 5954 chid = devinfo->as[pdevinfo->playas].chans[0]; 5955 hdaa_dump_audio_formats(pdevinfo->dev, 5956 devinfo->chans[chid].supp_stream_formats, 5957 devinfo->chans[chid].supp_pcm_size_rate); 5958 for (i = 0; i < devinfo->as[pdevinfo->playas].num_chans; i++) { 5959 chid = devinfo->as[pdevinfo->playas].chans[i]; 5960 device_printf(pdevinfo->dev, " DAC:"); 5961 for (nids = devinfo->chans[chid].io; *nids != -1; nids++) 5962 printf(" %d", *nids); 5963 printf("\n"); 5964 } 5965 5966 as = &devinfo->as[pdevinfo->playas]; 5967 for (i = 0; i < 16; i++) { 5968 if (as->pins[i] <= 0) 5969 continue; 5970 w = hdaa_widget_get(devinfo, as->pins[i]); 5971 if (w == NULL || w->enable == 0) 5972 continue; 5973 device_printf(pdevinfo->dev, "\n"); 5974 hdaa_dump_dst_nid(pdevinfo, as->pins[i], 0); 5975 } 5976 device_printf(pdevinfo->dev, "\n"); 5977 } 5978 5979 static void 5980 hdaa_dump_adc(struct hdaa_pcm_devinfo *pdevinfo) 5981 { 5982 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 5983 struct hdaa_widget *w; 5984 nid_t *nids; 5985 int chid, i; 5986 5987 if (pdevinfo->recas < 0) 5988 return; 5989 5990 device_printf(pdevinfo->dev, "Record:\n"); 5991 5992 chid = devinfo->as[pdevinfo->recas].chans[0]; 5993 hdaa_dump_audio_formats(pdevinfo->dev, 5994 devinfo->chans[chid].supp_stream_formats, 5995 devinfo->chans[chid].supp_pcm_size_rate); 5996 for (i = 0; i < devinfo->as[pdevinfo->recas].num_chans; i++) { 5997 chid = devinfo->as[pdevinfo->recas].chans[i]; 5998 device_printf(pdevinfo->dev, " ADC:"); 5999 for (nids = devinfo->chans[chid].io; *nids != -1; nids++) 6000 printf(" %d", *nids); 6001 printf("\n"); 6002 } 6003 6004 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 6005 w = hdaa_widget_get(devinfo, i); 6006 if (w == NULL || w->enable == 0) 6007 continue; 6008 if (w->type != HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT) 6009 continue; 6010 if (w->bindas != pdevinfo->recas) 6011 continue; 6012 device_printf(pdevinfo->dev, "\n"); 6013 hdaa_dump_dst_nid(pdevinfo, i, 0); 6014 } 6015 device_printf(pdevinfo->dev, "\n"); 6016 } 6017 6018 static void 6019 hdaa_dump_mix(struct hdaa_pcm_devinfo *pdevinfo) 6020 { 6021 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 6022 struct hdaa_widget *w; 6023 int i; 6024 int printed = 0; 6025 6026 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 6027 w = hdaa_widget_get(devinfo, i); 6028 if (w == NULL || w->enable == 0) 6029 continue; 6030 if (w->ossdev != SOUND_MIXER_IMIX) 6031 continue; 6032 if (w->bindas != pdevinfo->recas) 6033 continue; 6034 if (printed == 0) { 6035 printed = 1; 6036 device_printf(pdevinfo->dev, "Input Mix:\n"); 6037 } 6038 device_printf(pdevinfo->dev, "\n"); 6039 hdaa_dump_dst_nid(pdevinfo, i, 0); 6040 } 6041 if (printed) 6042 device_printf(pdevinfo->dev, "\n"); 6043 } 6044 6045 static void 6046 hdaa_pindump(device_t dev) 6047 { 6048 struct hdaa_devinfo *devinfo = device_get_softc(dev); 6049 struct hdaa_widget *w; 6050 uint32_t res, pincap, delay; 6051 int i; 6052 6053 device_printf(dev, "Dumping AFG pins:\n"); 6054 device_printf(dev, "nid 0x as seq " 6055 "device conn jack loc color misc\n"); 6056 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 6057 w = hdaa_widget_get(devinfo, i); 6058 if (w == NULL || w->type != 6059 HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 6060 continue; 6061 hdaa_dump_pin_config(w, w->wclass.pin.config); 6062 pincap = w->wclass.pin.cap; 6063 device_printf(dev, " Caps: %2s %3s %2s %4s %4s", 6064 HDA_PARAM_PIN_CAP_INPUT_CAP(pincap)?"IN":"", 6065 HDA_PARAM_PIN_CAP_OUTPUT_CAP(pincap)?"OUT":"", 6066 HDA_PARAM_PIN_CAP_HEADPHONE_CAP(pincap)?"HP":"", 6067 HDA_PARAM_PIN_CAP_EAPD_CAP(pincap)?"EAPD":"", 6068 HDA_PARAM_PIN_CAP_VREF_CTRL(pincap)?"VREF":""); 6069 if (HDA_PARAM_PIN_CAP_IMP_SENSE_CAP(pincap) || 6070 HDA_PARAM_PIN_CAP_PRESENCE_DETECT_CAP(pincap)) { 6071 if (HDA_PARAM_PIN_CAP_TRIGGER_REQD(pincap)) { 6072 delay = 0; 6073 hda_command(dev, 6074 HDA_CMD_SET_PIN_SENSE(0, w->nid, 0)); 6075 do { 6076 res = hda_command(dev, 6077 HDA_CMD_GET_PIN_SENSE(0, w->nid)); 6078 if (res != 0x7fffffff && res != 0xffffffff) 6079 break; 6080 DELAY(10); 6081 } while (++delay < 10000); 6082 } else { 6083 delay = 0; 6084 res = hda_command(dev, HDA_CMD_GET_PIN_SENSE(0, 6085 w->nid)); 6086 } 6087 printf(" Sense: 0x%08x (%sconnected%s)", res, 6088 (res & HDA_CMD_GET_PIN_SENSE_PRESENCE_DETECT) ? 6089 "" : "dis", 6090 (HDA_PARAM_AUDIO_WIDGET_CAP_DIGITAL(w->param.widget_cap) && 6091 (res & HDA_CMD_GET_PIN_SENSE_ELD_VALID)) ? 6092 ", ELD valid" : ""); 6093 if (delay > 0) 6094 printf(" delay %dus", delay * 10); 6095 } 6096 printf("\n"); 6097 } 6098 device_printf(dev, 6099 "NumGPIO=%d NumGPO=%d NumGPI=%d GPIWake=%d GPIUnsol=%d\n", 6100 HDA_PARAM_GPIO_COUNT_NUM_GPIO(devinfo->gpio_cap), 6101 HDA_PARAM_GPIO_COUNT_NUM_GPO(devinfo->gpio_cap), 6102 HDA_PARAM_GPIO_COUNT_NUM_GPI(devinfo->gpio_cap), 6103 HDA_PARAM_GPIO_COUNT_GPI_WAKE(devinfo->gpio_cap), 6104 HDA_PARAM_GPIO_COUNT_GPI_UNSOL(devinfo->gpio_cap)); 6105 hdaa_dump_gpi(devinfo); 6106 hdaa_dump_gpio(devinfo); 6107 hdaa_dump_gpo(devinfo); 6108 } 6109 6110 static void 6111 hdaa_configure(device_t dev) 6112 { 6113 struct hdaa_devinfo *devinfo = device_get_softc(dev); 6114 struct hdaa_audio_ctl *ctl; 6115 int i; 6116 6117 HDA_BOOTHVERBOSE( 6118 device_printf(dev, "Applying built-in patches...\n"); 6119 ); 6120 hdaa_patch(devinfo); 6121 HDA_BOOTHVERBOSE( 6122 device_printf(dev, "Applying local patches...\n"); 6123 ); 6124 hdaa_local_patch(devinfo); 6125 hdaa_audio_postprocess(devinfo); 6126 HDA_BOOTHVERBOSE( 6127 device_printf(dev, "Parsing Ctls...\n"); 6128 ); 6129 hdaa_audio_ctl_parse(devinfo); 6130 HDA_BOOTHVERBOSE( 6131 device_printf(dev, "Disabling nonaudio...\n"); 6132 ); 6133 hdaa_audio_disable_nonaudio(devinfo); 6134 HDA_BOOTHVERBOSE( 6135 device_printf(dev, "Disabling useless...\n"); 6136 ); 6137 hdaa_audio_disable_useless(devinfo); 6138 HDA_BOOTVERBOSE( 6139 device_printf(dev, "Patched pins configuration:\n"); 6140 hdaa_dump_pin_configs(devinfo); 6141 ); 6142 HDA_BOOTHVERBOSE( 6143 device_printf(dev, "Parsing pin associations...\n"); 6144 ); 6145 hdaa_audio_as_parse(devinfo); 6146 HDA_BOOTHVERBOSE( 6147 device_printf(dev, "Building AFG tree...\n"); 6148 ); 6149 hdaa_audio_build_tree(devinfo); 6150 HDA_BOOTHVERBOSE( 6151 device_printf(dev, "Disabling unassociated " 6152 "widgets...\n"); 6153 ); 6154 hdaa_audio_disable_unas(devinfo); 6155 HDA_BOOTHVERBOSE( 6156 device_printf(dev, "Disabling nonselected " 6157 "inputs...\n"); 6158 ); 6159 hdaa_audio_disable_notselected(devinfo); 6160 HDA_BOOTHVERBOSE( 6161 device_printf(dev, "Disabling useless...\n"); 6162 ); 6163 hdaa_audio_disable_useless(devinfo); 6164 HDA_BOOTHVERBOSE( 6165 device_printf(dev, "Disabling " 6166 "crossassociatement connections...\n"); 6167 ); 6168 hdaa_audio_disable_crossas(devinfo); 6169 HDA_BOOTHVERBOSE( 6170 device_printf(dev, "Disabling useless...\n"); 6171 ); 6172 hdaa_audio_disable_useless(devinfo); 6173 HDA_BOOTHVERBOSE( 6174 device_printf(dev, "Binding associations to channels...\n"); 6175 ); 6176 hdaa_audio_bind_as(devinfo); 6177 HDA_BOOTHVERBOSE( 6178 device_printf(dev, "Assigning names to signal sources...\n"); 6179 ); 6180 hdaa_audio_assign_names(devinfo); 6181 HDA_BOOTHVERBOSE( 6182 device_printf(dev, "Preparing PCM devices...\n"); 6183 ); 6184 hdaa_prepare_pcms(devinfo); 6185 HDA_BOOTHVERBOSE( 6186 device_printf(dev, "Assigning mixers to the tree...\n"); 6187 ); 6188 hdaa_audio_assign_mixers(devinfo); 6189 HDA_BOOTHVERBOSE( 6190 device_printf(dev, "Preparing pin controls...\n"); 6191 ); 6192 hdaa_audio_prepare_pin_ctrl(devinfo); 6193 HDA_BOOTHVERBOSE( 6194 device_printf(dev, "AFG commit...\n"); 6195 ); 6196 hdaa_audio_commit(devinfo); 6197 HDA_BOOTHVERBOSE( 6198 device_printf(dev, "Applying direct built-in patches...\n"); 6199 ); 6200 hdaa_patch_direct(devinfo); 6201 HDA_BOOTHVERBOSE( 6202 device_printf(dev, "Pin sense init...\n"); 6203 ); 6204 hdaa_sense_init(devinfo); 6205 HDA_BOOTHVERBOSE( 6206 device_printf(dev, "Creating PCM devices...\n"); 6207 ); 6208 hdaa_create_pcms(devinfo); 6209 6210 HDA_BOOTVERBOSE( 6211 if (devinfo->quirks != 0) { 6212 device_printf(dev, "FG config/quirks:"); 6213 for (i = 0; i < nitems(hdaa_quirks_tab); i++) { 6214 if ((devinfo->quirks & 6215 hdaa_quirks_tab[i].value) == 6216 hdaa_quirks_tab[i].value) 6217 printf(" %s", hdaa_quirks_tab[i].key); 6218 } 6219 printf("\n"); 6220 } 6221 ); 6222 6223 HDA_BOOTHVERBOSE( 6224 device_printf(dev, "\n"); 6225 device_printf(dev, "+-----------+\n"); 6226 device_printf(dev, "| HDA NODES |\n"); 6227 device_printf(dev, "+-----------+\n"); 6228 hdaa_dump_nodes(devinfo); 6229 6230 device_printf(dev, "\n"); 6231 device_printf(dev, "+----------------+\n"); 6232 device_printf(dev, "| HDA AMPLIFIERS |\n"); 6233 device_printf(dev, "+----------------+\n"); 6234 device_printf(dev, "\n"); 6235 i = 0; 6236 while ((ctl = hdaa_audio_ctl_each(devinfo, &i)) != NULL) { 6237 device_printf(dev, "%3d: nid %3d %s (%s) index %d", i, 6238 (ctl->widget != NULL) ? ctl->widget->nid : -1, 6239 (ctl->ndir == HDAA_CTL_IN)?"in ":"out", 6240 (ctl->dir == HDAA_CTL_IN)?"in ":"out", 6241 ctl->index); 6242 if (ctl->childwidget != NULL) 6243 printf(" cnid %3d", ctl->childwidget->nid); 6244 else 6245 printf(" "); 6246 printf(" ossmask=0x%08x\n", 6247 ctl->ossmask); 6248 device_printf(dev, 6249 " mute: %d step: %3d size: %3d off: %3d%s\n", 6250 ctl->mute, ctl->step, ctl->size, ctl->offset, 6251 (ctl->enable == 0) ? " [DISABLED]" : 6252 ((ctl->ossmask == 0) ? " [UNUSED]" : "")); 6253 } 6254 device_printf(dev, "\n"); 6255 ); 6256 } 6257 6258 static void 6259 hdaa_unconfigure(device_t dev) 6260 { 6261 struct hdaa_devinfo *devinfo = device_get_softc(dev); 6262 struct hdaa_widget *w; 6263 int i, j; 6264 6265 HDA_BOOTHVERBOSE( 6266 device_printf(dev, "Pin sense deinit...\n"); 6267 ); 6268 hdaa_sense_deinit(devinfo); 6269 free(devinfo->ctl, M_HDAA); 6270 devinfo->ctl = NULL; 6271 devinfo->ctlcnt = 0; 6272 free(devinfo->as, M_HDAA); 6273 devinfo->as = NULL; 6274 devinfo->ascnt = 0; 6275 free(devinfo->devs, M_HDAA); 6276 devinfo->devs = NULL; 6277 devinfo->num_devs = 0; 6278 free(devinfo->chans, M_HDAA); 6279 devinfo->chans = NULL; 6280 devinfo->num_chans = 0; 6281 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 6282 w = hdaa_widget_get(devinfo, i); 6283 if (w == NULL) 6284 continue; 6285 w->enable = 1; 6286 w->selconn = -1; 6287 w->pflags = 0; 6288 w->bindas = -1; 6289 w->bindseqmask = 0; 6290 w->ossdev = -1; 6291 w->ossmask = 0; 6292 for (j = 0; j < w->nconns; j++) 6293 w->connsenable[j] = 1; 6294 if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 6295 w->wclass.pin.config = w->wclass.pin.newconf; 6296 if (w->eld != NULL) { 6297 w->eld_len = 0; 6298 free(w->eld, M_HDAA); 6299 w->eld = NULL; 6300 } 6301 } 6302 } 6303 6304 static int 6305 hdaa_sysctl_gpi_state(SYSCTL_HANDLER_ARGS) 6306 { 6307 struct hdaa_devinfo *devinfo = oidp->oid_arg1; 6308 device_t dev = devinfo->dev; 6309 char buf[256]; 6310 int n = 0, i, numgpi; 6311 uint32_t data = 0; 6312 6313 buf[0] = 0; 6314 hdaa_lock(devinfo); 6315 numgpi = HDA_PARAM_GPIO_COUNT_NUM_GPI(devinfo->gpio_cap); 6316 if (numgpi > 0) { 6317 data = hda_command(dev, 6318 HDA_CMD_GET_GPI_DATA(0, devinfo->nid)); 6319 } 6320 hdaa_unlock(devinfo); 6321 for (i = 0; i < numgpi; i++) { 6322 n += snprintf(buf + n, sizeof(buf) - n, "%s%d=%d", 6323 n != 0 ? " " : "", i, ((data >> i) & 1)); 6324 } 6325 return (sysctl_handle_string(oidp, buf, sizeof(buf), req)); 6326 } 6327 6328 static int 6329 hdaa_sysctl_gpio_state(SYSCTL_HANDLER_ARGS) 6330 { 6331 struct hdaa_devinfo *devinfo = oidp->oid_arg1; 6332 device_t dev = devinfo->dev; 6333 char buf[256]; 6334 int n = 0, i, numgpio; 6335 uint32_t data = 0, enable = 0, dir = 0; 6336 6337 buf[0] = 0; 6338 hdaa_lock(devinfo); 6339 numgpio = HDA_PARAM_GPIO_COUNT_NUM_GPIO(devinfo->gpio_cap); 6340 if (numgpio > 0) { 6341 data = hda_command(dev, 6342 HDA_CMD_GET_GPIO_DATA(0, devinfo->nid)); 6343 enable = hda_command(dev, 6344 HDA_CMD_GET_GPIO_ENABLE_MASK(0, devinfo->nid)); 6345 dir = hda_command(dev, 6346 HDA_CMD_GET_GPIO_DIRECTION(0, devinfo->nid)); 6347 } 6348 hdaa_unlock(devinfo); 6349 for (i = 0; i < numgpio; i++) { 6350 n += snprintf(buf + n, sizeof(buf) - n, "%s%d=", 6351 n != 0 ? " " : "", i); 6352 if ((enable & (1 << i)) == 0) { 6353 n += snprintf(buf + n, sizeof(buf) - n, "disabled"); 6354 continue; 6355 } 6356 n += snprintf(buf + n, sizeof(buf) - n, "%sput(%d)", 6357 ((dir >> i) & 1) ? "out" : "in", ((data >> i) & 1)); 6358 } 6359 return (sysctl_handle_string(oidp, buf, sizeof(buf), req)); 6360 } 6361 6362 static int 6363 hdaa_sysctl_gpio_config(SYSCTL_HANDLER_ARGS) 6364 { 6365 struct hdaa_devinfo *devinfo = oidp->oid_arg1; 6366 char buf[256]; 6367 int error, n = 0, i, numgpio; 6368 uint32_t gpio, x; 6369 6370 gpio = devinfo->newgpio; 6371 numgpio = HDA_PARAM_GPIO_COUNT_NUM_GPIO(devinfo->gpio_cap); 6372 buf[0] = 0; 6373 for (i = 0; i < numgpio; i++) { 6374 x = (gpio & HDAA_GPIO_MASK(i)) >> HDAA_GPIO_SHIFT(i); 6375 n += snprintf(buf + n, sizeof(buf) - n, "%s%d=%s", 6376 n != 0 ? " " : "", i, HDA_GPIO_ACTIONS[x]); 6377 } 6378 error = sysctl_handle_string(oidp, buf, sizeof(buf), req); 6379 if (error != 0 || req->newptr == NULL) 6380 return (error); 6381 if (strncmp(buf, "0x", 2) == 0) 6382 gpio = strtol(buf + 2, NULL, 16); 6383 else 6384 gpio = hdaa_gpio_patch(gpio, buf); 6385 hdaa_lock(devinfo); 6386 devinfo->newgpio = devinfo->gpio = gpio; 6387 hdaa_gpio_commit(devinfo); 6388 hdaa_unlock(devinfo); 6389 return (0); 6390 } 6391 6392 static int 6393 hdaa_sysctl_gpo_state(SYSCTL_HANDLER_ARGS) 6394 { 6395 struct hdaa_devinfo *devinfo = oidp->oid_arg1; 6396 device_t dev = devinfo->dev; 6397 char buf[256]; 6398 int n = 0, i, numgpo; 6399 uint32_t data = 0; 6400 6401 buf[0] = 0; 6402 hdaa_lock(devinfo); 6403 numgpo = HDA_PARAM_GPIO_COUNT_NUM_GPO(devinfo->gpio_cap); 6404 if (numgpo > 0) { 6405 data = hda_command(dev, 6406 HDA_CMD_GET_GPO_DATA(0, devinfo->nid)); 6407 } 6408 hdaa_unlock(devinfo); 6409 for (i = 0; i < numgpo; i++) { 6410 n += snprintf(buf + n, sizeof(buf) - n, "%s%d=%d", 6411 n != 0 ? " " : "", i, ((data >> i) & 1)); 6412 } 6413 return (sysctl_handle_string(oidp, buf, sizeof(buf), req)); 6414 } 6415 6416 static int 6417 hdaa_sysctl_gpo_config(SYSCTL_HANDLER_ARGS) 6418 { 6419 struct hdaa_devinfo *devinfo = oidp->oid_arg1; 6420 char buf[256]; 6421 int error, n = 0, i, numgpo; 6422 uint32_t gpo, x; 6423 6424 gpo = devinfo->newgpo; 6425 numgpo = HDA_PARAM_GPIO_COUNT_NUM_GPO(devinfo->gpio_cap); 6426 buf[0] = 0; 6427 for (i = 0; i < numgpo; i++) { 6428 x = (gpo & HDAA_GPIO_MASK(i)) >> HDAA_GPIO_SHIFT(i); 6429 n += snprintf(buf + n, sizeof(buf) - n, "%s%d=%s", 6430 n != 0 ? " " : "", i, HDA_GPIO_ACTIONS[x]); 6431 } 6432 error = sysctl_handle_string(oidp, buf, sizeof(buf), req); 6433 if (error != 0 || req->newptr == NULL) 6434 return (error); 6435 if (strncmp(buf, "0x", 2) == 0) 6436 gpo = strtol(buf + 2, NULL, 16); 6437 else 6438 gpo = hdaa_gpio_patch(gpo, buf); 6439 hdaa_lock(devinfo); 6440 devinfo->newgpo = devinfo->gpo = gpo; 6441 hdaa_gpo_commit(devinfo); 6442 hdaa_unlock(devinfo); 6443 return (0); 6444 } 6445 6446 static int 6447 hdaa_sysctl_reconfig(SYSCTL_HANDLER_ARGS) 6448 { 6449 device_t dev; 6450 struct hdaa_devinfo *devinfo; 6451 int error, val; 6452 6453 dev = oidp->oid_arg1; 6454 devinfo = device_get_softc(dev); 6455 if (devinfo == NULL) 6456 return (EINVAL); 6457 val = 0; 6458 error = sysctl_handle_int(oidp, &val, 0, req); 6459 if (error != 0 || req->newptr == NULL || val == 0) 6460 return (error); 6461 6462 HDA_BOOTHVERBOSE( 6463 device_printf(dev, "Reconfiguration...\n"); 6464 ); 6465 if ((error = device_delete_children(dev)) != 0) 6466 return (error); 6467 hdaa_lock(devinfo); 6468 hdaa_unconfigure(dev); 6469 hdaa_configure(dev); 6470 hdaa_unlock(devinfo); 6471 bus_generic_attach(dev); 6472 HDA_BOOTHVERBOSE( 6473 device_printf(dev, "Reconfiguration done\n"); 6474 ); 6475 return (0); 6476 } 6477 6478 static int 6479 hdaa_suspend(device_t dev) 6480 { 6481 struct hdaa_devinfo *devinfo = device_get_softc(dev); 6482 int i; 6483 6484 HDA_BOOTHVERBOSE( 6485 device_printf(dev, "Suspend...\n"); 6486 ); 6487 hdaa_lock(devinfo); 6488 HDA_BOOTHVERBOSE( 6489 device_printf(dev, "Stop streams...\n"); 6490 ); 6491 for (i = 0; i < devinfo->num_chans; i++) { 6492 if (devinfo->chans[i].flags & HDAA_CHN_RUNNING) { 6493 devinfo->chans[i].flags |= HDAA_CHN_SUSPEND; 6494 hdaa_channel_stop(&devinfo->chans[i]); 6495 } 6496 } 6497 HDA_BOOTHVERBOSE( 6498 device_printf(dev, "Power down FG" 6499 " nid=%d to the D3 state...\n", 6500 devinfo->nid); 6501 ); 6502 hda_command(devinfo->dev, 6503 HDA_CMD_SET_POWER_STATE(0, 6504 devinfo->nid, HDA_CMD_POWER_STATE_D3)); 6505 callout_stop(&devinfo->poll_jack); 6506 hdaa_unlock(devinfo); 6507 callout_drain(&devinfo->poll_jack); 6508 HDA_BOOTHVERBOSE( 6509 device_printf(dev, "Suspend done\n"); 6510 ); 6511 return (0); 6512 } 6513 6514 static int 6515 hdaa_resume(device_t dev) 6516 { 6517 struct hdaa_devinfo *devinfo = device_get_softc(dev); 6518 int i; 6519 6520 HDA_BOOTHVERBOSE( 6521 device_printf(dev, "Resume...\n"); 6522 ); 6523 hdaa_lock(devinfo); 6524 HDA_BOOTHVERBOSE( 6525 device_printf(dev, "Power up audio FG nid=%d...\n", 6526 devinfo->nid); 6527 ); 6528 hdaa_powerup(devinfo); 6529 HDA_BOOTHVERBOSE( 6530 device_printf(dev, "AFG commit...\n"); 6531 ); 6532 hdaa_audio_commit(devinfo); 6533 HDA_BOOTHVERBOSE( 6534 device_printf(dev, "Applying direct built-in patches...\n"); 6535 ); 6536 hdaa_patch_direct(devinfo); 6537 HDA_BOOTHVERBOSE( 6538 device_printf(dev, "Pin sense init...\n"); 6539 ); 6540 hdaa_sense_init(devinfo); 6541 6542 hdaa_unlock(devinfo); 6543 for (i = 0; i < devinfo->num_devs; i++) { 6544 struct hdaa_pcm_devinfo *pdevinfo = &devinfo->devs[i]; 6545 HDA_BOOTHVERBOSE( 6546 device_printf(pdevinfo->dev, 6547 "OSS mixer reinitialization...\n"); 6548 ); 6549 if (mixer_reinit(pdevinfo->dev) == -1) 6550 device_printf(pdevinfo->dev, 6551 "unable to reinitialize the mixer\n"); 6552 } 6553 hdaa_lock(devinfo); 6554 HDA_BOOTHVERBOSE( 6555 device_printf(dev, "Start streams...\n"); 6556 ); 6557 for (i = 0; i < devinfo->num_chans; i++) { 6558 if (devinfo->chans[i].flags & HDAA_CHN_SUSPEND) { 6559 devinfo->chans[i].flags &= ~HDAA_CHN_SUSPEND; 6560 hdaa_channel_start(&devinfo->chans[i]); 6561 } 6562 } 6563 hdaa_unlock(devinfo); 6564 HDA_BOOTHVERBOSE( 6565 device_printf(dev, "Resume done\n"); 6566 ); 6567 return (0); 6568 } 6569 6570 static int 6571 hdaa_probe(device_t dev) 6572 { 6573 const char *pdesc; 6574 char buf[128]; 6575 6576 if (hda_get_node_type(dev) != HDA_PARAM_FCT_GRP_TYPE_NODE_TYPE_AUDIO) 6577 return (ENXIO); 6578 pdesc = device_get_desc(device_get_parent(dev)); 6579 snprintf(buf, sizeof(buf), "%.*s Audio Function Group", 6580 (int)(strlen(pdesc) - 10), pdesc); 6581 device_set_desc_copy(dev, buf); 6582 return (BUS_PROBE_DEFAULT); 6583 } 6584 6585 static int 6586 hdaa_attach(device_t dev) 6587 { 6588 struct hdaa_devinfo *devinfo = device_get_softc(dev); 6589 uint32_t res; 6590 nid_t nid = hda_get_node_id(dev); 6591 6592 devinfo->dev = dev; 6593 devinfo->lock = HDAC_GET_MTX(device_get_parent(dev), dev); 6594 devinfo->nid = nid; 6595 devinfo->newquirks = -1; 6596 devinfo->newgpio = -1; 6597 devinfo->newgpo = -1; 6598 callout_init(&devinfo->poll_jack, 1); 6599 devinfo->poll_ival = hz; 6600 6601 hdaa_lock(devinfo); 6602 res = hda_command(dev, 6603 HDA_CMD_GET_PARAMETER(0 , nid, HDA_PARAM_SUB_NODE_COUNT)); 6604 hdaa_unlock(devinfo); 6605 6606 devinfo->nodecnt = HDA_PARAM_SUB_NODE_COUNT_TOTAL(res); 6607 devinfo->startnode = HDA_PARAM_SUB_NODE_COUNT_START(res); 6608 devinfo->endnode = devinfo->startnode + devinfo->nodecnt; 6609 6610 HDA_BOOTVERBOSE( 6611 device_printf(dev, "Subsystem ID: 0x%08x\n", 6612 hda_get_subsystem_id(dev)); 6613 ); 6614 HDA_BOOTHVERBOSE( 6615 device_printf(dev, 6616 "Audio Function Group at nid=%d: %d subnodes %d-%d\n", 6617 nid, devinfo->nodecnt, 6618 devinfo->startnode, devinfo->endnode - 1); 6619 ); 6620 6621 if (devinfo->nodecnt > 0) 6622 devinfo->widget = (struct hdaa_widget *)malloc( 6623 sizeof(*(devinfo->widget)) * devinfo->nodecnt, M_HDAA, 6624 M_WAITOK | M_ZERO); 6625 else 6626 devinfo->widget = NULL; 6627 6628 hdaa_lock(devinfo); 6629 HDA_BOOTHVERBOSE( 6630 device_printf(dev, "Powering up...\n"); 6631 ); 6632 hdaa_powerup(devinfo); 6633 HDA_BOOTHVERBOSE( 6634 device_printf(dev, "Parsing audio FG...\n"); 6635 ); 6636 hdaa_audio_parse(devinfo); 6637 HDA_BOOTVERBOSE( 6638 device_printf(dev, "Original pins configuration:\n"); 6639 hdaa_dump_pin_configs(devinfo); 6640 ); 6641 hdaa_configure(dev); 6642 hdaa_unlock(devinfo); 6643 6644 SYSCTL_ADD_PROC(device_get_sysctl_ctx(dev), 6645 SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO, 6646 "config", CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_MPSAFE, 6647 &devinfo->newquirks, 0, hdaa_sysctl_quirks, "A", 6648 "Configuration options"); 6649 SYSCTL_ADD_PROC(device_get_sysctl_ctx(dev), 6650 SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO, 6651 "gpi_state", CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_MPSAFE, 6652 devinfo, 0, hdaa_sysctl_gpi_state, "A", "GPI state"); 6653 SYSCTL_ADD_PROC(device_get_sysctl_ctx(dev), 6654 SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO, 6655 "gpio_state", CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_MPSAFE, 6656 devinfo, 0, hdaa_sysctl_gpio_state, "A", "GPIO state"); 6657 SYSCTL_ADD_PROC(device_get_sysctl_ctx(dev), 6658 SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO, 6659 "gpio_config", CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_MPSAFE, 6660 devinfo, 0, hdaa_sysctl_gpio_config, "A", "GPIO configuration"); 6661 SYSCTL_ADD_PROC(device_get_sysctl_ctx(dev), 6662 SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO, 6663 "gpo_state", CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_MPSAFE, 6664 devinfo, 0, hdaa_sysctl_gpo_state, "A", "GPO state"); 6665 SYSCTL_ADD_PROC(device_get_sysctl_ctx(dev), 6666 SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO, 6667 "gpo_config", CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_MPSAFE, 6668 devinfo, 0, hdaa_sysctl_gpo_config, "A", "GPO configuration"); 6669 SYSCTL_ADD_PROC(device_get_sysctl_ctx(dev), 6670 SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO, 6671 "reconfig", CTLTYPE_INT | CTLFLAG_RW, 6672 dev, 0, hdaa_sysctl_reconfig, "I", "Reprocess configuration"); 6673 bus_generic_attach(dev); 6674 return (0); 6675 } 6676 6677 static int 6678 hdaa_detach(device_t dev) 6679 { 6680 struct hdaa_devinfo *devinfo = device_get_softc(dev); 6681 int error; 6682 6683 if ((error = device_delete_children(dev)) != 0) 6684 return (error); 6685 6686 hdaa_lock(devinfo); 6687 hdaa_unconfigure(dev); 6688 devinfo->poll_ival = 0; 6689 callout_stop(&devinfo->poll_jack); 6690 hdaa_unlock(devinfo); 6691 callout_drain(&devinfo->poll_jack); 6692 6693 free(devinfo->widget, M_HDAA); 6694 return (0); 6695 } 6696 6697 static int 6698 hdaa_print_child(device_t dev, device_t child) 6699 { 6700 struct hdaa_devinfo *devinfo = device_get_softc(dev); 6701 struct hdaa_pcm_devinfo *pdevinfo = 6702 (struct hdaa_pcm_devinfo *)device_get_ivars(child); 6703 struct hdaa_audio_as *as; 6704 int retval, first = 1, i; 6705 6706 retval = bus_print_child_header(dev, child); 6707 retval += printf(" at nid "); 6708 if (pdevinfo->playas >= 0) { 6709 as = &devinfo->as[pdevinfo->playas]; 6710 for (i = 0; i < 16; i++) { 6711 if (as->pins[i] <= 0) 6712 continue; 6713 retval += printf("%s%d", first ? "" : ",", as->pins[i]); 6714 first = 0; 6715 } 6716 } 6717 if (pdevinfo->recas >= 0) { 6718 if (pdevinfo->playas >= 0) { 6719 retval += printf(" and "); 6720 first = 1; 6721 } 6722 as = &devinfo->as[pdevinfo->recas]; 6723 for (i = 0; i < 16; i++) { 6724 if (as->pins[i] <= 0) 6725 continue; 6726 retval += printf("%s%d", first ? "" : ",", as->pins[i]); 6727 first = 0; 6728 } 6729 } 6730 retval += bus_print_child_footer(dev, child); 6731 6732 return (retval); 6733 } 6734 6735 static int 6736 hdaa_child_location_str(device_t dev, device_t child, char *buf, 6737 size_t buflen) 6738 { 6739 struct hdaa_devinfo *devinfo = device_get_softc(dev); 6740 struct hdaa_pcm_devinfo *pdevinfo = 6741 (struct hdaa_pcm_devinfo *)device_get_ivars(child); 6742 struct hdaa_audio_as *as; 6743 int first = 1, i, len = 0; 6744 6745 len += snprintf(buf + len, buflen - len, "nid="); 6746 if (pdevinfo->playas >= 0) { 6747 as = &devinfo->as[pdevinfo->playas]; 6748 for (i = 0; i < 16; i++) { 6749 if (as->pins[i] <= 0) 6750 continue; 6751 len += snprintf(buf + len, buflen - len, 6752 "%s%d", first ? "" : ",", as->pins[i]); 6753 first = 0; 6754 } 6755 } 6756 if (pdevinfo->recas >= 0) { 6757 as = &devinfo->as[pdevinfo->recas]; 6758 for (i = 0; i < 16; i++) { 6759 if (as->pins[i] <= 0) 6760 continue; 6761 len += snprintf(buf + len, buflen - len, 6762 "%s%d", first ? "" : ",", as->pins[i]); 6763 first = 0; 6764 } 6765 } 6766 return (0); 6767 } 6768 6769 static void 6770 hdaa_stream_intr(device_t dev, int dir, int stream) 6771 { 6772 struct hdaa_devinfo *devinfo = device_get_softc(dev); 6773 struct hdaa_chan *ch; 6774 int i; 6775 6776 for (i = 0; i < devinfo->num_chans; i++) { 6777 ch = &devinfo->chans[i]; 6778 if (!(ch->flags & HDAA_CHN_RUNNING)) 6779 continue; 6780 if (ch->dir == ((dir == 1) ? PCMDIR_PLAY : PCMDIR_REC) && 6781 ch->sid == stream) { 6782 hdaa_unlock(devinfo); 6783 chn_intr(ch->c); 6784 hdaa_lock(devinfo); 6785 } 6786 } 6787 } 6788 6789 static void 6790 hdaa_unsol_intr(device_t dev, uint32_t resp) 6791 { 6792 struct hdaa_devinfo *devinfo = device_get_softc(dev); 6793 struct hdaa_widget *w; 6794 int i, tag, flags; 6795 6796 HDA_BOOTHVERBOSE( 6797 device_printf(dev, "Unsolicited response %08x\n", resp); 6798 ); 6799 tag = resp >> 26; 6800 for (i = devinfo->startnode; i < devinfo->endnode; i++) { 6801 w = hdaa_widget_get(devinfo, i); 6802 if (w == NULL || w->enable == 0 || w->type != 6803 HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 6804 continue; 6805 if (w->unsol != tag) 6806 continue; 6807 if (HDA_PARAM_PIN_CAP_DP(w->wclass.pin.cap) || 6808 HDA_PARAM_PIN_CAP_HDMI(w->wclass.pin.cap)) 6809 flags = resp & 0x03; 6810 else 6811 flags = 0x01; 6812 if (flags & 0x01) 6813 hdaa_presence_handler(w); 6814 if (flags & 0x02) 6815 hdaa_eld_handler(w); 6816 } 6817 } 6818 6819 static device_method_t hdaa_methods[] = { 6820 /* device interface */ 6821 DEVMETHOD(device_probe, hdaa_probe), 6822 DEVMETHOD(device_attach, hdaa_attach), 6823 DEVMETHOD(device_detach, hdaa_detach), 6824 DEVMETHOD(device_suspend, hdaa_suspend), 6825 DEVMETHOD(device_resume, hdaa_resume), 6826 /* Bus interface */ 6827 DEVMETHOD(bus_print_child, hdaa_print_child), 6828 DEVMETHOD(bus_child_location_str, hdaa_child_location_str), 6829 DEVMETHOD(hdac_stream_intr, hdaa_stream_intr), 6830 DEVMETHOD(hdac_unsol_intr, hdaa_unsol_intr), 6831 DEVMETHOD(hdac_pindump, hdaa_pindump), 6832 DEVMETHOD_END 6833 }; 6834 6835 static driver_t hdaa_driver = { 6836 "hdaa", 6837 hdaa_methods, 6838 sizeof(struct hdaa_devinfo), 6839 }; 6840 6841 static devclass_t hdaa_devclass; 6842 6843 DRIVER_MODULE(snd_hda, hdacc, hdaa_driver, hdaa_devclass, NULL, NULL); 6844 6845 static void 6846 hdaa_chan_formula(struct hdaa_devinfo *devinfo, int asid, 6847 char *buf, int buflen) 6848 { 6849 struct hdaa_audio_as *as; 6850 int c; 6851 6852 as = &devinfo->as[asid]; 6853 c = devinfo->chans[as->chans[0]].channels; 6854 if (c == 1) 6855 snprintf(buf, buflen, "mono"); 6856 else if (c == 2) { 6857 if (as->hpredir < 0) 6858 buf[0] = 0; 6859 else 6860 snprintf(buf, buflen, "2.0"); 6861 } else if (as->pinset == 0x0003) 6862 snprintf(buf, buflen, "3.1"); 6863 else if (as->pinset == 0x0005 || as->pinset == 0x0011) 6864 snprintf(buf, buflen, "4.0"); 6865 else if (as->pinset == 0x0007 || as->pinset == 0x0013) 6866 snprintf(buf, buflen, "5.1"); 6867 else if (as->pinset == 0x0017) 6868 snprintf(buf, buflen, "7.1"); 6869 else 6870 snprintf(buf, buflen, "%dch", c); 6871 if (as->hpredir >= 0) 6872 strlcat(buf, "+HP", buflen); 6873 } 6874 6875 static int 6876 hdaa_chan_type(struct hdaa_devinfo *devinfo, int asid) 6877 { 6878 struct hdaa_audio_as *as; 6879 struct hdaa_widget *w; 6880 int i, t = -1, t1; 6881 6882 as = &devinfo->as[asid]; 6883 for (i = 0; i < 16; i++) { 6884 w = hdaa_widget_get(devinfo, as->pins[i]); 6885 if (w == NULL || w->enable == 0 || w->type != 6886 HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) 6887 continue; 6888 t1 = HDA_CONFIG_DEFAULTCONF_DEVICE(w->wclass.pin.config); 6889 if (t == -1) 6890 t = t1; 6891 else if (t != t1) { 6892 t = -2; 6893 break; 6894 } 6895 } 6896 return (t); 6897 } 6898 6899 static int 6900 hdaa_sysctl_32bit(SYSCTL_HANDLER_ARGS) 6901 { 6902 struct hdaa_audio_as *as = (struct hdaa_audio_as *)oidp->oid_arg1; 6903 struct hdaa_pcm_devinfo *pdevinfo = as->pdevinfo; 6904 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 6905 struct hdaa_chan *ch; 6906 int error, val, i; 6907 uint32_t pcmcap; 6908 6909 ch = &devinfo->chans[as->chans[0]]; 6910 val = (ch->bit32 == 4) ? 32 : ((ch->bit32 == 3) ? 24 : 6911 ((ch->bit32 == 2) ? 20 : 0)); 6912 error = sysctl_handle_int(oidp, &val, 0, req); 6913 if (error != 0 || req->newptr == NULL) 6914 return (error); 6915 pcmcap = ch->supp_pcm_size_rate; 6916 if (val == 32 && HDA_PARAM_SUPP_PCM_SIZE_RATE_32BIT(pcmcap)) 6917 ch->bit32 = 4; 6918 else if (val == 24 && HDA_PARAM_SUPP_PCM_SIZE_RATE_24BIT(pcmcap)) 6919 ch->bit32 = 3; 6920 else if (val == 20 && HDA_PARAM_SUPP_PCM_SIZE_RATE_20BIT(pcmcap)) 6921 ch->bit32 = 2; 6922 else 6923 return (EINVAL); 6924 for (i = 1; i < as->num_chans; i++) 6925 devinfo->chans[as->chans[i]].bit32 = ch->bit32; 6926 return (0); 6927 } 6928 6929 static int 6930 hdaa_pcm_probe(device_t dev) 6931 { 6932 struct hdaa_pcm_devinfo *pdevinfo = 6933 (struct hdaa_pcm_devinfo *)device_get_ivars(dev); 6934 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 6935 const char *pdesc; 6936 char chans1[8], chans2[8]; 6937 char buf[128]; 6938 int loc1, loc2, t1, t2; 6939 6940 if (pdevinfo->playas >= 0) 6941 loc1 = devinfo->as[pdevinfo->playas].location; 6942 else 6943 loc1 = devinfo->as[pdevinfo->recas].location; 6944 if (pdevinfo->recas >= 0) 6945 loc2 = devinfo->as[pdevinfo->recas].location; 6946 else 6947 loc2 = loc1; 6948 if (loc1 != loc2) 6949 loc1 = -2; 6950 if (loc1 >= 0 && HDA_LOCS[loc1][0] == '0') 6951 loc1 = -2; 6952 chans1[0] = 0; 6953 chans2[0] = 0; 6954 t1 = t2 = -1; 6955 if (pdevinfo->playas >= 0) { 6956 hdaa_chan_formula(devinfo, pdevinfo->playas, 6957 chans1, sizeof(chans1)); 6958 t1 = hdaa_chan_type(devinfo, pdevinfo->playas); 6959 } 6960 if (pdevinfo->recas >= 0) { 6961 hdaa_chan_formula(devinfo, pdevinfo->recas, 6962 chans2, sizeof(chans2)); 6963 t2 = hdaa_chan_type(devinfo, pdevinfo->recas); 6964 } 6965 if (chans1[0] != 0 || chans2[0] != 0) { 6966 if (chans1[0] == 0 && pdevinfo->playas >= 0) 6967 snprintf(chans1, sizeof(chans1), "2.0"); 6968 else if (chans2[0] == 0 && pdevinfo->recas >= 0) 6969 snprintf(chans2, sizeof(chans2), "2.0"); 6970 if (strcmp(chans1, chans2) == 0) 6971 chans2[0] = 0; 6972 } 6973 if (t1 == -1) 6974 t1 = t2; 6975 else if (t2 == -1) 6976 t2 = t1; 6977 if (t1 != t2) 6978 t1 = -2; 6979 if (pdevinfo->digital) 6980 t1 = -2; 6981 pdesc = device_get_desc(device_get_parent(dev)); 6982 snprintf(buf, sizeof(buf), "%.*s (%s%s%s%s%s%s%s%s%s)", 6983 (int)(strlen(pdesc) - 21), pdesc, 6984 loc1 >= 0 ? HDA_LOCS[loc1] : "", loc1 >= 0 ? " " : "", 6985 (pdevinfo->digital == 0x7)?"HDMI/DP": 6986 ((pdevinfo->digital == 0x5)?"DisplayPort": 6987 ((pdevinfo->digital == 0x3)?"HDMI": 6988 ((pdevinfo->digital)?"Digital":"Analog"))), 6989 chans1[0] ? " " : "", chans1, 6990 chans2[0] ? "/" : "", chans2, 6991 t1 >= 0 ? " " : "", t1 >= 0 ? HDA_DEVS[t1] : ""); 6992 device_set_desc_copy(dev, buf); 6993 return (BUS_PROBE_SPECIFIC); 6994 } 6995 6996 static int 6997 hdaa_pcm_attach(device_t dev) 6998 { 6999 struct hdaa_pcm_devinfo *pdevinfo = 7000 (struct hdaa_pcm_devinfo *)device_get_ivars(dev); 7001 struct hdaa_devinfo *devinfo = pdevinfo->devinfo; 7002 struct hdaa_audio_as *as; 7003 struct snddev_info *d; 7004 char status[SND_STATUSLEN]; 7005 int i; 7006 7007 pdevinfo->chan_size = pcm_getbuffersize(dev, 7008 HDA_BUFSZ_MIN, HDA_BUFSZ_DEFAULT, HDA_BUFSZ_MAX); 7009 7010 HDA_BOOTVERBOSE( 7011 hdaa_dump_dac(pdevinfo); 7012 hdaa_dump_adc(pdevinfo); 7013 hdaa_dump_mix(pdevinfo); 7014 hdaa_dump_ctls(pdevinfo, "Master Volume", SOUND_MASK_VOLUME); 7015 hdaa_dump_ctls(pdevinfo, "PCM Volume", SOUND_MASK_PCM); 7016 hdaa_dump_ctls(pdevinfo, "CD Volume", SOUND_MASK_CD); 7017 hdaa_dump_ctls(pdevinfo, "Microphone Volume", SOUND_MASK_MIC); 7018 hdaa_dump_ctls(pdevinfo, "Microphone2 Volume", SOUND_MASK_MONITOR); 7019 hdaa_dump_ctls(pdevinfo, "Line-in Volume", SOUND_MASK_LINE); 7020 hdaa_dump_ctls(pdevinfo, "Speaker/Beep Volume", SOUND_MASK_SPEAKER); 7021 hdaa_dump_ctls(pdevinfo, "Recording Level", SOUND_MASK_RECLEV); 7022 hdaa_dump_ctls(pdevinfo, "Input Mix Level", SOUND_MASK_IMIX); 7023 hdaa_dump_ctls(pdevinfo, "Input Monitoring Level", SOUND_MASK_IGAIN); 7024 hdaa_dump_ctls(pdevinfo, NULL, 0); 7025 ); 7026 7027 if (resource_int_value(device_get_name(dev), 7028 device_get_unit(dev), "blocksize", &i) == 0 && i > 0) { 7029 i &= HDA_BLK_ALIGN; 7030 if (i < HDA_BLK_MIN) 7031 i = HDA_BLK_MIN; 7032 pdevinfo->chan_blkcnt = pdevinfo->chan_size / i; 7033 i = 0; 7034 while (pdevinfo->chan_blkcnt >> i) 7035 i++; 7036 pdevinfo->chan_blkcnt = 1 << (i - 1); 7037 if (pdevinfo->chan_blkcnt < HDA_BDL_MIN) 7038 pdevinfo->chan_blkcnt = HDA_BDL_MIN; 7039 else if (pdevinfo->chan_blkcnt > HDA_BDL_MAX) 7040 pdevinfo->chan_blkcnt = HDA_BDL_MAX; 7041 } else 7042 pdevinfo->chan_blkcnt = HDA_BDL_DEFAULT; 7043 7044 /* 7045 * We don't register interrupt handler with snd_setup_intr 7046 * in pcm device. Mark pcm device as MPSAFE manually. 7047 */ 7048 pcm_setflags(dev, pcm_getflags(dev) | SD_F_MPSAFE); 7049 7050 HDA_BOOTHVERBOSE( 7051 device_printf(dev, "OSS mixer initialization...\n"); 7052 ); 7053 if (mixer_init(dev, &hdaa_audio_ctl_ossmixer_class, pdevinfo) != 0) 7054 device_printf(dev, "Can't register mixer\n"); 7055 7056 HDA_BOOTHVERBOSE( 7057 device_printf(dev, "Registering PCM channels...\n"); 7058 ); 7059 if (pcm_register(dev, pdevinfo, (pdevinfo->playas >= 0)?1:0, 7060 (pdevinfo->recas >= 0)?1:0) != 0) 7061 device_printf(dev, "Can't register PCM\n"); 7062 7063 pdevinfo->registered++; 7064 7065 d = device_get_softc(dev); 7066 if (pdevinfo->playas >= 0) { 7067 as = &devinfo->as[pdevinfo->playas]; 7068 for (i = 0; i < as->num_chans; i++) 7069 pcm_addchan(dev, PCMDIR_PLAY, &hdaa_channel_class, 7070 &devinfo->chans[as->chans[i]]); 7071 SYSCTL_ADD_PROC(&d->play_sysctl_ctx, 7072 SYSCTL_CHILDREN(d->play_sysctl_tree), OID_AUTO, 7073 "32bit", CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE, 7074 as, sizeof(as), hdaa_sysctl_32bit, "I", 7075 "Resolution of 32bit samples (20/24/32bit)"); 7076 } 7077 if (pdevinfo->recas >= 0) { 7078 as = &devinfo->as[pdevinfo->recas]; 7079 for (i = 0; i < as->num_chans; i++) 7080 pcm_addchan(dev, PCMDIR_REC, &hdaa_channel_class, 7081 &devinfo->chans[as->chans[i]]); 7082 SYSCTL_ADD_PROC(&d->rec_sysctl_ctx, 7083 SYSCTL_CHILDREN(d->rec_sysctl_tree), OID_AUTO, 7084 "32bit", CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE, 7085 as, sizeof(as), hdaa_sysctl_32bit, "I", 7086 "Resolution of 32bit samples (20/24/32bit)"); 7087 pdevinfo->autorecsrc = 2; 7088 resource_int_value(device_get_name(dev), device_get_unit(dev), 7089 "rec.autosrc", &pdevinfo->autorecsrc); 7090 SYSCTL_ADD_INT(&d->rec_sysctl_ctx, 7091 SYSCTL_CHILDREN(d->rec_sysctl_tree), OID_AUTO, 7092 "autosrc", CTLFLAG_RW, 7093 &pdevinfo->autorecsrc, 0, 7094 "Automatic recording source selection"); 7095 } 7096 7097 if (pdevinfo->mixer != NULL) { 7098 hdaa_audio_ctl_set_defaults(pdevinfo); 7099 hdaa_lock(devinfo); 7100 if (pdevinfo->playas >= 0) { 7101 as = &devinfo->as[pdevinfo->playas]; 7102 hdaa_channels_handler(as); 7103 } 7104 if (pdevinfo->recas >= 0) { 7105 as = &devinfo->as[pdevinfo->recas]; 7106 hdaa_autorecsrc_handler(as, NULL); 7107 hdaa_channels_handler(as); 7108 } 7109 hdaa_unlock(devinfo); 7110 } 7111 7112 snprintf(status, SND_STATUSLEN, "on %s %s", 7113 device_get_nameunit(device_get_parent(dev)), 7114 PCM_KLDSTRING(snd_hda)); 7115 pcm_setstatus(dev, status); 7116 7117 return (0); 7118 } 7119 7120 static int 7121 hdaa_pcm_detach(device_t dev) 7122 { 7123 struct hdaa_pcm_devinfo *pdevinfo = 7124 (struct hdaa_pcm_devinfo *)device_get_ivars(dev); 7125 int err; 7126 7127 if (pdevinfo->registered > 0) { 7128 err = pcm_unregister(dev); 7129 if (err != 0) 7130 return (err); 7131 } 7132 7133 return (0); 7134 } 7135 7136 static device_method_t hdaa_pcm_methods[] = { 7137 /* device interface */ 7138 DEVMETHOD(device_probe, hdaa_pcm_probe), 7139 DEVMETHOD(device_attach, hdaa_pcm_attach), 7140 DEVMETHOD(device_detach, hdaa_pcm_detach), 7141 DEVMETHOD_END 7142 }; 7143 7144 static driver_t hdaa_pcm_driver = { 7145 "pcm", 7146 hdaa_pcm_methods, 7147 PCM_SOFTC_SIZE, 7148 }; 7149 7150 DRIVER_MODULE(snd_hda_pcm, hdaa, hdaa_pcm_driver, pcm_devclass, NULL, NULL); 7151 MODULE_DEPEND(snd_hda, sound, SOUND_MINVER, SOUND_PREFVER, SOUND_MAXVER); 7152 MODULE_VERSION(snd_hda, 1); 7153