You are not logged in.
Good afternoon, dear! I bought a Ninker N15 Air laptop, since the hardware is new there, I installed Archlinux)))
Updated, KDE 6 and the system, everything is fine with everything. But there is no sound (only bluetooth), I ask for help.
Technical data
uname -a
Linux d-nout 6.10.7-arch1-1 #1 SMP PREEMPT_DYNAMIC
lspci -k | grep audio
00:1f.3 Multimedia audio controller: Intel Corporation Alder Lake-N PCH High Definition Audio Controller
Subsystem: IP3 Tech (HK) Limited Device 6007
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel, snd_soc_avs, snd_sof_pci_intel_tgl
aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: PCH [HDA Intel PCH], device 3: HDMI 0 [HDMI 0]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 7: HDMI 1 [HDMI 1]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 8: HDMI 2 [HDMI 2]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 9: HDMI 3 [HDMI 3]
Subdevices: 1/1
Subdevice #0: subdevice #0
Judging by the logs, the firmware is not loading. The ES8326 codec seems to be detected but does not work
Options
options snd-hda-intel dmic_detect=0
options snd-hda-intel model=laptop-amic enable=yes
They don't help.
Is it possible to correct the situation? I tried to run the latest Mint live cd on my laptop, but there is no sound there either.
Last edited by Den32333 (2024-09-09 22:57:08)
Offline
Remove that config, install sof-firmware instead, reboot, still an issue?
Offline
Remove that config, install sof-firmware instead, reboot, still an issue?
I deleted the config, reinstalled the package
pacman -S sof-firmware
(it was the most recent), rebooted, there is no sound.
dmesg | grep firmware
it doesn't show anything about sound. It looks like the ESS8326 codec does not require a firmware download
Offline
firmware doesn't need to be a hit, and it most certainly needs firmware, but yes ESS8326 based ones are somewhat known to be problematic
a better grep would be
sudo dmesg | grep -E 'snd|sof'
aplay -l
Offline
firmware doesn't need to be a hit, and it most certainly needs firmware, but yes ESS8326 based ones are somewhat known to be problematic
a better grep would be
sudo dmesg | grep -E 'snd|sof' aplay -l
dmesg | grep -E 'snd|sof'
[ 0.053508] software IO TLB: area num 4.
[ 0.489785] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.489786] software IO TLB: mapped [mem 0x000000005b431000-0x000000005f431000] (64MB)
[ 0.595845] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.595861] integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
[ 0.595879] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 12.821302] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 14.664224] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: PCH [HDA Intel PCH], device 3: HDMI 0 [HDMI 0]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 7: HDMI 1 [HDMI 1]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 8: HDMI 2 [HDMI 2]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 9: HDMI 3 [HDMI 3]
Subdevices: 1/1
Subdevice #0: subdevice #0
[root@d-nout den]#
lsmod | grep es83
snd_soc_es8326 53248 0
snd_soc_core 458752 7 snd_soc_avs,snd_soc_hda_codec,soundwire_intel,snd_sof,snd_sof_intel_hda_common,snd_soc_hdac_hda,snd_soc_es8326
Offline
The sound appeared , the correct setting turned out to be
cat /etc/modprobe.d/sound.conf
options snd-intel-dspcfg dsp_driver=3
Offline