egrep,
Code: Select all
[ 0.000000] Linux version 5.7.10-gentoo (root@saturn) (gcc version 10.2.0 (Gentoo 10.2.0 p1), GNU ld (Gentoo 2.34 p4) 2.34.0) #31 SMP Fri Jul 24 18:51:26 EEST 2020
Thats 31 kernel builds and this one was built at Fri Jul 24 18:51:26 EEST 2020.
Good. Many people with sound problems are not running the kernel they think they are. Thats not you though.
Code: Select all
[ 1.356128] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Thats the the HDMI output but there is no entry in /dev/snd for it.
Code: Select all
[ 1.488692] snd_hda_intel 0000:00:1f.3: CORB reset timeout#1, CORBRP = 0
comes from ./sound/hda/hdac_controller.c
The code is
Code: Select all
for (timeout = 1000; timeout > 0; timeout--) {
if (snd_hdac_chip_readw(bus, CORBRP) & AZX_CORBRP_RST)
break;
udelay(1);
}
Either something is missing, or the timeout is not long enough for your hardware. I suspect the former.
If you want to try a longer timeout, change the timeout = 1000 for a bigger number and rebuild the kernel.
There is this kernel
bug report.
Code: Select all
[ 1.490220] snd_hda_intel 0000:00:1f.3: no codecs found!
is consistent with having some other codec that the one in the kernel.
Enable them all as modules. It may not matter unless that timeout is fixed.
Does this happen on a power on boot or resume from suspend or both?
Educated shot in the dark ... add the INTEL_LPSS options to your kernel.
There are about half a dozen.
Don't use
Code: Select all
[ 1.571293] ntfs: driver 2.1.32 [Flags: R/W MODULE].
It won't do what you think it does but al least it no longer trashes NTFS filesystems.