[SOLVED] Internal Microphone not detected

Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
lolokatz
Level 1
Level 1
Posts: 8
Joined: Mon Apr 05, 2021 8:19 am

[SOLVED] Internal Microphone not detected

Post by lolokatz »

Hello,
I had audio issues after the installation of LM20.1 on a brand new Dell Inspiron 15 3000.

The loudspeaker were not working at all, I could solve this by adding the option ="snd-intel-dspcfg.dsp_driver=1" into GRUB_CMDLINE_LINUX_DEFAULT of the etc/default/grub file.
The sound is working / the hardware is detected some seconds after logging in (but not directly) but this is not my real issue.

The other issue is the internal microphone which is not detected (the headset works). I tried several solutions found on this forum and other ones but none seemed to work for me.

I would be glad to find some help!
Thanks a lot in advance!
L.

Here is the output of

Code: Select all

 pacmd list-cards 
and

Code: Select all

 pacmd list-sources 

Code: Select all

 1 card(s) available.
    index: 0
	name: <alsa_card.pci-0000_00_1f.3>
	driver: <module-alsa-card.c>
	owner module: 23
	properties:
		alsa.card = "0"
		alsa.card_name = "HDA Intel PCH"
		alsa.long_card_name = "HDA Intel PCH at 0x6003238000 irq 166"
		alsa.driver_name = "snd_hda_intel"
		device.bus_path = "pci-0000:00:1f.3"
		sysfs.path = "/devices/pci0000:00/0000:00:1f.3/sound/card0"
		device.bus = "pci"
		device.vendor.id = "8086"
		device.vendor.name = "Intel Corporation"
		device.product.id = "a0c8"
		device.form_factor = "internal"
		device.string = "0"
		device.description = "Audio interne"
		module-udev-detect.discovered = "1"
		device.icon_name = "audio-card-pci"
	profiles:
		input:analog-stereo: Entrée Stéréo analogique (priority 65, available: no)
		output:analog-stereo: Sortie Stéréo analogique (priority 6500, available: unknown)
		output:analog-stereo+input:analog-stereo: Duplex stéréo analogique (priority 6565, available: no)
		off: Éteint (priority 0, available: unknown)
	active profile: <output:analog-stereo>
	sinks:
		alsa_output.pci-0000_00_1f.3.analog-stereo/#1: Audio interne Stéréo analogique
	sources:
		alsa_output.pci-0000_00_1f.3.analog-stereo.monitor/#1: Monitor of Audio interne Stéréo analogique
	ports:
		analog-input-headphone-mic: Microphone (priority 8700, latency offset 0 usec, available: no)
			properties:
				device.icon_name = "audio-input-microphone"
		analog-input-headset-mic: Microphone casque (priority 8800, latency offset 0 usec, available: no)
			properties:
				device.icon_name = "audio-input-microphone"
		analog-output-speaker: Haut-parleurs (priority 10000, latency offset 0 usec, available: unknown)
			properties:
				device.icon_name = "audio-speakers"
		analog-output-headphones: Casque audio (priority 9900, latency offset 0 usec, available: no)
			properties:
				device.icon_name = "audio-headphones"
 

