thesofproject / linux

Linux kernel source tree
Other
91 stars 131 forks source link

[FEATURE] Support for ES8336 on Intel Comet Lake #3248

Closed playXE closed 2 years ago

playXE commented 3 years ago

Moved from thesofproject/sof

Is your feature request related to a problem? Please describe. Huawei laptops ship with an Everest ES8336 sound card that is not supported by sofproject. Describe the solution you'd like Adding support for it would be really awesome Describe alternatives you've considered I already tried this repo which seems to contain a kernel built with support for it but the audio clearly does not work: https://github.com/himozzza/essx8336 Additional context Booting Linux and trying lsmod or dmsg shows only one valid HDMI sound output on the laptop and nothing more. Here's what I get from Device Manager on Windows:

ACPI\VEN_ESSX&DEV_8336&SUBSYS_152D1262
ACPI\ESSX8336
*ESSX8336
mchehab commented 2 years ago

If you're hearing something at the speaker, it probably means that the speaker's amplifier is energized - which is kinda weird as it should be turning it on only when playing some music. What happens if you play a music? does the noise keep there or does it shut up?

Neo-29 commented 2 years ago

Same experience. A click sometimes coming. A little background noise in the headphone if plugged. No sound in speakers

quintafeira commented 2 years ago

I got it working in a glk device with kernel 5.16.x on Arch Linux and sof-firmware v2.0. My devices were recognized, but there were no sound. The problem was my webcam was being detected as the default audio card (the webcam has a microphone). I just created a .asoundrc file in ~/ and set the default audio card correctly. Then, I ran all the commands listed here. Sound works, but there are still some problems. I get a loud crackling noise during login and my jack headphones never works in the first try. I need to connect it, play some audio (the audio will output from speakers, even if headphones are recognized), then disconnect it and connect again.

Neo-29 commented 2 years ago

Can you give details step by step on what you exactly did? Including the creation of soundrc file and whet you put in

Interesting.

quintafeira commented 2 years ago

To create the .asoundrc file, I first needed to identify the correct sound card. To do this, I just ran:

aplay -l

It will list all sound cards and devices available. You'll need to identify the correct one.

Then, I created the .asoundrc file in my home dir. The file look like this: asoundrc_example.txt

Then I ran the commands in the link I posted in the other comment.

I tried kernel 5.18-rc1, the sound worked, but I got the same problems (crackling noise and headphones not working in the first try). I tried to build sof-firmware v2.1 from souce as the binaries weren't released yet to see if I can solve these problems, but I got some errors during the build.

Neo-29 commented 2 years ago

The pb is I've got " dummy output" now instead of the card in the settings... Strangely with 5.17 first I had the good card ( no sound) and as a sudden...dummy..

Did you change something in alsa folder first? Does your mic works?

quintafeira commented 2 years ago

I didn't change anything in the alsa folder. The mic works fine.

Neo-29 commented 2 years ago

No mic for me... Which brand is your computer?

quintafeira commented 2 years ago

