Bug 99721 - Thinkpad T440s - Sound muted when docked to ThinkPad Pro Dock
Summary: Thinkpad T440s - Sound muted when docked to ThinkPad Pro Dock
Status: RESOLVED CODE_FIX
Alias: None
Product: Drivers
Classification: Unclassified
Component: Sound(ALSA) (show other bugs)
Hardware: All Linux
: P1 normal
Assignee: Jaroslav Kysela
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-06-09 20:04 UTC by Fabian Franzen
Modified: 2016-01-09 10:07 UTC (History)
5 users (show)

See Also:
Kernel Version: 4.0.0-040000-generic
Subsystem:
Regression: No
Bisected commit-id:


Attachments
alsa-info output (40.72 KB, application/octet-stream)
2015-06-09 20:04 UTC, Fabian Franzen
Details
Patch to make dock headphone jack as line out (510 bytes, patch)
2015-06-10 09:55 UTC, Takashi Iwai
Details | Diff
Patch to handle both headphones equally (511 bytes, patch)
2015-06-10 09:55 UTC, Takashi Iwai
Details | Diff
alsa-info.sh output for comment 34 (40.95 KB, text/plain)
2015-10-26 15:55 UTC, twoflower2012
Details

Description Fabian Franzen 2015-06-09 20:04:50 UTC
Created attachment 179301 [details]
alsa-info output

Hi everyone,

when I dock my Thinkpad T440s to my docking station, the sound channel for the speakers connected to the docking station audio jack are muted by default. If I run the following command after docking

amixer --card 1 sset 'Speaker+LO' 100%

the sound starts working. Unfortunately I have to run this command every time I am docking the system to the docking station. This problem is to 100 percent reproducible. The internal speakers and the headphones output of my laptop does not have these problems and work without any further steps.

I am using the ThinkPad Pro Dock (Type 40A1). That should be this one from the Lenovo support page: http://support.lenovo.com/us/en/documents/pd027981

I originally posted this bug report at launchpad, but it seems to be an upstream problem: https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1462977

I attached the alsa-info output. Please feel free to ask if further information are necessary, I am new to the Kernel Bug Tracker and not familiar with the rules here.
Comment 1 Takashi Iwai 2015-06-10 07:11:50 UTC
The volume is set up by PulseAudio, so it's basically a job of PA.
Did you upgrade PA to 6.0?
Comment 2 Fabian Franzen 2015-06-10 07:19:16 UTC
Yes, I use pulseaudio 6.0:

fabian@flammi-pc:~$ pulseaudio --version
pulseaudio 6.0

Hmm, okay... But while disscussing this on launchpad there was a point, where the mapping of the pins of the docking station pins seems to be incorrectly mapped to line out, triggering this bug (I am familiar enough with the sound system to be 100% sure about this).

Is there an easy way to check this?
Comment 3 Takashi Iwai 2015-06-10 08:13:56 UTC
Try to mute/unmute "Line Out" mixer switch.  If this actually mutes/unmutes the dock headphone, the pin for the dock headphone jack is correct (0x16).

If so, the next step is to check whether the jack detection works.  Try to use hda-verb like:
   hda-verb /dev/snd/hwC1D0 0x16 GET_PIN_SENSE 0

It should return a value with bit 31 on when the jack is plugged.  Try both jack plugged and unplugged and see whether correct values are returned.

Then try to check the jack sense of NID 0x15 instead of 0x16.

If all work fine, it implies that PA doesn't handle "Dock Headphone Jack" as line-out.  We may fix either PA side or kernel side.
Comment 5 Raymond 2015-06-10 09:22:02 UTC
https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/commit/sound/pci/hda?id=1c37c22332a2d2c1b4ab32177a4f847c7fe06e38

the driver add dock headphone jack


+			{ 0x16, 0x21211010 }, /* dock headphone */
+			{ 0x19, 0x21a11010 }, /* dock mic */

seem auto parser silently change one of the headphone jack to line out


https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/commit/sound/pci/hda?id=03ad6a8c93b6df2d65c305b5b5f9474068b45bfb