Code: Select all

 1 source(s) available.
  * index: 1
	name: <alsa_output.pci-0000_00_1f.3.analog-stereo.monitor>
	driver: <module-alsa-card.c>
	flags: DECIBEL_VOLUME LATENCY DYNAMIC_LATENCY
	state: SUSPENDED
	suspend cause: IDLE
	priority: 1030
	volume: front-left: 65536 / 100% / 0,00 dB,   front-right: 65536 / 100% / 0,00 dB
	        balance 0,00
	base volume: 65536 / 100% / 0,00 dB
	volume steps: 65537
	muted: no
	current latency: 0,00 ms
	max rewind: 0 KiB
	sample spec: s16le 2ch 44100Hz
	channel map: front-left,front-right
	             Stéréo
	used by: 0
	linked by: 0
	configured latency: 0,00 ms; range is 0,50 .. 371,52 ms
	monitor_of: 1
	card: 0 <alsa_card.pci-0000_00_1f.3>
	module: 23
	properties:
		device.description = "Monitor of Audio interne Stéréo analogique"
		device.class = "monitor"
		alsa.card = "0"
		alsa.card_name = "HDA Intel PCH"
		alsa.long_card_name = "HDA Intel PCH at 0x6003238000 irq 166"
		alsa.driver_name = "snd_hda_intel"
		device.bus_path = "pci-0000:00:1f.3"
		sysfs.path = "/devices/pci0000:00/0000:00:1f.3/sound/card0"
		device.bus = "pci"
		device.vendor.id = "8086"
		device.vendor.name = "Intel Corporation"
		device.product.id = "a0c8"
		device.form_factor = "internal"
		device.string = "0"
		module-udev-detect.discovered = "1"
		device.icon_name = "audio-card-pci"
 
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 2 times in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
User avatar
MrEen
Level 23
Level 23
Posts: 18343
Joined: Mon Jun 12, 2017 8:39 pm

Re: Internal Microphone not detected

Post by MrEen »

lolokatz wrote: Mon Apr 05, 2021 8:32 am The loudspeaker were not working at all, I could solve this by adding the option ="snd-intel-dspcfg.dsp_driver=1" into GRUB_CMDLINE_LINUX_DEFAULT of the etc/default/grub file.
And doing that guarantees you'll not get your Internal Microphone working. That command forces the legacy snd-hda-intel audio driver, and your microphone requires the new sof audio driver.

We can try to get all your audio fixed, but you'll first need to undo that grub change, then reboot and run this command to get a look at your sound setup:

Code: Select all

curl https://gitlab.freedesktop.org/pulseaudio/pulseaudio/raw/master/src/utils/pa-info?inline=false | bash | nc termbin.com 9999
The last line of output will have a URL pointing to the info. Pasting that URL is all I need.
lolokatz
Level 1
Level 1
Posts: 8
Joined: Mon Apr 05, 2021 8:19 am

Re: Internal Microphone not detected

Post by lolokatz »

Hello MrEen,

thanks for you reply.
I undid the change in the grub file and executed the command. But now the loudspeaker are also not working anymore...It seems the sound card is not detected.

Here is the link: https://termbin.com/nvhg

Thanks in advance!
User avatar
MrEen
Level 23
Level 23
Posts: 18343
Joined: Mon Jun 12, 2017 8:39 pm

Re: Internal Microphone not detected

Post by MrEen »

Okay, I've seen an issue like this recently that I'm hoping you won't require the same fix for, as it's very convoluted.

First, try going to the Update Manager > View > Linux kernels and install the latest 5.8 kernel there. Reboot when done and test your sound.
lolokatz
Level 1
Level 1
Posts: 8
Joined: Mon Apr 05, 2021 8:19 am

[SOLVED] Re: Internal Microphone not detected

Post by lolokatz »

It worked! After the reinstall of the Kernel 5.8 the audio card was detected.
Thanks a lot!
User avatar
MrEen
Level 23
Level 23
Posts: 18343
Joined: Mon Jun 12, 2017 8:39 pm

Re: Internal Microphone not detected

Post by MrEen »

Whew!

I'm glad that was all that was needed as the other fix is really tough to get right.

And just for completeness, the microphone works as well, correct?
lolokatz
Level 1
Level 1
Posts: 8
Joined: Mon Apr 05, 2021 8:19 am

Re: Internal Microphone not detected

Post by lolokatz »

Yes, exactly. Both the sound and the microphone are working :D
User avatar
MrEen
Level 23
Level 23
Posts: 18343
Joined: Mon Jun 12, 2017 8:39 pm

Re: [SOLVED] Internal Microphone not detected

Post by MrEen »

Fantastic!

Glad I could help. :D
Locked

Return to “Sound”