The brand is Positivo (it's a brazilian brand). But it's gemini lake, not a comet lake.

You can also try the topologies and alsa ucm confs here. I got it working on debian with these.

Azrail6666 commented 2 years ago

Thank you for your help. Checked for performance on Huawei MateBook D15 BOHB-WAX9-PCB-B2 board. Work with https://github.com/mchehab/alsa-ucm-conf, https://github.com/mchehab/linux/commit/0fdb8cd1c26408da870801f425f118a1bec44518 and https://github.com/thesofproject/linux/files/8419519/es8336-topologies-4.tar.gz

mchehab commented 2 years ago

Hi, I installed openSUSE Tumbleweed experimental kernel 5.18.0-rc1-2.g11acc76-default. I also tried to add plbossard's tplg files for 8336 and the patches and the script by mchehab. The system is a Chuwi Hi 10X tablet.

Kernel 5.18 doesn't have the patches from my patch series, as they where merged at sound tree on Friday: https://lore.kernel.org/all/cover.1649357263.git.mchehab@kernel.org/

I've no idea what quirks would be needed for Chuwi Hi 10X (or for any other device but MateBook D15). Only the manufacturer knows (or someone needs to test it). Basically, with 5.18-rc1, there are two quirks that aren't auto-detected:

quirk name bit value description
SOF_ES8336_SPEAKERS_EN_GPIO1_QUIRK bit 4 0x010 (or 16) use alternative pin to enable speaker
SOF_ES8336_JD_INVERTED bit 6 0x040 (or 64) inverts headphone detection logic

M patches, also available on the top of 5.17 at: https://github.com/mchehab/linux/tree/sound-es8336 (if you clone it, ensure that you're using branch "sound-es8336") provide two extra quirks:

quirk name bit value description
SOF_ES8336_HEADPHONE_GPIO bit 7 0x080 (or 128) use a separate pin to enable headphone
SOC_ES8336_HEADSET_MIC1 bit 8 0x100 (or 256) change the input for the headset microphone

The driver also has extra quirks for topology (there are 3 different ones) and for digital mic, but, on its current state, the driver should autodetect it.

Basically, SOF_ES8336_SPEAKERS_EN_GPIO1_QUIRK and SOF_ES8336_HEADPHONE_GPIO tells the driver how to turn on the speaker and the headphone. There are two possible pins that controls it (GPIO0 and GPIO1), and the same GPIO can be used to turn on both speakers and headphone, or one GPIO can be used by the speaker and another one for the headphone. So, there are 4 posible combinations:

Speakers Headphone bits value
GPIO0 GPIO0 none 0
GPIO1 GPIO1 bit 4 0x10
GPIO0 GPIO1 bit 7 0x80
GPIO1 GPIO0 bits 4 and 7 0x90

The other two quirks are used by the headphone:

Mic input connected to
MIC1 internal mic (if analog mic - maybe unused)
MIC2 headphone

When SOC_ES8336_HEADSET_MIC1 quirk is used, it will assume the opposite:

Mic input connected to
MIC2 internal mic (if analog mic - maybe unused)
MIC1 headphone

So, assuming that the driver properly detected digital mic or analog mic, and topology, the 4 quirks above will allow setting device-specific confics that can't be auto-detected. Those can be passed to the Kernel by creating a file like /etc/modprobe.d/sound.conf with:

options snd_soc_sof_essx8336 quirk=<quirk_value>

The is a number (either in hexadecimal or in decimal) containing a sum of the quirks that will be used at driver's load time.

So, for instance, if your board requires SOC_ES8336_HEADSET_MIC1, SOF_ES8336_SPEAKERS_EN_GPIO1_QUIRK and SOF_ES8336_HEADPHONE_GPIO, you would place there:

options snd_soc_sof_essx8336 quirk=0x190

You need to reboot the machine every time this is changed, in order for the quirks to be used.

Once the proper quirk combination is discovered, a patch like: https://lore.kernel.org/all/d678aef9fc9a07aced611aa7cb8c9b800c649e5a.1649357263.git.mchehab@kernel.org/ can be added at the Kernel, associating a particular machine with the quirks it needs.

Worth mention that this affects only devices which use snd_soc_sof_essx8336 driver, and that the topology files for such devices should be installed from: https://github.com/thesofproject/linux/files/8419519/es8336-topologies-4.tar.gz

Also, for pulseaudio (or pipewire-pulse) to properly recognize the configuration, the UCM from https://github.com/mchehab/alsa-ucm-conf should be installed.

Neo-29 commented 2 years ago

This is good... But... It just for huawei or any other brand using comet lake?

mchehab commented 2 years ago

This is good... But... It just for huawei or any other brand using comet lake?

The quirks are vendor-independent. The last patch from my series is specific to the device I own (Huawei Matebook D15): https://lore.kernel.org/all/d678aef9fc9a07aced611aa7cb8c9b800c649e5a.1649357263.git.mchehab@kernel.org/

Neo-29 commented 2 years ago

Yep... I'm stuck with my teclast F15 plus 2.... If any suggestions I'm in. I'm wondering if there's a chance of a fix in 5.18? Or is it related to alsa ucm too? I'm noob in that field.... Just trying to understand and finding a temporary solution

fcsm1922 commented 2 years ago

For any combination of parameters snd_soc_sof_essx8336 quirk=10,20,40,80,180,190,100, Without sound. Switching to headphones and back to speakers is detected correctly. what should alsamixer look like when run with working sound? my model is KLVD-WFH9 (intel version)

mchehab commented 2 years ago

For any combination of parameters snd_soc_sof_essx8336 quirk=10,20,40,80,180,190,100, Without sound. Be careful: if you want to use hexadecimal values like above, you need to prepend "0x" to the values e. g., it should be snd_soc_sof_essx8336 quirk=0x10 for "10" hexadecimal value (or snd_soc_sof_essx8336 quirk=16 for decimal one).

Alsamixer (alsamixer -D hw:0) should look like this:

┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── AlsaMixer v1.2.6 ───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
│ Card: sof-essx8336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             F1:  Help               │
│ Chip: Intel Kabylake HDMI                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      F2:  System information │
│ View: F3:[Playback] F4: Capture  F5: All                                                                                                                                                                                                                                                                                                                                                                                                                                                                       F6:  Select sound card  │
│ Item: Headphone [dB gain: 0,00, 0,00]                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Esc: Exit               │
│                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        │
│     ┌──┐        ┌──┐                                                                                                        ┌──┐                    ┌──┐        ┌──┐        ┌──┐        ┌──┐        ┌──┐                    ┌──┐                    ┌──┐        ┌──┐                                                        ┌──┐                    ┌──┐                                                                                            ┌──┐        ┌──┐        ┌──┐        ┌──┐                                           │
│     │▒▒│        │  │                                                                                                        │  │                    │▒▒│        │▒▒│        │▒▒│        │▒▒│        │▒▒│                    │▒▒│                    │▒▒│        │▒▒│                                                        │▒▒│                    │▒▒│                                                                                            │▒▒│        │▒▒│        │▒▒│        │▒▒│                                           │
│     │▒▒│        │  │                                                                                                        │  │                    │▒▒│        │▒▒│        │▒▒│        │▒▒│        │▒▒│                    │▒▒│                    │▒▒│        │▒▒│                                                        │▒▒│                    │▒▒│                                                                                            │▒▒│        │▒▒│        │▒▒│        │▒▒│                                           │
│     │▒▒│        │  │                                                                                                        │  │                    │▒▒│        │▒▒│        │▒▒│        │▒▒│        │▒▒│                    │▒▒│                    │▒▒│        │▒▒│                                                        │▒▒│                    │▒▒│                                                                                            │▒▒│        │▒▒│        │▒▒│        │▒▒│                                           │
│     │▒▒│        │  │                                                                                                        │  │                    │▒▒│        │▒▒│        │▒▒│        │▒▒│        │▒▒│                    │▒▒│                    │▒▒│        │▒▒│                                                        │▒▒│                    │▒▒│                                                                                            │▒▒│        │▒▒│        │▒▒│        │▒▒│                                           │
│     │▒▒│        │  │                                                                                                        │▒▒│                    │▒▒│        │▒▒│        │▒▒│        │▒▒│        │▒▒│                    │▒▒│                    │▒▒│        │▒▒│                                                        │▒▒│                    │▒▒│                                                                                            │▒▒│        │▒▒│        │▒▒│        │▒▒│                                           │
│     │▒▒│        │  │                                                                                                        │▒▒│                    │▒▒│        │▒▒│        │▒▒│        │▒▒│        │▒▒│                    │▒▒│                    │▒▒│        │▒▒│                                                        │▒▒│                    │▒▒│                                                                                            │▒▒│        │▒▒│        │▒▒│        │▒▒│                                           │
│     │▒▒│        │  │                                                                                                        │▒▒│                    │▒▒│        │▒▒│        │▒▒│        │▒▒│        │▒▒│                    │▒▒│                    │▒▒│        │▒▒│                                                        │▒▒│                    │▒▒│                                                                                            │▒▒│        │▒▒│        │▒▒│        │▒▒│                                           │
│     │▒▒│        │  │                                                                                                        │▒▒│                    │▒▒│        │▒▒│        │▒▒│        │▒▒│        │▒▒│                    │▒▒│                    │▒▒│        │▒▒│                                                        │▒▒│                    │▒▒│                                                                                            │▒▒│        │▒▒│        │▒▒│        │▒▒│                                           │
│     │▒▒│        │  │                                                                                                        │▒▒│                    │▒▒│        │▒▒│        │▒▒│        │▒▒│        │▒▒│                    │▒▒│                    │▒▒│        │▒▒│                                                        │▒▒│                    │▒▒│                                                                                            │▒▒│        │▒▒│        │▒▒│        │▒▒│                                           │
│     │▒▒│        │  │                                                                                                        │▒▒│                    │▒▒│        │▒▒│        │▒▒│        │▒▒│        │▒▒│                    │▒▒│                    │▒▒│        │▒▒│                                                        │▒▒│                    │▒▒│                                                                                            │▒▒│        │▒▒│        │▒▒│        │▒▒│                                           │
│     ├──┤        └──┘        ┌──┐        ┌──┐        ┌──┐        ┌──┐        ┌──┐       Normal      Normal       ┌──┐        └──┘        ┌──┐        └──┘        └──┘        └──┘        └──┘        └──┘        ┌──┐        └──┘     Constant PG    └──┘        └──┘        ┌──┐        ┌──┐        ┌──┐        ┌──┐        └──┘     LDATA TO LD    └──┘      lin1-rin1  dmic disabl    ┌──┐        ┌──┐        ┌──┐        ┌──┐      lin1-rin1     └──┘        └──┘        └──┘        └──┘        ┌──┐        ┌──┐      lin1-rin1    │
│     │OO│                    │MM│        │OO│        │MM│        │MM│        │MM│                                │OO│                    │OO│                                                                    │OO│                                                        │OO│        │MM│        │OO│        │MM│                                                                    │OO│        │MM│        │OO│        │OO│                                                                    │OO│        │OO│                   │
│     └──┘                    └──┘        └──┘        └──┘        └──┘        └──┘                                └──┘                    └──┘                                                                    └──┘                                                        └──┘        └──┘        └──┘        └──┘                                                                    └──┘        └──┘        └──┘        └──┘                                                                    └──┘        └──┘                   │
│   100<>100      0<>0                                                                                                         59                     100         100         100         100         100                     100                     100        98<>98                                                       100                     100                                                                                           100<>100    100<>100    100<>100    100<>100                                         │
│ < Headphone >Headphone M   Speaker    Mic Boost    S/PDIF     S/PDIF 1    S/PDIF 2   Playback Po Capture Pol ADC Double  ADC PGA Gai ADC Soft Ra ALC Capture ALC Capture ALC Capture ALC Capture ALC Capture ALC Capture ALC Capture ALC Capture ALC Capture     DAC     DAC Double  DAC Mono Mi DAC Notch F DAC Soft Ra DAC Soft Ra DAC Source  DAC Stereo  Differentia Digital Mic Headset Mic Internal Mi Left Headph Left Headph Left Headph PGA1.0 1 Ma PGA5.0 5 Ma PGA6.0 6 Ma PGA7.0 7 Ma Right Headp Right Headp Right Headp   │
└────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘

The speaker button can be toggled with the M key. At the above, it is muted (sound goes to headphone on this case).

fcsm1922 commented 2 years ago

Any ideas how to solve my problem? Yes, everything is true if you choose in the terminal (Alsamixer -D HW: 0), then it is displayed as yours. And if you simply enter the terminal (Alsamixer), in the PipeWire field will be selected in the (Card) field. Regarding HEX, I know how to write correctly .... 0x10 and so on.

But there is no sound (I tried many different options (SND_SOC_SOF_SESSX8336 Quirk) What else can I do? Or maybe you give any data?

mchehab commented 2 years ago

Any ideas how to solve my problem?

Well, I would try first to play/record directly from the hardware, bypassing pipewire/pulseaudio, with:

aplay -D hw:0 some_song.wav 

and record with:

arecord -f S16_LE -d 10 -r 48000 --device=default 

Yes, everything is true if you choose in the terminal (Alsamixer -D HW: 0), then it is displayed as yours. And if you simply enter the terminal (Alsamixer), in the PipeWire field will be selected in the (Card) field. Regarding HEX, I know how to write correctly .... 0x10 and so on.

But there is no sound (I tried many different options (SND_SOC_SOF_SESSX8336 Quirk) What else can I do?

I'm running out of ideas. I would expect that other devices from the same manufacturer to be wired the same way. Could you provide the output of dmidecode from your hardware?

Or maybe you give any data?

You could turn on the debug logs and post here. Maybe someone else may have some other hints.

fcsm1922 commented 2 years ago

Could you provide the output of dmidecode from your hardware?

tell me how to do it?

You could turn on the debug logs and post here.

tell me how to do it?

SpaLox1 commented 2 years ago

I tried the 0x10, 0x20, 0x40 and 0x80 quirks with the 5.18rc1 kernel, but with no success. But I recognized that the noise at the speakers was getting a little bit louder when a program played sound, and got more silent again a few seconds after the playback was finished.

Unfortunately I have no idea how to git-clone your patched 5.17 kernel. I'm not that experienced and usually rely on my package manager to install or uninstall a kernel... :(

It came to my mind again that some time ago I had entered the BIOS setup of the tablet. It has an enormous amount of settings available, even for the audio part. Can you check if my BIOS settings are OK?

The BIOS shows the following audio config page, no kidding...:

*HD-Audio support [Enable] // Enable/Disable HD-Audio support *HD-Audio DSP [Enable] // Enable/Disable HD-Audio DSP
mchehab commented 2 years ago

Could you provide the output of dmidecode from your hardware?

tell me how to do it?

sudo dmidecode

You could turn on the debug logs and post here.

tell me how to do it?

Place this on a file under /etc/modprobe.d and reboot it:

options snd_sof_pci dyndbg=+p
options snd_sof_pci_intel_apl dyndbg=+p
options snd_sof_pci_intel_cnl dyndbg=+p
options snd_sof_pci_intel_icl dyndbg=+p
options snd_sof_pci_intel_tgl dyndbg=+p
options snd_intel_dspcfg dyndbg=+p
options snd_sof_intel_ipc dyndbg=+p
options snd_sof_intel_hda_common dyndbg=+p
options snd_sof_intel_hda dyndbg=+p
options snd_sof dyndbg=+p
options snd_soc_sof_essx8336 dyndbg=+p

then, use:

dmesg

to see the Kernel logs.

mchehab commented 2 years ago

I tried the 0x10, 0x20, 0x40 and 0x80 quirks with the 5.18rc1 kernel, but with no success. But I recognized that the noise at the speakers was getting a little bit louder when a program played sound, and got more silent again a few seconds after the playback was finished.

Unfortunately I have no idea how to git-clone your patched 5.17 kernel. I'm not that experienced and usually rely on my package manager to install or uninstall a kernel... :(

git clone https://github.com/mchehab/linux.git -b sound-es8336

or, if you already cloned from it, you could just use git checkout -b origin/sound-es8336.

It came to my mind again that some time ago I had entered the BIOS setup of the tablet. It has an enormous amount of settings available, even for the audio part. Can you check if my BIOS settings are OK?

The BIOS shows the following audio config page, no kidding...:

Yeah, some of the settings could be related, but hard to say what applies there ;-)

*DMIC [Disabled] //Selects DMIC to expose in NHLT table

If this device has digital mic, I would expect DMIC to be enabled.

*HD Audio link Frequency [24 MHz]

The clock frequency should likely match what's set at the driver.

I suggest you to take a look at sound/soc/codecs/es8316.c in order to see what it is expecting. There are several parts of it that mention clocks. For instance:

/* In slave mode at single speed, the codec is documented as accepting 5
 * MCLK/LRCK ratios, but we also add ratio 400, which is commonly used on
 * Intel Cherry Trail platforms (19.2MHz MCLK, 48kHz LRCK).
 */
#define NR_SUPPORTED_MCLK_LRCK_RATIOS 6
static const unsigned int supported_mclk_lrck_ratios[] = {
    256, 384, 400, 512, 768, 1024
};
...
static int es8316_set_dai_sysclk(struct snd_soc_dai *codec_dai,
                 int clk_id, unsigned int freq, int dir)
{
    struct snd_soc_component *component = codec_dai->component;
    struct es8316_priv *es8316 = snd_soc_component_get_drvdata(component);
    int i, ret;
    int count = 0;

    es8316->sysclk = freq;

    if (freq == 0) {
        es8316->sysclk_constraints.list = NULL;
        es8316->sysclk_constraints.count = 0;

        return 0;
    }

    ret = clk_set_rate(es8316->mclk, freq);
    if (ret)
        return ret;
...
}
...
    /* Enable BCLK and MCLK inputs in slave mode */
    clksw = ES8316_CLKMGR_CLKSW_MCLK_ON | ES8316_CLKMGR_CLKSW_BCLK_ON;
    snd_soc_component_update_bits(component, ES8316_CLKMGR_CLKSW, clksw, clksw);

Both sound/soc/intel/boards/bytcht_es8316 and sound/soc/intel/boards/sof_es8336.c sets it as with 19.2 MHz. This is, for instance, what sof_es8336.c does:

static int sof_es8336_hw_params(struct snd_pcm_substream *substream,
                struct snd_pcm_hw_params *params)
{
    struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
    struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
    const int sysclk = 19200000;
    int ret;

    ret = snd_soc_dai_set_sysclk(codec_dai, 1, sysclk, SND_SOC_CLOCK_OUT);
    if (ret < 0) {
        dev_err(rtd->dev, "%s, Failed to set ES8336 SYSCLK: %d\n",
            __func__, ret);
        return ret;
    }

    return 0;
}

=============================

Miscellaneous Configuration

... Codec Device - INT343A setting [Enabled] Codec Device - INT34C1 setting [Enabled]`

=======

I remember setting Audio DSP Compliance Mode to [HD Audio Inbox or Intel SST driver] causes a sound device error resulting in no sound within Windows 10.

plbossart commented 2 years ago

Codec Device - INT343A setting [Enabled] Codec Device - INT34C1 setting [Enabled]`

What device is this on again @SpaLox1? The INT343A is used to point to the Realtek RT286 or RT298, which is completely irrelevant here. Likewise you shouldn't have to select DMIC or not, this should be done for you by the OEM.

*HD Audio link Frequency [24 MHz] This has no influence for ES8336 support, we don't use HDaudio codecs. This link is only used for HDMI.

Looks like you have a copy of the Intel development BIOS with way too many options...

fcsm1922 commented 2 years ago

Could you provide the output of dmidecode from your hardware?

@mchehab

dmidecode output ``` Getting SMBIOS data from sysfs. SMBIOS 3.3.0 present. Table at 0x739DF000. Handle 0x0000, DMI type 0, 26 bytes BIOS Information Vendor: HUAWEI Version: 3.11 Release Date: 11/19/2021 Address: 0xE0000 Runtime Size: 128 kB ROM Size: 8 MB Characteristics: PCI is supported PNP is supported BIOS is upgradeable BIOS shadowing is allowed Boot from CD is supported Selectable boot is supported EDD is supported ACPI is supported USB legacy is supported Smart battery is supported BIOS boot specification is supported Targeted content distribution is supported UEFI is supported BIOS Revision: 3.11 Firmware Revision: 3.11 Handle 0x0001, DMI type 1, 27 bytes System Information Manufacturer: HUAWEI Product Name: KLVD-WXX9 Version: M1010 Serial Number: UUID: Wake-up Type: APM Timer SKU Number: C171 Family: MateBook Handle 0x0002, DMI type 2, 15 bytes Base Board Information Manufacturer: HUAWEI Product Name: KLVD-WXX9-PCB-B2 Version: M1010 Serial Number: Asset Tag: N/A Features: Board is a hosting board Board is replaceable Location In Chassis: N/A Chassis Handle: 0x0003 Type: Motherboard Contained Object Handles: 0 Handle 0x0003, DMI type 3, 22 bytes Chassis Information Manufacturer: HUAWEI Type: Notebook Lock: Not Present Version: M1010 Serial Number: J8GPM21913000218 Asset Tag: N/A Boot-up State: Safe Power Supply State: Safe Thermal State: Safe Security Status: None OEM Information: 0x00000000 Height: Unspecified Number Of Power Cords: 1 Contained Elements: 0 SKU Number: KelvinD-WFH9A Handle 0x0004, DMI type 4, 48 bytes Processor Information Socket Designation: CPU0 Type: Central Processor Family: Core i5 Manufacturer: Intel(R) Corporation ID: C1 06 08 00 FF FB EB BF Signature: Type 0, Family 6, Model 140, Stepping 1 Flags: FPU (Floating-point unit on-chip) VME (Virtual mode extension) DE (Debugging extension) PSE (Page size extension) TSC (Time stamp counter) MSR (Model specific registers) PAE (Physical address extension) MCE (Machine check exception) CX8 (CMPXCHG8 instruction supported) APIC (On-chip APIC hardware supported) SEP (Fast system call) MTRR (Memory type range registers) PGE (Page global enable) MCA (Machine check architecture) CMOV (Conditional move instruction supported) PAT (Page attribute table) PSE-36 (36-bit page size extension) CLFSH (CLFLUSH instruction supported) DS (Debug store) ACPI (ACPI supported) MMX (MMX technology supported) FXSR (FXSAVE and FXSTOR instructions supported) SSE (Streaming SIMD extensions) SSE2 (Streaming SIMD extensions 2) SS (Self-snoop) HTT (Multi-threading) TM (Thermal monitor supported) PBE (Pending break enabled) Version: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz Voltage: 0.7 V External Clock: 100 MHz Max Speed: 4200 MHz Current Speed: 2400 MHz Status: Populated, Enabled Upgrade: Other L1 Cache Handle: 0x0006 L2 Cache Handle: 0x0007 L3 Cache Handle: 0x0008 Serial Number: NULL Asset Tag: NULL Part Number: NULL Core Count: 4 Core Enabled: 4 Thread Count: 8 Characteristics: 64-bit capable Multi-Core Hardware Thread Execute Protection Enhanced Virtualization Power/Performance Control Handle 0x0005, DMI type 7, 27 bytes Cache Information Socket Designation: L1 Cache Configuration: Enabled, Not Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 0 kB Maximum Size: 0 kB Supported SRAM Types: Synchronous Installed SRAM Type: Synchronous Speed: Unknown Error Correction Type: Parity System Type: Data Associativity: 12-way Set-associative Handle 0x0006, DMI type 7, 27 bytes Cache Information Socket Designation: L1 Cache Configuration: Enabled, Not Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 0 kB Maximum Size: 0 kB Supported SRAM Types: Synchronous Installed SRAM Type: Synchronous Speed: Unknown Error Correction Type: Parity System Type: Instruction Associativity: 8-way Set-associative Handle 0x0007, DMI type 7, 27 bytes Cache Information Socket Designation: L2 Cache Configuration: Enabled, Not Socketed, Level 2 Operational Mode: Write Back Location: Internal Installed Size: 0 kB Maximum Size: 0 kB Supported SRAM Types: Synchronous Installed SRAM Type: Synchronous Speed: Unknown Error Correction Type: Single-bit ECC System Type: Unified Associativity: Other Handle 0x0008, DMI type 7, 27 bytes Cache Information Socket Designation: L3 Cache Configuration: Enabled, Not Socketed, Level 3 Operational Mode: Write Back Location: Internal Installed Size: 0 kB Maximum Size: 0 kB Supported SRAM Types: Synchronous Installed SRAM Type: Synchronous Speed: Unknown Error Correction Type: Multi-bit ECC System Type: Unified Associativity: 8-way Set-associative Handle 0x0009, DMI type 9, 19 bytes System Slot Information Designation: PCI-3 Type: x1 PCI Express x1 Current Usage: Available Length: Other ID: 4 Characteristics: PME signal is supported Hot-plug devices are supported Bus Address: 0000:00:1c.3 Data Bus Width: 8 Peer Devices: 0 Handle 0x000A, DMI type 9, 19 bytes System Slot Information Designation: PCI-4 Type: Other Current Usage: Available Length: Other Characteristics: PME signal is supported Hot-plug devices are supported Bus Address: 0000:00:1c.4 Data Bus Width: 10 Peer Devices: 0 Handle 0x000B, DMI type 11, 5 bytes OEM Strings String 1: $HUA001RU11000 String 2: N/A String 3: N/A String 4: KVITU Handle 0x000C, DMI type 13, 22 bytes BIOS Language Information Language Description Format: Long Installable Languages: 2 en|US|iso8859-1,0 zh|CN|unicode,0 Currently Installed Language: en|US|iso8859-1,0 Handle 0x000D, DMI type 14, 8 bytes Group Associations Name: $MEI Items: 1 0x001D (OEM-specific) Handle 0x0024, DMI type 14, 23 bytes Group Associations Name: Firmware Version Info Items: 6 0x001E (OEM-specific) 0x001F (OEM-specific) 0x0020 (OEM-specific) 0x0021 (OEM-specific) 0x0022 (OEM-specific) 0x0023 (OEM-specific) Handle 0x000E, DMI type 16, 23 bytes Physical Memory Array Location: System Board Or Motherboard Use: System Memory Error Correction Type: None Maximum Capacity: 16 GB Error Information Handle: Not Provided Number Of Devices: 2 Handle 0x000F, DMI type 17, 92 bytes Memory Device Array Handle: 0x000E Error Information Handle: Not Provided Total Width: 64 bits Data Width: 64 bits Size: 8 GB Form Factor: Row Of Chips Set: None Locator: Controller0-ChannelA Bank Locator: BANK 0 Type: DDR4 Type Detail: Synchronous Speed: 3200 MT/s Manufacturer: SK Hynix Serial Number: 00000000 Asset Tag: 9876543210 Part Number: HMAA1GS6CJR6N-XN Rank: 1 Configured Memory Speed: 3200 MT/s Minimum Voltage: Unknown Maximum Voltage: Unknown Configured Voltage: 1.2 V Memory Technology: DRAM Memory Operating Mode Capability: Volatile memory Firmware Version: Not Specified Module Manufacturer ID: Bank 1, Hex 0xAD Module Product ID: Unknown Memory Subsystem Controller Manufacturer ID: Unknown Memory Subsystem Controller Product ID: Unknown Non-Volatile Size: None Volatile Size: 8 GB Cache Size: None Logical Size: None Handle 0x0010, DMI type 17, 92 bytes Memory Device Array Handle: 0x000E Error Information Handle: Not Provided Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: Unknown Set: None Locator: Controller0-ChannelB-DIMM0 Bank Locator: BANK 1 Type: Unknown Type Detail: None Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Minimum Voltage: Unknown Maximum Voltage: Unknown Configured Voltage: Unknown Memory Technology: Memory Operating Mode Capability: Volatile memory Firmware Version: Not Specified Module Manufacturer ID: Unknown Module Product ID: Unknown Memory Subsystem Controller Manufacturer ID: Unknown Memory Subsystem Controller Product ID: Unknown Non-Volatile Size: None Volatile Size: None Cache Size: None Logical Size: None Handle 0x0011, DMI type 17, 92 bytes Memory Device Array Handle: 0x000E Error Information Handle: Not Provided Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: Unknown Set: None Locator: Controller0-ChannelC-DIMM0 Bank Locator: BANK 2 Type: Unknown Type Detail: None Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Minimum Voltage: Unknown Maximum Voltage: Unknown Configured Voltage: Unknown Memory Technology: Memory Operating Mode Capability: Volatile memory Firmware Version: Not Specified Module Manufacturer ID: Unknown Module Product ID: Unknown Memory Subsystem Controller Manufacturer ID: Unknown Memory Subsystem Controller Product ID: Unknown Non-Volatile Size: None Volatile Size: None Cache Size: None Logical Size: None Handle 0x0012, DMI type 17, 92 bytes Memory Device Array Handle: 0x000E Error Information Handle: Not Provided Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: Unknown Set: None Locator: Controller0-ChannelD-DIMM0 Bank Locator: BANK 3 Type: Unknown Type Detail: None Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Minimum Voltage: Unknown Maximum Voltage: Unknown Configured Voltage: Unknown Memory Technology: Memory Operating Mode Capability: Volatile memory Firmware Version: Not Specified Module Manufacturer ID: Unknown Module Product ID: Unknown Memory Subsystem Controller Manufacturer ID: Unknown Memory Subsystem Controller Product ID: Unknown Non-Volatile Size: None Volatile Size: None Cache Size: None Logical Size: None Handle 0x0013, DMI type 17, 92 bytes Memory Device Array Handle: 0x000E Error Information Handle: Not Provided Total Width: 64 bits Data Width: 64 bits Size: 8 GB Form Factor: Row Of Chips Set: None Locator: Controller1-ChannelA Bank Locator: BANK 0 Type: DDR4 Type Detail: Synchronous Speed: 3200 MT/s Manufacturer: SK Hynix Serial Number: 00000000 Asset Tag: 9876543210 Part Number: HMAA1GS6CJR6N-XN Rank: 1 Configured Memory Speed: 3200 MT/s Minimum Voltage: Unknown Maximum Voltage: Unknown Configured Voltage: 1.2 V Memory Technology: DRAM Memory Operating Mode Capability: Volatile memory Firmware Version: Not Specified Module Manufacturer ID: Bank 1, Hex 0xAD Module Product ID: Unknown Memory Subsystem Controller Manufacturer ID: Unknown Memory Subsystem Controller Product ID: Unknown Non-Volatile Size: None Volatile Size: 8 GB Cache Size: None Logical Size: None Handle 0x0014, DMI type 17, 92 bytes Memory Device Array Handle: 0x000E Error Information Handle: Not Provided Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: Unknown Set: None Locator: Controller1-ChannelB-DIMM0 Bank Locator: BANK 1 Type: Unknown Type Detail: None Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Minimum Voltage: Unknown Maximum Voltage: Unknown Configured Voltage: Unknown Memory Technology: Memory Operating Mode Capability: Volatile memory Firmware Version: Not Specified Module Manufacturer ID: Unknown Module Product ID: Unknown Memory Subsystem Controller Manufacturer ID: Unknown Memory Subsystem Controller Product ID: Unknown Non-Volatile Size: None Volatile Size: None Cache Size: None Logical Size: None Handle 0x0015, DMI type 17, 92 bytes Memory Device Array Handle: 0x000E Error Information Handle: Not Provided Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: Unknown Set: None Locator: Controller1-ChannelC-DIMM0 Bank Locator: BANK 2 Type: Unknown Type Detail: None Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Minimum Voltage: Unknown Maximum Voltage: Unknown Configured Voltage: Unknown Memory Technology: Memory Operating Mode Capability: Volatile memory Firmware Version: Not Specified Module Manufacturer ID: Unknown Module Product ID: Unknown Memory Subsystem Controller Manufacturer ID: Unknown Memory Subsystem Controller Product ID: Unknown Non-Volatile Size: None Volatile Size: None Cache Size: None Logical Size: None Handle 0x0016, DMI type 17, 92 bytes Memory Device Array Handle: 0x000E Error Information Handle: Not Provided Total Width: Unknown Data Width: Unknown Size: No Module Installed Form Factor: Unknown Set: None Locator: Controller1-ChannelD-DIMM0 Bank Locator: BANK 3 Type: Unknown Type Detail: None Speed: Unknown Manufacturer: Not Specified Serial Number: Not Specified Asset Tag: Not Specified Part Number: Not Specified Rank: Unknown Configured Memory Speed: Unknown Minimum Voltage: Unknown Maximum Voltage: Unknown Configured Voltage: Unknown Memory Technology: Memory Operating Mode Capability: Volatile memory Firmware Version: Not Specified Module Manufacturer ID: Unknown Module Product ID: Unknown Memory Subsystem Controller Manufacturer ID: Unknown Memory Subsystem Controller Product ID: Unknown Non-Volatile Size: None Volatile Size: None Cache Size: None Logical Size: None Handle 0x0017, DMI type 19, 31 bytes Memory Array Mapped Address Starting Address: 0x00000000000 Ending Address: 0x003FFFFFFFF Range Size: 16 GB Physical Array Handle: 0x000E Partition Width: 2 Handle 0x0018, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00000000000 Ending Address: 0x001FFFFFFFF Range Size: 8 GB Physical Device Handle: 0x000F Memory Array Mapped Address Handle: 0x0017 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x0019, DMI type 20, 35 bytes Memory Device Mapped Address Starting Address: 0x00000000000 Ending Address: 0x001FFFFFFFF Range Size: 8 GB Physical Device Handle: 0x0013 Memory Array Mapped Address Handle: 0x0017 Partition Row Position: Unknown Interleave Position: Unknown Interleaved Data Depth: Unknown Handle 0x001A, DMI type 21, 7 bytes Built-in Pointing Device Type: Touch Screen Interface: Other Buttons: 1 Handle 0x001B, DMI type 22, 26 bytes Portable Battery Location: Fake Manufacturer: DYNAPACK Manufacture Date: 8/23/2021 Serial Number: 8A8 Name: HB4593R1ECW-22T Chemistry: Lithium Ion Design Capacity: 0 mWh Design Voltage: 7640 mV SBDS Version: Not Specified Maximum Error: 1% OEM-specific Information: 0x00000032 Handle 0x001C, DMI type 43, 31 bytes TPM Device Vendor ID: INTC Specification Version: 2.0 Firmware Revision: 600.7 Description: TPM Device Characteristics: TPM Device characteristics not supported OEM-specific Information: 0x00000000 Handle 0x001D, DMI type 219, 106 bytes OEM-specific Type Header and Data: DB 6A 1D 00 01 04 01 45 02 00 A0 06 01 85 30 20 00 00 00 00 40 00 00 00 00 00 00 00 00 20 40 02 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 03 00 00 00 80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Strings: MEI1 MEI2 MEI3 MEI4 Handle 0x001E, DMI type 221, 26 bytes OEM-specific Type Header and Data: DD 1A 1E 00 03 01 00 0A 00 38 51 00 02 00 00 00 00 8A 00 03 00 FF FF FF FF FF Strings: Reference Code - CPU uCode Version TXT ACM version Handle 0x001F, DMI type 221, 26 bytes OEM-specific Type Header and Data: DD 1A 1F 00 03 01 00 0A 00 38 51 00 02 00 00 00 00 00 00 03 04 0F 00 0A A7 05 Strings: Reference Code - ME MEBx version ME Firmware Version Consumer SKU Handle 0x0020, DMI type 221, 47 bytes OEM-specific Type Header and Data: DD 2F 20 00 06 01 00 0A 00 38 51 00 02 03 FF FF FF FF FF 04 00 FF FF FF 20 00 05 00 FF FF FF 20 00 06 00 FF FF FF FF FF 07 00 04 00 00 00 00 Strings: Reference Code - PCH PCH-CRID Status Disabled PCH-CRID Original Value PCH-CRID New Value OPROM - RST - RAID PCH Hsio Version Handle 0x0021, DMI type 221, 82 bytes OEM-specific Type Header and Data: DD 52 21 00 0B 01 00 0A 00 38 51 00 02 00 01 00 0C 00 00 03 00 0A 00 38 51 00 04 05 FF FF FF FF FF 06 00 00 00 00 01 00 07 00 00 00 00 01 00 08 00 FF FF FF FF FF 09 00 11 01 01 00 00 0A 00 00 00 00 00 00 0B 00 00 00 00 00 00 0C 00 FF FF FF FF FF Strings: Reference Code - SA - System Agent Reference Code - MRC SA - PCIe Version SA-CRID Status Disabled SA-CRID Original Value SA-CRID New Value OPROM - VBIOS IO Manageability Engine FW Version PHY Build Version Thunderbolt(TM) FW Version System Agent Manageability Engine FW Version Handle 0x0022, DMI type 221, 12 bytes OEM-specific Type Header and Data: DD 0C 22 00 01 01 00 04 00 00 00 00 Strings: FSP Binary Version Handle 0x0023, DMI type 221, 89 bytes OEM-specific Type Header and Data: DD 59 23 00 0C 01 00 FF FF FF FF FF 02 00 FF FF FF FF FF 03 04 FF FF FF FF FF 05 06 FF FF FF FF FF 07 08 FF FF FF FF FF 09 00 00 00 00 00 00 0A 00 FF FF FF FF FF 0B 00 03 0B 00 00 00 0C 00 00 17 00 55 10 0D 00 FF FF FF FF FF 0E 00 00 07 03 00 00 0F 00 00 02 00 0F 00 Strings: Lan Phy Version Sensor Firmware Version Debug Mode Status Disabled Performance Mode Status Disabled Debug Use USB(Disabled:Serial) Disabled ICC Overclocking Version UNDI Version EC FW Version GOP Version Royal Park Version Platform Version Client Silicon Version Handle 0xFEFF, DMI type 127, 4 bytes End Of Table ```
fcsm1922 commented 2 years ago

Place this on a file under /etc/modprobe.d and reboot it: @mchehab file with what name should be to put? /etc/modprobe.d is a directory

paulstelian97 commented 2 years ago

Place this on a file under /etc/modprobe.d and reboot it:

file with what name should be to put? /etc/modprobe.d is a directory

Anything with a .conf name. The system will get them in alphabetic order so you might want to do it with 99-something.conf or similar name.

fcsm1922 commented 2 years ago

You could turn on the debug logs and post here. @mchehab

Debug logs ``` [ 582.642756] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 582.642758] sof-audio-pci-intel-tgl 0000:00:1f.3: widget SSP0.OUT freed [ 582.642761] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 582.642937] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 582.642939] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF1.1 freed [ 582.642941] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 582.643114] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 582.643115] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF1.0 freed [ 582.643117] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 582.643301] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 582.643303] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA1.0 freed [ 582.643304] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 582.643644] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 582.643658] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM0P freed [ 582.643676] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x40010000 [ 582.643985] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x40010000 [ 582.644060] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0x9010f0f successful [ 582.644087] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0xf0f successful [ 582.644093] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP core(s) enabled? 0 : core_mask 1 [ 582.644195] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000010 at 00000044 [ 582.644202] sof-audio-pci-intel-tgl 0000:00:1f.3: Turning i915 HDAC power 0 [ 582.644204] sof-audio-pci-intel-tgl 0000:00:1f.3: Current DSP power state: D3 [ 582.644205] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 6 -> 0 [ 743.395930] atkbd serio0: Unknown key released (translated set 2, code 0xf8 on isa0060/serio0). [ 743.395942] atkbd serio0: Use 'setkeycodes e078 ' to make it known. [ 743.446352] atkbd serio0: Unknown key released (translated set 2, code 0xf8 on isa0060/serio0). [ 743.446364] atkbd serio0: Use 'setkeycodes e078 ' to make it known. [ 743.993475] atkbd serio0: Unknown key released (translated set 2, code 0xf8 on isa0060/serio0). [ 743.993488] atkbd serio0: Use 'setkeycodes e078 ' to make it known. [ 744.099522] atkbd serio0: Unknown key released (translated set 2, code 0xf8 on isa0060/serio0). [ 744.099534] atkbd serio0: Use 'setkeycodes e078 ' to make it known. [ 748.370114] sof-audio-pci-intel-tgl 0000:00:1f.3: Turning i915 HDAC power 1 [ 748.374847] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000000 at 00000044 [ 748.378180] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000040 at 00000048 [ 748.378198] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000000 at 00000048 [ 748.381124] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000000 at 00000048 [ 748.381131] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000040 at 00000048 [ 748.382901] sof-audio-pci-intel-tgl 0000:00:1f.3: Turning i915 HDAC power 0 [ 748.382925] sof-audio-pci-intel-tgl 0000:00:1f.3: Current DSP power state: D0I0 [ 748.382929] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 0 -> 1 [ 748.382931] sof-audio-pci-intel-tgl 0000:00:1f.3: loading firmware [ 748.382933] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 1 -> 2 [ 748.382946] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000002 at 00000048 [ 748.382952] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000000 at 00000048 [ 748.382959] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000000 at 00000044 [ 748.382963] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000004 at 00000044 [ 748.382965] sof-audio-pci-intel-tgl 0000:00:1f.3: booting DSP firmware [ 748.383066] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: period_bytes:0x0 [ 748.383070] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: periods:1 [ 748.383210] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x40000 successful [ 748.383231] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x40000 successful [ 748.383235] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: period_bytes:0x0 [ 748.383239] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: periods:1 [ 748.383339] sof-audio-pci-intel-tgl 0000:00:1f.3: Attempting iteration 0 of Core En/ROM load... [ 748.383347] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP core(s) enabled? 0 : core_mask 1 [ 748.383868] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0xf010f0f successful [ 748.383879] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0xf010f0e successful [ 748.383885] sof-audio-pci-intel-tgl 0000:00:1f.3: unstall/run core: core_mask = 1 [ 748.383891] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP core(s) enabled? 1 : core_mask 1 [ 748.383908] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0xf010e0e successful [ 748.383914] sof-audio-pci-intel-tgl 0000:00:1f.3: unstall/run core: core_mask = 1 [ 748.383921] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP core(s) enabled? 1 : core_mask 1 [ 748.384441] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0xd4]=0x80000000 successful [ 748.457534] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x80000]=0x5000001 successful [ 748.477537] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x80000]=0x5 successful [ 748.478192] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x140000 successful [ 748.478209] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware download successful, booting... [ 748.493328] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc rx: 0x70000000 [ 748.493336] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc: DSP is ready 0x70000000 offset 0x81000 [ 748.493340] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 2 -> 5 [ 748.493409] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000000 at 00000048 [ 748.493425] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000002 at 00000048 [ 748.493442] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000004 at 00000044 [ 748.493452] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000000 at 00000044 [ 748.493454] sof-audio-pci-intel-tgl 0000:00:1f.3: firmware boot complete [ 748.493456] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 5 -> 6 [ 748.493465] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 748.493503] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc rx done: 0x70000000 [ 748.493841] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 748.493849] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.7.HDA5.OUT setup complete [ 748.493868] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.494326] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.494356] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 748.494649] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 748.494658] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA5.OUT setup complete [ 748.494665] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.494915] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.494918] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF7.1 setup complete [ 748.494940] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.495143] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.495146] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF7.0 setup complete [ 748.495154] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.495378] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.495399] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 748.495736] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 748.495761] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 748.496080] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 748.496087] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA7.0 setup complete [ 748.496104] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.496380] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.496387] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM7P setup complete [ 748.496398] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 748.497050] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 748.497057] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.6.HDA4.OUT setup complete [ 748.497078] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.497309] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.497333] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 748.497579] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 748.497583] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA4.OUT setup complete [ 748.497595] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.497803] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.497807] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF6.1 setup complete [ 748.497815] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.498018] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.498022] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF6.0 setup complete [ 748.498032] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.498252] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.498264] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 748.498624] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 748.498644] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 748.498992] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 748.498996] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA6.0 setup complete [ 748.499005] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.499241] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.499244] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM6P setup complete [ 748.499257] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 748.499967] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 748.499971] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.5.HDA3.OUT setup complete [ 748.499986] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.500243] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.500278] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 748.500527] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 748.500531] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA3.OUT setup complete [ 748.500543] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.500755] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.500760] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF5.1 setup complete [ 748.500779] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.500988] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.500992] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF5.0 setup complete [ 748.501010] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.501238] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.501261] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 748.501619] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 748.501648] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 748.501997] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 748.502002] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA5.0 setup complete [ 748.502016] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.502251] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.502256] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM5P setup complete [ 748.502268] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 748.502952] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 748.502957] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.4.DMIC1.IN setup complete [ 748.502971] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.503287] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.503305] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 748.503846] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 748.503851] sof-audio-pci-intel-tgl 0000:00:1f.3: widget DMIC1.IN setup complete [ 748.503868] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.504147] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.504152] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.2 setup complete [ 748.504169] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.504432] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.504437] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.1 setup complete [ 748.504454] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.504727] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.504731] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.0 setup complete [ 748.504757] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.505078] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.505109] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50030000 [ 748.505716] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50030000 [ 748.505747] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50040000 [ 748.506287] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50040000 [ 748.506291] sof-audio-pci-intel-tgl 0000:00:1f.3: widget EQIIR4.0 setup complete [ 748.506308] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.506577] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.506590] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 748.506999] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 748.507010] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 748.507403] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 748.507407] sof-audio-pci-intel-tgl 0000:00:1f.3: widget Dmic1 setup complete [ 748.507417] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.507650] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.507654] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM2C setup complete [ 748.507661] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 748.508384] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 748.508393] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.3.DMIC0.IN setup complete [ 748.508412] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.508802] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.508831] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 748.509275] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 748.509286] sof-audio-pci-intel-tgl 0000:00:1f.3: widget DMIC0.IN setup complete [ 748.509296] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.509531] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.509534] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.2 setup complete [ 748.509538] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.509754] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.509757] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.1 setup complete [ 748.509761] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.510132] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.510146] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.0 setup complete [ 748.510170] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.510576] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.510605] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50030000 [ 748.511326] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50030000 [ 748.511356] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50040000 [ 748.511925] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50040000 [ 748.511941] sof-audio-pci-intel-tgl 0000:00:1f.3: widget EQIIR3.0 setup complete [ 748.511953] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.512255] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.512277] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 748.512774] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 748.512797] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 748.513188] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 748.513208] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 748.513747] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 748.513771] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 748.514182] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 748.514191] sof-audio-pci-intel-tgl 0000:00:1f.3: widget Dmic0 setup complete [ 748.514205] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.514508] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.514516] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM1C setup complete [ 748.514527] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 748.515218] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 748.515225] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.2.SSP0.IN setup complete [ 748.515239] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.515535] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.515566] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 748.515926] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 748.515934] sof-audio-pci-intel-tgl 0000:00:1f.3: widget SSP0.IN setup complete [ 748.515944] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.516156] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.516158] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF2.1 setup complete [ 748.516173] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.516374] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.516376] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF2.0 setup complete [ 748.516399] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.516617] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.516638] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 748.517083] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 748.517109] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 748.517538] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 748.517545] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA2.0 setup complete [ 748.517559] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.517831] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.517837] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM0C setup complete [ 748.517852] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 748.518568] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 748.518573] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.1.SSP0.OUT setup complete [ 748.518587] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.518833] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.518858] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 748.519180] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 748.519184] sof-audio-pci-intel-tgl 0000:00:1f.3: widget SSP0.OUT setup complete [ 748.519202] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.519405] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.519409] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF1.1 setup complete [ 748.519415] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 748.519634] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 748.519638] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF1.0 setup complete [ 748.519653] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.519960] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.519987] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 748.520496] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 748.520534] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 748.520980] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 748.520988] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA1.0 setup complete [ 748.520997] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 748.521303] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 748.521311] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM0P setup complete [ 748.521316] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF7.1 -> HDA5.OUT [ 748.521320] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.521569] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.521571] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA7.0 -> BUF7.1 [ 748.521591] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.521759] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.521761] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF7.0 -> PGA7.0 [ 748.521764] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.521918] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.521920] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PCM7P -> BUF7.0 [ 748.521923] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.522076] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.522079] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF6.1 -> HDA4.OUT [ 748.522082] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.522236] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.522238] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA6.0 -> BUF6.1 [ 748.522241] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.522390] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.522392] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF6.0 -> PGA6.0 [ 748.522395] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.522528] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.522530] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PCM6P -> BUF6.0 [ 748.522533] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.522689] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.522691] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF5.1 -> HDA3.OUT [ 748.522694] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.522850] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.522853] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA5.0 -> BUF5.1 [ 748.522855] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.523017] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.523019] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF5.0 -> PGA5.0 [ 748.523022] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.523174] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.523177] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PCM5P -> BUF5.0 [ 748.523180] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.523335] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.523338] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route DMIC1.IN -> BUF4.2 [ 748.523352] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.523541] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.523544] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF4.2 -> EQIIR4.0 [ 748.523557] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.523727] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.523729] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route EQIIR4.0 -> BUF4.1 [ 748.523744] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.523927] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.523931] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF4.1 -> Dmic1 [ 748.523942] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.524111] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.524114] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route Dmic1 -> BUF4.0 [ 748.524117] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.524291] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.524294] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF4.0 -> PCM2C [ 748.524297] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.524469] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.524471] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route DMIC0.IN -> BUF3.2 [ 748.524486] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.524640] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.524643] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF3.2 -> EQIIR3.0 [ 748.524646] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.524820] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.524823] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route EQIIR3.0 -> BUF3.1 [ 748.524826] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.524980] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.524982] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF3.1 -> Dmic0 [ 748.524984] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.525147] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.525149] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route Dmic0 -> BUF3.0 [ 748.525150] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.525314] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.525315] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF3.0 -> PCM1C [ 748.525317] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.525499] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.525501] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route SSP0.IN -> BUF2.0 [ 748.525503] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.525668] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.525669] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF2.0 -> PGA2.0 [ 748.525671] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.525844] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.525853] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA2.0 -> BUF2.1 [ 748.525858] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.526022] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.526023] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF2.1 -> PCM0C [ 748.526025] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.526191] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.526192] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF1.1 -> SSP0.OUT [ 748.526194] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.526360] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.526362] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA1.0 -> BUF1.1 [ 748.526363] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.526560] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.526562] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF1.0 -> PGA1.0 [ 748.526563] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.526730] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.526732] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PCM0P -> BUF1.0 [ 748.526734] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 748.526901] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 748.526903] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.7.HDA5.OUT id 45 [ 748.526905] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 748.527549] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 748.527557] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.6.HDA4.OUT id 39 [ 748.527563] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 748.527724] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 748.527726] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.5.HDA3.OUT id 33 [ 748.527728] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 748.527897] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 748.527898] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.4.DMIC1.IN id 27 [ 748.527900] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 748.528073] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 748.528076] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.3.DMIC0.IN id 19 [ 748.528080] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 748.528262] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 748.528264] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.2.SSP0.IN id 11 [ 748.528266] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 748.528451] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 748.528452] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.1.SSP0.OUT id 5 [ 748.528454] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 748.528616] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 748.528621] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x40020000 [ 748.528785] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x40020000 [ 748.528796] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: open stream 0 dir 0 [ 748.528797] sof-audio-pci-intel-tgl 0000:00:1f.3: period min 192 max 16384 bytes [ 748.528798] sof-audio-pci-intel-tgl 0000:00:1f.3: period count 2 max 16 [ 748.528800] sof-audio-pci-intel-tgl 0000:00:1f.3: buffer max 65536 bytes [ 748.528967] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 748.528969] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 748.528970] sof-audio-pci-intel-tgl 0000:00:1f.3: rate_min: 48000 rate_max: 48000 [ 748.528971] sof-audio-pci-intel-tgl 0000:00:1f.3: channels_min: 2 channels_max: 2 [ 748.528974] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 748.528975] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 748.528976] sof-audio-pci-intel-tgl 0000:00:1f.3: rate_min: 48000 rate_max: 48000 [ 748.528977] sof-audio-pci-intel-tgl 0000:00:1f.3: channels_min: 2 channels_max: 2 [ 748.528982] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 748.528983] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 748.528984] sof-audio-pci-intel-tgl 0000:00:1f.3: rate_min: 48000 rate_max: 48000 [ 748.528985] sof-audio-pci-intel-tgl 0000:00:1f.3: channels_min: 2 channels_max: 2 [ 748.529006] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 748.529305] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 748.529315] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: hw params stream 0 dir 0 [ 748.529336] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x40000 successful [ 748.529378] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x40000 successful [ 748.529382] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: period_bytes:0x2000 [ 748.529384] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: periods:8 [ 748.529426] sof-audio-pci-intel-tgl 0000:00:1f.3: stream_tag 1 [ 748.529431] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x60010000 [ 748.529965] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x60010000 [ 748.529967] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: stream dir 0, posn mailbox offset is 790984 [ 748.548587] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: trigger stream 0 dir 0 cmd 1 [ 748.549168] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x2014001e successful [ 748.549176] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x60040000 [ 748.549706] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x60040000 [ 753.664417] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: trigger stream 0 dir 0 cmd 0 [ 753.664434] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x60050000 [ 753.666331] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x60050000 [ 753.666908] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x20140000 successful [ 753.666944] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x60030000 [ 753.667392] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x60030000 [ 753.667538] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: free stream 0 dir 0 [ 753.684162] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 753.684619] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 753.684746] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: close stream 0 dir 0 [ 755.820085] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 755.821048] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 755.821059] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.7.HDA5.OUT freed [ 755.821066] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.821453] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.821462] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA5.OUT freed [ 755.821468] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.821735] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.821744] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF7.1 freed [ 755.821751] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.822021] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.822030] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF7.0 freed [ 755.822036] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.822236] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.822239] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA7.0 freed [ 755.822243] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.822520] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.822530] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM7P freed [ 755.822543] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 755.823307] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 755.823317] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.6.HDA4.OUT freed [ 755.823323] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.823723] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.823743] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA4.OUT freed [ 755.823749] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.824044] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.824060] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF6.1 freed [ 755.824066] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.824328] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.824337] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF6.0 freed [ 755.824343] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.824543] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.824546] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA6.0 freed [ 755.824549] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.824745] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.824748] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM6P freed [ 755.824751] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 755.825402] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 755.825409] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.5.HDA3.OUT freed [ 755.825417] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.825668] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.825671] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA3.OUT freed [ 755.825675] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.825866] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.825869] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF5.1 freed [ 755.825872] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.826064] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.826067] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF5.0 freed [ 755.826070] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.826238] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.826241] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA5.0 freed [ 755.826244] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.826422] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.826425] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM5P freed [ 755.826429] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 755.827186] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 755.827194] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.4.DMIC1.IN freed [ 755.827201] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.827524] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.827533] sof-audio-pci-intel-tgl 0000:00:1f.3: widget DMIC1.IN freed [ 755.827540] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.827749] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.827753] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.2 freed [ 755.827757] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.827945] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.827948] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.1 freed [ 755.827959] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.828160] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.828163] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.0 freed [ 755.828166] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.828356] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.828359] sof-audio-pci-intel-tgl 0000:00:1f.3: widget EQIIR4.0 freed [ 755.828373] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.828543] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.828546] sof-audio-pci-intel-tgl 0000:00:1f.3: widget Dmic1 freed [ 755.828566] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.828762] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.828763] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM2C freed [ 755.828765] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 755.829425] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 755.829433] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.3.DMIC0.IN freed [ 755.829440] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.829686] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.829687] sof-audio-pci-intel-tgl 0000:00:1f.3: widget DMIC0.IN freed [ 755.829689] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.829911] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.829915] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.2 freed [ 755.829918] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.830151] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.830155] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.1 freed [ 755.830158] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.830360] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.830361] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.0 freed [ 755.830363] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.830552] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.830554] sof-audio-pci-intel-tgl 0000:00:1f.3: widget EQIIR3.0 freed [ 755.830556] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.830730] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.830732] sof-audio-pci-intel-tgl 0000:00:1f.3: widget Dmic0 freed [ 755.830733] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.830920] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.830921] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM1C freed [ 755.830923] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 755.831628] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 755.831636] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.2.SSP0.IN freed [ 755.831644] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.831894] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.831895] sof-audio-pci-intel-tgl 0000:00:1f.3: widget SSP0.IN freed [ 755.831897] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.832073] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.832075] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF2.1 freed [ 755.832077] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.832258] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.832266] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF2.0 freed [ 755.832272] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.832461] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.832462] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA2.0 freed [ 755.832464] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.832651] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.832652] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM0C freed [ 755.832654] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 755.833297] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 755.833298] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.1.SSP0.OUT freed [ 755.833300] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.833569] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.833571] sof-audio-pci-intel-tgl 0000:00:1f.3: widget SSP0.OUT freed [ 755.833574] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.833750] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.833752] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF1.1 freed [ 755.833753] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 755.833927] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 755.833928] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF1.0 freed [ 755.833930] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.834099] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.834100] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA1.0 freed [ 755.834102] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 755.834343] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 755.834345] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM0P freed [ 755.834352] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x40010000 [ 755.834562] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x40010000 [ 755.834624] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0x9010f0f successful [ 755.835229] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0xf0f successful [ 755.835236] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP core(s) enabled? 0 : core_mask 1 [ 755.835329] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000010 at 00000044 [ 755.835337] sof-audio-pci-intel-tgl 0000:00:1f.3: Turning i915 HDAC power 0 [ 755.835339] sof-audio-pci-intel-tgl 0000:00:1f.3: Current DSP power state: D3 [ 755.835340] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 6 -> 0 [ 1140.014494] sof-audio-pci-intel-tgl 0000:00:1f.3: Turning i915 HDAC power 1 [ 1140.019175] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000000 at 00000044 [ 1140.022262] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000040 at 00000048 [ 1140.022269] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000000 at 00000048 [ 1140.025568] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000000 at 00000048 [ 1140.025571] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000040 at 00000048 [ 1140.027252] sof-audio-pci-intel-tgl 0000:00:1f.3: Turning i915 HDAC power 0 [ 1140.027267] sof-audio-pci-intel-tgl 0000:00:1f.3: Current DSP power state: D0I0 [ 1140.027269] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 0 -> 1 [ 1140.027271] sof-audio-pci-intel-tgl 0000:00:1f.3: loading firmware [ 1140.027272] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 1 -> 2 [ 1140.027281] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000002 at 00000048 [ 1140.027287] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000000 at 00000048 [ 1140.027293] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000000 at 00000044 [ 1140.027299] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000004 at 00000044 [ 1140.027300] sof-audio-pci-intel-tgl 0000:00:1f.3: booting DSP firmware [ 1140.027368] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: period_bytes:0x0 [ 1140.027370] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: periods:1 [ 1140.027452] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x40000 successful [ 1140.027466] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x40000 successful [ 1140.027468] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: period_bytes:0x0 [ 1140.027470] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: periods:1 [ 1140.027525] sof-audio-pci-intel-tgl 0000:00:1f.3: Attempting iteration 0 of Core En/ROM load... [ 1140.027531] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP core(s) enabled? 0 : core_mask 1 [ 1140.028041] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0xf010f0f successful [ 1140.028047] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0xf010f0e successful [ 1140.028050] sof-audio-pci-intel-tgl 0000:00:1f.3: unstall/run core: core_mask = 1 [ 1140.028053] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP core(s) enabled? 1 : core_mask 1 [ 1140.028064] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0xf010e0e successful [ 1140.028066] sof-audio-pci-intel-tgl 0000:00:1f.3: unstall/run core: core_mask = 1 [ 1140.028069] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP core(s) enabled? 1 : core_mask 1 [ 1140.028597] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0xd4]=0x80000000 successful [ 1140.102544] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x80000]=0x5000001 successful [ 1140.122533] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x80000]=0x5 successful [ 1140.123075] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x140000 successful [ 1140.123093] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware download successful, booting... [ 1140.139132] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc rx: 0x70000000 [ 1140.139141] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc: DSP is ready 0x70000000 offset 0x81000 [ 1140.139145] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 2 -> 5 [ 1140.139255] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000000 at 00000048 [ 1140.139266] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000002 at 00000048 [ 1140.139285] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000004 at 00000044 [ 1140.139295] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000000 at 00000044 [ 1140.139295] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc rx done: 0x70000000 [ 1140.139298] sof-audio-pci-intel-tgl 0000:00:1f.3: firmware boot complete [ 1140.139301] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 5 -> 6 [ 1140.139320] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 1140.139702] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 1140.139711] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.7.HDA5.OUT setup complete [ 1140.139731] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.140048] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.140074] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1140.140304] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1140.140312] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA5.OUT setup complete [ 1140.140322] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.140546] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.140549] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF7.1 setup complete [ 1140.140563] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.140759] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.140762] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF7.0 setup complete [ 1140.140780] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.141007] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.141025] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1140.141551] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1140.141576] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1140.142084] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1140.142092] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA7.0 setup complete [ 1140.142111] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.142497] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.142508] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM7P setup complete [ 1140.142517] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 1140.143296] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 1140.143305] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.6.HDA4.OUT setup complete [ 1140.143316] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.143632] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.143663] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1140.143922] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1140.143925] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA4.OUT setup complete [ 1140.143940] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.144154] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.144157] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF6.1 setup complete [ 1140.144172] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.144432] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.144442] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF6.0 setup complete [ 1140.144456] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.144771] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.144809] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1140.145295] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1140.145320] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1140.145714] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1140.145725] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA6.0 setup complete [ 1140.145747] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.146043] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.146062] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM6P setup complete [ 1140.146071] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 1140.146759] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 1140.146768] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.5.HDA3.OUT setup complete [ 1140.146779] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.147051] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.147080] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1140.147293] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1140.147295] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA3.OUT setup complete [ 1140.147310] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.147497] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.147500] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF5.1 setup complete [ 1140.147515] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.147763] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.147773] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF5.0 setup complete [ 1140.147792] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.148081] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.148114] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1140.148569] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1140.148593] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1140.149037] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1140.149045] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA5.0 setup complete [ 1140.149064] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.149268] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.149271] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM5P setup complete [ 1140.149286] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 1140.149953] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 1140.149956] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.4.DMIC1.IN setup complete [ 1140.149971] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.150303] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.150329] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1140.150757] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1140.150765] sof-audio-pci-intel-tgl 0000:00:1f.3: widget DMIC1.IN setup complete [ 1140.150775] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.150997] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.151001] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.2 setup complete [ 1140.151008] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.151285] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.151292] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.1 setup complete [ 1140.151301] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.151573] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.151581] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.0 setup complete [ 1140.151606] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.151849] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.151875] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50030000 [ 1140.152499] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50030000 [ 1140.152526] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50040000 [ 1140.153146] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50040000 [ 1140.153154] sof-audio-pci-intel-tgl 0000:00:1f.3: widget EQIIR4.0 setup complete [ 1140.153167] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.153476] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.153499] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1140.153982] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1140.154004] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1140.154478] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1140.154486] sof-audio-pci-intel-tgl 0000:00:1f.3: widget Dmic1 setup complete [ 1140.154505] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.154803] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.154825] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM2C setup complete [ 1140.154836] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 1140.155631] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 1140.155640] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.3.DMIC0.IN setup complete [ 1140.155656] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.156057] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.156087] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1140.156583] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1140.156591] sof-audio-pci-intel-tgl 0000:00:1f.3: widget DMIC0.IN setup complete [ 1140.156604] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.156912] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.156920] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.2 setup complete [ 1140.156931] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.157149] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.157152] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.1 setup complete [ 1140.157172] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.157395] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.157397] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.0 setup complete [ 1140.157433] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.157678] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.157720] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50030000 [ 1140.158248] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50030000 [ 1140.158286] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50040000 [ 1140.158914] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50040000 [ 1140.158922] sof-audio-pci-intel-tgl 0000:00:1f.3: widget EQIIR3.0 setup complete [ 1140.158940] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.159172] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.159205] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1140.159608] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1140.159637] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1140.160038] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1140.160073] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1140.160451] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1140.160478] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1140.160880] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1140.160888] sof-audio-pci-intel-tgl 0000:00:1f.3: widget Dmic0 setup complete [ 1140.160902] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.161285] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.161297] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM1C setup complete [ 1140.161306] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 1140.162083] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 1140.162092] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.2.SSP0.IN setup complete [ 1140.162103] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.162453] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.162480] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1140.162773] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1140.162781] sof-audio-pci-intel-tgl 0000:00:1f.3: widget SSP0.IN setup complete [ 1140.162791] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.163013] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.163015] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF2.1 setup complete [ 1140.163032] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.163261] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.163263] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF2.0 setup complete [ 1140.163270] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.163500] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.163509] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1140.163878] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1140.163899] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1140.164237] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1140.164244] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA2.0 setup complete [ 1140.164258] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.164547] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.164554] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM0C setup complete [ 1140.164562] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 1140.165323] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 1140.165331] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.1.SSP0.OUT setup complete [ 1140.165345] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.165588] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.165615] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1140.165888] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1140.165896] sof-audio-pci-intel-tgl 0000:00:1f.3: widget SSP0.OUT setup complete [ 1140.165907] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.166106] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.166108] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF1.1 setup complete [ 1140.166124] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1140.166340] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1140.166343] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF1.0 setup complete [ 1140.166350] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.166582] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.166604] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1140.166969] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1140.166992] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1140.167368] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1140.167376] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA1.0 setup complete [ 1140.167390] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1140.167621] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1140.167624] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM0P setup complete [ 1140.167645] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF7.1 -> HDA5.OUT [ 1140.167650] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.167831] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.167834] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA7.0 -> BUF7.1 [ 1140.167847] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.168018] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.168021] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF7.0 -> PGA7.0 [ 1140.168032] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.168297] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.168300] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PCM7P -> BUF7.0 [ 1140.168320] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.168586] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.168589] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF6.1 -> HDA4.OUT [ 1140.168607] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.168867] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.168870] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA6.0 -> BUF6.1 [ 1140.168888] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.169058] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.169061] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF6.0 -> PGA6.0 [ 1140.169080] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.169267] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.169271] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PCM6P -> BUF6.0 [ 1140.169289] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.169440] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.169444] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF5.1 -> HDA3.OUT [ 1140.169463] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.169632] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.169635] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA5.0 -> BUF5.1 [ 1140.169654] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.169824] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.169827] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF5.0 -> PGA5.0 [ 1140.169846] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.170019] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.170022] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PCM5P -> BUF5.0 [ 1140.170041] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.170219] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.170222] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route DMIC1.IN -> BUF4.2 [ 1140.170241] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.170416] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.170419] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF4.2 -> EQIIR4.0 [ 1140.170438] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.170624] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.170627] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route EQIIR4.0 -> BUF4.1 [ 1140.170645] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.170821] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.170824] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF4.1 -> Dmic1 [ 1140.170844] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.171051] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.171054] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route Dmic1 -> BUF4.0 [ 1140.171072] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.171232] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.171235] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF4.0 -> PCM2C [ 1140.171254] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.171426] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.171429] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route DMIC0.IN -> BUF3.2 [ 1140.171447] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.171622] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.171625] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF3.2 -> EQIIR3.0 [ 1140.171644] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.171819] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.171822] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route EQIIR3.0 -> BUF3.1 [ 1140.171841] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.172017] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.172020] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF3.1 -> Dmic0 [ 1140.172039] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.172227] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.172230] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route Dmic0 -> BUF3.0 [ 1140.172249] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.172427] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.172430] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF3.0 -> PCM1C [ 1140.172449] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.172627] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.172630] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route SSP0.IN -> BUF2.0 [ 1140.172648] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.172826] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.172828] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF2.0 -> PGA2.0 [ 1140.172848] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.173026] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.173028] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA2.0 -> BUF2.1 [ 1140.173048] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.173229] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.173231] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF2.1 -> PCM0C [ 1140.173251] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.173431] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.173433] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF1.1 -> SSP0.OUT [ 1140.173453] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.173622] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.173625] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA1.0 -> BUF1.1 [ 1140.173644] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.173826] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.173830] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF1.0 -> PGA1.0 [ 1140.173848] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.174029] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.174032] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PCM0P -> BUF1.0 [ 1140.174052] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1140.174231] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1140.174233] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.7.HDA5.OUT id 45 [ 1140.174253] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 1140.174969] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 1140.174978] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.6.HDA4.OUT id 39 [ 1140.174985] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 1140.175204] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 1140.175207] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.5.HDA3.OUT id 33 [ 1140.175212] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 1140.175490] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 1140.175498] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.4.DMIC1.IN id 27 [ 1140.175512] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 1140.175760] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 1140.175764] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.3.DMIC0.IN id 19 [ 1140.175781] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 1140.176075] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 1140.176083] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.2.SSP0.IN id 11 [ 1140.176090] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 1140.176377] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 1140.176386] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.1.SSP0.OUT id 5 [ 1140.176393] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 1140.176717] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 1140.176738] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x40020000 [ 1140.176924] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x40020000 [ 1140.176945] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: open stream 0 dir 0 [ 1140.176948] sof-audio-pci-intel-tgl 0000:00:1f.3: period min 192 max 16384 bytes [ 1140.176950] sof-audio-pci-intel-tgl 0000:00:1f.3: period count 2 max 16 [ 1140.176952] sof-audio-pci-intel-tgl 0000:00:1f.3: buffer max 65536 bytes [ 1140.177210] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 1140.177213] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 1140.177214] sof-audio-pci-intel-tgl 0000:00:1f.3: rate_min: 48000 rate_max: 48000 [ 1140.177217] sof-audio-pci-intel-tgl 0000:00:1f.3: channels_min: 2 channels_max: 2 [ 1140.177221] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 1140.177223] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 1140.177224] sof-audio-pci-intel-tgl 0000:00:1f.3: rate_min: 48000 rate_max: 48000 [ 1140.177226] sof-audio-pci-intel-tgl 0000:00:1f.3: channels_min: 2 channels_max: 2 [ 1140.177232] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 1140.177234] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 1140.177235] sof-audio-pci-intel-tgl 0000:00:1f.3: rate_min: 48000 rate_max: 48000 [ 1140.177237] sof-audio-pci-intel-tgl 0000:00:1f.3: channels_min: 2 channels_max: 2 [ 1140.177251] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1140.177513] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1140.177517] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: hw params stream 0 dir 0 [ 1140.177537] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x40000 successful [ 1140.177578] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x40000 successful [ 1140.177594] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: period_bytes:0x2000 [ 1140.177597] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: periods:8 [ 1140.177620] sof-audio-pci-intel-tgl 0000:00:1f.3: stream_tag 1 [ 1140.177644] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x60010000 [ 1140.178051] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x60010000 [ 1140.178058] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: stream dir 0, posn mailbox offset is 790984 [ 1140.196332] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: trigger stream 0 dir 0 cmd 1 [ 1140.196915] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x2014001e successful [ 1140.196924] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x60040000 [ 1140.197473] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x60040000 [ 1147.339444] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: trigger stream 0 dir 0 cmd 0 [ 1147.339458] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x60050000 [ 1147.340953] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x60050000 [ 1147.341542] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x20140000 successful [ 1147.341574] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x60030000 [ 1147.342031] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x60030000 [ 1147.342150] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: free stream 0 dir 0 [ 1147.361090] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1147.361514] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1147.361599] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: close stream 0 dir 0 [ 1149.569962] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 1149.570897] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 1149.570910] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.7.HDA5.OUT freed [ 1149.570917] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.571343] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.571353] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA5.OUT freed [ 1149.571359] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.571671] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.571679] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF7.1 freed [ 1149.571692] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.571966] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.571969] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF7.0 freed [ 1149.571992] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.572261] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.572264] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA7.0 freed [ 1149.572288] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.572567] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.572575] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM7P freed [ 1149.572584] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 1149.573333] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 1149.573342] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.6.HDA4.OUT freed [ 1149.573348] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.573731] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.573739] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA4.OUT freed [ 1149.573745] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.574058] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.574067] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF6.1 freed [ 1149.574078] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.574371] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.574380] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF6.0 freed [ 1149.574392] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.574636] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.574639] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA6.0 freed [ 1149.574647] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.574849] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.574851] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM6P freed [ 1149.574855] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 1149.575540] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 1149.575547] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.5.HDA3.OUT freed [ 1149.575556] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.575816] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.575819] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA3.OUT freed [ 1149.575822] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.576026] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.576029] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF5.1 freed [ 1149.576033] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.576241] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.576244] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF5.0 freed [ 1149.576248] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.576423] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.576426] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA5.0 freed [ 1149.576429] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.576682] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.576690] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM5P freed [ 1149.576697] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 1149.577478] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 1149.577484] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.4.DMIC1.IN freed [ 1149.577503] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.577816] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.577825] sof-audio-pci-intel-tgl 0000:00:1f.3: widget DMIC1.IN freed [ 1149.577837] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.578126] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.578135] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.2 freed [ 1149.578147] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.578338] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.578341] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.1 freed [ 1149.578358] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.578544] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.578546] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.0 freed [ 1149.578557] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.578745] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.578750] sof-audio-pci-intel-tgl 0000:00:1f.3: widget EQIIR4.0 freed [ 1149.578767] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.578956] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.578959] sof-audio-pci-intel-tgl 0000:00:1f.3: widget Dmic1 freed [ 1149.578977] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.579189] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.579193] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM2C freed [ 1149.579212] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 1149.579974] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 1149.579984] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.3.DMIC0.IN freed [ 1149.579992] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.580274] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.580283] sof-audio-pci-intel-tgl 0000:00:1f.3: widget DMIC0.IN freed [ 1149.580293] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.580497] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.580500] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.2 freed [ 1149.580512] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.580694] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.580697] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.1 freed [ 1149.580710] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.580902] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.580906] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.0 freed [ 1149.580923] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.581110] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.581114] sof-audio-pci-intel-tgl 0000:00:1f.3: widget EQIIR3.0 freed [ 1149.581131] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.581311] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.581314] sof-audio-pci-intel-tgl 0000:00:1f.3: widget Dmic0 freed [ 1149.581329] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.581522] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.581525] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM1C freed [ 1149.581539] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 1149.582237] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 1149.582245] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.2.SSP0.IN freed [ 1149.582259] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.582500] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.582503] sof-audio-pci-intel-tgl 0000:00:1f.3: widget SSP0.IN freed [ 1149.582517] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.582699] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.582703] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF2.1 freed [ 1149.582717] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.582900] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.582902] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF2.0 freed [ 1149.582919] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.583120] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.583123] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA2.0 freed [ 1149.583154] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.583347] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.583351] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM0C freed [ 1149.583363] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 1149.584051] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 1149.584059] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.1.SSP0.OUT freed [ 1149.584068] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.584308] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.584311] sof-audio-pci-intel-tgl 0000:00:1f.3: widget SSP0.OUT freed [ 1149.584315] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.584494] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.584497] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF1.1 freed [ 1149.584501] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1149.584693] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1149.584695] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF1.0 freed [ 1149.584699] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.584878] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.584881] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA1.0 freed [ 1149.584884] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1149.585121] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1149.585123] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM0P freed [ 1149.585137] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x40010000 [ 1149.585340] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x40010000 [ 1149.585408] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0x9010f0f successful [ 1149.586022] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0xf0f successful [ 1149.586038] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP core(s) enabled? 0 : core_mask 1 [ 1149.586144] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000010 at 00000044 [ 1149.586171] sof-audio-pci-intel-tgl 0000:00:1f.3: Turning i915 HDAC power 0 [ 1149.586174] sof-audio-pci-intel-tgl 0000:00:1f.3: Current DSP power state: D3 [ 1149.586176] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 6 -> 0 [ 1182.383073] sof-audio-pci-intel-tgl 0000:00:1f.3: Turning i915 HDAC power 1 [ 1182.387580] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000000 at 00000044 [ 1182.390654] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000040 at 00000048 [ 1182.390671] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000000 at 00000048 [ 1182.393935] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000000 at 00000048 [ 1182.393956] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000040 at 00000048 [ 1182.395606] sof-audio-pci-intel-tgl 0000:00:1f.3: Turning i915 HDAC power 0 [ 1182.395619] sof-audio-pci-intel-tgl 0000:00:1f.3: Current DSP power state: D0I0 [ 1182.395621] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 0 -> 1 [ 1182.395622] sof-audio-pci-intel-tgl 0000:00:1f.3: loading firmware [ 1182.395624] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 1 -> 2 [ 1182.395724] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000002 at 00000048 [ 1182.395730] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000000 at 00000048 [ 1182.395741] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000000 at 00000044 [ 1182.395743] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000004 at 00000044 [ 1182.395744] sof-audio-pci-intel-tgl 0000:00:1f.3: booting DSP firmware [ 1182.395809] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: period_bytes:0x0 [ 1182.395811] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: periods:1 [ 1182.395908] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x40000 successful [ 1182.395938] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x40000 successful [ 1182.395940] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: period_bytes:0x0 [ 1182.395941] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: periods:1 [ 1182.396025] sof-audio-pci-intel-tgl 0000:00:1f.3: Attempting iteration 0 of Core En/ROM load... [ 1182.396035] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP core(s) enabled? 0 : core_mask 1 [ 1182.396564] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0xf010f0f successful [ 1182.396571] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0xf010f0e successful [ 1182.396573] sof-audio-pci-intel-tgl 0000:00:1f.3: unstall/run core: core_mask = 1 [ 1182.396577] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP core(s) enabled? 1 : core_mask 1 [ 1182.396587] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0xf010e0e successful [ 1182.396590] sof-audio-pci-intel-tgl 0000:00:1f.3: unstall/run core: core_mask = 1 [ 1182.396593] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP core(s) enabled? 1 : core_mask 1 [ 1182.397121] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0xd4]=0x80000000 successful [ 1182.471924] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x80000]=0x5000001 successful [ 1182.492443] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x80000]=0x5 successful [ 1182.492671] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x140000 successful [ 1182.492681] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware download successful, booting... [ 1182.508669] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc rx: 0x70000000 [ 1182.508678] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc: DSP is ready 0x70000000 offset 0x81000 [ 1182.508682] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 2 -> 5 [ 1182.508746] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000000 at 00000048 [ 1182.508763] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000002 at 00000048 [ 1182.508779] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000004 at 00000044 [ 1182.508789] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIW: 00000000 at 00000044 [ 1182.508791] sof-audio-pci-intel-tgl 0000:00:1f.3: firmware boot complete [ 1182.508793] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 5 -> 6 [ 1182.508807] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 1182.508820] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc rx done: 0x70000000 [ 1182.509015] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 1182.509021] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.7.HDA5.OUT setup complete [ 1182.509031] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.509356] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.509390] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1182.509674] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1182.509683] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA5.OUT setup complete [ 1182.509693] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.509930] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.509945] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF7.1 setup complete [ 1182.509951] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.510154] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.510159] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF7.0 setup complete [ 1182.510167] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.510395] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.510409] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1182.510747] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1182.510758] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1182.511103] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1182.511107] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA7.0 setup complete [ 1182.511116] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.511414] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.511420] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM7P setup complete [ 1182.511426] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 1182.512136] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 1182.512142] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.6.HDA4.OUT setup complete [ 1182.512151] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.512403] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.512421] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1182.512649] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1182.512665] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA4.OUT setup complete [ 1182.512685] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.512982] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.512990] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF6.1 setup complete [ 1182.512999] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.513312] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.513320] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF6.0 setup complete [ 1182.513340] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.513561] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.513571] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1182.513945] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1182.513955] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1182.514309] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1182.514314] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA6.0 setup complete [ 1182.514322] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.514575] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.514580] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM6P setup complete [ 1182.514586] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 1182.515262] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 1182.515267] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.5.HDA3.OUT setup complete [ 1182.515277] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.515521] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.515546] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1182.515799] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1182.515804] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA3.OUT setup complete [ 1182.515810] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.516024] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.516038] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF5.1 setup complete [ 1182.516046] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.516252] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.516258] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF5.0 setup complete [ 1182.516270] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.516491] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.516511] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1182.516847] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1182.516869] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1182.517190] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1182.517195] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA5.0 setup complete [ 1182.517212] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.517432] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.517437] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM5P setup complete [ 1182.517449] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 1182.518120] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 1182.518125] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.4.DMIC1.IN setup complete [ 1182.518143] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.518438] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.518473] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1182.518927] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1182.518932] sof-audio-pci-intel-tgl 0000:00:1f.3: widget DMIC1.IN setup complete [ 1182.518944] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.519148] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.519152] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.2 setup complete [ 1182.519165] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.519374] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.519380] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.1 setup complete [ 1182.519392] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.519603] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.519608] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.0 setup complete [ 1182.519636] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.519828] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.519863] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50030000 [ 1182.520397] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50030000 [ 1182.520432] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50040000 [ 1182.520932] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50040000 [ 1182.520937] sof-audio-pci-intel-tgl 0000:00:1f.3: widget EQIIR4.0 setup complete [ 1182.520955] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.521172] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.521198] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1182.521584] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1182.521609] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1182.521981] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1182.521986] sof-audio-pci-intel-tgl 0000:00:1f.3: widget Dmic1 setup complete [ 1182.522003] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.522223] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.522228] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM2C setup complete [ 1182.522240] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 1182.522935] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 1182.522939] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.3.DMIC0.IN setup complete [ 1182.522960] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.523273] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.523308] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1182.523711] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1182.523715] sof-audio-pci-intel-tgl 0000:00:1f.3: widget DMIC0.IN setup complete [ 1182.523727] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.523958] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.523962] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.2 setup complete [ 1182.523974] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.524190] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.524194] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.1 setup complete [ 1182.524207] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.524417] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.524422] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.0 setup complete [ 1182.524451] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.524684] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.524718] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50030000 [ 1182.525264] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50030000 [ 1182.525298] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50040000 [ 1182.525799] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50040000 [ 1182.525804] sof-audio-pci-intel-tgl 0000:00:1f.3: widget EQIIR3.0 setup complete [ 1182.525822] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.526079] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.526097] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1182.526495] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1182.526508] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1182.526924] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1182.526950] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1182.527355] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1182.527371] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1182.527733] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1182.527740] sof-audio-pci-intel-tgl 0000:00:1f.3: widget Dmic0 setup complete [ 1182.527747] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.527979] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.527983] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM1C setup complete [ 1182.527988] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 1182.528675] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 1182.528679] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.2.SSP0.IN setup complete [ 1182.528687] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.528961] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.528977] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1182.529257] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1182.529261] sof-audio-pci-intel-tgl 0000:00:1f.3: widget SSP0.IN setup complete [ 1182.529266] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.529598] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.529607] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF2.1 setup complete [ 1182.529617] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.529822] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.529836] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF2.0 setup complete [ 1182.529845] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.530071] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.530095] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1182.530486] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1182.530499] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1182.530865] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1182.530880] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA2.0 setup complete [ 1182.530890] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.531123] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.531129] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM0C setup complete [ 1182.531135] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30100000 [ 1182.531855] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30100000 [ 1182.531861] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.1.SSP0.OUT setup complete [ 1182.531875] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.532109] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.532138] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1182.532389] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1182.532394] sof-audio-pci-intel-tgl 0000:00:1f.3: widget SSP0.OUT setup complete [ 1182.532405] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.532606] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.532610] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF1.1 setup complete [ 1182.532622] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30200000 [ 1182.532991] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30200000 [ 1182.533003] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF1.0 setup complete [ 1182.533024] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.533286] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.533317] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50010000 [ 1182.533652] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50010000 [ 1182.533681] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x50020000 [ 1182.534036] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x50020000 [ 1182.534041] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA1.0 setup complete [ 1182.534057] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30010000 [ 1182.534286] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30010000 [ 1182.534292] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM0P setup complete [ 1182.534295] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF7.1 -> HDA5.OUT [ 1182.534301] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.534466] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.534470] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA7.0 -> BUF7.1 [ 1182.534479] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.534626] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.534631] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF7.0 -> PGA7.0 [ 1182.534639] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.534801] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.534806] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PCM7P -> BUF7.0 [ 1182.534815] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.534975] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.534980] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF6.1 -> HDA4.OUT [ 1182.534989] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.535149] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.535153] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA6.0 -> BUF6.1 [ 1182.535162] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.535325] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.535329] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF6.0 -> PGA6.0 [ 1182.535338] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.535499] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.535504] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PCM6P -> BUF6.0 [ 1182.535513] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.535677] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.535682] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF5.1 -> HDA3.OUT [ 1182.535695] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.535860] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.535865] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA5.0 -> BUF5.1 [ 1182.535874] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.536078] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.536096] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF5.0 -> PGA5.0 [ 1182.536103] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.536275] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.536279] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PCM5P -> BUF5.0 [ 1182.536288] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.536461] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.536466] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route DMIC1.IN -> BUF4.2 [ 1182.536475] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.536625] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.536630] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF4.2 -> EQIIR4.0 [ 1182.536639] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.536801] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.536806] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route EQIIR4.0 -> BUF4.1 [ 1182.536814] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.536960] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.536965] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF4.1 -> Dmic1 [ 1182.536974] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.537140] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.537145] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route Dmic1 -> BUF4.0 [ 1182.537154] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.537320] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.537325] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF4.0 -> PCM2C [ 1182.537334] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.537499] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.537504] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route DMIC0.IN -> BUF3.2 [ 1182.537513] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.537680] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.537685] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF3.2 -> EQIIR3.0 [ 1182.537694] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.537863] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.537868] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route EQIIR3.0 -> BUF3.1 [ 1182.537877] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.538045] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.538050] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF3.1 -> Dmic0 [ 1182.538059] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.538227] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.538232] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route Dmic0 -> BUF3.0 [ 1182.538241] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.538410] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.538415] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF3.0 -> PCM1C [ 1182.538424] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.538593] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.538598] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route SSP0.IN -> BUF2.0 [ 1182.538607] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.538781] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.538786] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF2.0 -> PGA2.0 [ 1182.538795] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.538964] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.538969] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA2.0 -> BUF2.1 [ 1182.538978] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.539149] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.539154] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF2.1 -> PCM0C [ 1182.539163] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.539334] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.539349] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF1.1 -> SSP0.OUT [ 1182.539354] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.539530] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.539536] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PGA1.0 -> BUF1.1 [ 1182.539544] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.539739] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.539744] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route BUF1.0 -> PGA1.0 [ 1182.539752] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.539925] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.539929] sof-audio-pci-intel-tgl 0000:00:1f.3: setting up route PCM0P -> BUF1.0 [ 1182.539938] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30030000 [ 1182.540111] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30030000 [ 1182.540116] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.7.HDA5.OUT id 45 [ 1182.540124] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 1182.540780] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 1182.540784] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.6.HDA4.OUT id 39 [ 1182.540788] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 1182.540973] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 1182.540979] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.5.HDA3.OUT id 33 [ 1182.540982] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 1182.541161] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 1182.541168] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.4.DMIC1.IN id 27 [ 1182.541171] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 1182.541341] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 1182.541345] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.3.DMIC0.IN id 19 [ 1182.541348] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 1182.541545] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 1182.541552] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.2.SSP0.IN id 11 [ 1182.541555] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 1182.541771] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 1182.541778] sof-audio-pci-intel-tgl 0000:00:1f.3: tplg: complete pipeline PIPELINE.1.SSP0.OUT id 5 [ 1182.541781] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30130000 [ 1182.541974] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30130000 [ 1182.541985] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x40020000 [ 1182.542145] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x40020000 [ 1182.542164] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: open stream 0 dir 0 [ 1182.542166] sof-audio-pci-intel-tgl 0000:00:1f.3: period min 192 max 16384 bytes [ 1182.542169] sof-audio-pci-intel-tgl 0000:00:1f.3: period count 2 max 16 [ 1182.542171] sof-audio-pci-intel-tgl 0000:00:1f.3: buffer max 65536 bytes [ 1182.542395] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 1182.542398] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 1182.542399] sof-audio-pci-intel-tgl 0000:00:1f.3: rate_min: 48000 rate_max: 48000 [ 1182.542402] sof-audio-pci-intel-tgl 0000:00:1f.3: channels_min: 2 channels_max: 2 [ 1182.542406] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 1182.542408] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 1182.542409] sof-audio-pci-intel-tgl 0000:00:1f.3: rate_min: 48000 rate_max: 48000 [ 1182.542411] sof-audio-pci-intel-tgl 0000:00:1f.3: channels_min: 2 channels_max: 2 [ 1182.542418] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 1182.542419] sof-audio-pci-intel-tgl 0000:00:1f.3: DAI config 0 matches pcm hw params [ 1182.542420] sof-audio-pci-intel-tgl 0000:00:1f.3: rate_min: 48000 rate_max: 48000 [ 1182.542422] sof-audio-pci-intel-tgl 0000:00:1f.3: channels_min: 2 channels_max: 2 [ 1182.542444] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1182.542791] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1182.542802] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: hw params stream 0 dir 0 [ 1182.542841] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x40000 successful [ 1182.542905] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x40000 successful [ 1182.542931] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: period_bytes:0x2000 [ 1182.542934] sof-audio-pci-intel-tgl 0000:00:1f.3: hda_dsp_stream_setup_bdl: periods:8 [ 1182.542973] sof-audio-pci-intel-tgl 0000:00:1f.3: stream_tag 1 [ 1182.542981] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x60010000 [ 1182.543438] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x60010000 [ 1182.543446] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: stream dir 0, posn mailbox offset is 790984 [ 1182.561353] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: trigger stream 0 dir 0 cmd 1 [ 1182.561935] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x2014001e successful [ 1182.561943] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x60040000 [ 1182.562393] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x60040000 [ 1189.704119] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: trigger stream 0 dir 0 cmd 0 [ 1189.704133] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x60050000 [ 1189.705567] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x60050000 [ 1189.706153] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x160]=0x20140000 successful [ 1189.706185] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x60030000 [ 1189.706581] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x60030000 [ 1189.706699] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: free stream 0 dir 0 [ 1189.722983] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x80010000 [ 1189.723353] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x80010000 [ 1189.723450] sof-audio-pci-intel-tgl 0000:00:1f.3: pcm: close stream 0 dir 0 [ 1191.805160] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 1191.806028] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 1191.806045] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.7.HDA5.OUT freed [ 1191.806055] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.806384] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.806396] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA5.OUT freed [ 1191.806404] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.806716] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.806731] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF7.1 freed [ 1191.806738] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.806959] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.806964] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF7.0 freed [ 1191.806970] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.807150] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.807154] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA7.0 freed [ 1191.807158] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.807356] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.807361] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM7P freed [ 1191.807369] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 1191.808038] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 1191.808042] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.6.HDA4.OUT freed [ 1191.808050] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.808252] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.808257] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA4.OUT freed [ 1191.808264] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.808475] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.808480] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF6.1 freed [ 1191.808486] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.808691] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.808698] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF6.0 freed [ 1191.808703] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.808985] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.808997] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA6.0 freed [ 1191.809004] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.809226] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.809232] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM6P freed [ 1191.809238] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 1191.809969] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 1191.809975] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.5.HDA3.OUT freed [ 1191.809981] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.810231] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.810237] sof-audio-pci-intel-tgl 0000:00:1f.3: widget HDA3.OUT freed [ 1191.810244] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.810429] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.810434] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF5.1 freed [ 1191.810441] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.810615] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.810621] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF5.0 freed [ 1191.810628] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.810774] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.810777] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA5.0 freed [ 1191.810781] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.810980] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.810985] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM5P freed [ 1191.810993] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 1191.811628] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 1191.811632] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.4.DMIC1.IN freed [ 1191.811636] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.811875] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.811879] sof-audio-pci-intel-tgl 0000:00:1f.3: widget DMIC1.IN freed [ 1191.811884] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.812059] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.812063] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.2 freed [ 1191.812068] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.812252] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.812255] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.1 freed [ 1191.812259] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.812445] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.812449] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF4.0 freed [ 1191.812452] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.812629] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.812633] sof-audio-pci-intel-tgl 0000:00:1f.3: widget EQIIR4.0 freed [ 1191.812636] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.812817] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.812821] sof-audio-pci-intel-tgl 0000:00:1f.3: widget Dmic1 freed [ 1191.812825] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.813013] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.813017] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM2C freed [ 1191.813021] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 1191.813667] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 1191.813671] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.3.DMIC0.IN freed [ 1191.813674] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.813899] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.813903] sof-audio-pci-intel-tgl 0000:00:1f.3: widget DMIC0.IN freed [ 1191.813906] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.814088] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.814092] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.2 freed [ 1191.814095] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.814276] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.814281] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.1 freed [ 1191.814284] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.814464] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.814468] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF3.0 freed [ 1191.814472] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.814640] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.814644] sof-audio-pci-intel-tgl 0000:00:1f.3: widget EQIIR3.0 freed [ 1191.814649] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.814815] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.814819] sof-audio-pci-intel-tgl 0000:00:1f.3: widget Dmic0 freed [ 1191.814822] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.815012] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.815018] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM1C freed [ 1191.815029] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 1191.815681] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 1191.815687] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.2.SSP0.IN freed [ 1191.815694] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.815920] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.815926] sof-audio-pci-intel-tgl 0000:00:1f.3: widget SSP0.IN freed [ 1191.815933] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.816107] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.816113] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF2.1 freed [ 1191.816121] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.816298] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.816304] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF2.0 freed [ 1191.816312] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.816480] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.816486] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA2.0 freed [ 1191.816494] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.816680] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.816685] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM0C freed [ 1191.816694] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30110000 [ 1191.817355] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30110000 [ 1191.817360] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PIPELINE.1.SSP0.OUT freed [ 1191.817368] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.817606] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.817612] sof-audio-pci-intel-tgl 0000:00:1f.3: widget SSP0.OUT freed [ 1191.817620] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.817791] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.817796] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF1.1 freed [ 1191.817805] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30210000 [ 1191.817976] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30210000 [ 1191.817982] sof-audio-pci-intel-tgl 0000:00:1f.3: widget BUF1.0 freed [ 1191.817990] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.818158] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.818164] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PGA1.0 freed [ 1191.818172] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x30020000 [ 1191.818431] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x30020000 [ 1191.818436] sof-audio-pci-intel-tgl 0000:00:1f.3: widget PCM0P freed [ 1191.818454] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx: 0x40010000 [ 1191.818662] sof-audio-pci-intel-tgl 0000:00:1f.3: ipc tx succeeded: 0x40010000 [ 1191.818733] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0x9010f0f successful [ 1191.818764] sof-audio-pci-intel-tgl 0000:00:1f.3: FW Poll Status: reg[0x4]=0xf0f successful [ 1191.818791] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP core(s) enabled? 0 : core_mask 1 [ 1191.818909] sof-audio-pci-intel-tgl 0000:00:1f.3: Debug PCIR: 00000010 at 00000044 [ 1191.818939] sof-audio-pci-intel-tgl 0000:00:1f.3: Turning i915 HDAC power 0 [ 1191.818943] sof-audio-pci-intel-tgl 0000:00:1f.3: Current DSP power state: D3 [ 1191.818945] sof-audio-pci-intel-tgl 0000:00:1f.3: fw_state change: 6 -> 0 ```
SpaLox1 commented 2 years ago

Codec Device - INT343A setting [Enabled] Codec Device - INT34C1 setting [Enabled]`

What device is this on again @SpaLox1? The INT343A is used to point to the Realtek RT286 or RT298, which is completely irrelevant here. Likewise you shouldn't have to select DMIC or not, this should be done for you by the OEM.

*HD Audio link Frequency [24 MHz] This has no influence for ES8336 support, we don't use HDaudio codecs. This link is only used for HDMI.

Looks like you have a copy of the Intel development BIOS with way too many options...

It is a Chuwi Hi 10 X tablet device with 6GB RAM. According to the internet as well as the IDs shown at the Windows 10 device manager, it shoud be equipped with ESSX8336...

The BIOS looks indeed very un-tidied to me with its bitmask cribsheet and 1000s of options. There are even options available to select a different LCD display manufacturer /display type and to tweak different PWM modes of the attached display. So I think I really have to be really careful when entering that BIOS setup. It is probably the first BIOS setup tool I use, since 1994 at my parent's 486, which can severely damage the hardware...

How can such a BIOS affect Linux programming? I always thought that the BIOS fills out the ACPI tables with its starting values, but these tables could be accessed and overridden by any OS as well...? Is a wrong setting like "Codec Device - INT343A setting [Enabled]" appropriate to mislead the Linux hardware detection?

SpaLox1 commented 2 years ago

I tried the following:

(1) git clone https://github.com/mchehab/linux.git -b sound-es8336

Result: Device has been busied several hours fetching 3 GB. No obvious errors were shown. (2) Tried quirks: quirk=0x00, 0x10,0x20,0x40,0x80,0x180,0x190,0x100 (/etc/modprobe.d/sound.conf)

Still no sound.

But I think something went wrong with the basics: uname-r 5.18.0-rc1-2.g11acc76-default

alsamixer -D hw:0 ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 0 Error opening mixing device: File or directory not found

mchehab commented 2 years ago

I tried the following:

(1) git clone https://github.com/mchehab/linux.git -b sound-es8336

Result: Device has been busied several hours fetching 3 GB. No obvious errors were shown. (2) Tried quirks: quirk=0x00, 0x10,0x20,0x40,0x80,0x180,0x190,0x100 (/etc/modprobe.d/sound.conf)

Still no sound.

But I think something went wrong with the basics: uname-r 5.18.0-rc1-2.g11acc76-default

alsamixer -D hw:0 ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 0 Error opening mixing device: File or directory not found

Yeah, if alsamixer gives an error, then there's something else wrong there. There are a couple of Kconfig options that prevent the es8336 bindinngs to be compiled. The following commands will disable such options (the NOCODEC ones) and enable the es8336 codec:

scripts/config -d SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH
scripts/config -d SND_SOC_SOF_NOCODEC
scripts/config -d SND_SOC_SOF_NOCODEC_SUPPORT
scripts/config -d SND_SOC_SOF_FORCE_NOCODEC_MODE
scripts/config -e SND_SOC_SOF_HDA_LINK
scripts/config -e SND_SOC_SOF_HDA_AUDIO_CODEC
scripts/config -e SND_SOC_INTEL_SOF_ES8336_MACH

Btw, if the UCM config files are wrong, instead of "hw:0", the device could appear with some other name at alsamixer. Just in case, you could run alsamixer without any parameter and press F6, in order to list the devices that were exposed by ALSA.

plbossart commented 2 years ago

alsamixer -D hw:0 ALSA lib confmisc.c:165:(snd_config_get_card) Cannot get card index for 0 Error opening mixing device: File or directory not found

It's likely that by playing with quirks the card probe failed. You need to check with 'aplay -l' that there's indeed a card successfully registered before you can read the mixer values and try to get sound in/out.

fcsm1922 commented 2 years ago

Hooray! a sound appeared with the following parameters alsamixer item https://imgur.com/a/eCOrEe0 BUT the sound comes with wheezing (clicks pass) and interference (the volume is reduced)

fcsm1922 commented 2 years ago

@plbossart , @mchehab what can cause clicks in the headphones and through the speaker?

plbossart commented 2 years ago

@fcsm1922 it depends on the nature of 'clicks' a) if you play a sine wave and hear periodic clicks with a well defined interval between clicks this hints at a bad configuration of clocks. You can try this with speaker-test -Dhw:0,0 -c2 -r48000 -t sine. You could try recording the output and checking with audacity if you see such a pattern visually. b) if you hear clicks depending on other activity on the platform, such as moving the mouse or plugging/unplugging the power cord this hints at analog interference and/or coupling with an input that remains open.

Not an easy task to get 'good audio'.

fcsm1922 commented 2 years ago

@plbossart when I run the command (speaker-test -Dhw: 0,0 -c2 -r48000 -t sine),

speaker-test 1.2.6

Playback device is hw:0,0
Stream parameters are 48000Hz, S16_LE, 2 channels
Sine wave rate is 440,0000Hz
Rate set to 48000Hz (requested 48000Hz)
Buffer size range from 96 to 16384
Period size range from 48 to 4096
Using max buffer size 16384
Periods = 4
was set period_size = 4096
was set buffer_size = 16384
 0 - Front Left
 1 - Front Right
Time per period = 5,635915
 0 - Front Left
 1 - Front Right
Time per period = 5,977231
 0 - Front Left
 1 - Front Right
Time per period = 5,974211
 0 - Front Left
 1 - Front Right

I hear a sine through the speakers, and there is a slight rustling in the headphones(constant rustling), it feels like some level is coarsened somewhere (crackling) when restarting the command (speaker-test -Dhw: 0,0 -c2 -r48000 -t sine), it issues

speaker test 1.2.6

Playback device is hw:0,0
Stream parameters are 48000Hz, S16_LE, 2 channels
Sine wave rate is 440.0000Hz
Playback open error: -16, Device or resource busy

and there is no sound at all, until you restart your computer

laggykiller commented 2 years ago

I am using GMK NUCBOX2. It has a coffee lake processor. The vendor provided drivers, in which it contained driver labelled as 'ES8336'.

I am using arch linux and upgraded kernel from 5.16.4 to 5.17.5. This caused HDMI audio out source to disappear. Then I installed sof-firmware but issue still not resolved.

Here is the relevant part of dmesg

$ sudo dmesg | grep -iE 'snd|sof'
[    0.281190] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.342558] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.342559] software IO TLB: mapped [mem 0x00000000832de000-0x00000000872de000] (64MB)
[    2.898927] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    3.236700] snd_soc_skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    3.531771] sof-audio-pci-intel-cnl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    3.531842] sof-audio-pci-intel-cnl 0000:00:1f.3: enabling device (0000 -> 0002)
[    3.532021] sof-audio-pci-intel-cnl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
[    3.532112] sof-audio-pci-intel-cnl 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    3.538664] sof-audio-pci-intel-cnl 0000:00:1f.3: use msi interrupt mode
[    3.579719] sof-audio-pci-intel-cnl 0000:00:1f.3: hda codecs found, mask 4
[    3.579724] sof-audio-pci-intel-cnl 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
[    3.579731] sof-audio-pci-intel-cnl 0000:00:1f.3: DMICs detected in NHLT tables: 0
[    3.583201] sof-audio-pci-intel-cnl 0000:00:1f.3: Firmware info: version 2:1:1-3964a
[    3.583204] sof-audio-pci-intel-cnl 0000:00:1f.3: Firmware: ABI 3:21:0 Kernel ABI 3:18:0
[    3.583206] sof-audio-pci-intel-cnl 0000:00:1f.3: warn: FW ABI is more recent than kernel
[    3.583211] sof-audio-pci-intel-cnl 0000:00:1f.3: unknown sof_ext_man header type 3 size 0x30
[    3.685348] sof-audio-pci-intel-cnl 0000:00:1f.3: Firmware info: version 2:1:1-3964a
[    3.685352] sof-audio-pci-intel-cnl 0000:00:1f.3: Firmware: ABI 3:21:0 Kernel ABI 3:18:0
[    3.685354] sof-audio-pci-intel-cnl 0000:00:1f.3: warn: FW ABI is more recent than kernel
[    3.751430] sof-audio-pci-intel-cnl 0000:00:1f.3: Topology: ABI 3:21:0 Kernel ABI 3:18:0
[    3.751435] sof-audio-pci-intel-cnl 0000:00:1f.3: warn: topology ABI is more recent than kernel
[    3.762297] snd_hda_codec_hdmi ehdaudio0D2: Monitor plugged-in, Failed to power up codec ret=[-13]
[    3.781000] input: sof-hda-dsp HDMI/DP,pcm=1 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input15
[    3.781040] input: sof-hda-dsp HDMI/DP,pcm=2 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input16
[    3.781073] input: sof-hda-dsp HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input17

lspci shows this entry 00:1f.3 Multimedia audio controller: Intel Corporation Cannon Point-LP High Definition Audio Controller (rev 30)

card and codec not visible after the upgrade in kernel. Here is codec info obtained before upgrading kernel:

# cat /proc/asound/card0/codec#2
Codec: Intel Kabylake HDMI
Address: 2
AFG Function Id: 0x1 (unsol 0)
Vendor Id: 0x8086280b
Subsystem Id: 0x80860101
Revision Id: 0x100000
No Modem Function Group found
Default PCM:
    rates [0x0]:
    bits [0x0]:
    formats [0x0]:
Default Amp-In caps: N/A
Default Amp-Out caps: N/A
State of AFG node 0x01:
  Power states:  D0 D3 CLKSTOP EPSS
  Power: setting=D0, actual=D0, Clock-stop-OK
GPIO: io=0, o=0, i=0, unsolicited=0, wake=0
Node 0x02 [Audio Output] wcaps 0x6611: 8-Channels Digital
  Converter: stream=15, channel=0
  Digital: Enabled KAE
  Digital category: 0x0
  IEC Coding Type: 0x0
  PCM:
    rates [0x7f0]: 32000 44100 48000 88200 96000 176400 192000
    bits [0x1a]: 16 24 32
    formats [0x5]: PCM AC3
  Power states:  D0 D3 EPSS
  Power: setting=D0, actual=D0
Node 0x03 [Audio Output] wcaps 0x6611: 8-Channels Digital
  Converter: stream=0, channel=0
  Digital: Enabled KAE
  Digital category: 0x0
  IEC Coding Type: 0x0
  PCM:
    rates [0x7f0]: 32000 44100 48000 88200 96000 176400 192000
    bits [0x1a]: 16 24 32
    formats [0x5]: PCM AC3
  Power states:  D0 D3 EPSS
  Power: setting=D0, actual=D0
Node 0x04 [Audio Output] wcaps 0x6611: 8-Channels Digital
  Converter: stream=0, channel=0
  Digital: Enabled KAE
  Digital category: 0x0
  IEC Coding Type: 0x0
  PCM:
    rates [0x7f0]: 32000 44100 48000 88200 96000 176400 192000
    bits [0x1a]: 16 24 32
    formats [0x5]: PCM AC3
  Power states:  D0 D3 EPSS
  Power: setting=D3, actual=D3
Node 0x05 [Pin Complex] wcaps 0x40778d: 8-Channels Digital Amp-Out CP
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x0b000094: OUT Detect HBR HDMI DP
  Pin Default 0x18560010: [Jack] Digital Out at Int HDMI
    Conn = Digital, Color = Unknown
    DefAssociation = 0x1, Sequence = 0x0
  Pin-ctls: 0x00:
  Unsolicited: tag=00, enabled=0
  Power states:  D0 D3 EPSS
  Power: setting=D0, actual=D0
  Devices: 0
  Connection: 0
Node 0x06 [Pin Complex] wcaps 0x40778d: 8-Channels Digital Amp-Out CP
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x0b000094: OUT Detect HBR HDMI DP
  Pin Default 0x18560020: [Jack] Digital Out at Int HDMI
    Conn = Digital, Color = Unknown
    DefAssociation = 0x2, Sequence = 0x0
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=00, enabled=0
  Power states:  D0 D3 EPSS
  Power: setting=D0, actual=D0
  Devices: 0
  Connection: 3
     0x02* 0x03 0x04
Node 0x07 [Pin Complex] wcaps 0x40778d: 8-Channels Digital Amp-Out CP
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x0b000094: OUT Detect HBR HDMI DP
  Pin Default 0x18560030: [Jack] Digital Out at Int HDMI
    Conn = Digital, Color = Unknown
    DefAssociation = 0x3, Sequence = 0x0
  Pin-ctls: 0x00:
  Unsolicited: tag=00, enabled=0
  Power states:  D0 D3 EPSS
  Power: setting=D0, actual=D0
  Devices: 0
  Connection: 0
Node 0x08 [Vendor Defined Widget] wcaps 0xf00000: Mono

Original discussion available here: https://bbs.archlinux.org/viewtopic.php?pid=2034225#p2034225

Hence, it seems like this issue is not just affecting Huawei laptop and comet lake

jsonguard commented 2 years ago

Hello!

Huawei Matebook 14 (2021) KLVD-WXX9 Intel Core i5 i5-1135G7 (Tiger Lake)

I managed to get a working sound using the following soft:

By default, quirk=0x20 is defined, the sound works, but there are the following problems:

  1. The sound is too quiet (you need to set the second Headphones slider to 100 via alsamixer, so you need to do this every time after disabling your headphones or rebooting)
  2. The built-in microphone does not work with any quirk value (I tried 10, 20, 30, 40, 80, 90, 100, 120, 130, 180, 190)
  3. Analog headphones are detected when connected, but do not play. If you set quirk=0x30, sound appears in the headphones, but the built-in speakers do not turn off -- that is, with quirk=0x30 both the built-in speakers and the connected analog headphones play simultaneously (but the playback device is displayed as one Headphones)

Has anyone encountered such problems? Is this an alsa problem?

plbossart commented 2 years ago

By default, quirk=0x20 is defined, the sound works, but there are the following problems:

Can you clarify what you mean what 'the sound works'? What works out of the box, speaker playback?

1. The sound is too quiet (you need to set the second Headphones slider to 100 via alsamixer, so you need to do this every time after disabling your headphones or rebooting)

Can you clarify which alsa mixer you changed? This might need to be added to the UCM file.

2. The built-in microphone does not work with any quirk value (I tried 10, 20, 30, 40, 80, 90, 100, 120, 130, 180, 190)

You should not play with quirks to change hardware connection to dmic and SSP. Those were added for 'power users', you should only handle GPIO-related quirks

Which means only these bits should be changed in the quirks, the rest need to be left alone with the values setup by the driver.

define SOF_ES8336_SPEAKERS_EN_GPIO1_QUIRK BIT(4)

define SOF_ES8336_JD_INVERTED BIT(6)

define SOF_ES8336_HEADPHONE_GPIO BIT(7)

define SOC_ES8336_HEADSET_MIC1 BIT(8)

Please add this file sof-dyndbg.conf.txt as /etc/modprobe.d/sof-dyndbg.conf, reboot and attach the dmesg log and result of 'alsa-info'. Thanks!

3. Analog headphones are detected when connected, but do not play. If you set quirk=0x30, sound appears in the headphones, but the built-in speakers do not turn off -- that is, with `quirk=0x30` both the built-in speakers and the connected analog headphones play simultaneously (but the playback device is displayed as one Headphones)

quirk 0x30 set the BIT(4) and BIT(5). I don't think this can make the sound appear in headphones, something is odd...

You may need to set #define SOF_ES8336_HEADPHONE_GPIO BIT(7)

TurboBlaze commented 2 years ago

Please add this file sof-dyndbg.conf.txt as /etc/modprobe.d/sof-dyndbg.conf, reboot and attach the dmesg log and result of 'alsa-info'. Thanks!

Done:

# dmesg | grep -iE "snd|sof|audio|err|warn"
[    0.164283] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.202871] ACPI: EC: interrupt blocked
[    0.318308] ACPI: Using IOAPIC for interrupt routing
[    0.378373] ACPI: PCI: Interrupt link LNKA configured for IRQ 3
[    0.378510] ACPI: PCI: Interrupt link LNKB configured for IRQ 4
[    0.378644] ACPI: PCI: Interrupt link LNKC configured for IRQ 5
[    0.378781] ACPI: PCI: Interrupt link LNKD configured for IRQ 6
[    0.378913] ACPI: PCI: Interrupt link LNKE configured for IRQ 7
[    0.379044] ACPI: PCI: Interrupt link LNKF configured for IRQ 9
[    0.379186] ACPI: PCI: Interrupt link LNKG configured for IRQ 10
[    0.379318] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[    0.391527] ACPI Warning: GPE type mismatch (level/edge) (20211217/evxface-791)
[    0.391565] ACPI: EC: interrupt unblocked
[    0.392296] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.443979] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.443982] software IO TLB: mapped [mem 0x0000000066c00000-0x000000006ac00000] (64MB)
[    0.471551] xor: measuring software checksum speed
[    0.535228] sdhci: Copyright(c) Pierre Ossman
[    0.536789] wbsd: Copyright(c) Pierre Ossman)
[    7.276584] snd_hda_intel 0000:00:0e.0: DSP detected with PCI class/subclass/prog-if info 0x040100
[    7.853234] i801_smbus 0000:00:1f.1: SMBus using PCI interrupt
[    8.098951] sof-audio-pci-intel-apl 0000:00:0e.0: DSP detected with PCI class/subclass/prog-if info 0x040100
[    8.099278] sof-audio-pci-intel-apl 0000:00:0e.0: DSP detected with PCI class/subclass/prog-if 0x040100
[    8.329525] sof-audio-pci-intel-apl 0000:00:0e.0: bound 0000:00:02.0 (ops 0xffffffffa0327fa0)
[    8.400147] sof-audio-pci-intel-apl 0000:00:0e.0: use msi interrupt mode
[    8.458906] sof-audio-pci-intel-apl 0000:00:0e.0: hda codecs found, mask 4
[    8.499773] sof-audio-pci-intel-apl 0000:00:0e.0: Firmware info: version 2:1:1-3964a
[    8.499782] sof-audio-pci-intel-apl 0000:00:0e.0: Firmware: ABI 3:21:0 Kernel ABI 3:18:0
[    8.499785] sof-audio-pci-intel-apl 0000:00:0e.0: warn: FW ABI is more recent than kernel
[    8.499794] sof-audio-pci-intel-apl 0000:00:0e.0: unknown sof_ext_man header type 3 size 0x30
[    8.541180] sof-audio-pci-intel-apl 0000:00:0e.0: Firmware info: version 2:1:1-3964a
[    8.541187] sof-audio-pci-intel-apl 0000:00:0e.0: Firmware: ABI 3:21:0 Kernel ABI 3:18:0
[    8.541191] sof-audio-pci-intel-apl 0000:00:0e.0: warn: FW ABI is more recent than kernel
[    9.070789] sof-essx8336 sof-essx8336: quirk mask 0x2
[    9.070792] sof-essx8336 sof-essx8336: quirk SSP2
[    9.085740] sof-audio-pci-intel-apl 0000:00:0e.0: Topology: ABI 3:21:0 Kernel ABI 3:18:0
[    9.085749] sof-audio-pci-intel-apl 0000:00:0e.0: warn: topology ABI is more recent than kernel
[    9.085955] sof-essx8336 sof-essx8336: ASoC: Parent card not yet available, widget card binding deferred
[    9.382381] input: sof-essx8336 Headset as /devices/pci0000:00/0000:00:0e.0/sof-essx8336/sound/card0/input15
[    9.386404] input: sof-essx8336 HDMI/DP,pcm=5 as /devices/pci0000:00/0000:00:0e.0/sof-essx8336/sound/card0/input16
[    9.386507] input: sof-essx8336 HDMI/DP,pcm=6 as /devices/pci0000:00/0000:00:0e.0/sof-essx8336/sound/card0/input17
[    9.386589] input: sof-essx8336 HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:0e.0/sof-essx8336/sound/card0/input18
[    9.398641] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    9.519545] usb 1-8: Warning! Unlikely big volume range (=4096), cval->res is probably wrong.
[    9.519712] usbcore: registered new interface driver snd-usb-audio
[    9.550112] bluetooth hci0: Direct firmware load for rtl_bt/rtl8723b_config.bin failed with error -2
plbossart commented 2 years ago

doesn't look like you have dynamic debug enabled @TurboBlaze ? there's not much I can do with this limited information.

fcsm1922 commented 2 years ago

@plbossart same problem as @jsonguard there is no microphone. There is sound but it's quiet. here is my file alsa-info kernel 5.18.0-rc5-1-mainline

TurboBlaze commented 2 years ago

@plbossart yep. Look at this log http://alsa-project.org/db/?f=25c864a6ad8ef494ad32f3190edf478e052bf445 Thanks.

plbossart commented 2 years ago

@plbossart yep. Look at this log http://alsa-project.org/db/?f=25c864a6ad8ef494ad32f3190edf478e052bf445 Thanks.

not much better, you clearly don't have any dynamic logging enabled.

T-kilt commented 2 years ago

Hello,

following this discussion for a while. Have the same Problem. Huawei Matebook 14 i5-10210U Kernel 5.18rc6.220609gc5eb0a6-1 No additional quirks.

Sound level ist displayed and Alsamixer is on 100%, but no hiss of a Sound on speakers. Also no audio Input. Alsa-info quits with an error. So Sorry no alsa file. Any Idea?

Thx Andre

T-kilt commented 2 years ago

me again ;-) Got a little bit more Information: ALSA-Informationsskript v 051.txt

Hope this will help. Thx

DamianyRosales commented 2 years ago

me again ;-) Got a little bit more Information: ALSA-Informationsskript v 051.txt

Hope this will help. Thx

Did you manage to solve it? I happen to have exactly the same laptop

T-kilt commented 2 years ago

No further progress. Sorry.

Neo-29 commented 2 years ago

So fed up.... I gave up. I put windows 11 on it. To let you know even with windows there's no sound. Teclast provides with special drivers... You even need one patch for the microphone!

A nightmare. But with all that it works.

Good luck.

I can't wait any longer. Tks for your work

MDNSSKNGHT commented 2 years ago

Artix Linux user here, I just installed linux kernel 5.18.0-rc7, there's no longer "Dummy Output" on pulsemixer, neither any sound output. At least is detecting sound card :D

EDIT: There was static output from speakers, but it stopped outputing anything, I guess because I reinstalled sof-firmware, I was using the topologies from sof-bin repository before it.

manuelbalderas commented 2 years ago

I've tried a lot to be able to have audio on my Huawei Matebook D14 i3 device, so far, I haven't be able to fix it. If I put a monitor with speakers with HDMI, I can play sound on it, but the onboard soundcard seems to not be recognize. Has anyone can fix this already on their Huawei laptop?