https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/commit/sound/pci/hda?id=3abb4f4d0e7aaad0d12004b5057f4486a688752b

that is the reason you get "Speaker+LO playback volume"

and line out playback switch
Comment 6 Raymond 2015-06-10 09:50:01 UTC
Simple mixer control 'Auto-Mute Mode',0
  Capabilities: enum
  Items: 'Disabled' 'Speaker Only' 'Line Out+Speaker'
  Item0: 'Line Out+Speaker'

driver regard it as line out jack instead of dock headphone jack
Comment 7 Takashi Iwai 2015-06-10 09:54:21 UTC
Yeah, it's a known inconsistency.  The former PA didn't take care of LO+Speaker, so it worked, but now it tries to mute.

In anyway, if the all tests in comment 3 pass, try the patch below.  This will change the dock headphone as a real dock line out.  But the drawback is that it omits the headphone amp bit, so depending on the hardware, it might sounds in different level.  If so, we need a bit more changes.

Another way to fix is to deal with both dock and normal headphone jacks equally.  That is, no exclusive mute.  If this is a preferred option for PA, the second patch may work.
Comment 8 Takashi Iwai 2015-06-10 09:55:24 UTC
Created attachment 179431 [details]
Patch to make dock headphone jack as line out
Comment 9 Takashi Iwai 2015-06-10 09:55:51 UTC
Created attachment 179441 [details]
Patch to handle both headphones equally
Comment 10 Raymond 2015-06-10 12:38:21 UTC
speaker+lo volume was turned off when jack dock headphone is plugged

do pulseaudio really need to turn off since you lost the original volume when headphone is unplugged ?

http://cgit.freedesktop.org/pulseaudio/pulseaudio/commit/src/modules/alsa/mixer/paths/analog-output-headphones.conf?id=aec811798cd883a454b9b5cd82c77831906bbd2d



+[Element Speaker+LO]
+switch = off
+volume = off
Comment 11 Raymond 2015-06-10 15:40:10 UTC
https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/commit/sound/pci/hda/hda_codec.c?id=5832fcf8b55cfdbd7d8511f747d15fd20ed4703d

seem this patch change the behaviour when there are two headphone jacks, and randomly assign one headphone jack to line out even when location are at Sep and ext
Comment 12 Raymond 2015-06-10 15:51:49 UTC
https://bugzilla.kernel.org/show_bug.cgi?id=99681

the headphone jack was changed to line out while dock headphone jack was put in hp_pins

if you require specifc sequence number, both headphone jacks need to be fixed instead of adding dock headphone jack
Comment 13 Takashi Iwai 2015-06-10 16:14:14 UTC
(In reply to Raymond from comment #11)
> https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/commit/sound/
> pci/hda/hda_codec.c?id=5832fcf8b55cfdbd7d8511f747d15fd20ed4703d
> 
> seem this patch change the behaviour when there are two headphone jacks, and
> randomly assign one headphone jack to line out even when location are at Sep
> and ext

It's not random.

(In reply to Raymond from comment #12)
> https://bugzilla.kernel.org/show_bug.cgi?id=99681
> 
> the headphone jack was changed to line out while dock headphone jack was put
> in hp_pins
> 
> if you require specifc sequence number, both headphone jacks need to be
> fixed instead of adding dock headphone jack

No, the current implementation was intentional in order to mute the builtin headphone over the dock headphone.  This was a preferred behavior in the past.  The only missing piece was the mismatching with the jack control and the mixer controls now PA mandates (it wasn't ago).

OTOH, looking at PA's behavior, it might be more reasonable to handle both headphones equally.  This is done by the patch in comment 9.
Comment 14 Fabian Franzen 2015-06-10 18:52:51 UTC
Okay, I had some time to perform the tests mentioned in comment 3. Here are the results:

1) After "amixer --card 1 sset 'Line Out' mute" the sound gets muted and after "amixer --card 1 sset 'Line Out' unmute" the sound gets unmuted again as expected. Everything tested in docked state.

2) Jack-Detection
2.1) With jack plugged into the docking station:
 
