View previous topic :: View next topic |
Author |
Message |
4nn13 Tux's lil' helper
Joined: 01 Sep 2023 Posts: 92
|
Posted: Sun Oct 22, 2023 1:56 am Post subject: 3.5mm Jack is not working |
|
|
The headphone jack is not working on my laptop, I can see an option called "Headphone" on alsamixer I pull the volume to maximum and plug the speaker in and there is no sound output from headphone jack, how to debug?
lspci -nnk
Code: | 00:1f.3 Audio device [0403]: Intel Corporation Cannon Point-LP High Definition Audio Controller [8086:9dc8] (rev 30)
DeviceName: Onboard - Sound
Subsystem: Dell Cannon Point-LP High Definition Audio Controller [1028:08c9]
Kernel driver in use: snd_hda_intel
|
amixer
Code: | Simple mixer control 'Headphone',0
Capabilities: pvolume pswitch
Playback channels: Front Left - Front Right
Limits: Playback 0 - 87
Mono:
Front Left: Playback 87 [100%] [0.00dB] [on]
Front Right: Playback 87 [100%] [0.00dB] [on]
|
dmesg
Code: | [~] $ dmesg |grep snd_hda_intel
[ 0.350151] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 0.350177] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 0.354370] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops 0xffffffff8b096a80) |
|
|
Back to top |
|
|
NeddySeagoon Administrator
Joined: 05 Jul 2003 Posts: 54577 Location: 56N 3W
|
Posted: Mon Oct 23, 2023 6:30 pm Post subject: |
|
|
4nn13,
I may be a model problem.
The specification for Intels High Definition Audio Controller leaves a lot to implementers.
Read /usr/src//linux/Documentation/sound/hd-audio/models.rst
Find your codec and work your way through the model= parameters.
You pass that to snd_hda_intel when it loads. How you do that depends on how snd_hda_intel is built.
Code: | grep -i codec: -R /proc/asound/ | will list your codecs. _________________ Regards,
NeddySeagoon
Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail. |
|
Back to top |
|
|
4nn13 Tux's lil' helper
Joined: 01 Sep 2023 Posts: 92
|
Posted: Thu Nov 07, 2024 4:14 pm Post subject: |
|
|
NeddySeagoon wrote: | 4nn13,
I may be a model problem.
The specification for Intels High Definition Audio Controller leaves a lot to implementers.
Read /usr/src//linux/Documentation/sound/hd-audio/models.rst
Find your codec and work your way through the model= parameters.
You pass that to snd_hda_intel when it loads. How you do that depends on how snd_hda_intel is built.
Code: | grep -i codec: -R /proc/asound/ | will list your codecs. |
I read the /usr/src//linux/Documentation/sound/hd-audio/models.rst but how do I know which one is match my device? |
|
Back to top |
|
|
|