hda-verb /dev/snd/hwC1D0 0x16 GET_PIN_SENSE 0
nid = 0x16, verb = 0xf09, param = 0x0
value = 0x80000000

2.2) With jack unplugged from docking station:

hda-verb /dev/snd/hwC1D0 0x16 GET_PIN_SENSE 0
nid = 0x16, verb = 0xf09, param = 0x0
value = 0x0

3) Sense of NID 0x15 (speaker jack plugged into docking station)
hda-verb /dev/snd/hwC1D0 0x15 GET_PIN_SENSE 0
nid = 0x15, verb = 0xf09, param = 0x0
value = 0x0

I assume that was what you expected?
Comment 15 Fabian Franzen 2015-06-10 22:15:34 UTC
I have applied your patch from comment 9 to a vanilla 4.0.5 kernel and installed that on my machine. The results looks very promising, the "Speaker+LO" is not shown anymore in alsamixer/amixer and the sound is working now out of the box when I plug the jack into the docking station or dock/undock the whole laptop from docking station.

If desired I can also test the patch from comment 8 or provide further information.
Comment 16 Raymond 2015-06-10 23:43:41 UTC
Are the pin fixup correct ?

ThinkPad Pro Dock 65W 

1x Stereo/Mic Combo Audio Port


seem only one combo jack
Comment 17 Raymond 2015-06-11 01:43:29 UTC
do the icon near the combo jack of the dock station look like a headset , headphone or line out?
Comment 18 Raymond 2015-06-11 01:57:19 UTC
http://mailman.alsa-project.org/pipermail/alsa-devel/2014-May/076319.html



>
> a) Using:
> ------------------
> [codec]
> 0x10ec0292 0x17aa220c 0
>
> [pincfg]
> 0x16 0x2121101f
> 0x19 0x21a10030
> ------------------
> I get LOW VOLUME sound from the dock headphone ONLY when also laptop
> headphone connector is plugged in.
>
> b) Using:
> ------------------
> [codec]
> 0x10ec0292 0x17aa220c 0
>
> [pincfg]
> 0x16 0x2121101f
> 0x19 0x21a10030
> 0x1b 0x2121101f
> ------------------
> I get HIGH VOLUME sound from the dock headphones when no laptop
> headphones are connected, but LOW VOLUME sound when both are plugged in.


do your t440s behave the same way ?
Comment 19 Raymond 2015-06-11 02:38:29 UTC
http://support.lenovo.com/us/en/documents/pd028003

The audio connector does not support a conventional microphone.



do this mean the node 1a is not correct ?

your t440s only support internal mic, headset mic and dock headset mic 

Node 0x1a [Pin Complex] wcaps 0x40048b: Stereo Amp-In
  Control: name="Mic Boost Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=0, ofs=0
  Control: name="Mic Jack", index=0, device=0
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Pincap 0x00003724: IN Detect
    Vref caps: HIZ 50 GRD 80 100
  Pin Default 0x03a11020: [Jack] Mic at Ext Left
    Conn = 1/8, Color = Black
    DefAssociation = 0x2, Sequence = 0x0
  Pin-ctls: 0x24: IN VREF_80
  Unsolicited: tag=04, enabled=1
  Power states:  D0 D1 D2 D3 EPSS
  Power: setting=D0, actual=D0
Comment 20 Fabian Franzen 2015-06-11 06:40:04 UTC
The combo jack has an headset icon on the docking station.
Comment 21 Raymond 2015-06-11 07:20:24 UTC
(In reply to Fabian Franzen from comment #20)
> The combo jack has an headset icon on the docking station.

			{ 0x19, 0x21a11010 }, /* dock mic */



this mean node 0x19 should be dock headset mic
Comment 22 Raymond 2015-06-11 08:19:26 UTC
https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/commit/sound/pci/hda?id=73bdd597823e2231dc882577dbbaf8df92fe1775

the current implemenation assume the computer has only one headset combo jack , there is no vendor coeff to implement another headset combo jack
Comment 23 Takashi Iwai 2015-06-11 09:28:57 UTC
Many hardwares support the headset with two distinct pins and the actual detections without COEF or any other workarounds.  Let's hope that Lenovo did it properly for the docks...
Comment 24 Fabian Franzen 2015-06-11 10:42:54 UTC
Will the patch from comment 9 find it's way into the upstream kernel?
Comment 25 Takashi Iwai 2015-06-11 12:52:48 UTC
Not yet.  It fixes one side but causes a regression in another side.  In the original code, the built-in jack mutes the dock jack automatically.  With the patch in comment 9, it's gone, too.

The patch in comment 8 keeps the compatibile behavior.  So give it a try, too.  If this causes the sound output level lower, you can add the line like below:

diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -5679,6 +5679,7 @@ static int patch_alc269(struct hda_codec *codec)
 	codec->patch_ops.resume = alc269_resume;
 #endif
 	spec->shutup = alc269_shutup;
+	spec->gen.prefer_hp_amp = 1;
 
 	snd_hda_pick_fixup(codec, alc269_fixup_models,
 		       alc269_fixup_tbl, alc269_fixups);
Comment 26 Raymond 2015-06-12 05:53:26 UTC
if dock hp put in spec-> line out so that headphone can mute dock hp

https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/commit/sound/pci/hda?id=03ad6a8c93b6df2d65c305b5b5f9474068b45bfb

i t is bug of this patch to change the name to "speaker+lo"

the correct name of the control should be "speaker+dock hp"
Comment 27 Fabian Franzen 2015-06-12 14:58:27 UTC
Can you clearify what regression you are talking about in comment 25?

I will give the other patch a try on monday, I am not at home this weekend.
Comment 28 Takashi Iwai 2015-06-12 15:06:38 UTC
Currently, when a headphone is plugged to the laptop's jack while another headphone being plugged to the dock jack, the dock headphone will be muted auotmatically.  This is the designed behavior.  The patch in comment 9 changes this, and the auto-mute won't happen any longer.

If user is already used to this behavior, losing the automute functionality can be seen as a regression.
Comment 29 Fabian Franzen 2015-06-12 16:17:14 UTC
Hmm, If I remember correctly this behavior hasn't changed with the patch in comment 9... I think if i plug in a headphone directly into the laptop, the dock jack got muted automatically. 

I will also check this on Monday when I am at home again.
Comment 30 Raymond 2015-06-13 02:09:34 UTC
do you have any headset to test the headset mic ?
Comment 31 Takashi Iwai 2015-06-16 06:00:18 UTC
Grrr, I meant the patch in comment 8.  This changes dock headphone as dock line-out, to match with the "Line" volume.  This is the preferred patch over another, as it keeps the compatible behavior like before.

However, this patch reveals the PA's bug, too.  PA (as of 6.0) doesn't have "Dock Line Out" jack control.  You need to add the following to /usr/share/pulseaudio/alsa-mixer/paths/analog-output-lineout.conf:

[Jack Dock Line Out]
required-any = any

and the following to /usr/share/pulseaudio/alsa-mixer/paths/analog-output-speaker.conf:

[Jack Dock Line Out]
state.plugged = no
state.unplugged = unknown


Please check whether these changes with the patch in comment 8 make things working.
Comment 32 Raymond 2015-06-21 13:13:07 UTC
(In reply to Takashi Iwai from comment #28)
> Currently, when a headphone is plugged to the laptop's jack while another
> headphone being plugged to the dock jack, the dock headphone will be muted
> auotmatically.  This is the designed behavior.  The patch in comment 9
> changes this, and the auto-mute won't happen any longer.
> 
> If user is already used to this behavior, losing the automute functionality
> can be seen as a regression.

if headset mic has higher prirotity than dock headset mic in auto mic select, this mean headset must auto mute dock headset
Comment 33 Takashi Iwai 2015-06-25 12:53:09 UTC
I decided to take the fix like in comment 9.  Now the fix patch (implemented slightly differenrly) was queued in for-linus branch, and will be included in 4.2-rc1, backported to stable kernels eventually later.

ec56af67a10a0d82b79027878a81fce08d002d50
    ALSA: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out
Comment 34 twoflower2012 2015-10-25 19:32:40 UTC
Similar problem here on kernel 4.2.0-16-generic #19-Ubuntu SMP and alsa-driver 1.0.25+dfsg-0ubuntu5 (that should already include the fix, right?).

The machine is a Thinkpad T440p (same sound chip); my sound got muted as soon as I plugged in my headphones into the machine (no docking station here).

Fixed (temporarily?) by following this guide: http://unix.stackexchange.com/questions/218108/no-output-from-headphones-jack-occasionally-although-system-displays-output
Comment 35 Raymond 2015-10-26 15:44:08 UTC
(In reply to twoflower2012 from comment #34)
> Similar problem here on kernel 4.2.0-16-generic #19-Ubuntu SMP and
> alsa-driver 1.0.25+dfsg-0ubuntu5 (that should already include the fix,
> right?).
> 
> The machine is a Thinkpad T440p (same sound chip); my sound got muted as
> soon as I plugged in my headphones into the machine (no docking station
> here).
> 
> Fixed (temporarily?) by following this guide:
> http://unix.stackexchange.com/questions/218108/no-output-from-headphones-
> jack-occasionally-although-system-displays-output

you have to post output of alsa-info.sh



0x15 0x0321101f
0x16 0x21211010

this won't force the driver put node 0x15 in spec->gen.autocfg.hp_pins[0]; since alc_headset_mode expect combo jack is first hp_pins as hda_auto_parser sort the pins by sequence number

static void alc_update_headset_mode(struct hda_codec *codec)
 {
   struct alc_spec *spec = codec->spec;
    hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
   hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];


54.347454] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC3232: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
 [ 54.347458] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
 [ 54.347460] snd_hda_codec_realtek hdaudioC1D0: hp_outs=2 (0x16/0x15/0x0/0x0/0x0)
 [ 54.347462] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
 [ 54.347464] snd_hda_codec_realtek hdaudioC1D0: inputs:
 [ 54.347466] snd_hda_codec_realtek hdaudioC1D0: Dock Mic=0x19
 [ 54.347468] snd_hda_codec_realtek hdaudioC1D0: Mic=0x1a
 [ 54.347471] snd_hda_codec_realtek hdaudioC1D0: Internal Mic=0x12
Comment 36 twoflower2012 2015-10-26 15:55:03 UTC
Created attachment 191161 [details]
alsa-info.sh output for comment 34
Comment 37 twoflower2012 2015-10-26 18:31:42 UTC
Update: The problem still persists: The sound from the headphone works if they are not plugged in at boot. Booting with headphones plugged in mutes sound from the headphones until the next complete power off; even across operating systems.
Comment 38 Raymond 2015-10-26 23:08:23 UTC
your alsa-info still not contain patch in comment 8 nor comment 9

if the headphone and dock headphone have same sequence number, 

you still need sort the bits 4-5 of jack location to ensure HP at EXT must before  HP at SEP


/* Jack location (0x0-0x3f) */
/* common case */
enum {
	AC_JACK_LOC_NONE,
	AC_JACK_LOC_REAR,
	AC_JACK_LOC_FRONT,
	AC_JACK_LOC_LEFT,
	AC_JACK_LOC_RIGHT,
	AC_JACK_LOC_TOP,
	AC_JACK_LOC_BOTTOM,
};
/* bits 4-5 */
enum {
	AC_JACK_LOC_EXTERNAL = 0x00,
	AC_JACK_LOC_INTERNAL = 0x10,
	AC_JACK_LOC_SEPARATE = 0x20,
	AC_JACK_LOC_OTHER    = 0x30,
};
Comment 39 Raymond 2015-10-26 23:16:37 UTC
https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/tree/sound/pci/hda/hda_auto_parser.c

sort_pins_by_sequence(cfg->line_out_pins, line_out, cfg->line_outs);
	sort_pins_by_sequence(cfg->speaker_pins, speaker_out,
			      cfg->speaker_outs);
	sort_pins_by_sequence(cfg->hp_pins, hp_out, cfg->hp_outs);
Comment 40 twoflower2012 2015-10-27 05:16:50 UTC
Ok, I see that my system is running a very old version of ALSA, so I can't apply the patches directly. I'll need to figure out the update first. Thank you!
Comment 41 Raymond 2015-10-27 05:29:30 UTC
http://cgit.freedesktop.org/pulseaudio/pulseaudio/tree/src/modules/alsa/mixer/paths

pulseaudio have dock mic conf but there is no dock headphone conf

the control id of headphone jack should be lower than that of  dock headphone jack since driver create jack kctl according to the order in hp_pins

control.22 {
		iface CARD
		name 'Dock Headphone Jack'
		value false
		comment {
			access read
			type BOOLEAN
			count 1
		}
	}
	control.23 {
		iface CARD
		name 'Headphone Jack'
		value false
		comment {
			access read
			type BOOLEAN
			count 1
		}
	}


Node 0x15 [Pin Complex] wcaps 0x40058d: Stereo Amp-Out
  Control: name="Headphone Playback Switch", index=1, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x80 0x80]
  Pincap 0x0001001c: OUT HP EAPD Detect
  EAPD 0x2: EAPD
  Pin Default 0x0321101f: [Jack] HP Out at Ext Left
    Conn = 1/8, Color = Black
    DefAssociation = 0x1, Sequence = 0xf
  Pin-ctls: 0xc0: OUT HP
  Unsolicited: tag=02, enabled=1
  Power states:  D0 D1 D2 D3 EPSS
  Power: setting=D3, actual=D3
  Connection: 2
     0x0c 0x0d*
Node 0x16 [Pin Complex] wcaps 0x40058d: Stereo Amp-Out
  Control: name="Headphone Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x80 0x80]
  Pincap 0x0001001c: OUT HP EAPD Detect
  EAPD 0x2: EAPD
  Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0xc0: OUT HP
  Unsolicited: tag=01, enabled=1
  Power states:  D0 D1 D2 D3 EPSS
  Power: setting=D3, actual=D3
  Connection: 2
     0x0c 0x0d*
Comment 42 Raymond 2015-10-27 15:43:33 UTC
the amp out mute values of two headphone pin complex seem different from playback switches


Simple mixer control 'Headphone',0
  Capabilities: pvolume pswitch
  Playback channels: Front Left - Front Right
  Limits: Playback 0 - 87
  Mono:
  Front Left: Playback 0 [0%] [-65.25dB] [off]
  Front Right: Playback 0 [0%] [-65.25dB] [off]
Simple mixer control 'Headphone',1
  Capabilities: pswitch
  Playback channels: Front Left - Front Right
  Mono:
  Front Left: Playback [on]
  Front Right: Playback [on]
Comment 43 Tim Ruffing 2016-01-08 15:25:37 UTC
(In reply to twoflower2012 from comment #37)
> Update: The problem still persists: The sound from the headphone works if
> they are not plugged in at boot. Booting with headphones plugged in mutes
> sound from the headphones until the next complete power off; even across
> operating systems.

Suspending the system seems to help for me. The problem is gone even after further boots.
https://bbs.archlinux.org/viewtopic.php?id=200090

(It seems that this is problem that is actually not related to the original bug. I think you should open a new bug if it's still an issue for you. But the fact that it's a problem across operating systems indicates that it is unlikely to be a kernel bug.)
Comment 44 twoflower2012 2016-01-09 10:07:16 UTC
Yes, I don't know if this is related or not; I opened a bug in ubuntu and they wanted me to escalate it here. 

In any case, it's not operating system independent: Booting into windows with plugged headphones works fine. If I boot into linux with plugged headphones however, the sound stops working until the next complete poweroff (neither rebooting nor suspending works, even if the reboot is used to switch to windows).

Note You need to log in before you can comment on or make changes to this bug.