[PATCH 00/17] Add OA functionality to Xe
Souza, Jose
jose.souza at intel.com
Mon May 27 17:02:28 UTC 2024
On Fri, 2024-05-24 at 18:16 -0700, Dixit, Ashutosh wrote:
> On Wed, 22 May 2024 12:30:27 -0700, Souza, Jose wrote:
> >
>
> Hi Jose,
>
> > On Wed, 2024-05-22 at 11:50 -0700, Dixit, Ashutosh wrote:
> > > On Wed, 22 May 2024 09:13:48 -0700, Souza, Jose wrote:
> > > >
> > > > On Tue, 2024-05-21 at 21:42 -0700, Dixit, Ashutosh wrote:
> > > > > On Tue, 21 May 2024 09:29:51 -0700, Souza, Jose wrote:
> > > > > >
> > > > > > On Tue, 2024-05-21 at 09:10 -0700, Dixit, Ashutosh wrote:
> > > > > > > On Tue, 21 May 2024 07:47:58 -0700, Souza, Jose wrote:
> > > > > > >
> > > > > > > Hi Jose,
> > > > > > >
> > > > > > > > > Other ask, can you remove this 'Failed to remove unknown OA config'
> > > > > > > > > debug message from xe_oa_remove_config_ioctl()?
> > > > > > > >
> > > > > > > > Missed 'Insufficient privileges to remove xe OA config', that need to be
> > > > > > > > removed too from xe_oa_remove_config_ioctl().
> > > > > > > >
> > > > > > > > > Mesa will be using DRM_XE_PERF_OP_REMOVE_CONFIG with config id set to
> > > > > > > > > UINT64_MAX to detect if Xe KMD supports OA counters and if application
> > > > > > > > > has enough permissions to use it. So it causes dmesg to be flooded
> > > > > > > > > with 'xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to
> > > > > > > > > remove unknown OA config' messages when running tests suites.
> > > > > > > > >
> > > > > > > > > Or do you have other suggestion of uAPI that I can use.
> > > > >
> > > > > Also, to return to the original issue, what exactly is the issue if dmesg
> > > > > is getting flooded when runing tests? Maybe it's ok? Or if it is not, why
> > > > > don't you turn off particular debug messages using
> > > > > /sys/module/drm/parameters/debug?
> > > >
> > > > KMD logs are also important for UMD debug.
> > >
> > > What about the answer to the first question: "what exactly is the issue if
> > > dmesg is getting flooded when runing tests"? How many lines are added per
> > > test? Why is it an issue?
> >
> > Most tests will print one line, others will print two or more, depends on
> > how many logical devices the test creates.
> >
> > Just a example, started to run crucible that has 1024 tests on time
> > 6399.935243, see in attachment how many 'Failed to remove unknown OA
> > config' it gets printed. For my testing I have set
> > xe_perf_stream_paranoid to false on my Xe KMD, so in a regular usage
> > 'Insufficient privileges to remove xe OA config' would be printed
> > instead.
> >
> > All those messages would cause developers to miss other important debug
> > messages.
>
> We discussed this in the our team and I'm sorry but I have bad news on this
> one. We decided not to remove debug messages because:
Discussions like this needs to happen in the public mail list.
>
> * We need them for debugging
> * They are useful for providing additional information to user space when
> they see -EACCES
> * Also note that -EACCESS is returned from several uapi's in the driver and
> we cannot just remove the debug messages from one return point, we would
> have to remove them from all return points. And then the question would
> be why we don't have debug messages for -EACCESS when we have debug
> messages for all the other error return values.
>
> So it is not a matter of simply deleting debug messages from
> remove_config, we need to think about the entire system.
>
> Also, note that when "perf_stream_paranoid" is 0, there is no reason to
> call into the driver at all, everything works fine. So that is something
> unnecessary you are doing anyway which results in "Failed to remove unknown
> OA config" message. So there is only the "Insufficient privileges to remove
> xe OA config" to worry about, which will not happen for root processes, the
> most common use case.
>
> The main reason for not changing the driver is of course what you are doing
> in Mesa here is illegal and the driver is responding by emitting these
> debug messages exactly as we want it to.
>
> What Mesa needs to do is to figure out if the user process is running with
> CAP_PERFMON or CAP_SYS_ADMIN capabilities. Instead of making these illegal
> calls in to the driver to figure this out, as I sort of indicated earlier,
> Mesa should figure out some acceptable way of querying these from the OS
> directly. One idea is to read /proc/self/status:
>
> https://docs.kernel.org/filesystems/proc.html
> https://stackoverflow.com/questions/35469038/how-to-find-out-what-linux-capabilities-a-process-requires-to-work
>
> Or you can use libcap calls as I indicated earlier (I think that is the
> better way).
>
> A similar method will be need to be done for BSD if needed (or we can wait
> there till we have an actual port of Xe KMD to BSD, right now there is
> none).
>
> If you continue with the remove_config method, I guess you will just need
> to live with the debug messages.
>
> I am going to add a comment to the Mesa Xe OA PR too about this.
>
> Thanks.
> --
> Ashutosh
>
>
>
> >
> > >
> > >
> > >
> > > >
> > > > >
> > > > > So basically I don't want to tell you what to do or how to implement your
> > > > > stuff (as long as you reciprocally don't ask us to make changes
> > > > > either). The Xe uapi is exposed and userspace if free to use it however
> > > > > they want.
> > > > >
> > > > > So anyway, the discussion in this thread has come up with a few options,
> > > > > which I can quickly summarize here:
> > > > >
> > > > > * Live with the debug messages
> > > > > * Turn debug messages off with /sys/module/drm/parameters/debug
> > > > > * Query the OS for process capabilities or privileges
> > > > > * Refactor the code to not need oa_metrics_available()
> > > > > * Anything else? Another idea e.g. is to eventually convert debug messages
> > > > > into dynamic debug which can be controlled at lower granularity iirc (so
> > > > > e.g. you can turn off OA debug messages only but this needs some work).
> > > >
> > > > I don't think I'm asking much, I just asking to remove 2 debug messages
> > > > to implement it in a Unix portable way that supports both capabilities.
> > > >
> > > > >
> > > > > So let's see where this goes :)
> > > > >
> > > > > Thanks.
> > > > > --
> > > > > Ashutosh
> > > > >
> > > > >
> > > > > > >
> > > > > > > OK, so you are relying on ENODEV and EACCES errno's from
> > > > > > > DRM_XE_PERF_OP_REMOVE_CONFIG to find out (a) if OA is present and (b) if
> > > > > > > you need to be root (actually CAP_PERFMON or CAP_SYS_ADMIN).
> > > > > >
> > > > > > yep
> > > > > >
> > > > > > >
> > > > > > > This logic in Xe should be close to what we have in i915? What does Mesa do
> > > > > > > for i915, or what doesn't work in Xe?
> > > > > > >
> > > > > > > Here are some pointers:
> > > > > > >
> > > > > > > * You can execute DRM_XE_DEVICE_QUERY_OA_UNITS to see if OA is present
> > > > > > >
> > > > > > > * Add/remove OA configs and using the global OAG buffer (time based
> > > > > > > sampling or DRM_XE_OA_PROPERTY_SAMPLE_OA set) are priviliged operations
> > > > > > > (need root). Operations which only need OAR/OAC (OA queries, without
> > > > > > > DRM_XE_OA_PROPERTY_SAMPLE_OA) can be executed by non-root.
> > > > > > >
> > > > > > > * If "/proc/sys/dev/xe/perf_stream_paranoid" is 0, all operations can be
> > > > > > > executed by non-root users. Otherwise, as I described in the previous
> > > > > > > point.
> > > > > >
> > > > > > It is possible that process not started by root has CAP_PERFMON:
> > > > > >
> > > > > > "Unprivileged processes with enabled CAP_PERFMON capability are treated
> > > > > > as privileged processes with respect to perf_events performance
> > > > > > monitoring and observability operations,..."
> > > > > >
> > > > > > And from what I understood only root can write to perf_stream_paranoid, so I don't see a point in having this file...
> > > > > >
> > > > > > >
> > > > > > > So basically I think you just need to check for the perf_stream_paranoid
> > > > > > > file above. It will tell you both (a) if OA is present (because we are
> > > > > > > going to merge the code which creates this file together with OA) and (b)
> > > > > > > if you need to be root for particular operations.
> > > > > > >
> > > > > > > Thanks.
> > > > > > > --
> > > > > > > Ashutosh
> > > > > >
> > > >
> >
> > [2 dmesg.txt <text/plain (base64)>]
> > [ 0.000000] Linux version 6.9.0-rc6-zeh-xe+ (zehortigoza at josouza-mobl2) (gcc (GCC) 14.1.1 20240507, GNU ld (GNU Binutils) 2.42.0) #1337 SMP PREEMPT_DYNAMIC Wed May 22 07:41:27 PDT 2024
> > [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.9.0-rc6-zeh-xe+ root=/dev/nvme0n1p3 ro mitigations=off drm.debug=0xe modprobe.blacklist=i915 modprobe.blacklist=xe
> > [ 0.000000] KERNEL supported cpus:
> > [ 0.000000] Intel GenuineIntel
> > [ 0.000000] AMD AuthenticAMD
> > [ 0.000000] x86/tme: not enabled by BIOS
> > [ 0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
> > [ 0.000000] BIOS-provided physical RAM map:
> > [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
> > [ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
> > [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000049dc1fff] usable
> > [ 0.000000] BIOS-e820: [mem 0x0000000049dc2000-0x0000000063510fff] reserved
> > [ 0.000000] BIOS-e820: [mem 0x0000000063511000-0x0000000063d71fff] ACPI NVS
> > [ 0.000000] BIOS-e820: [mem 0x0000000063d72000-0x0000000063ffefff] ACPI data
> > [ 0.000000] BIOS-e820: [mem 0x0000000063fff000-0x0000000063ffffff] usable
> > [ 0.000000] BIOS-e820: [mem 0x0000000064000000-0x0000000067ffffff] reserved
> > [ 0.000000] BIOS-e820: [mem 0x0000000069500000-0x00000000695fffff] reserved
> > [ 0.000000] BIOS-e820: [mem 0x0000000069e00000-0x00000000707fffff] reserved
> > [ 0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
> > [ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
> > [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
> > [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000028f7fffff] usable
> > [ 0.000000] Kernel compiled without mitigations, ignoring 'mitigations'; system may still be vulnerable
> > [ 0.000000] NX (Execute Disable) protection: active
> > [ 0.000000] APIC: Static calls initialized
> > [ 0.000000] efi: EFI v2.7 by Dell
> > [ 0.000000] efi: ACPI=0x63ffe000 ACPI 2.0=0x63ffe014 SMBIOS=0x4a468000 TPMFinalLog=0x63ce8000 ESRT=0x4a3ccd98 MEMATTR=0x42c12018 RNG=0x63f70018 TPMEventLog=0x44bd0018
> > [ 0.000000] random: crng init done
> > [ 0.000000] efi: Remove mem87: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
> > [ 0.000000] e820: remove [mem 0xc0000000-0xcfffffff] reserved
> > [ 0.000000] efi: Remove mem89: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
> > [ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
> > [ 0.000000] SMBIOS 3.2 present.
> > [ 0.000000] DMI: Dell Inc. Latitude 5420/01M3M4, BIOS 1.27.0 03/17/2023
> > [ 0.000000] tsc: Detected 1500.000 MHz processor
> > [ 0.000000] tsc: Detected 1497.600 MHz TSC
> > [ 0.000008] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
> > [ 0.000010] e820: remove [mem 0x000a0000-0x000fffff] usable
> > [ 0.000014] last_pfn = 0x28f800 max_arch_pfn = 0x400000000
> > [ 0.000017] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
> > [ 0.000019] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
> > [ 0.000271] last_pfn = 0x64000 max_arch_pfn = 0x400000000
> > [ 0.000274] esrt: Reserving ESRT space from 0x000000004a3ccd98 to 0x000000004a3ccdf8.
> > [ 0.000281] Using GB pages for direct mapping
> > [ 0.000458] Secure boot disabled
> > [ 0.000460] ACPI: Early table checksum verification disabled
> > [ 0.000463] ACPI: RSDP 0x0000000063FFE014 000024 (v02 DELL )
> > [ 0.000466] ACPI: XSDT 0x0000000063F78188 00010C (v01 DELL Dell Inc 00000002 01000013)
> > [ 0.000470] ACPI: FACP 0x0000000063FF5000 000114 (v06 DELL Dell Inc 00000002 01000013)
> > [ 0.000474] ACPI: DSDT 0x0000000063F96000 05B86C (v02 DELL Dell Inc 00000002 01000013)
> > [ 0.000477] ACPI: FACS 0x0000000063D1B000 000040
> > [ 0.000479] ACPI: SSDT 0x0000000063FFA000 0024D0 (v02 CpuRef CpuSsdt 00003000 INTL 20191018)
> > [ 0.000481] ACPI: SSDT 0x0000000063FF6000 003714 (v02 DptfTb DptfTabl 00001000 INTL 20191018)
> > [ 0.000484] ACPI: HPET 0x0000000063FF4000 000038 (v01 DELL Dell Inc 00000002 01000013)
> > [ 0.000486] ACPI: APIC 0x0000000063FF3000 00012C (v04 DELL Dell Inc 00000002 01000013)
> > [ 0.000488] ACPI: MCFG 0x0000000063FF2000 00003C (v01 DELL Dell Inc 00000002 01000013)
> > [ 0.000491] ACPI: SSDT 0x0000000063F95000 000A65 (v02 DELL DellRtd3 00001000 INTL 20191018)
> > [ 0.000493] ACPI: NHLT 0x0000000063F94000 00002D (v00 DELL Dell Inc 00000002 01000013)
> > [ 0.000496] ACPI: SSDT 0x0000000063F91000 002BE5 (v02 SaSsdt SaSsdt 00003000 INTL 20191018)
> > [ 0.000498] ACPI: SSDT 0x0000000063F8F000 0012AA (v02 INTEL IgfxSsdt 00003000 INTL 20191018)
> > [ 0.000501] ACPI: SSDT 0x0000000063F83000 00B1B6 (v02 INTEL TcssSsdt 00001000 INTL 20191018)
> > [ 0.000503] ACPI: SSDT 0x0000000063F82000 000D58 (v02 DELL UsbCTabl 00001000 INTL 20191018)
> > [ 0.000505] ACPI: LPIT 0x0000000063F81000 0000CC (v01 DELL Dell Inc 00000002 01000013)
> > [ 0.000508] ACPI: WSMT 0x0000000063F80000 000028 (v01 DELL Dell Inc 00000002 01000013)
> > [ 0.000510] ACPI: SSDT 0x0000000063F7F000 000B75 (v02 DELL PtidDevc 00001000 INTL 20191018)
> > [ 0.000512] ACPI: SSDT 0x0000000063F7E000 00012A (v02 DELL TbtTypeC 00000000 INTL 20191018)
> > [ 0.000515] ACPI: DBGP 0x0000000063F7D000 000034 (v01 DELL Dell Inc 00000002 01000013)
> > [ 0.000517] ACPI: DBG2 0x0000000063F7C000 000054 (v00 DELL Dell Inc 00000002 01000013)
> > [ 0.000519] ACPI: BOOT 0x0000000063F7B000 000028 (v01 DELL CBX3 00000002 01000013)
> > [ 0.000522] ACPI: SSDT 0x0000000063F7A000 00060E (v02 DELL Tpm2Tabl 00001000 INTL 20191018)
> > [ 0.000524] ACPI: TPM2 0x0000000063F79000 00004C (v04 DELL Dell Inc 00000002 01000013)
> > [ 0.000527] ACPI: MSDM 0x0000000063FFD000 000055 (v03 DELL CBX3 06222004 AMI 00010013)
> > [ 0.000529] ACPI: DMAR 0x0000000063F77000 0000B8 (v02 INTEL Dell Inc 00000002 01000013)
> > [ 0.000531] ACPI: SSDT 0x0000000063F76000 000A84 (v02 DELL xh_Dell_ 00000000 INTL 20191018)
> > [ 0.000534] ACPI: SSDT 0x0000000063F75000 000144 (v02 Intel ADebTabl 00001000 INTL 20191018)
> > [ 0.000536] ACPI: ASF! 0x0000000063F74000 0000A0 (v32 DELL Dell Inc 00000002 01000013)
> > [ 0.000538] ACPI: PTDT 0x0000000063F73000 000D44 (v00 DELL Dell Inc 00000005 MSFT 0100000D)
> > [ 0.000541] ACPI: BGRT 0x0000000063F72000 000038 (v01 DELL Dell Inc 00000002 01000013)
> > [ 0.000543] ACPI: FPDT 0x0000000063F71000 000034 (v01 DELL Dell Inc 00000002 01000013)
> > [ 0.000545] ACPI: Reserving FACP table memory at [mem 0x63ff5000-0x63ff5113]
> > [ 0.000546] ACPI: Reserving DSDT table memory at [mem 0x63f96000-0x63ff186b]
> > [ 0.000547] ACPI: Reserving FACS table memory at [mem 0x63d1b000-0x63d1b03f]
> > [ 0.000548] ACPI: Reserving SSDT table memory at [mem 0x63ffa000-0x63ffc4cf]
> > [ 0.000548] ACPI: Reserving SSDT table memory at [mem 0x63ff6000-0x63ff9713]
> > [ 0.000549] ACPI: Reserving HPET table memory at [mem 0x63ff4000-0x63ff4037]
> > [ 0.000550] ACPI: Reserving APIC table memory at [mem 0x63ff3000-0x63ff312b]
> > [ 0.000550] ACPI: Reserving MCFG table memory at [mem 0x63ff2000-0x63ff203b]
> > [ 0.000551] ACPI: Reserving SSDT table memory at [mem 0x63f95000-0x63f95a64]
> > [ 0.000552] ACPI: Reserving NHLT table memory at [mem 0x63f94000-0x63f9402c]
> > [ 0.000553] ACPI: Reserving SSDT table memory at [mem 0x63f91000-0x63f93be4]
> > [ 0.000553] ACPI: Reserving SSDT table memory at [mem 0x63f8f000-0x63f902a9]
> > [ 0.000554] ACPI: Reserving SSDT table memory at [mem 0x63f83000-0x63f8e1b5]
> > [ 0.000555] ACPI: Reserving SSDT table memory at [mem 0x63f82000-0x63f82d57]
> > [ 0.000555] ACPI: Reserving LPIT table memory at [mem 0x63f81000-0x63f810cb]
> > [ 0.000556] ACPI: Reserving WSMT table memory at [mem 0x63f80000-0x63f80027]
> > [ 0.000557] ACPI: Reserving SSDT table memory at [mem 0x63f7f000-0x63f7fb74]
> > [ 0.000557] ACPI: Reserving SSDT table memory at [mem 0x63f7e000-0x63f7e129]
> > [ 0.000558] ACPI: Reserving DBGP table memory at [mem 0x63f7d000-0x63f7d033]
> > [ 0.000559] ACPI: Reserving DBG2 table memory at [mem 0x63f7c000-0x63f7c053]
> > [ 0.000560] ACPI: Reserving BOOT table memory at [mem 0x63f7b000-0x63f7b027]
> > [ 0.000560] ACPI: Reserving SSDT table memory at [mem 0x63f7a000-0x63f7a60d]
> > [ 0.000561] ACPI: Reserving TPM2 table memory at [mem 0x63f79000-0x63f7904b]
> > [ 0.000562] ACPI: Reserving MSDM table memory at [mem 0x63ffd000-0x63ffd054]
> > [ 0.000562] ACPI: Reserving DMAR table memory at [mem 0x63f77000-0x63f770b7]
> > [ 0.000563] ACPI: Reserving SSDT table memory at [mem 0x63f76000-0x63f76a83]
> > [ 0.000564] ACPI: Reserving SSDT table memory at [mem 0x63f75000-0x63f75143]
> > [ 0.000564] ACPI: Reserving ASF! table memory at [mem 0x63f74000-0x63f7409f]
> > [ 0.000565] ACPI: Reserving PTDT table memory at [mem 0x63f73000-0x63f73d43]
> > [ 0.000566] ACPI: Reserving BGRT table memory at [mem 0x63f72000-0x63f72037]
> > [ 0.000567] ACPI: Reserving FPDT table memory at [mem 0x63f71000-0x63f71033]
> > [ 0.000594] Zone ranges:
> > [ 0.000595] DMA [mem 0x0000000000001000-0x0000000000ffffff]
> > [ 0.000596] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
> > [ 0.000598] Normal [mem 0x0000000100000000-0x000000028f7fffff]
> > [ 0.000599] Device empty
> > [ 0.000600] Movable zone start for each node
> > [ 0.000601] Early memory node ranges
> > [ 0.000602] node 0: [mem 0x0000000000001000-0x000000000009efff]
> > [ 0.000603] node 0: [mem 0x0000000000100000-0x0000000049dc1fff]
> > [ 0.000604] node 0: [mem 0x0000000063fff000-0x0000000063ffffff]
> > [ 0.000604] node 0: [mem 0x0000000100000000-0x000000028f7fffff]
> > [ 0.000606] Initmem setup node 0 [mem 0x0000000000001000-0x000000028f7fffff]
> > [ 0.000610] On node 0, zone DMA: 1 pages in unavailable ranges
> > [ 0.000657] On node 0, zone DMA: 97 pages in unavailable ranges
> > [ 0.005351] On node 0, zone DMA32: 41533 pages in unavailable ranges
> > [ 0.019145] On node 0, zone Normal: 16384 pages in unavailable ranges
> > [ 0.019260] On node 0, zone Normal: 2048 pages in unavailable ranges
> > [ 0.019278] Reserving Intel graphics memory at [mem 0x6c800000-0x707fffff]
> > [ 0.019936] ACPI: PM-Timer IO Port: 0x1808
> > [ 0.019941] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
> > [ 0.019943] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
> > [ 0.019943] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
> > [ 0.019944] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
> > [ 0.019945] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
> > [ 0.019945] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
> > [ 0.019946] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
> > [ 0.019947] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
> > [ 0.019947] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
> > [ 0.019948] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
> > [ 0.019948] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
> > [ 0.019949] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
> > [ 0.019950] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
> > [ 0.019950] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
> > [ 0.019951] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
> > [ 0.019951] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
> > [ 0.019988] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
> > [ 0.019991] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> > [ 0.019993] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
> > [ 0.019996] ACPI: Using ACPI (MADT) for SMP configuration information
> > [ 0.019997] ACPI: HPET id: 0x8086a201 base: 0xfed00000
> > [ 0.020003] e820: update [mem 0x44be3000-0x44c6bfff] usable ==> reserved
> > [ 0.020008] TSC deadline timer available
> > [ 0.020011] CPU topo: Max. logical packages: 1
> > [ 0.020012] CPU topo: Max. logical dies: 1
> > [ 0.020012] CPU topo: Max. dies per package: 1
> > [ 0.020015] CPU topo: Max. threads per core: 2
> > [ 0.020016] CPU topo: Num. cores per package: 4
> > [ 0.020016] CPU topo: Num. threads per package: 8
> > [ 0.020017] CPU topo: Allowing 8 present CPUs plus 0 hotplug CPUs
> > [ 0.020028] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
> > [ 0.020029] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
> > [ 0.020030] PM: hibernation: Registered nosave memory: [mem 0x44be3000-0x44c6bfff]
> > [ 0.020031] PM: hibernation: Registered nosave memory: [mem 0x49dc2000-0x63510fff]
> > [ 0.020032] PM: hibernation: Registered nosave memory: [mem 0x63511000-0x63d71fff]
> > [ 0.020033] PM: hibernation: Registered nosave memory: [mem 0x63d72000-0x63ffefff]
> > [ 0.020034] PM: hibernation: Registered nosave memory: [mem 0x64000000-0x67ffffff]
> > [ 0.020035] PM: hibernation: Registered nosave memory: [mem 0x68000000-0x694fffff]
> > [ 0.020035] PM: hibernation: Registered nosave memory: [mem 0x69500000-0x695fffff]
> > [ 0.020036] PM: hibernation: Registered nosave memory: [mem 0x69600000-0x69dfffff]
> > [ 0.020037] PM: hibernation: Registered nosave memory: [mem 0x69e00000-0x707fffff]
> > [ 0.020037] PM: hibernation: Registered nosave memory: [mem 0x70800000-0xfed1ffff]
> > [ 0.020038] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
> > [ 0.020038] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xffffffff]
> > [ 0.020040] [mem 0x70800000-0xfed1ffff] available for PCI devices
> > [ 0.020041] Booting paravirtualized kernel on bare hardware
> > [ 0.020045] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
> > [ 0.023878] setup_percpu: NR_CPUS:64 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
> > [ 0.024606] percpu: Embedded 74 pages/cpu s262560 r8192 d32352 u524288
> > [ 0.024613] pcpu-alloc: s262560 r8192 d32352 u524288 alloc=1*2097152
> > [ 0.024615] pcpu-alloc: [0] 0 1 2 3 [0] 4 5 6 7
> > [ 0.024628] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.9.0-rc6-zeh-xe+ root=/dev/nvme0n1p3 ro mitigations=off drm.debug=0xe modprobe.blacklist=i915 modprobe.blacklist=xe
> > [ 0.024680] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.9.0-rc6-zeh-xe+", will be passed to user space.
> > [ 0.024721] printk: log_buf_len individual max cpu contribution: 262144 bytes
> > [ 0.024722] printk: log_buf_len total cpu_extra contributions: 1835008 bytes
> > [ 0.024723] printk: log_buf_len min size: 262144 bytes
> > [ 0.026687] printk: log_buf_len: 2097152 bytes
> > [ 0.026689] printk: early log buf free: 248592(94%)
> > [ 0.027784] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
> > [ 0.028364] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
> > [ 0.028427] Built 1 zonelists, mobility grouping on. Total pages: 1908331
> > [ 0.028430] mem auto-init: stack:off, heap alloc:off, heap free:off
> > [ 0.028431] stackdepot: allocating hash table via alloc_large_system_hash
> > [ 0.028433] stackdepot hash table entries: 524288 (order: 11, 8388608 bytes, linear)
> > [ 0.029481] software IO TLB: area num 8.
> > [ 0.212167] Memory: 7371100K/7755140K available (16384K kernel code, 2967K rwdata, 5600K rodata, 1364K init, 13072K bss, 383784K reserved, 0K cma-reserved)
> > [ 0.212169] **********************************************************
> > [ 0.212170] ** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **
> > [ 0.212171] ** **
> > [ 0.212171] ** This system shows unhashed kernel memory addresses **
> > [ 0.212172] ** via the console, logs, and other interfaces. This **
> > [ 0.212172] ** might reduce the security of your system. **
> > [ 0.212173] ** **
> > [ 0.212173] ** If you see this message and you are not debugging **
> > [ 0.212174] ** the kernel, report this immediately to your system **
> > [ 0.212174] ** administrator! **
> > [ 0.212175] ** **
> > [ 0.212175] ** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **
> > [ 0.212176] **********************************************************
> > [ 0.212329] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
> > [ 0.212796] Dynamic Preempt: full
> > [ 0.213034] Running RCU self tests
> > [ 0.213035] Running RCU synchronous self tests
> > [ 0.213048] rcu: Preemptible hierarchical RCU implementation.
> > [ 0.213049] rcu: RCU lockdep checking is enabled.
> > [ 0.213049] rcu: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=8.
> > [ 0.213050] rcu: RCU callback double-/use-after-free debug is enabled.
> > [ 0.213051] Trampoline variant of Tasks RCU enabled.
> > [ 0.213052] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
> > [ 0.213053] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
> > [ 0.213078] Running RCU synchronous self tests
> > [ 0.213082] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1.
> > [ 0.218009] NR_IRQS: 4352, nr_irqs: 2048, preallocated irqs: 16
> > [ 0.218383] rcu: srcu_init: Setting srcu_struct sizes based on contention.
> > [ 0.218716] Console: colour dummy device 80x25
> > [ 0.218731] printk: legacy console [tty0] enabled
> > [ 0.220942] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
> > [ 0.220956] ... MAX_LOCKDEP_SUBCLASSES: 8
> > [ 0.220962] ... MAX_LOCK_DEPTH: 48
> > [ 0.220969] ... MAX_LOCKDEP_KEYS: 8192
> > [ 0.220976] ... CLASSHASH_SIZE: 4096
> > [ 0.220983] ... MAX_LOCKDEP_ENTRIES: 32768
> > [ 0.220990] ... MAX_LOCKDEP_CHAINS: 65536
> > [ 0.220997] ... CHAINHASH_SIZE: 32768
> > [ 0.221003] memory used by lock dependency info: 6429 kB
> > [ 0.221012] memory used for stack traces: 4224 kB
> > [ 0.221019] per task-struct memory footprint: 1920 bytes
> > [ 0.221034] ACPI: Core revision 20230628
> > [ 0.221592] hpet: HPET dysfunctional in PC10. Force disabled.
> > [ 0.221602] APIC: Switch to symmetric I/O mode setup
> > [ 0.221612] DMAR: Host address width 39
> > [ 0.221619] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
> > [ 0.221649] DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 69e2ff0505e
> > [ 0.221663] DMAR: DRHD base: 0x000000fed84000 flags: 0x0
> > [ 0.221682] DMAR: dmar1: reg_base_addr fed84000 ver 1:0 cap d2008c40660462 ecap f050da
> > [ 0.221695] DMAR: DRHD base: 0x000000fed85000 flags: 0x0
> > [ 0.221714] DMAR: dmar2: reg_base_addr fed85000 ver 1:0 cap d2008c40660462 ecap f050da
> > [ 0.221726] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
> > [ 0.221745] DMAR: dmar3: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
> > [ 0.221758] DMAR: RMRR base: 0x0000006c000000 end: 0x000000707fffff
> > [ 0.221774] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 3
> > [ 0.221784] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
> > [ 0.221793] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
> > [ 0.224636] DMAR-IR: Enabled IRQ remapping in x2apic mode
> > [ 0.224647] x2apic enabled
> > [ 0.224780] APIC: Switched APIC routing to: cluster x2apic
> > [ 0.230149] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x159647815e3, max_idle_ns: 440795269835 ns
> > [ 0.230176] Calibrating delay loop (skipped), value calculated using timer frequency.. 2995.20 BogoMIPS (lpj=1497600)
> > [ 0.230217] CPU0: Thermal monitoring enabled (TM1)
> > [ 0.230227] x86/cpu: User Mode Instruction Prevention (UMIP) activated
> > [ 0.230352] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
> > [ 0.230361] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
> > [ 0.230373] process: using mwait in idle threads
> > [ 0.230382] Spectre V2 : User space: Vulnerable
> > [ 0.230390] Speculative Store Bypass: Vulnerable
> > [ 0.230398] GDS: Vulnerable: No microcode
> > [ 0.230413] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
> > [ 0.230425] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
> > [ 0.230434] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
> > [ 0.230444] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
> > [ 0.230454] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
> > [ 0.230463] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
> > [ 0.230473] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
> > [ 0.230485] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
> > [ 0.230497] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
> > [ 0.230506] x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
> > [ 0.230515] x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
> > [ 0.230525] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
> > [ 0.230534] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
> > [ 0.230543] x86/fpu: xstate_offset[11]: 2440, xstate_sizes[11]: 16
> > [ 0.230553] x86/fpu: Enabled xstate features 0xae7, context size is 2456 bytes, using 'compacted' format.
> > [ 0.230969] Freeing SMP alternatives memory: 44K
> > [ 0.230976] pid_max: default: 32768 minimum: 301
> > [ 0.231170] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
> > [ 0.231170] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
> > [ 0.231170] Running RCU synchronous self tests
> > [ 0.231170] Running RCU synchronous self tests
> > [ 0.231170] smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1145G7 @ 2.60GHz (family: 0x6, model: 0x8c, stepping: 0x1)
> > [ 0.231170] Running RCU Tasks wait API self tests
> > [ 0.334230] Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
> > [ 0.334306] ... version: 5
> > [ 0.334313] ... bit width: 48
> > [ 0.334320] ... generic registers: 8
> > [ 0.334326] ... value mask: 0000ffffffffffff
> > [ 0.334335] ... max period: 00007fffffffffff
> > [ 0.334344] ... fixed-purpose events: 4
> > [ 0.334351] ... event mask: 0001000f000000ff
> > [ 0.334544] signal: max sigframe size: 3632
> > [ 0.334573] Estimated ratio of average max frequency by base frequency (times 1024): 2730
> > [ 0.334681] rcu: Hierarchical SRCU implementation.
> > [ 0.334690] rcu: Max phase no-delay instances is 400.
> > [ 0.336065] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
> > [ 0.336408] smp: Bringing up secondary CPUs ...
> > [ 0.336735] smpboot: x86: Booting SMP configuration:
> > [ 0.336751] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
> > [ 0.344295] smp: Brought up 1 node, 8 CPUs
> > [ 0.344295] smpboot: Total of 8 processors activated (23961.60 BogoMIPS)
> > [ 0.346714] devtmpfs: initialized
> > [ 0.347220] x86/mm: Memory block size: 128MB
> > [ 0.352811] ACPI: PM: Registering ACPI NVS region [mem 0x63511000-0x63d71fff] (8785920 bytes)
> > [ 0.355236] Running RCU synchronous self tests
> > [ 0.355260] Running RCU synchronous self tests
> > [ 0.355285] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
> > [ 0.355285] futex hash table entries: 2048 (order: 6, 262144 bytes, linear)
> > [ 0.355347] pinctrl core: initialized pinctrl subsystem
> > [ 0.355860] NET: Registered PF_NETLINK/PF_ROUTE protocol family
> > [ 0.357446] thermal_sys: Registered thermal governor 'fair_share'
> > [ 0.357448] thermal_sys: Registered thermal governor 'step_wise'
> > [ 0.357460] thermal_sys: Registered thermal governor 'user_space'
> > [ 0.357506] cpuidle: using governor menu
> > [ 0.357506] Simple Boot Flag at 0x47 set to 0x80
> > [ 0.357506] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
> > [ 0.357687] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
> > [ 0.357710] PCI: not using ECAM ([mem 0xc0000000-0xcfffffff] not reserved)
> > [ 0.357725] PCI: Using configuration type 1 for base access
> > [ 0.358283] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
> > [ 0.358288] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
> > [ 0.358288] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
> > [ 0.358288] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
> > [ 0.358288] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
> > [ 0.359326] cryptd: max_cpu_qlen set to 1000
> > [ 0.376175] raid6: avx512x4 gen() 54379 MB/s
> > [ 0.392210] raid6: avx512x2 gen() 56654 MB/s
> > [ 0.409245] raid6: avx512x1 gen() 56586 MB/s
> > [ 0.426274] raid6: avx2x4 gen() 43144 MB/s
> > [ 0.443316] raid6: avx2x2 gen() 47540 MB/s
> > [ 0.444197] Callback from call_rcu_tasks() invoked.
> > [ 0.460353] raid6: avx2x1 gen() 38868 MB/s
> > [ 0.460363] raid6: using algorithm avx512x2 gen() 56654 MB/s
> > [ 0.477382] raid6: .... xor() 35840 MB/s, rmw enabled
> > [ 0.477395] raid6: using avx512x2 recovery algorithm
> > [ 0.477731] ACPI: Added _OSI(Module Device)
> > [ 0.477740] ACPI: Added _OSI(Processor Device)
> > [ 0.477748] ACPI: Added _OSI(3.0 _SCP Extensions)
> > [ 0.477757] ACPI: Added _OSI(Processor Aggregator Device)
> > [ 0.812907] ACPI: 13 ACPI AML tables successfully acquired and loaded
> > [ 0.901126] ACPI: Dynamic OEM Table Load:
> > [ 0.901154] ACPI: SSDT 0xFFFF88810184F000 000394 (v02 PmRef Cpu0Cst 00003001 INTL 20191018)
> > [ 0.906346] ACPI: Dynamic OEM Table Load:
> > [ 0.906370] ACPI: SSDT 0xFFFF888101DA3800 000437 (v02 PmRef Cpu0Ist 00003000 INTL 20191018)
> > [ 0.912053] ACPI: Dynamic OEM Table Load:
> > [ 0.912076] ACPI: SSDT 0xFFFF888101892600 0001CB (v02 PmRef Cpu0Psd 00003000 INTL 20191018)
> > [ 0.916683] ACPI: Dynamic OEM Table Load:
> > [ 0.916706] ACPI: SSDT 0xFFFF888101860400 000266 (v02 PmRef Cpu0Hwp 00003000 INTL 20191018)
> > [ 0.922906] ACPI: Dynamic OEM Table Load:
> > [ 0.922936] ACPI: SSDT 0xFFFF888101869000 0008E7 (v02 PmRef ApIst 00003000 INTL 20191018)
> > [ 0.930299] ACPI: Dynamic OEM Table Load:
> > [ 0.930323] ACPI: SSDT 0xFFFF888101D9A000 00048A (v02 PmRef ApHwp 00003000 INTL 20191018)
> > [ 0.935132] ACPI: Dynamic OEM Table Load:
> > [ 0.935155] ACPI: SSDT 0xFFFF888101D9B800 0004D4 (v02 PmRef ApPsd 00003000 INTL 20191018)
> > [ 0.940969] ACPI: Dynamic OEM Table Load:
> > [ 0.940992] ACPI: SSDT 0xFFFF888101D9D000 00048A (v02 PmRef ApCst 00003000 INTL 20191018)
> > [ 0.976814] ACPI: _OSC evaluated successfully for all CPUs
> > [ 0.977715] ACPI: EC: EC started
> > [ 0.977730] ACPI: EC: interrupt blocked
> > [ 0.993014] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
> > [ 0.993029] ACPI: \_SB_.PC00.LPCB.ECDV: Boot DSDT EC used to handle transactions
> > [ 0.993044] ACPI: Interpreter enabled
> > [ 0.993151] ACPI: PM: (supports S0 S4 S5)
> > [ 0.993163] ACPI: Using IOAPIC for interrupt routing
> > [ 0.993325] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
> > [ 1.013824] PCI: ECAM [mem 0xc0000000-0xcfffffff] reserved as ACPI motherboard resource
> > [ 1.013854] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
> > [ 1.013870] PCI: Ignoring E820 reservations for host bridge windows
> > [ 1.031845] ACPI: Enabled 9 GPEs in block 00 to 7F
> > [ 1.071723] ACPI: \_SB_.PC00.XHCI.RHUB.HS10.BTPR: New power resource
> > [ 1.124768] ACPI: \_SB_.PC00.RP05.PXP_: New power resource
> > [ 1.166250] ACPI: \_SB_.PC00.SAT0.VOL0.V0PR: New power resource
> > [ 1.167784] ACPI: \_SB_.PC00.SAT0.VOL1.V1PR: New power resource
> > [ 1.169257] ACPI: \_SB_.PC00.SAT0.VOL2.V2PR: New power resource
> > [ 1.227119] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
> > [ 1.282606] ACPI: \_SB_.PC00.TBT0: New power resource
> > [ 1.282930] ACPI: \_SB_.PC00.TBT1: New power resource
> > [ 1.283233] ACPI: \_SB_.PC00.D3C_: New power resource
> > [ 1.590583] ACPI: \PIN_: New power resource
> > [ 1.593364] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
> > [ 1.593388] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
> > [ 1.598041] acpi PNP0A08:00: _OSC: platform does not support [AER]
> > [ 1.606574] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
> > [ 1.617257] PCI host bridge to bus 0000:00
> > [ 1.617273] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
> > [ 1.617288] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
> > [ 1.617302] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
> > [ 1.617318] pci_bus 0000:00: root bus resource [mem 0x70800000-0xbfffffff window]
> > [ 1.617333] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
> > [ 1.617350] pci_bus 0000:00: root bus resource [bus 00-fe]
> > [ 1.617911] pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000 conventional PCI endpoint
> > [ 1.618238] pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
> > [ 1.618265] pci 0000:00:02.0: BAR 0 [mem 0x6052000000-0x6052ffffff 64bit]
> > [ 1.618287] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
> > [ 1.618304] pci 0000:00:02.0: BAR 4 [io 0x3000-0x303f]
> > [ 1.618345] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
> > [ 1.618359] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
> > [ 1.618416] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x00ffffff 64bit]
> > [ 1.618429] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x06ffffff 64bit]: contains BAR 0 for 7 VFs
> > [ 1.618449] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0x1fffffff 64bit pref]
> > [ 1.618463] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0xdfffffff 64bit pref]: contains BAR 2 for 7 VFs
> > [ 1.619745] pci 0000:00:04.0: [8086:9a03] type 00 class 0x118000 conventional PCI endpoint
> > [ 1.619778] pci 0000:00:04.0: BAR 0 [mem 0x6053140000-0x605315ffff 64bit]
> > [ 1.621120] pci 0000:00:07.0: [8086:9a23] type 01 class 0x060400 PCIe Root Port
> > [ 1.621159] pci 0000:00:07.0: PCI bridge to [bus 01-38]
> > [ 1.621175] pci 0000:00:07.0: bridge window [mem 0x8c000000-0xa20fffff]
> > [ 1.621196] pci 0000:00:07.0: bridge window [mem 0x6000000000-0x6021ffffff 64bit pref]
> > [ 1.621248] pci 0000:00:07.0: Overriding RP PIO Log Size to 4
> > [ 1.621409] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
> > [ 1.625352] pci 0000:00:07.1: [8086:9a25] type 01 class 0x060400 PCIe Root Port
> > [ 1.625392] pci 0000:00:07.1: PCI bridge to [bus 39-70]
> > [ 1.625407] pci 0000:00:07.1: bridge window [mem 0x74000000-0x8a0fffff]
> > [ 1.625428] pci 0000:00:07.1: bridge window [mem 0x6030000000-0x6051ffffff 64bit pref]
> > [ 1.625480] pci 0000:00:07.1: Overriding RP PIO Log Size to 4
> > [ 1.625619] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
> > [ 1.629528] pci 0000:00:0d.0: [8086:9a13] type 00 class 0x0c0330 conventional PCI endpoint
> > [ 1.629560] pci 0000:00:0d.0: BAR 0 [mem 0x6053180000-0x605318ffff 64bit]
> > [ 1.629652] pci 0000:00:0d.0: PME# supported from D3hot D3cold
> > [ 1.631130] pci 0000:00:0d.2: [8086:9a1b] type 00 class 0x0c0340 conventional PCI endpoint
> > [ 1.631159] pci 0000:00:0d.2: BAR 0 [mem 0x6053100000-0x605313ffff 64bit]
> > [ 1.631180] pci 0000:00:0d.2: BAR 2 [mem 0x60531a1000-0x60531a1fff 64bit]
> > [ 1.631249] pci 0000:00:0d.2: supports D1 D2
> > [ 1.631258] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
> > [ 1.632637] pci 0000:00:12.0: [8086:a0fc] type 00 class 0x070000 conventional PCI endpoint
> > [ 1.632678] pci 0000:00:12.0: BAR 0 [mem 0x6053170000-0x605317ffff 64bit]
> > [ 1.632789] pci 0000:00:12.0: PME# supported from D0 D3hot
> > [ 1.634684] pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330 conventional PCI endpoint
> > [ 1.634727] pci 0000:00:14.0: BAR 0 [mem 0x6053160000-0x605316ffff 64bit]
> > [ 1.634859] pci 0000:00:14.0: PME# supported from D3hot D3cold
> > [ 1.636426] pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000 conventional PCI endpoint
> > [ 1.636466] pci 0000:00:14.2: BAR 0 [mem 0x6053198000-0x605319bfff 64bit]
> > [ 1.636498] pci 0000:00:14.2: BAR 2 [mem 0x60531a0000-0x60531a0fff 64bit]
> > [ 1.636810] pci 0000:00:14.3: [8086:a0f0] type 00 class 0x028000 PCIe Root Complex Integrated Endpoint
> > [ 1.636862] pci 0000:00:14.3: BAR 0 [mem 0x6053194000-0x6053197fff 64bit]
> > [ 1.637099] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
> > [ 1.638218] pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000 conventional PCI endpoint
> > [ 1.638306] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
> > [ 1.639892] pci 0000:00:15.1: [8086:a0e9] type 00 class 0x0c8000 conventional PCI endpoint
> > [ 1.639979] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
> > [ 1.641496] pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000 conventional PCI endpoint
> > [ 1.641538] pci 0000:00:16.0: BAR 0 [mem 0x605319d000-0x605319dfff 64bit]
> > [ 1.641660] pci 0000:00:16.0: PME# supported from D3hot
> > [ 1.643517] pci 0000:00:16.3: [8086:a0e3] type 00 class 0x070002 conventional PCI endpoint
> > [ 1.643555] pci 0000:00:16.3: BAR 0 [io 0x3060-0x3067]
> > [ 1.643582] pci 0000:00:16.3: BAR 1 [mem 0xa2321000-0xa2321fff]
> > [ 1.643950] pci 0000:00:1c.0: [8086:a0be] type 01 class 0x060400 PCIe Root Port
> > [ 1.643997] pci 0000:00:1c.0: PCI bridge to [bus 71]
> > [ 1.644021] pci 0000:00:1c.0: bridge window [mem 0xa2200000-0xa22fffff]
> > [ 1.644162] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
> > [ 1.647495] pci 0000:00:1d.0: [8086:a0b0] type 01 class 0x060400 PCIe Root Port
> > [ 1.647559] pci 0000:00:1d.0: PCI bridge to [bus 72]
> > [ 1.647593] pci 0000:00:1d.0: bridge window [mem 0xa2100000-0xa21fffff]
> > [ 1.647761] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
> > [ 1.651077] pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100 conventional PCI endpoint
> > [ 1.652471] pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040380 conventional PCI endpoint
> > [ 1.652532] pci 0000:00:1f.3: BAR 0 [mem 0x6053190000-0x6053193fff 64bit]
> > [ 1.652602] pci 0000:00:1f.3: BAR 4 [mem 0x6053000000-0x60530fffff 64bit]
> > [ 1.652740] pci 0000:00:1f.3: PME# supported from D3hot D3cold
> > [ 1.655022] pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500 conventional PCI endpoint
> > [ 1.655065] pci 0000:00:1f.4: BAR 0 [mem 0x605319c000-0x605319c0ff 64bit]
> > [ 1.655106] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
> > [ 1.656318] pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000 conventional PCI endpoint
> > [ 1.656358] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
> > [ 1.656676] pci 0000:00:1f.6: [8086:15fb] type 00 class 0x020000 conventional PCI endpoint
> > [ 1.656746] pci 0000:00:1f.6: BAR 0 [mem 0xa2300000-0xa231ffff]
> > [ 1.657052] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
> > [ 1.658409] pci 0000:00:07.0: PCI bridge to [bus 01-38]
> > [ 1.658557] pci 0000:00:07.1: PCI bridge to [bus 39-70]
> > [ 1.658773] pci 0000:71:00.0: [10ec:525a] type 00 class 0xff0000 PCIe Endpoint
> > [ 1.658854] pci 0000:71:00.0: BAR 1 [mem 0xa2200000-0xa2200fff]
> > [ 1.659201] pci 0000:71:00.0: supports D1 D2
> > [ 1.659210] pci 0000:71:00.0: PME# supported from D1 D2 D3hot D3cold
> > [ 1.659966] pci 0000:00:1c.0: PCI bridge to [bus 71]
> > [ 1.661274] pci 0000:72:00.0: [8086:f1a8] type 00 class 0x010802 PCIe Endpoint
> > [ 1.661370] pci 0000:72:00.0: BAR 0 [mem 0xa2100000-0xa2103fff 64bit]
> > [ 1.662374] pci 0000:00:1d.0: PCI bridge to [bus 72]
> > [ 1.662428] pci_bus 0000:00: on NUMA node 0
> > [ 1.924706] Low-power S0 idle used by default for system suspend
> > [ 1.996299] ACPI: EC: interrupt unblocked
> > [ 1.996314] ACPI: EC: event unblocked
> > [ 1.997173] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
> > [ 1.997173] ACPI: EC: GPE=0x6e
> > [ 1.997173] ACPI: \_SB_.PC00.LPCB.ECDV: Boot DSDT EC initialization complete
> > [ 1.997173] ACPI: \_SB_.PC00.LPCB.ECDV: EC: Used to handle transactions and events
> > [ 1.997173] iommu: Default domain type: Translated
> > [ 1.997173] iommu: DMA domain TLB invalidation policy: lazy mode
> > [ 1.997429] SCSI subsystem initialized
> > [ 1.998224] libata version 3.00 loaded.
> > [ 1.998330] ACPI: bus type USB registered
> > [ 1.998413] usbcore: registered new interface driver usbfs
> > [ 1.998458] usbcore: registered new interface driver hub
> > [ 1.998509] usbcore: registered new device driver usb
> > [ 1.999412] efivars: Registered efivars operations
> > [ 1.999412] Advanced Linux Sound Architecture Driver Initialized.
> > [ 1.999486] PCI: Using ACPI for IRQ routing
> > [ 2.017617] PCI: pci_cache_line_size set to 64 bytes
> > [ 2.017966] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
> > [ 2.018171] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
> > [ 2.018185] e820: reserve RAM buffer [mem 0x44be3000-0x47ffffff]
> > [ 2.018188] e820: reserve RAM buffer [mem 0x49dc2000-0x4bffffff]
> > [ 2.018191] e820: reserve RAM buffer [mem 0x28f800000-0x28fffffff]
> > [ 2.019207] pci 0000:00:02.0: vgaarb: setting as boot VGA device
> > [ 2.019220] pci 0000:00:02.0: vgaarb: bridge control possible
> > [ 2.019231] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
> > [ 2.019256] vgaarb: loaded
> > [ 2.019393] clocksource: Switched to clocksource tsc-early
> > [ 2.020093] pnp: PnP ACPI init
> > [ 2.021027] system 00:00: [io 0x0680-0x069f] has been reserved
> > [ 2.021044] system 00:00: [io 0x164e-0x164f] has been reserved
> > [ 2.021669] system 00:02: [io 0x1854-0x1857] has been reserved
> > [ 2.028253] pnp 00:05: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
> > [ 2.028417] system 00:05: [mem 0xfedc0000-0xfedc7fff] has been reserved
> > [ 2.028434] system 00:05: [mem 0xfeda0000-0xfeda0fff] has been reserved
> > [ 2.028449] system 00:05: [mem 0xfeda1000-0xfeda1fff] has been reserved
> > [ 2.028467] system 00:05: [mem 0xfed20000-0xfed7ffff] could not be reserved
> > [ 2.028485] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
> > [ 2.028503] system 00:05: [mem 0xfed45000-0xfed8ffff] could not be reserved
> > [ 2.028519] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved
> > [ 2.032836] system 00:06: [io 0x1800-0x18fe] could not be reserved
> > [ 2.032853] system 00:06: [mem 0xfe000000-0xfe01ffff] has been reserved
> > [ 2.032868] system 00:06: [mem 0xfe04c000-0xfe04ffff] has been reserved
> > [ 2.032883] system 00:06: [mem 0xfe050000-0xfe0affff] has been reserved
> > [ 2.032898] system 00:06: [mem 0xfe0d0000-0xfe0fffff] has been reserved
> > [ 2.032913] system 00:06: [mem 0xfe200000-0xfe7fffff] has been reserved
> > [ 2.032928] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
> > [ 2.032943] system 00:06: [mem 0xfd000000-0xfd68ffff] has been reserved
> > [ 2.032958] system 00:06: [mem 0xfd6b0000-0xfd6cffff] has been reserved
> > [ 2.032973] system 00:06: [mem 0xfd6f0000-0xfdffffff] has been reserved
> > [ 2.034162] system 00:07: [io 0x2000-0x20fe] has been reserved
> > [ 2.053252] pnp: PnP ACPI: found 9 devices
> > [ 2.064505] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
> > [ 2.064819] NET: Registered PF_INET protocol family
> > [ 2.064976] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
> > [ 2.066444] tcp_listen_portaddr_hash hash table entries: 4096 (order: 6, 294912 bytes, linear)
> > [ 2.066520] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
> > [ 2.066554] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
> > [ 2.066686] TCP bind hash table entries: 65536 (order: 11, 9437184 bytes, vmalloc hugepage)
> > [ 2.068608] TCP: Hash tables configured (established 65536 bind 65536)
> > [ 2.068769] UDP hash table entries: 4096 (order: 7, 655360 bytes, linear)
> > [ 2.068980] UDP-Lite hash table entries: 4096 (order: 7, 655360 bytes, linear)
> > [ 2.069221] NET: Registered PF_UNIX/PF_LOCAL protocol family
> > [ 2.069812] RPC: Registered named UNIX socket transport module.
> > [ 2.069832] RPC: Registered udp transport module.
> > [ 2.069841] RPC: Registered tcp transport module.
> > [ 2.069851] RPC: Registered tcp-with-tls transport module.
> > [ 2.069862] RPC: Registered tcp NFSv4.1 backchannel transport module.
> > [ 2.069877] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
> > [ 2.069904] pci 0000:00:02.0: VF BAR 2 [mem 0x4020000000-0x40ffffffff 64bit pref]: assigned
> > [ 2.069922] pci 0000:00:02.0: VF BAR 0 [mem 0x4010000000-0x4016ffffff 64bit]: assigned
> > [ 2.069938] pci 0000:00:07.0: bridge window [io 0x4000-0x4fff]: assigned
> > [ 2.069950] pci 0000:00:07.1: bridge window [io 0x5000-0x5fff]: assigned
> > [ 2.069962] pci 0000:00:15.0: BAR 0 [mem 0x4017000000-0x4017000fff 64bit]: assigned
> > [ 2.070038] pci 0000:00:15.1: BAR 0 [mem 0x4017001000-0x4017001fff 64bit]: assigned
> > [ 2.070113] pci 0000:00:1f.5: BAR 0 [mem 0x70800000-0x70800fff]: assigned
> > [ 2.070147] pci 0000:00:07.0: PCI bridge to [bus 01-38]
> > [ 2.070157] pci 0000:00:07.0: bridge window [io 0x4000-0x4fff]
> > [ 2.070171] pci 0000:00:07.0: bridge window [mem 0x8c000000-0xa20fffff]
> > [ 2.070185] pci 0000:00:07.0: bridge window [mem 0x6000000000-0x6021ffffff 64bit pref]
> > [ 2.070202] pci 0000:00:07.1: PCI bridge to [bus 39-70]
> > [ 2.070212] pci 0000:00:07.1: bridge window [io 0x5000-0x5fff]
> > [ 2.070225] pci 0000:00:07.1: bridge window [mem 0x74000000-0x8a0fffff]
> > [ 2.070238] pci 0000:00:07.1: bridge window [mem 0x6030000000-0x6051ffffff 64bit pref]
> > [ 2.070257] pci 0000:00:1c.0: PCI bridge to [bus 71]
> > [ 2.070271] pci 0000:00:1c.0: bridge window [mem 0xa2200000-0xa22fffff]
> > [ 2.070295] pci 0000:00:1d.0: PCI bridge to [bus 72]
> > [ 2.070317] pci 0000:00:1d.0: bridge window [mem 0xa2100000-0xa21fffff]
> > [ 2.070341] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
> > [ 2.070352] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
> > [ 2.070363] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
> > [ 2.070375] pci_bus 0000:00: resource 7 [mem 0x70800000-0xbfffffff window]
> > [ 2.070386] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
> > [ 2.070400] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
> > [ 2.070410] pci_bus 0000:01: resource 1 [mem 0x8c000000-0xa20fffff]
> > [ 2.070421] pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6021ffffff 64bit pref]
> > [ 2.070434] pci_bus 0000:39: resource 0 [io 0x5000-0x5fff]
> > [ 2.070444] pci_bus 0000:39: resource 1 [mem 0x74000000-0x8a0fffff]
> > [ 2.070454] pci_bus 0000:39: resource 2 [mem 0x6030000000-0x6051ffffff 64bit pref]
> > [ 2.070468] pci_bus 0000:71: resource 1 [mem 0xa2200000-0xa22fffff]
> > [ 2.070480] pci_bus 0000:72: resource 1 [mem 0xa2100000-0xa21fffff]
> > [ 2.073678] PCI: CLS 0 bytes, default 64
> > [ 2.073740] DMAR: No ATSR found
> > [ 2.073760] DMAR: No SATC found
> > [ 2.073768] DMAR: IOMMU feature fl1gp_support inconsistent
> > [ 2.073772] DMAR: IOMMU feature pgsel_inv inconsistent
> > [ 2.073787] DMAR: IOMMU feature nwfs inconsistent
> > [ 2.073799] DMAR: IOMMU feature pds inconsistent
> > [ 2.073809] DMAR: IOMMU feature dit inconsistent
> > [ 2.073819] DMAR: IOMMU feature eafs inconsistent
> > [ 2.073829] DMAR: IOMMU feature prs inconsistent
> > [ 2.073840] DMAR: IOMMU feature nest inconsistent
> > [ 2.073850] DMAR: IOMMU feature mts inconsistent
> > [ 2.073860] DMAR: IOMMU feature sc_support inconsistent
> > [ 2.073871] DMAR: IOMMU feature dev_iotlb_support inconsistent
> > [ 2.073883] DMAR: dmar2: Using Queued invalidation
> > [ 2.073928] DMAR: dmar1: Using Queued invalidation
> > [ 2.073940] DMAR: dmar0: Using Queued invalidation
> > [ 2.073952] DMAR: dmar3: Using Queued invalidation
> > [ 2.074397] pci 0000:00:07.1: Adding to iommu group 0
> > [ 2.075393] pci 0000:00:07.0: Adding to iommu group 1
> > [ 2.076231] pci 0000:00:02.0: Adding to iommu group 2
> > [ 2.077276] pci 0000:00:00.0: Adding to iommu group 3
> > [ 2.077339] pci 0000:00:04.0: Adding to iommu group 4
> > [ 2.077429] pci 0000:00:0d.0: Adding to iommu group 5
> > [ 2.077478] pci 0000:00:0d.2: Adding to iommu group 5
> > [ 2.077555] pci 0000:00:12.0: Adding to iommu group 6
> > [ 2.077649] pci 0000:00:14.0: Adding to iommu group 7
> > [ 2.077699] pci 0000:00:14.2: Adding to iommu group 7
> > [ 2.077760] pci 0000:00:14.3: Adding to iommu group 8
> > [ 2.077849] pci 0000:00:15.0: Adding to iommu group 9
> > [ 2.077902] pci 0000:00:15.1: Adding to iommu group 9
> > [ 2.077991] pci 0000:00:16.0: Adding to iommu group 10
> > [ 2.078044] pci 0000:00:16.3: Adding to iommu group 10
> > [ 2.078110] pci 0000:00:1c.0: Adding to iommu group 11
> > [ 2.078178] pci 0000:00:1d.0: Adding to iommu group 12
> > [ 2.078303] pci 0000:00:1f.0: Adding to iommu group 13
> > [ 2.078358] pci 0000:00:1f.3: Adding to iommu group 13
> > [ 2.078413] pci 0000:00:1f.4: Adding to iommu group 13
> > [ 2.078467] pci 0000:00:1f.5: Adding to iommu group 13
> > [ 2.078522] pci 0000:00:1f.6: Adding to iommu group 13
> > [ 2.078592] pci 0000:71:00.0: Adding to iommu group 14
> > [ 2.078664] pci 0000:72:00.0: Adding to iommu group 15
> > [ 2.085803] DMAR: Intel(R) Virtualization Technology for Directed I/O
> > [ 2.085816] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
> > [ 2.085827] software IO TLB: mapped [mem 0x000000003bda0000-0x000000003fda0000] (64MB)
> > [ 2.086020] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
> > [ 2.086034] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
> > [ 2.086044] RAPL PMU: hw unit of domain package 2^-14 Joules
> > [ 2.086054] RAPL PMU: hw unit of domain psys 2^-14 Joules
> > [ 2.086222] resource: resource sanity check: requesting [mem 0x00000000fedc0000-0x00000000fedcdfff], which spans more than pnp 00:05 [mem 0xfedc0000-0xfedc7fff]
> > [ 2.086263] caller __uncore_imc_init_box+0xcc/0x110 mapping multiple BARs
> > [ 2.086510] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x159647815e3, max_idle_ns: 440795269835 ns
> > [ 2.086553] clocksource: Switched to clocksource tsc
> > [ 2.091881] workingset: timestamp_bits=46 max_order=21 bucket_order=0
> > [ 2.092925] debugfs: Directory 'file_lock_cache' with parent 'slab' already present!
> > [ 2.096050] cryptomgr_test (84) used greatest stack depth: 14456 bytes left
> > [ 2.102687] NET: Registered PF_ALG protocol family
> > [ 2.102720] xor: automatically using best checksumming function avx
> > [ 2.102790] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
> > [ 2.102807] io scheduler mq-deadline registered
> > [ 2.102816] io scheduler kyber registered
> > [ 2.103514] cryptomgr_test (85) used greatest stack depth: 14200 bytes left
> > [ 2.105977] pcieport 0000:00:07.0: PME: Signaling with IRQ 124
> > [ 2.106137] pcieport 0000:00:07.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
> > [ 2.108008] pcieport 0000:00:07.1: PME: Signaling with IRQ 125
> > [ 2.108126] pcieport 0000:00:07.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
> > [ 2.109868] pcieport 0000:00:1c.0: PME: Signaling with IRQ 126
> > [ 2.111277] pcieport 0000:00:1d.0: PME: Signaling with IRQ 127
> > [ 2.111946] kworker/u32:1 (89) used greatest stack depth: 13648 bytes left
> > [ 2.111998] uvesafb: failed to execute /sbin/v86d
> > [ 2.112010] uvesafb: make sure that the v86d helper is installed and executable
> > [ 2.112026] uvesafb: Getting VBE info block failed (eax=0x4f00, err=-2)
> > [ 2.112043] uvesafb: vbe_init() failed with -22
> > [ 2.112055] uvesafb uvesafb.0: probe with driver uvesafb failed with error -22
> > [ 2.113829] Monitor-Mwait will be used to enter C-1 state
> > [ 2.113840] Monitor-Mwait will be used to enter C-2 state
> > [ 2.113846] Monitor-Mwait will be used to enter C-3 state
> > [ 2.113852] ACPI: \_SB_.PR00: Found 3 idle states
> > [ 2.120664] ACPI: AC: AC Adapter [AC] (on-line)
> > [ 2.120948] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
> > [ 2.121782] ACPI: button: Lid Switch [LID0]
> > [ 2.121939] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
> > [ 2.122106] ACPI: button: Power Button [PBTN]
> > [ 2.122251] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
> > [ 2.122360] ACPI: button: Sleep Button [SBTN]
> > [ 2.132791] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
> > [ 2.136099] serial 0000:00:12.0: enabling device (0000 -> 0002)
> > [ 2.143623] serial 0000:00:16.3: enabling device (0000 -> 0003)
> > [ 2.149557] 0000:00:16.3: ttyS0 at I/O 0x3060 (irq = 19, base_baud = 115200) is a 16550A
> > [ 2.152351] hpet_acpi_add: no address or irqs in _CRS
> > [ 2.152562] Non-volatile memory driver v1.3
> > [ 2.152693] Linux agpgart interface v0.103
> > [ 2.152891] ACPI: bus type drm_connector registered
> > [ 2.159038] loop: module loaded
> > [ 2.173729] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
> > [ 2.330763] ACPI: battery: Slot [BAT0] (battery present)
> > [ 2.379677] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
> > [ 2.430034] nvme 0000:72:00.0: platform quirk: setting simple suspend
> > [ 2.430472] tun: Universal TUN/TAP device driver, 1.6
> > [ 2.430541] nvme nvme0: pci function 0000:72:00.0
> > [ 2.430980] VFIO - User Level meta-driver version: 0.3
> > [ 2.431244] xhci_hcd 0000:00:0d.0: xHCI Host Controller
> > [ 2.431333] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
> > [ 2.433109] xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
> > [ 2.434522] xhci_hcd 0000:00:0d.0: xHCI Host Controller
> > [ 2.434546] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
> > [ 2.434567] xhci_hcd 0000:00:0d.0: Host supports USB 3.1 Enhanced SuperSpeed
> > [ 2.434911] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09
> > [ 2.434938] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> > [ 2.434954] usb usb1: Product: xHCI Host Controller
> > [ 2.434966] usb usb1: Manufacturer: Linux 6.9.0-rc6-zeh-xe+ xhci-hcd
> > [ 2.434979] usb usb1: SerialNumber: 0000:00:0d.0
> > [ 2.435809] hub 1-0:1.0: USB hub found
> > [ 2.435923] hub 1-0:1.0: 1 port detected
> > [ 2.436946] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.09
> > [ 2.436965] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> > [ 2.436980] usb usb2: Product: xHCI Host Controller
> > [ 2.436991] usb usb2: Manufacturer: Linux 6.9.0-rc6-zeh-xe+ xhci-hcd
> > [ 2.437005] usb usb2: SerialNumber: 0000:00:0d.0
> > [ 2.437536] hub 2-0:1.0: USB hub found
> > [ 2.437583] hub 2-0:1.0: 4 ports detected
> > [ 2.441550] nvme nvme0: 8/0/0 default/read/poll queues
> > [ 2.443073] xhci_hcd 0000:00:14.0: xHCI Host Controller
> > [ 2.443103] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
> > [ 2.444857] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
> > [ 2.446219] xhci_hcd 0000:00:14.0: xHCI Host Controller
> > [ 2.446240] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
> > [ 2.446259] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
> > [ 2.446432] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09
> > [ 2.446450] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> > [ 2.446465] usb usb3: Product: xHCI Host Controller
> > [ 2.446476] usb usb3: Manufacturer: Linux 6.9.0-rc6-zeh-xe+ xhci-hcd
> > [ 2.446489] usb usb3: SerialNumber: 0000:00:14.0
> > [ 2.447171] hub 3-0:1.0: USB hub found
> > [ 2.447230] hub 3-0:1.0: 12 ports detected
> > [ 2.447999] nvme0n1: p1 p2 p3
> > [ 2.453948] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.09
> > [ 2.453969] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
> > [ 2.453985] usb usb4: Product: xHCI Host Controller
> > [ 2.453996] usb usb4: Manufacturer: Linux 6.9.0-rc6-zeh-xe+ xhci-hcd
> > [ 2.454009] usb usb4: SerialNumber: 0000:00:14.0
> > [ 2.454511] hub 4-0:1.0: USB hub found
> > [ 2.454572] hub 4-0:1.0: 4 ports detected
> > [ 2.456887] usbcore: registered new interface driver usb-storage
> > [ 2.457157] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
> > [ 2.457765] i8042: Warning: Keylock active
> > [ 2.460754] serio: i8042 KBD port at 0x60,0x64 irq 1
> > [ 2.461094] serio: i8042 AUX port at 0x60,0x64 irq 12
> > [ 2.461380] mousedev: PS/2 mouse device common for all mice
> > [ 2.461792] rtc_cmos 00:01: RTC can wake from S4
> > [ 2.463502] rtc_cmos 00:01: registered as rtc0
> > [ 2.463758] rtc_cmos 00:01: setting system clock to 2024-05-22T17:31:26 UTC (1716399086)
> > [ 2.463917] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
> > [ 2.464021] IR JVC protocol handler initialized
> > [ 2.464030] IR MCE Keyboard/mouse protocol handler initialized
> > [ 2.464041] IR NEC protocol handler initialized
> > [ 2.464049] IR RC5(x/sz) protocol handler initialized
> > [ 2.464059] IR RC6 protocol handler initialized
> > [ 2.464067] IR SANYO protocol handler initialized
> > [ 2.464076] IR Sharp protocol handler initialized
> > [ 2.464085] IR Sony protocol handler initialized
> > [ 2.464093] IR XMP protocol handler initialized
> > [ 2.464910] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
> > [ 2.464927] softdog: soft_reboot_cmd=<not set> soft_active_on_boot=0
> > [ 2.464949] device-mapper: uevent: version 1.0.3
> > [ 2.465178] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel at lists.linux.dev
> > [ 2.465196] intel_pstate: Intel P-state driver initializing
> > [ 2.465347] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
> > [ 2.466979] intel_pstate: HWP enabled
> > [ 2.467051] sdhci: Secure Digital Host Controller Interface driver
> > [ 2.467062] sdhci: Copyright(c) Pierre Ossman
> > [ 2.468851] efifb: probing for efifb
> > [ 2.468898] efifb: framebuffer at 0x4000000000, using 8100k, total 8100k
> > [ 2.468913] efifb: mode is 1920x1080x32, linelength=7680, pages=1
> > [ 2.468926] efifb: scrolling: redraw
> > [ 2.468934] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
> > [ 2.472776] Console: switching to colour frame buffer device 240x67
> > [ 2.476165] fb0: EFI VGA frame buffer device
> > [ 2.476364] pstore: Using crash dump compression: deflate
> > [ 2.476402] pstore: Registered efi_pstore as persistent store backend
> > [ 2.476476] hid: raw HID events driver (C) Jiri Kosina
> > [ 2.476820] usbcore: registered new interface driver usbhid
> > [ 2.476840] usbhid: USB HID core driver
> > [ 2.476900] intel_rapl_msr: PL4 support detected.
> > [ 2.477106] intel_rapl_common: Found RAPL domain package
> > [ 2.477132] intel_rapl_common: Found RAPL domain core
> > [ 2.477155] intel_rapl_common: Found RAPL domain psys
> > [ 2.478672] Initializing XFRM netlink socket
> > [ 2.478787] NET: Registered PF_INET6 protocol family
> > [ 2.479853] Segment Routing with IPv6
> > [ 2.479901] In-situ OAM (IOAM) with IPv6
> > [ 2.479945] mip6: Mobile IPv6
> > [ 2.479962] NET: Registered PF_PACKET protocol family
> > [ 2.479985] NET: Registered PF_KEY protocol family
> > [ 2.482324] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
> > [ 2.482770] microcode: Current revision: 0x000000a4
> > [ 2.483475] IPI shorthand broadcast: enabled
> > [ 2.483512] AVX2 version of gcm_enc/dec engaged.
> > [ 2.483741] AES CTR mode by8 optimization enabled
> > [ 2.496503] sched_clock: Marking stable (2484002864, 11609725)->(2527169323, -31556734)
> > [ 2.497131] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
> > [ 2.497603] registered taskstats version 1
> > [ 2.514267] Btrfs loaded, zoned=no, fsverity=no
> > [ 2.516048] cryptomgr_test (105) used greatest stack depth: 13624 bytes left
> > [ 2.517068] cryptomgr_test (109) used greatest stack depth: 13144 bytes left
> > [ 2.518953] kworker/u32:1 (123) used greatest stack depth: 13088 bytes left
> > [ 2.538576] clk: Disabling unused clocks
> > [ 2.538844] ALSA device list:
> > [ 2.538880] No soundcards found.
> > [ 2.539058] md: Skipping autodetection of RAID arrays. (raid=autodetect will force)
> > [ 2.581133] EXT4-fs (nvme0n1p3): mounted filesystem d33cb5b8-6786-41bb-8fe9-3d143d334780 ro with ordered data mode. Quota mode: disabled.
> > [ 2.581237] VFS: Mounted root (ext4 filesystem) readonly on device 259:3.
> > [ 2.582127] devtmpfs: mounted
> > [ 2.582934] Freeing unused kernel image (initmem) memory: 1364K
> > [ 2.583873] Write protecting the kernel read-only data: 22528k
> > [ 2.585583] Freeing unused kernel image (rodata/data gap) memory: 544K
> > [ 2.586565] Run /sbin/init as init process
> > [ 2.587535] with arguments:
> > [ 2.587537] /sbin/init
> > [ 2.587539] with environment:
> > [ 2.587541] HOME=/
> > [ 2.587542] TERM=linux
> > [ 2.587543] BOOT_IMAGE=/boot/vmlinuz-6.9.0-rc6-zeh-xe+
> > [ 2.697658] usb 3-3: new low-speed USB device number 2 using xhci_hcd
> > [ 2.721794] systemd[1]: systemd 249.11-0ubuntu3.12 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
> > [ 2.724753] systemd[1]: Detected architecture x86-64.
> > [ 2.732022] systemd[1]: Hostname set to <josouza-mobl6>.
> > [ 2.794466] snapd-env-gener (205) used greatest stack depth: 12904 bytes left
> > [ 2.824847] cat (211) used greatest stack depth: 12856 bytes left
> > [ 2.827091] friendly-recove (207) used greatest stack depth: 11936 bytes left
> > [ 2.837670] usb 3-3: New USB device found, idVendor=045e, idProduct=0797, bcdDevice= 2.00
> > [ 2.839911] usb 3-3: New USB device strings: Mfr=0, Product=2, SerialNumber=0
> > [ 2.843636] usb 3-3: Product: USB Optical Mouse
> > [ 2.858010] input: USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3:1.0/0003:045E:0797.0001/input/input5
> > [ 2.861241] hid-generic 0003:045E:0797.0001: input,hidraw0: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:14.0-3/input0
> > [ 2.865038] block nvme0n1: the capability attribute has been deprecated.
> > [ 2.979635] usb 3-6: new high-speed USB device number 3 using xhci_hcd
> > [ 3.009119] systemd[1]: Queued start job for default target Multi-User System.
> > [ 3.033535] systemd[1]: Created slice Slice /system/modprobe.
> > [ 3.038650] systemd[1]: Created slice Slice /system/systemd-fsck.
> > [ 3.042351] systemd[1]: Created slice User and Session Slice.
> > [ 3.045405] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
> > [ 3.048393] systemd[1]: Condition check resulted in Arbitrary Executable File Formats File System Automount Point being skipped.
> > [ 3.049738] systemd[1]: Reached target Remote File Systems.
> > [ 3.052664] systemd[1]: Reached target Slice Units.
> > [ 3.055621] systemd[1]: Reached target Mounting snaps.
> > [ 3.058589] systemd[1]: Reached target Mounted snaps.
> > [ 3.061663] systemd[1]: Reached target System Time Set.
> > [ 3.064730] systemd[1]: Reached target Local Verity Protected Volumes.
> > [ 3.068533] systemd[1]: Listening on Syslog Socket.
> > [ 3.071962] systemd[1]: Listening on fsck to fsckd communication Socket.
> > [ 3.075264] systemd[1]: Listening on initctl Compatibility Named Pipe.
> > [ 3.082470] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
> > [ 3.083989] systemd[1]: Listening on Journal Socket (/dev/log).
> > [ 3.087237] systemd[1]: Listening on Journal Socket.
> > [ 3.091977] systemd[1]: Listening on udev Control Socket.
> > [ 3.095399] systemd[1]: Listening on udev Kernel Socket.
> > [ 3.118044] systemd[1]: Mounting Huge Pages File System...
> > [ 3.123731] systemd[1]: Mounting POSIX Message Queue File System...
> > [ 3.129179] systemd[1]: Mounting Kernel Debug File System...
> > [ 3.135144] systemd[1]: Mounting Kernel Trace File System...
> > [ 3.138671] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
> > [ 3.139983] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
> > [ 3.143755] systemd[1]: Starting Journal Service...
> > [ 3.149475] usb 3-6: New USB device found, idVendor=1bcf, idProduct=28cf, bcdDevice=15.31
> > [ 3.150321] systemd[1]: Starting Set the console keyboard layout...
> > [ 3.151509] usb 3-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
> > [ 3.154606] usb 3-6: Product: Integrated_Webcam_FHD
> > [ 3.154609] usb 3-6: Manufacturer: CN0XH90J8LG0017OAHZFA00
> > [ 3.154618] usb 3-6: SerialNumber: 01.00.00
> > [ 3.163959] systemd[1]: Starting Create List of Static Device Nodes...
> > [ 3.171231] systemd[1]: Starting Load Kernel Module configfs...
> > [ 3.179351] systemd[1]: Starting Load Kernel Module drm...
> > [ 3.187607] systemd[1]: Starting Load Kernel Module efi_pstore...
> > [ 3.195570] systemd[1]: Starting Load Kernel Module fuse...
> > [ 3.203776] systemd[1]: Starting File System Check on Root Device...
> > [ 3.215754] systemd[1]: Starting Load Kernel Modules...
> > [ 3.217785] fuse: init (API version 7.40)
> > [ 3.228841] systemd[1]: Starting Coldplug All udev Devices...
> > [ 3.238001] systemd[1]: Mounted Huge Pages File System.
> > [ 3.242930] systemd[1]: Mounted POSIX Message Queue File System.
> > [ 3.247729] systemd[1]: Mounted Kernel Debug File System.
> > [ 3.252815] systemd[1]: Mounted Kernel Trace File System.
> > [ 3.260301] systemd[1]: Finished Set the console keyboard layout.
> > [ 3.270920] systemd[1]: Finished Create List of Static Device Nodes.
> > [ 3.277485] systemd[1]: modprobe at configfs.service: Deactivated successfully.
> > [ 3.281271] systemd[1]: Finished Load Kernel Module configfs.
> > [ 3.286644] usb 3-8: new high-speed USB device number 4 using xhci_hcd
> > [ 3.288243] systemd[1]: modprobe at drm.service: Deactivated successfully.
> > [ 3.292433] systemd[1]: Finished Load Kernel Module drm.
> > [ 3.299455] systemd[1]: modprobe at efi_pstore.service: Deactivated successfully.
> > [ 3.302030] systemd[1]: Finished Load Kernel Module efi_pstore.
> > [ 3.305800] systemd[1]: Started Journal Service.
> > [ 3.407027] EXT4-fs (nvme0n1p3): re-mounted d33cb5b8-6786-41bb-8fe9-3d143d334780 r/w. Quota mode: disabled.
> > [ 3.420720] usb 3-8: New USB device found, idVendor=0a5c, idProduct=5843, bcdDevice= 1.02
> > [ 3.420726] usb 3-8: New USB device strings: Mfr=1, Product=2, SerialNumber=3
> > [ 3.420728] usb 3-8: Product: 58200
> > [ 3.420729] usb 3-8: Manufacturer: Broadcom Corp
> > [ 3.420731] usb 3-8: SerialNumber: 0123456789ABCD
> > [ 3.447824] systemd-journald[235]: Received client request to flush runtime journal.
> > [ 3.537697] loop0: detected capacity change from 0 to 8
> > [ 3.541542] loop1: detected capacity change from 0 to 126896
> > [ 3.541648] usb 3-10: new full-speed USB device number 5 using xhci_hcd
> > [ 3.550303] loop0: detected capacity change from 0 to 820832
> > [ 3.556479] loop1: detected capacity change from 0 to 187776
> > [ 3.563245] loop0: detected capacity change from 0 to 93928
> > [ 3.570126] loop0: detected capacity change from 0 to 96176
> > [ 3.578322] loop0: detected capacity change from 0 to 568
> > [ 3.676578] usb 3-10: New USB device found, idVendor=8087, idProduct=0026, bcdDevice= 0.02
> > [ 3.676590] usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
> > [ 3.995672] intel_pmc_core INT33A1:00: initialized
> > [ 4.080492] journal-offline (323) used greatest stack depth: 11880 bytes left
> > [ 4.092022] pps_core: LinuxPPS API ver. 1 registered
> > [ 4.092031] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti at linux.it>
> > [ 4.095025] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
> > [ 4.096882] PTP clock support registered
> > [ 4.097817] wmi_bus wmi_bus-PNP0C14:02: [Firmware Bug]: WQBC data block query control method not found
> > [ 4.114103] i801_smbus 0000:00:1f.4: SPD Write Disable is set
> > [ 4.114242] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
> > [ 4.390997] Adding 8000508k swap on /dev/nvme0n1p2. Priority:-2 extents:1 across:8000508k SS
> > [ 4.417859] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
> > [ 4.463726] e1000e: Intel(R) PRO/1000 Network Driver
> > [ 4.463732] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
> > [ 4.467729] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
> > [ 4.589860] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
> > [ 4.657295] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
> > [ 4.657460] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
> > [ 4.665465] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
> > [ 4.705992] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) a0:29:19:08:9b:02
> > [ 4.706003] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
> > [ 4.706132] e1000e 0000:00:1f.6 eth0: MAC: 14, PHY: 12, PBA No: FFFFFF-0FF
> > [ 4.708375] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
> > [ 4.728100] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
> > [ 4.734265] e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
> > [ 4.735168] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
> > [ 5.198859] loop0: detected capacity change from 0 to 8
> > [ 11.241278] e1000e 0000:00:1f.6 enp0s31f6: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
> > [ 15.046985] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
> > [ 15.052491] pci 0000:00:1f.3: deferred probe pending: snd_hda_intel: couldn't bind with audio component
> > [ 305.268778] loop0: detected capacity change from 0 to 8
> > [ 605.252187] loop0: detected capacity change from 0 to 8
> > [ 905.239436] loop0: detected capacity change from 0 to 8
> > [ 988.358139] kworker/dying (10) used greatest stack depth: 11536 bytes left
> > [ 1205.268918] loop0: detected capacity change from 0 to 8
> > [ 1505.238272] loop0: detected capacity change from 0 to 8
> > [ 1617.268931] systemd-journald[235]: Failed to set ACL on /var/log/journal/a26005d73e4e4e9dad3f94ec0e385727/user-1000.journal, ignoring: Operation not supported
> > [ 1805.244751] loop0: detected capacity change from 0 to 8
> > [ 2105.250228] loop0: detected capacity change from 0 to 8
> > [ 2405.292335] loop0: detected capacity change from 0 to 8
> > [ 2554.874879] ln (4716) used greatest stack depth: 11408 bytes left
> > [ 2705.321072] loop0: detected capacity change from 0 to 8
> > [ 2711.827350] perf: interrupt took too long (2514 > 2500), lowering kernel.perf_event_max_sample_rate to 79000
> > [ 2812.839219] perf: interrupt took too long (3198 > 3142), lowering kernel.perf_event_max_sample_rate to 62000
> > [ 2896.678486] Console: switching to colour dummy device 80x25
> > [ 2896.679677] xe 0000:00:02.0: vgaarb: deactivate vga console
> > [ 2896.681492] xe 0000:00:02.0: [drm] Support for SR-IOV is not available
> > [ 2896.681506] xe 0000:00:02.0: [drm:xe_pci_probe [xe]] XE_TIGERLAKE 9a49:0001 dgfx:0 gfx:Xe_LP (12.00) media:Xe_M (12.00) display:yes dma_m_s:39 tc:1 gscfi:0
> > [ 2896.681591] xe 0000:00:02.0: [drm:xe_pci_probe [xe]] Stepping = (G:B0, M:B0, D:D0, B:**)
> > [ 2896.681646] xe 0000:00:02.0: [drm:xe_pci_probe [xe]] SR-IOV support: no (mode: none)
> > [ 2896.681715] xe 0000:00:02.0: [drm:intel_pch_type [xe]] Found Tiger Lake LP PCH
> > [ 2896.682254] xe 0000:00:02.0: [drm] GT topology dss mask (geometry): 00000000,00000000,0000001f
> > [ 2896.682257] xe 0000:00:02.0: [drm] GT topology dss mask (compute): 00000000,00000000,00000000
> > [ 2896.682259] xe 0000:00:02.0: [drm] GT topology EU mask per DSS: 0000ffff
> > [ 2896.682261] xe 0000:00:02.0: [drm] GT topology L3 bank mask: 00000000,00000077
> > [ 2896.688416] xe 0000:00:02.0: [drm] Using GuC firmware from i915/tgl_guc_70.bin version 70.20.0
> > [ 2896.689814] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 0] = 0x00252fd3
> > [ 2896.689889] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 1] = 0x00000000
> > [ 2896.689923] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 2] = 0x00000000
> > [ 2896.689952] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 3] = 0x00000003
> > [ 2896.689979] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 4] = 0x000004d2
> > [ 2896.690006] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 5] = 0x9a490001
> > [ 2896.690032] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 6] = 0x00000000
> > [ 2896.690058] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 7] = 0x00000000
> > [ 2896.690083] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 8] = 0x00000000
> > [ 2896.690108] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 9] = 0x00000000
> > [ 2896.690133] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[10] = 0x00000000
> > [ 2896.690163] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[11] = 0x00000000
> > [ 2896.690204] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[12] = 0x00000000
> > [ 2896.690244] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[13] = 0x00000000
> > [ 2896.696975] xe 0000:00:02.0: [drm] Using HuC firmware from i915/tgl_huc.bin version 7.9.3
> > [ 2896.697354] xe 0000:00:02.0: [drm:xe_wopcm_init [xe]] WOPCM: 2048K
> > [ 2896.697426] xe 0000:00:02.0: [drm:xe_wopcm_init [xe]] Calculated GuC WOPCM [592K, 1420K)
> > [ 2896.700534] xe 0000:00:02.0: [drm:__xe_guc_upload.isra.0 [xe]] GT0: GuC successfully loaded
> > [ 2896.701044] xe 0000:00:02.0: [drm:xe_guc_ct_enable [xe]] GT0: GuC CT communication channel enabled
> > [ 2896.701199] xe 0000:00:02.0: [drm:intel_opregion_setup [xe]] graphic opregion physical addr: 0x63d05018
> > [ 2896.701337] xe 0000:00:02.0: [drm:intel_opregion_setup [xe]] ACPI OpRegion version 2.1.0
> > [ 2896.701397] xe 0000:00:02.0: [drm:intel_opregion_setup [xe]] Public ACPI methods supported
> > [ 2896.701448] xe 0000:00:02.0: [drm:intel_opregion_setup [xe]] SWSCI Mailbox #2 present for opregion v2.x
> > [ 2896.701497] xe 0000:00:02.0: [drm:intel_opregion_setup [xe]] SWSCI supported
> > [ 2896.705602] xe 0000:00:02.0: [drm:intel_opregion_setup [xe]] SWSCI GBDA callbacks 00000cb3, SBCB callbacks 00300583
> > [ 2896.705757] xe 0000:00:02.0: [drm:intel_opregion_setup [xe]] ASLE supported
> > [ 2896.705872] xe 0000:00:02.0: [drm:intel_opregion_setup [xe]] ASLE extension supported
> > [ 2896.705959] xe 0000:00:02.0: [drm:intel_opregion_setup [xe]] Found valid VBT in ACPI OpRegion (RVDA)
> > [ 2896.706048] xe 0000:00:02.0: [drm:intel_dram_detect [xe]] Num qgv points 4
> > [ 2896.706117] xe 0000:00:02.0: [drm:intel_dram_detect [xe]] DRAM channels: 1
> > [ 2896.706169] xe 0000:00:02.0: [drm:xe_display_init_noirq [xe]] Watermark level 0 adjustment needed: no
> > [ 2896.706461] xe 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [xe]] QGV 0: DCLK=2134 tRP=15 tRDPRE=8 tRAS=35 tRCD=15 tRC=50
> > [ 2896.706577] xe 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [xe]] QGV 1: DCLK=2134 tRP=15 tRDPRE=8 tRAS=35 tRCD=15 tRC=50
> > [ 2896.706674] xe 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [xe]] QGV 2: DCLK=3201 tRP=22 tRDPRE=12 tRAS=52 tRCD=22 tRC=74
> > [ 2896.706767] xe 0000:00:02.0: [drm:icl_get_qgv_points.constprop.0 [xe]] QGV 3: DCLK=2668 tRP=19 tRDPRE=10 tRAS=43 tRCD=19 tRC=62
> > [ 2896.706829] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW0 / QGV 0: num_planes=0 deratedbw=6224 peakbw: 17072
> > [ 2896.706883] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW0 / QGV 1: num_planes=0 deratedbw=6224 peakbw: 17072
> > [ 2896.706939] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW0 / QGV 2: num_planes=0 deratedbw=8380 peakbw: 25608
> > [ 2896.706986] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW0 / QGV 3: num_planes=0 deratedbw=7318 peakbw: 21344
> > [ 2896.707038] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW1 / QGV 0: num_planes=1 deratedbw=6876 peakbw: 17072
> > [ 2896.707080] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW1 / QGV 1: num_planes=1 deratedbw=6876 peakbw: 17072
> > [ 2896.707122] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW1 / QGV 2: num_planes=1 deratedbw=9704 peakbw: 25608
> > [ 2896.707163] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW1 / QGV 3: num_planes=1 deratedbw=8307 peakbw: 21344
> > [ 2896.707204] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW2 / QGV 0: num_planes=0 deratedbw=7257 peakbw: 17072
> > [ 2896.707294] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW2 / QGV 1: num_planes=0 deratedbw=7257 peakbw: 17072
> > [ 2896.707348] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW2 / QGV 2: num_planes=0 deratedbw=10536 peakbw: 25608
> > [ 2896.707389] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW2 / QGV 3: num_planes=0 deratedbw=8909 peakbw: 21344
> > [ 2896.707429] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW3 / QGV 0: num_planes=0 deratedbw=7464 peakbw: 17072
> > [ 2896.707469] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW3 / QGV 1: num_planes=0 deratedbw=7464 peakbw: 17072
> > [ 2896.707509] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW3 / QGV 2: num_planes=0 deratedbw=11007 peakbw: 25608
> > [ 2896.707550] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW3 / QGV 3: num_planes=0 deratedbw=9243 peakbw: 21344
> > [ 2896.707587] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW4 / QGV 0: num_planes=0 deratedbw=7571 peakbw: 17072
> > [ 2896.707613] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW4 / QGV 1: num_planes=0 deratedbw=7571 peakbw: 17072
> > [ 2896.707652] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW4 / QGV 2: num_planes=0 deratedbw=11259 peakbw: 25608
> > [ 2896.707681] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW4 / QGV 3: num_planes=0 deratedbw=9421 peakbw: 21344
> > [ 2896.707709] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW5 / QGV 0: num_planes=0 deratedbw=7626 peakbw: 17072
> > [ 2896.707737] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW5 / QGV 1: num_planes=0 deratedbw=7626 peakbw: 17072
> > [ 2896.707766] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW5 / QGV 2: num_planes=0 deratedbw=11390 peakbw: 25608
> > [ 2896.707795] xe 0000:00:02.0: [drm:tgl_get_bw_info.isra.0 [xe]] BW5 / QGV 3: num_planes=0 deratedbw=9512 peakbw: 21344
> > [ 2896.708499] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Set default to SSC at 120000 kHz
> > [ 2896.708539] xe 0000:00:02.0: [drm:intel_bios_init [xe]] VBT signature "$VBT TIGERLAKE ", BDB version 237
> > [ 2896.708571] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found BDB block 1 (size 5, min size 7)
> > [ 2896.708603] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found BDB block 2 (size 356, min size 5)
> > [ 2896.708655] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found BDB block 9 (size 100, min size 100)
> > [ 2896.708709] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found BDB block 12 (size 19, min size 19)
> > [ 2896.708760] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found BDB block 27 (size 780, min size 812)
> > [ 2896.708811] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found BDB block 40 (size 30, min size 34)
> > [ 2896.708859] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Generating LFP data table pointers
> > [ 2896.708929] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found BDB block 41 (size 148, min size 148)
> > [ 2896.708989] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found BDB block 42 (size 1364, min size 1366)
> > [ 2896.709038] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found BDB block 43 (size 273, min size 305)
> > [ 2896.709083] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found BDB block 44 (size 58, min size 78)
> > [ 2896.709129] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found BDB block 52 (size 822, min size 822)
> > [ 2896.709180] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found BDB block 56 (size 210, min size 210)
> > [ 2896.709275] xe 0000:00:02.0: [drm:intel_bios_init [xe]] BDB_GENERAL_FEATURES int_tv_support 0 int_crt_support 0 lvds_use_ssc 0 lvds_ssc_freq 120000 display_clock_mode 1 fdi_rx_polarity_inverted 0
> > [ 2896.709318] xe 0000:00:02.0: [drm:intel_bios_init [xe]] crt_ddc_bus_pin: 2
> > [ 2896.709360] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found VBT child device with type 0x1806
> > [ 2896.709406] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found VBT child device with type 0x60d2
> > [ 2896.709451] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found VBT child device with type 0x60d6
> > [ 2896.709495] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Found VBT child device with type 0x60d6
> > [ 2896.709540] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Skipping SDVO device mapping
> > [ 2896.709582] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Port A VBT info: CRT:0 DVI:0 HDMI:0 DP:1 eDP:1 DSI:0 DP++:0 LSPCON:0 USB-Type-C:0 TBT:0 DSC:0
> > [ 2896.709636] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Port A VBT HDMI level shift: 0
> > [ 2896.709704] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Port B VBT info: CRT:0 DVI:1 HDMI:1 DP:0 eDP:0 DSI:0 DP++:0 LSPCON:0 USB-Type-C:0 TBT:0 DSC:0
> > [ 2896.709756] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Port B VBT HDMI level shift: 0
> > [ 2896.709802] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Port D VBT info: CRT:0 DVI:1 HDMI:1 DP:1 eDP:0 DSI:0 DP++:1 LSPCON:0 USB-Type-C:1 TBT:1 DSC:0
> > [ 2896.709856] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Port D VBT HDMI level shift: 0
> > [ 2896.709901] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Port E VBT info: CRT:0 DVI:1 HDMI:1 DP:1 eDP:0 DSI:0 DP++:1 LSPCON:0 USB-Type-C:1 TBT:1 DSC:0
> > [ 2896.709947] xe 0000:00:02.0: [drm:intel_bios_init [xe]] Port E VBT HDMI level shift: 0
> > [ 2896.710039] xe 0000:00:02.0: [drm:intel_power_domains_init [xe]] Allowed DC state mask 4000000a
> > [ 2896.710135] xe 0000:00:02.0: [drm:gen9_set_dc_state.part.0 [xe]] Setting DC state from 00 to 00
> > [ 2896.710337] xe 0000:00:02.0: [drm:check_phy_reg [xe]] Combo PHY A reg 001628a0 state mismatch: current 30032ffc mask e0000000 expected a0000000
> > [ 2896.710407] xe 0000:00:02.0: [drm:check_phy_reg [xe]] Combo PHY A reg 00162804 state mismatch: current 1c300004 mask 00300000 expected 00000000
> > [ 2896.710475] xe 0000:00:02.0: [drm:icl_combo_phys_init [xe]] Initializing combo PHY A (Voltage/Process Info : 0.85V dot0 (low-voltage))
> > [ 2896.710549] xe 0000:00:02.0: [drm:check_phy_reg [xe]] Combo PHY B reg 0006c8a0 state mismatch: current 3003501c mask e0000000 expected a0000000
> > [ 2896.710596] xe 0000:00:02.0: [drm:check_phy_reg [xe]] Combo PHY B reg 0006c804 state mismatch: current 1c300004 mask 00300000 expected 00000000
> > [ 2896.710669] xe 0000:00:02.0: [drm:icl_combo_phys_init [xe]] Initializing combo PHY B (Voltage/Process Info : 0.85V dot0 (low-voltage))
> > [ 2896.710779] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling PW_1
> > [ 2896.710889] xe 0000:00:02.0: [drm:intel_cdclk_init_hw [xe]] Current CDCLK 172800 kHz, VCO 345600 kHz, ref 38400 kHz, bypass 19200 kHz, voltage level 0
> > [ 2896.710998] xe 0000:00:02.0: [drm:gen9_dbuf_slices_update [xe]] Updating dbuf slices to 0x3
> > [ 2896.711113] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling always-on
> > [ 2896.711189] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling DC_off
> > [ 2896.711259] xe 0000:00:02.0: [drm:gen9_set_dc_state.part.0 [xe]] Setting DC state from 00 to 00
> > [ 2896.711345] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling PW_2
> > [ 2896.711380] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling PW_3
> > [ 2896.711419] xe 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=io+mem
> > [ 2896.711453] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling PW_4
> > [ 2896.711486] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling PW_5
> > [ 2896.711849] xe 0000:00:02.0: [drm:intel_power_well_sync_hw [xe]] TC cold unblock succeeded
> > [ 2896.711946] xe 0000:00:02.0: [drm:intel_dmc_init [xe]] Loading i915/tgl_dmc_ver2_12.bin
> > [ 2896.712744] xe 0000:00:02.0: [drm:intel_bw_init [xe]] Forcing SAGV disable: mask 0xb
> > [ 2896.713699] xe 0000:00:02.0: [drm:intel_fbc_init [xe]] Sanitized enable_fbc value: 1
> > [ 2896.714423] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] DMC 0:
> > [ 2896.714485] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] mmio[0]: 0x8f074 = 0x86fc0
> > [ 2896.714529] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] mmio[1]: 0x8f034 = 0xc003b400 (EVT_CTL)
> > [ 2896.714568] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] mmio[2]: 0x8f004 = 0x1a40188 (EVT_HTP)
> > [ 2896.714603] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] mmio[3]: 0x8f038 = 0xc003b200 (EVT_CTL)
> > [ 2896.714657] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] mmio[4]: 0x8f008 = 0x3ebc3cc0 (EVT_HTP)
> > [ 2896.714690] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] mmio[5]: 0x8f03c = 0xc0033200 (EVT_CTL) (disabling)
> > [ 2896.714721] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] mmio[6]: 0x8f00c = 0x41dc41b0 (EVT_HTP)
> > [ 2896.714721] xe 0000:00:02.0: [drm:xe_ttm_stolen_mgr_init [xe]] Initialized stolen memory support with 67108864 bytes
> > [ 2896.714753] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] mmio[7]: 0x8f040 = 0xc003bf00 (EVT_CTL) (disabling)
> > [ 2896.714794] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] mmio[8]: 0x8f010 = 0x433442b4 (EVT_HTP)
> > [ 2896.714827] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] DMC 1:
> > [ 2896.714833] xe 0000:00:02.0: [drm:skl_wm_init [xe]] SAGV supported: yes, original SAGV block time: 11 us
> > [ 2896.714856] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] mmio[0]: 0x92074 = 0x90fc0
> > [ 2896.714885] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] mmio[1]: 0x92034 = 0xc003df00 (EVT_CTL) (disabling)
> > [ 2896.714914] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] mmio[2]: 0x92004 = 0x1c00188 (EVT_HTP)
> > [ 2896.715003] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] mmio[3]: 0x92038 = 0xc003e000 (EVT_CTL) (disabling)
> > [ 2896.715019] xe 0000:00:02.0: [drm:intel_print_wm_latency [xe]] Gen9 Plane WM0 latency 3 (3.0 usec)
> > [ 2896.715073] xe 0000:00:02.0: [drm:intel_print_wm_latency [xe]] Gen9 Plane WM1 latency 54 (54.0 usec)
> > [ 2896.715081] xe 0000:00:02.0: [drm:dmc_load_work_fn [xe]] mmio[4]: 0x92008 = 0x2b4027c (EVT_HTP)
> > [ 2896.715111] xe 0000:00:02.0: [drm:intel_print_wm_latency [xe]] Gen9 Plane WM2 latency 54 (54.0 usec)
> > [ 2896.715144] xe 0000:00:02.0: [drm:intel_print_wm_latency [xe]] Gen9 Plane WM3 latency 54 (54.0 usec)
> > [ 2896.715176] xe 0000:00:02.0: [drm:intel_print_wm_latency [xe]] Gen9 Plane WM4 latency 54 (54.0 usec)
> > [ 2896.715209] xe 0000:00:02.0: [drm:intel_print_wm_latency [xe]] Gen9 Plane WM5 latency 73 (73.0 usec)
> > [ 2896.715241] xe 0000:00:02.0: [drm:intel_print_wm_latency [xe]] Gen9 Plane WM6 latency 110 (110.0 usec)
> > [ 2896.715272] xe 0000:00:02.0: [drm:intel_print_wm_latency [xe]] Gen9 Plane WM7 latency 115 (115.0 usec)
> > [ 2896.715703] xe 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_12.bin (v2.12)
> > [ 2896.717640] xe 0000:00:02.0: [drm:intel_display_driver_probe_nogem [xe]] 4 display pipes available.
> > [ 2896.722178] xe 0000:00:02.0: [drm:intel_cdclk_dump_config [xe]] Current CDCLK 172800 kHz, VCO 345600 kHz, ref 38400 kHz, bypass 19200 kHz, voltage level 0
> > [ 2896.722299] xe 0000:00:02.0: [drm:intel_update_max_cdclk [xe]] Max CD clock rate: 652800 kHz
> > [ 2896.722379] xe 0000:00:02.0: [drm:intel_display_driver_probe_nogem [xe]] Max dotclock rate: 1305600 kHz
> > [ 2896.722504] xe 0000:00:02.0: [drm:intel_dp_aux_ch [xe]] [ENCODER:312:DDI A/PHY A] Using AUX CH A (VBT)
> > [ 2896.722636] xe 0000:00:02.0: [drm:intel_dp_init_connector [xe]] Adding eDP connector on [ENCODER:312:DDI A/PHY A]
> > [ 2896.727696] xe 0000:00:02.0: [drm:intel_opregion_get_panel_type [xe]] Ignoring OpRegion panel type (0)
> > [ 2896.727797] xe 0000:00:02.0: [drm:intel_bios_init_panel [xe]] Panel type (VBT): 14
> > [ 2896.727870] xe 0000:00:02.0: [drm:intel_bios_init_panel [xe]] Selected panel type (VBT): 14
> > [ 2896.727917] xe 0000:00:02.0: [drm:intel_bios_init_panel [xe]] DRRS supported mode is seamless
> > [ 2896.727979] xe 0000:00:02.0: [drm:intel_bios_init_panel [xe]] Found panel mode in BIOS VBT legacy lfp table: "1920x1080": 60 148500 1920 2008 2053 2200 1080 1083 1089 1125 0x8 0xa
> > [ 2896.728020] xe 0000:00:02.0: [drm:intel_bios_init_panel [xe]] VBT initial LVDS value 300
> > [ 2896.728059] xe 0000:00:02.0: [drm] Panel manufacturer name: MS_, product code: 3, serial number: 15, year of manufacture: 2002
> > [ 2896.728062] xe 0000:00:02.0: [drm:intel_bios_init_panel [xe]] Panel name: LFP_PanelName
> > [ 2896.728100] xe 0000:00:02.0: [drm:intel_bios_init_panel [xe]] Seamless DRRS min refresh rate: 0 Hz
> > [ 2896.728137] xe 0000:00:02.0: [drm:intel_bios_init_panel [xe]] VBT backlight PWM modulation frequency 200 Hz, active high, min brightness 15, level 255, controller 0
> > [ 2896.728221] xe 0000:00:02.0: [drm:intel_pps_init [xe]] [ENCODER:312:DDI A/PHY A] initial power sequencer: PPS 0
> > [ 2896.728306] xe 0000:00:02.0: [drm:pps_init_delays [xe]] bios t1_t3 1 t8 1 t9 1 t10 500 t11_t12 6000
> > [ 2896.728349] xe 0000:00:02.0: [drm:pps_init_delays [xe]] vbt t1_t3 2000 t8 1500 t9 2000 t10 500 t11_t12 6000
> > [ 2896.728387] xe 0000:00:02.0: [drm:pps_init_delays [xe]] spec t1_t3 2100 t8 500 t9 500 t10 5000 t11_t12 6100
> > [ 2896.728422] xe 0000:00:02.0: [drm:pps_init_delays [xe]] panel power up delay 200, power down delay 50, power cycle delay 600
> > [ 2896.728454] xe 0000:00:02.0: [drm:pps_init_delays [xe]] backlight on delay 150, off delay 200
> > [ 2896.728539] xe 0000:00:02.0: [drm:pps_init_registers [xe]] panel power sequencer register settings: PP_ON 0x7d00001, PP_OFF 0x1f40001, PP_DIV 0x60
> > [ 2896.728696] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling AUX_A
> > [ 2896.728846] xe 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [xe]] [ENCODER:312:DDI A/PHY A] PPS 0 turning VDD on
> > [ 2896.729008] xe 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [xe]] [ENCODER:312:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006f
> > [ 2896.729869] xe 0000:00:02.0: [drm:drm_dp_read_dpcd_caps [drm_display_helper]] AUX A/DDI A/PHY A: DPCD: 11 0a 82 41 00 00 01 00 02 02 06 00 00 0b 00
> > [ 2896.730482] xe 0000:00:02.0: [drm:drm_dp_read_desc [drm_display_helper]] AUX A/DDI A/PHY A: DP sink: OUI 00-00-00 dev-ID HW-rev 0.0 SW-rev 0.0 quirks 0x0000
> > [ 2896.730907] xe 0000:00:02.0: [drm:intel_dp_init_connector [xe]] eDP DPCD: 01 12 07
> > [ 2896.731412] xe 0000:00:02.0: [drm:intel_psr_init_dpcd [xe]] Panel replay is not supported by panel
> > [ 2896.737548] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] Assigning EDID-1.4 digital sink color depth as 6 bpc.
> > [ 2896.737559] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] ELD monitor
> > [ 2896.737561] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] ELD size 20, SAD count 0
> > [ 2896.737632] xe 0000:00:02.0: [drm:intel_panel_add_edid_fixed_modes [xe]] [CONNECTOR:313:eDP-1] using preferred EDID fixed mode: "1920x1080": 60 146500 1920 1968 2000 2180 1080 1083 1089 1120 0x48 0x9
> > [ 2896.737735] xe 0000:00:02.0: [drm:intel_panel_add_edid_fixed_modes [xe]] [CONNECTOR:313:eDP-1] using alternate EDID fixed mode: "1920x1080": 48 117200 1920 1968 2000 2180 1080 1083 1089 1120 0x40 0x9
> > [ 2896.737833] xe 0000:00:02.0: [drm:intel_dp_wait_source_oui [xe]] [CONNECTOR:313:eDP-1] Performing OUI wait (30 ms)
> > [ 2896.738346] xe 0000:00:02.0: [drm:intel_panel_init [xe]] [CONNECTOR:313:eDP-1] DRRS type: none
> > [ 2896.738441] xe 0000:00:02.0: [drm:cnp_setup_backlight [xe]] [CONNECTOR:313:eDP-1] Using native PCH PWM for backlight control (controller=0)
> > [ 2896.738517] xe 0000:00:02.0: [drm:intel_backlight_setup [xe]] [CONNECTOR:313:eDP-1] backlight initialized, enabled, brightness 96000/96000
> > [ 2896.738603] xe 0000:00:02.0: [drm:pps_init_delays [xe]] bios t1_t3 1 t8 1 t9 1 t10 500 t11_t12 6000
> > [ 2896.738668] xe 0000:00:02.0: [drm:pps_init_delays [xe]] vbt t1_t3 2000 t8 1500 t9 2000 t10 500 t11_t12 6000
> > [ 2896.738710] xe 0000:00:02.0: [drm:pps_init_delays [xe]] spec t1_t3 2100 t8 500 t9 500 t10 5000 t11_t12 6100
> > [ 2896.738746] xe 0000:00:02.0: [drm:pps_init_delays [xe]] panel power up delay 200, power down delay 50, power cycle delay 600
> > [ 2896.738782] xe 0000:00:02.0: [drm:pps_init_delays [xe]] backlight on delay 150, off delay 200
> > [ 2896.738917] xe 0000:00:02.0: [drm:pps_init_registers [xe]] panel power sequencer register settings: PP_ON 0x7d00001, PP_OFF 0x1f40001, PP_DIV 0x60
> > [ 2896.739702] xe 0000:00:02.0: [drm:intel_hdmi_init_connector [xe]] Adding HDMI connector on [ENCODER:321:DDI B/PHY B]
> > [ 2896.739810] xe 0000:00:02.0: [drm:intel_hdmi_init_connector [xe]] [ENCODER:321:DDI B/PHY B] Using DDC pin 0x2 (VBT)
> > [ 2896.740000] xe 0000:00:02.0: [drm:intel_dp_aux_ch [xe]] [ENCODER:330:DDI TC1/PHY TC1] Using AUX CH USBC1 (VBT)
> > [ 2896.740056] xe 0000:00:02.0: [drm:intel_ddi_init [xe]] VBT says port D is non-legacy TC and has HDMI (with DP: yes), assume it's non-legacy
> > [ 2896.740165] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling TC_cold_off
> > [ 2896.740371] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] TC cold block succeeded
> > [ 2896.740503] xe 0000:00:02.0: [drm:tc_phy_get_current_mode [xe]] Port D/TC#1: PHY mode: tbt-alt (ready: no, owned: no, HPD: disconnected)
> > [ 2896.740605] xe 0000:00:02.0: [drm:intel_dp_init_connector [xe]] Adding DP connector on [ENCODER:330:DDI TC1/PHY TC1]
> > [ 2896.760980] xe 0000:00:02.0: [drm:drm_dp_dpcd_access [drm_display_helper]] AUX USBC1/DDI TC1/PHY TC1: Too many retries, giving up. First error: -6
> > [ 2896.761009] xe 0000:00:02.0: [drm:intel_hdmi_init_connector [xe]] Adding HDMI connector on [ENCODER:330:DDI TC1/PHY TC1]
> > [ 2896.761066] xe 0000:00:02.0: [drm:intel_hdmi_init_connector [xe]] [ENCODER:330:DDI TC1/PHY TC1] Using DDC pin 0x9 (platform default)
> > [ 2896.761166] xe 0000:00:02.0: [drm:intel_dp_aux_ch [xe]] [ENCODER:343:DDI TC2/PHY TC2] Using AUX CH USBC2 (VBT)
> > [ 2896.761216] xe 0000:00:02.0: [drm:intel_ddi_init [xe]] VBT says port E is non-legacy TC and has HDMI (with DP: yes), assume it's non-legacy
> > [ 2896.761295] xe 0000:00:02.0: [drm:tc_phy_get_current_mode [xe]] Port E/TC#2: PHY mode: tbt-alt (ready: no, owned: no, HPD: disconnected)
> > [ 2896.761372] xe 0000:00:02.0: [drm:intel_dp_init_connector [xe]] Adding DP connector on [ENCODER:343:DDI TC2/PHY TC2]
> > [ 2896.781484] xe 0000:00:02.0: [drm:drm_dp_dpcd_access [drm_display_helper]] AUX USBC2/DDI TC2/PHY TC2: Too many retries, giving up. First error: -6
> > [ 2896.781505] xe 0000:00:02.0: [drm:intel_hdmi_init_connector [xe]] Adding HDMI connector on [ENCODER:343:DDI TC2/PHY TC2]
> > [ 2896.781557] xe 0000:00:02.0: [drm:intel_hdmi_init_connector [xe]] [ENCODER:343:DDI TC2/PHY TC2] Using DDC pin 0xa (platform default)
> > [ 2896.781857] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [CRTC:100:pipe A] hw state readout: enabled
> > [ 2896.781919] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [CRTC:170:pipe B] hw state readout: disabled
> > [ 2896.781967] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [CRTC:240:pipe C] hw state readout: disabled
> > [ 2896.782015] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [CRTC:310:pipe D] hw state readout: disabled
> > [ 2896.782049] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:32:plane 1A] hw state readout: enabled, pipe A
> > [ 2896.782081] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:41:plane 2A] hw state readout: disabled, pipe A
> > [ 2896.782111] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:50:plane 3A] hw state readout: disabled, pipe A
> > [ 2896.782140] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:59:plane 4A] hw state readout: disabled, pipe A
> > [ 2896.782168] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:68:plane 5A] hw state readout: disabled, pipe A
> > [ 2896.782196] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:77:plane 6A] hw state readout: disabled, pipe A
> > [ 2896.782224] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:86:plane 7A] hw state readout: disabled, pipe A
> > [ 2896.782251] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:95:cursor A] hw state readout: disabled, pipe A
> > [ 2896.782279] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:102:plane 1B] hw state readout: disabled, pipe B
> > [ 2896.782306] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:111:plane 2B] hw state readout: disabled, pipe B
> > [ 2896.782333] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:120:plane 3B] hw state readout: disabled, pipe B
> > [ 2896.782359] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:129:plane 4B] hw state readout: disabled, pipe B
> > [ 2896.782386] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:138:plane 5B] hw state readout: disabled, pipe B
> > [ 2896.782412] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:147:plane 6B] hw state readout: disabled, pipe B
> > [ 2896.782438] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:156:plane 7B] hw state readout: disabled, pipe B
> > [ 2896.782464] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:165:cursor B] hw state readout: disabled, pipe B
> > [ 2896.782490] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:172:plane 1C] hw state readout: disabled, pipe C
> > [ 2896.782516] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:181:plane 2C] hw state readout: disabled, pipe C
> > [ 2896.782542] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:190:plane 3C] hw state readout: disabled, pipe C
> > [ 2896.782568] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:199:plane 4C] hw state readout: disabled, pipe C
> > [ 2896.782594] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:208:plane 5C] hw state readout: disabled, pipe C
> > [ 2896.782629] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:217:plane 6C] hw state readout: disabled, pipe C
> > [ 2896.782661] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:226:plane 7C] hw state readout: disabled, pipe C
> > [ 2896.782693] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:235:cursor C] hw state readout: disabled, pipe C
> > [ 2896.782722] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:242:plane 1D] hw state readout: disabled, pipe D
> > [ 2896.782769] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:251:plane 2D] hw state readout: disabled, pipe D
> > [ 2896.782813] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:260:plane 3D] hw state readout: disabled, pipe D
> > [ 2896.782890] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:269:plane 4D] hw state readout: disabled, pipe D
> > [ 2896.782982] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:278:plane 5D] hw state readout: disabled, pipe D
> > [ 2896.783025] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:287:plane 6D] hw state readout: disabled, pipe D
> > [ 2896.783099] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:296:plane 7D] hw state readout: disabled, pipe D
> > [ 2896.783153] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:305:cursor D] hw state readout: disabled, pipe D
> > [ 2896.783212] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [ENCODER:312:DDI A/PHY A] hw state readout: enabled, pipe A
> > [ 2896.783244] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [ENCODER:321:DDI B/PHY B] hw state readout: disabled, pipe A
> > [ 2896.783317] xe 0000:00:02.0: [drm:intel_tc_port_sanitize_mode [xe]] Port D/TC#1: sanitize mode (disconnected)
> > [ 2896.783390] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [ENCODER:330:DDI TC1/PHY TC1] hw state readout: disabled, pipe A
> > [ 2896.783425] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [ENCODER:332:DP-MST A] hw state readout: disabled, pipe A
> > [ 2896.783502] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [ENCODER:333:DP-MST B] hw state readout: disabled, pipe B
> > [ 2896.783605] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [ENCODER:334:DP-MST C] hw state readout: disabled, pipe C
> > [ 2896.783644] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [ENCODER:335:DP-MST D] hw state readout: disabled, pipe D
> > [ 2896.783682] xe 0000:00:02.0: [drm:intel_power_well_disable [xe]] disabling TC_cold_off
> > [ 2896.783924] xe 0000:00:02.0: [drm:__intel_display_power_put_domain [xe]] TC cold unblock succeeded
> > [ 2896.783988] xe 0000:00:02.0: [drm:intel_tc_port_sanitize_mode [xe]] Port E/TC#2: sanitize mode (disconnected)
> > [ 2896.784079] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [ENCODER:343:DDI TC2/PHY TC2] hw state readout: disabled, pipe A
> > [ 2896.784126] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [ENCODER:345:DP-MST A] hw state readout: disabled, pipe A
> > [ 2896.784162] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [ENCODER:346:DP-MST B] hw state readout: disabled, pipe B
> > [ 2896.784195] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [ENCODER:347:DP-MST C] hw state readout: disabled, pipe C
> > [ 2896.784227] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [ENCODER:348:DP-MST D] hw state readout: disabled, pipe D
> > [ 2896.784270] xe 0000:00:02.0: [drm:intel_reference_shared_dpll_crtc [xe]] [CRTC:100:pipe A] reserving DPLL 0
> > [ 2896.784317] xe 0000:00:02.0: [drm:intel_dpll_readout_hw_state [xe]] DPLL 0 hw state readout: pipe_mask 0x1, on 1
> > [ 2896.784357] xe 0000:00:02.0: [drm:intel_dpll_readout_hw_state [xe]] DPLL 1 hw state readout: pipe_mask 0x0, on 0
> > [ 2896.784391] xe 0000:00:02.0: [drm:intel_dpll_readout_hw_state [xe]] TBT PLL hw state readout: pipe_mask 0x0, on 0
> > [ 2896.784423] xe 0000:00:02.0: [drm:intel_dpll_readout_hw_state [xe]] TC PLL 1 hw state readout: pipe_mask 0x0, on 0
> > [ 2896.784455] xe 0000:00:02.0: [drm:intel_dpll_readout_hw_state [xe]] TC PLL 2 hw state readout: pipe_mask 0x0, on 0
> > [ 2896.784486] xe 0000:00:02.0: [drm:intel_dpll_readout_hw_state [xe]] TC PLL 3 hw state readout: pipe_mask 0x0, on 0
> > [ 2896.784517] xe 0000:00:02.0: [drm:intel_dpll_readout_hw_state [xe]] TC PLL 4 hw state readout: pipe_mask 0x0, on 0
> > [ 2896.784548] xe 0000:00:02.0: [drm:intel_dpll_readout_hw_state [xe]] TC PLL 5 hw state readout: pipe_mask 0x0, on 0
> > [ 2896.784578] xe 0000:00:02.0: [drm:intel_dpll_readout_hw_state [xe]] TC PLL 6 hw state readout: pipe_mask 0x0, on 0
> > [ 2896.784683] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [CONNECTOR:313:eDP-1] hw state readout: enabled
> > [ 2896.784756] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [CONNECTOR:322:HDMI-A-1] hw state readout: disabled
> > [ 2896.784799] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [CONNECTOR:331:DP-1] hw state readout: disabled
> > [ 2896.784854] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [CONNECTOR:340:HDMI-A-2] hw state readout: disabled
> > [ 2896.784888] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [CONNECTOR:344:DP-2] hw state readout: disabled
> > [ 2896.784929] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [CONNECTOR:352:HDMI-A-3] hw state readout: disabled
> > [ 2896.785067] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:32:plane 1A] min_cdclk 73250 kHz
> > [ 2896.785096] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:41:plane 2A] min_cdclk 0 kHz
> > [ 2896.785126] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:50:plane 3A] min_cdclk 0 kHz
> > [ 2896.785152] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:59:plane 4A] min_cdclk 0 kHz
> > [ 2896.785179] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:68:plane 5A] min_cdclk 0 kHz
> > [ 2896.785205] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:77:plane 6A] min_cdclk 0 kHz
> > [ 2896.785231] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:86:plane 7A] min_cdclk 0 kHz
> > [ 2896.785256] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:95:cursor A] min_cdclk 0 kHz
> > [ 2896.785284] xe 0000:00:02.0: [drm:intel_bw_crtc_update [xe]] pipe A data rate 586000 num active planes 1
> > [ 2896.785332] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:102:plane 1B] min_cdclk 0 kHz
> > [ 2896.785360] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:111:plane 2B] min_cdclk 0 kHz
> > [ 2896.785386] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:120:plane 3B] min_cdclk 0 kHz
> > [ 2896.785413] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:129:plane 4B] min_cdclk 0 kHz
> > [ 2896.785440] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:138:plane 5B] min_cdclk 0 kHz
> > [ 2896.785467] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:147:plane 6B] min_cdclk 0 kHz
> > [ 2896.785493] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:156:plane 7B] min_cdclk 0 kHz
> > [ 2896.785520] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:165:cursor B] min_cdclk 0 kHz
> > [ 2896.785546] xe 0000:00:02.0: [drm:intel_bw_crtc_update [xe]] pipe B data rate 0 num active planes 0
> > [ 2896.785586] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:172:plane 1C] min_cdclk 0 kHz
> > [ 2896.785614] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:181:plane 2C] min_cdclk 0 kHz
> > [ 2896.785656] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:190:plane 3C] min_cdclk 0 kHz
> > [ 2896.785684] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:199:plane 4C] min_cdclk 0 kHz
> > [ 2896.785713] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:208:plane 5C] min_cdclk 0 kHz
> > [ 2896.785740] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:217:plane 6C] min_cdclk 0 kHz
> > [ 2896.785768] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:226:plane 7C] min_cdclk 0 kHz
> > [ 2896.785799] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:235:cursor C] min_cdclk 0 kHz
> > [ 2896.785854] xe 0000:00:02.0: [drm:intel_bw_crtc_update [xe]] pipe C data rate 0 num active planes 0
> > [ 2896.785952] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:242:plane 1D] min_cdclk 0 kHz
> > [ 2896.786009] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:251:plane 2D] min_cdclk 0 kHz
> > [ 2896.786041] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:260:plane 3D] min_cdclk 0 kHz
> > [ 2896.786076] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:269:plane 4D] min_cdclk 0 kHz
> > [ 2896.786105] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:278:plane 5D] min_cdclk 0 kHz
> > [ 2896.786170] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:287:plane 6D] min_cdclk 0 kHz
> > [ 2896.786205] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:296:plane 7D] min_cdclk 0 kHz
> > [ 2896.786234] xe 0000:00:02.0: [drm:intel_modeset_setup_hw_state [xe]] [PLANE:305:cursor D] min_cdclk 0 kHz
> > [ 2896.786293] xe 0000:00:02.0: [drm:intel_bw_crtc_update [xe]] pipe D data rate 0 num active planes 0
> > [ 2896.786371] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling DDI_IO_A
> > [ 2896.807669] xe 0000:00:02.0: [drm] [CRTC:100:pipe A] enable: yes [setup_hw_state]
> > [ 2896.807675] xe 0000:00:02.0: [drm] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
> > [ 2896.807677] xe 0000:00:02.0: [drm] cpu_transcoder: A, pipe bpp: 18, dithering: 0
> > [ 2896.807679] xe 0000:00:02.0: [drm] MST master transcoder: <invalid>
> > [ 2896.807681] xe 0000:00:02.0: [drm] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
> > [ 2896.807682] xe 0000:00:02.0: [drm] bigjoiner: no, pipes: 0x0
> > [ 2896.807684] xe 0000:00:02.0: [drm] splitter: disabled, link count 0, overlap 0
> > [ 2896.807686] xe 0000:00:02.0: [drm] dp m_n: lanes: 2; data_m: 5120546, data_n: 8388608, link_m: 284474, link_n: 524288, tu: 64
> > [ 2896.807688] xe 0000:00:02.0: [drm] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
> > [ 2896.807690] xe 0000:00:02.0: [drm] fec: disabled, enhanced framing: enabled
> > [ 2896.807692] xe 0000:00:02.0: [drm] sdp split: disabled
> > [ 2896.807693] xe 0000:00:02.0: [drm] psr: disabled, psr2: disabled, panel replay: disabled, selective fetch: disabled
> > [ 2896.807695] xe 0000:00:02.0: [drm] framestart delay: 1, MSA timing delay: 0
> > [ 2896.807697] xe 0000:00:02.0: [drm] audio: 0, infoframes: 0, infoframes enabled: 0x0
> > [ 2896.807699] xe 0000:00:02.0: [drm] vrr: no, vmin: 0, vmax: 0, pipeline full: 0, guardband: 0 flipline: 0, vmin vblank: -1, vmax vblank: -2
> > [ 2896.807701] xe 0000:00:02.0: [drm] requested mode: "1920x1080": 60 146500 1920 1968 2000 2180 1080 1083 1089 1120 0x40 0x9
> > [ 2896.807704] xe 0000:00:02.0: [drm] adjusted mode: "1920x1080": 60 146500 1920 1968 2000 2180 1080 1083 1089 1120 0x40 0x9
> > [ 2896.807706] xe 0000:00:02.0: [drm] crtc timings: clock=146500, hd=1920 hb=1920-2180 hs=1968-2000 ht=2180, vd=1080 vb=1080-1120 vs=1083-1089 vt=1120, flags=0x9
> > [ 2896.807709] xe 0000:00:02.0: [drm] pipe mode: "1920x1080": 60 146500 1920 1968 2000 2180 1080 1083 1089 1120 0x40 0x9
> > [ 2896.807711] xe 0000:00:02.0: [drm] crtc timings: clock=146500, hd=1920 hb=1920-2180 hs=1968-2000 ht=2180, vd=1080 vb=1080-1120 vs=1083-1089 vt=1120, flags=0x9
> > [ 2896.807714] xe 0000:00:02.0: [drm] port clock: 270000, pipe src: 1920x1080+0+0, pixel rate 146500
> > [ 2896.807716] xe 0000:00:02.0: [drm] linetime: 120, ips linetime: 0
> > [ 2896.807717] xe 0000:00:02.0: [drm] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0
> > [ 2896.807719] xe 0000:00:02.0: [drm] pch pfit: 0x0+0+0, disabled, force thru: no
> > [ 2896.807721] xe 0000:00:02.0: [drm] ips: 0, double wide: 0, drrs: 0
> > [ 2896.807724] xe 0000:00:02.0: [drm] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
> > [ 2896.807727] xe 0000:00:02.0: [drm] csc_mode: 0x20000000 gamma_mode: 0x20000000 gamma_enable: 0 csc_enable: 0
> > [ 2896.807729] xe 0000:00:02.0: [drm] pre csc lut: 0 entries, post csc lut: 0 entries
> > [ 2896.807730] xe 0000:00:02.0: [drm] output csc: pre offsets: 0x0000 0x0000 0x0000
> > [ 2896.807732] xe 0000:00:02.0: [drm] output csc: coefficients: 0x0000 0x0000 0x0000
> > [ 2896.807734] xe 0000:00:02.0: [drm] output csc: coefficients: 0x0000 0x0000 0x0000
> > [ 2896.807736] xe 0000:00:02.0: [drm] output csc: coefficients: 0x0000 0x0000 0x0000
> > [ 2896.807737] xe 0000:00:02.0: [drm] output csc: post offsets: 0x0000 0x0000 0x0000
> > [ 2896.807739] xe 0000:00:02.0: [drm] pipe csc: pre offsets: 0x0000 0x0000 0x0000
> > [ 2896.807740] xe 0000:00:02.0: [drm] pipe csc: coefficients: 0x0000 0x0000 0x0000
> > [ 2896.807742] xe 0000:00:02.0: [drm] pipe csc: coefficients: 0x0000 0x0000 0x0000
> > [ 2896.807744] xe 0000:00:02.0: [drm] pipe csc: coefficients: 0x0000 0x0000 0x0000
> > [ 2896.807745] xe 0000:00:02.0: [drm] pipe csc: post offsets: 0x0000 0x0000 0x0000
> > [ 2896.807747] xe 0000:00:02.0: [drm] [CRTC:170:pipe B] enable: no [setup_hw_state]
> > [ 2896.807749] xe 0000:00:02.0: [drm] [CRTC:240:pipe C] enable: no [setup_hw_state]
> > [ 2896.807751] xe 0000:00:02.0: [drm] [CRTC:310:pipe D] enable: no [setup_hw_state]
> > [ 2896.807777] xe 0000:00:02.0: [drm:skl_wm_get_hw_state_and_sanitize [xe]] [CRTC:100:pipe A] dbuf slices 0x1, ddb (0 - 682), active pipes 0x1, mbus joined: no
> > [ 2896.807843] xe 0000:00:02.0: [drm:skl_wm_get_hw_state_and_sanitize [xe]] [CRTC:170:pipe B] dbuf slices 0x0, ddb (0 - 0), active pipes 0x1, mbus joined: no
> > [ 2896.807880] xe 0000:00:02.0: [drm:skl_wm_get_hw_state_and_sanitize [xe]] [CRTC:240:pipe C] dbuf slices 0x0, ddb (0 - 0), active pipes 0x1, mbus joined: no
> > [ 2896.807912] xe 0000:00:02.0: [drm:skl_wm_get_hw_state_and_sanitize [xe]] [CRTC:310:pipe D] dbuf slices 0x0, ddb (0 - 0), active pipes 0x1, mbus joined: no
> > [ 2896.808000] xe 0000:00:02.0: [drm:skl_get_initial_plane_config [xe]] pipe A/plane 1A with fb: size=1920x1080 at 32, offset=0, pitch 7680, size 0x7e9000
> > [ 2896.928720] xe 0000:00:02.0: [drm] vcs1 fused off
> > [ 2896.928723] xe 0000:00:02.0: [drm] vcs3 fused off
> > [ 2896.928724] xe 0000:00:02.0: [drm] vcs4 fused off
> > [ 2896.928725] xe 0000:00:02.0: [drm] vcs5 fused off
> > [ 2896.928726] xe 0000:00:02.0: [drm] vcs6 fused off
> > [ 2896.928727] xe 0000:00:02.0: [drm] vcs7 fused off
> > [ 2896.928728] xe 0000:00:02.0: [drm] vecs1 fused off
> > [ 2896.928730] xe 0000:00:02.0: [drm] vecs2 fused off
> > [ 2896.928731] xe 0000:00:02.0: [drm] vecs3 fused off
> > [ 2896.929592] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: Applying GT save-restore MMIOs
> > [ 2896.929665] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: REG[0x9424] = 0xfffffffc
> > [ 2896.929736] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: REG[0x9550] = 0x000003ff
> > [ 2896.929804] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: flag:0x3
> > [ 2896.929868] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: mocs entries: 64
> > [ 2896.929918] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[0] 0x4000 0x37
> > [ 2896.929949] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[1] 0x4004 0x37
> > [ 2896.929979] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[2] 0x4008 0x37
> > [ 2896.930007] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[3] 0x400c 0x5
> > [ 2896.930037] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[4] 0x4010 0x5
> > [ 2896.930065] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[5] 0x4014 0x37
> > [ 2896.930092] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[6] 0x4018 0x17
> > [ 2896.930120] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[7] 0x401c 0x17
> > [ 2896.930147] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[8] 0x4020 0x27
> > [ 2896.930186] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[9] 0x4024 0x27
> > [ 2896.930214] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[10] 0x4028 0x77
> > [ 2896.930240] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[11] 0x402c 0x77
> > [ 2896.930267] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[12] 0x4030 0x57
> > [ 2896.930298] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[13] 0x4034 0x57
> > [ 2896.930325] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[14] 0x4038 0x67
> > [ 2896.930351] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[15] 0x403c 0x67
> > [ 2896.930378] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[16] 0x4040 0x37
> > [ 2896.930423] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[17] 0x4044 0x37
> > [ 2896.930447] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[18] 0x4048 0x60037
> > [ 2896.930471] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[19] 0x404c 0x737
> > [ 2896.930505] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[20] 0x4050 0x337
> > [ 2896.930529] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[21] 0x4054 0x137
> > [ 2896.930553] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[22] 0x4058 0x3b7
> > [ 2896.930577] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[23] 0x405c 0x7b7
> > [ 2896.930601] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[24] 0x4060 0x37
> > [ 2896.930632] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[25] 0x4064 0x37
> > [ 2896.930727] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[26] 0x4068 0x37
> > [ 2896.930753] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[27] 0x406c 0x37
> > [ 2896.930780] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[28] 0x4070 0x37
> > [ 2896.930811] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[29] 0x4074 0x37
> > [ 2896.930855] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[30] 0x4078 0x37
> > [ 2896.930900] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[31] 0x407c 0x37
> > [ 2896.930960] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[32] 0x4080 0x37
> > [ 2896.930989] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[33] 0x4084 0x37
> > [ 2896.931023] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[34] 0x4088 0x37
> > [ 2896.931051] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[35] 0x408c 0x37
> > [ 2896.931078] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[36] 0x4090 0x37
> > [ 2896.931135] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[37] 0x4094 0x37
> > [ 2896.931162] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[38] 0x4098 0x37
> > [ 2896.931217] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[39] 0x409c 0x37
> > [ 2896.931244] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[40] 0x40a0 0x37
> > [ 2896.931301] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[41] 0x40a4 0x37
> > [ 2896.931328] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[42] 0x40a8 0x37
> > [ 2896.931378] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[43] 0x40ac 0x37
> > [ 2896.931405] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[44] 0x40b0 0x37
> > [ 2896.931522] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[45] 0x40b4 0x37
> > [ 2896.931582] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[46] 0x40b8 0x37
> > [ 2896.931613] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[47] 0x40bc 0x37
> > [ 2896.931652] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[48] 0x40c0 0x37
> > [ 2896.931680] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[49] 0x40c4 0x5
> > [ 2896.931710] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[50] 0x40c8 0x37
> > [ 2896.931737] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[51] 0x40cc 0x5
> > [ 2896.931764] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[52] 0x40d0 0x37
> > [ 2896.931821] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[53] 0x40d4 0x37
> > [ 2896.931887] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[54] 0x40d8 0x37
> > [ 2896.931932] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[55] 0x40dc 0x37
> > [ 2896.931991] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[56] 0x40e0 0x37
> > [ 2896.932020] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[57] 0x40e4 0x37
> > [ 2896.932047] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[58] 0x40e8 0x37
> > [ 2896.932106] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[59] 0x40ec 0x37
> > [ 2896.932134] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[60] 0x40f0 0x37
> > [ 2896.932161] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[61] 0x40f4 0x5
> > [ 2896.932189] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[62] 0x40f8 0x37
> > [ 2896.932216] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: GLOB_MOCS[63] 0x40fc 0x37
> > [ 2896.932243] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: l3cc entries: 64
> > [ 2896.932271] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[0] 0xb020 0x300030
> > [ 2896.932298] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[1] 0xb024 0x100030
> > [ 2896.932325] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[2] 0xb028 0x100030
> > [ 2896.932352] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[3] 0xb02c 0x300010
> > [ 2896.932379] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[4] 0xb030 0x300010
> > [ 2896.932405] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[5] 0xb034 0x300010
> > [ 2896.932432] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[6] 0xb038 0x300010
> > [ 2896.932461] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[7] 0xb03c 0x300010
> > [ 2896.932488] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[8] 0xb040 0x300030
> > [ 2896.932515] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[9] 0xb044 0x300030
> > [ 2896.932541] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[10] 0xb048 0x300030
> > [ 2896.932568] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[11] 0xb04c 0x300030
> > [ 2896.932595] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[12] 0xb050 0x300030
> > [ 2896.932631] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[13] 0xb054 0x300030
> > [ 2896.932657] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[14] 0xb058 0x300030
> > [ 2896.932686] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[15] 0xb05c 0x300030
> > [ 2896.932712] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[16] 0xb060 0x300030
> > [ 2896.932738] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[17] 0xb064 0x300030
> > [ 2896.932774] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[18] 0xb068 0x300030
> > [ 2896.932800] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[19] 0xb06c 0x300030
> > [ 2896.932882] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[20] 0xb070 0x300030
> > [ 2896.932972] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[21] 0xb074 0x300030
> > [ 2896.933007] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[22] 0xb078 0x300030
> > [ 2896.933034] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[23] 0xb07c 0x300030
> > [ 2896.933061] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[24] 0xb080 0x300030
> > [ 2896.933099] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[25] 0xb084 0x100010
> > [ 2896.933128] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[26] 0xb088 0x300030
> > [ 2896.933185] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[27] 0xb08c 0x300030
> > [ 2896.933215] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[28] 0xb090 0x300030
> > [ 2896.933269] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[29] 0xb094 0x300030
> > [ 2896.933298] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[30] 0xb098 0x300010
> > [ 2896.933357] xe 0000:00:02.0: [drm:xe_mocs_init [xe]] GT0: LNCFCMOCS[31] 0xb09c 0x100010
> > [ 2896.933386] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: Applying rcs0 save-restore MMIOs
> > [ 2896.933436] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: REG[0x2050] = 0x10801080
> > [ 2896.933474] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: REG[0x20a0] = 0x24a80000
> > [ 2896.933542] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: REG[0x20c4] = 0x3f7e0306
> > [ 2896.933577] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: REG[0x20e0] = 0x40004000
> > [ 2896.933609] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: REG[0x20ec] = 0x00020002
> > [ 2896.933655] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: REG[0xe18c] = 0x80018001
> > [ 2896.933688] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: REG[0xe48c] = 0x02000200
> > [ 2896.933721] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: REG[0xe4f4] = 0x41004100
> > [ 2896.933756] xe 0000:00:02.0: [drm:xe_reg_sr_apply_whitelist [xe]] Whitelisting rcs0 registers
> > [ 2896.933842] xe 0000:00:02.0: [drm] REG[0x2340-0x235f]: allow read access
> > [ 2896.933859] xe 0000:00:02.0: [drm] REG[0x7010-0x7017]: allow rw access
> > [ 2896.933874] xe 0000:00:02.0: [drm] REG[0x7018-0x701f]: allow rw access
> > [ 2896.933897] xe 0000:00:02.0: [drm] REG[0xdafc-0xdaff]: allow read access
> > [ 2896.933903] xe 0000:00:02.0: [drm] REG[0xdb00-0xdb1f]: allow read access
> > [ 2896.933908] xe 0000:00:02.0: [drm] REG[0xdb1c-0xdb1f]: allow rw access
> > [ 2896.934214] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: Applying bcs0 save-restore MMIOs
> > [ 2896.934270] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: REG[0x220c4] = 0x3f7e0306
> > [ 2896.934313] xe 0000:00:02.0: [drm:xe_reg_sr_apply_whitelist [xe]] Whitelisting bcs0 registers
> > [ 2896.934349] xe 0000:00:02.0: [drm] REG[0x223a8-0x223af]: allow read access
> > [ 2896.934472] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: Applying vcs0 save-restore MMIOs
> > [ 2896.934506] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: REG[0x1c00c4] = 0x3f7e0306
> > [ 2896.934560] xe 0000:00:02.0: [drm:xe_reg_sr_apply_whitelist [xe]] Whitelisting vcs0 registers
> > [ 2896.934592] xe 0000:00:02.0: [drm] REG[0x1c03a8-0x1c03af]: allow read access
> > [ 2896.934743] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: Applying vcs2 save-restore MMIOs
> > [ 2896.934807] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: REG[0x1d00c4] = 0x3f7e0306
> > [ 2896.934848] xe 0000:00:02.0: [drm:xe_reg_sr_apply_whitelist [xe]] Whitelisting vcs2 registers
> > [ 2896.934887] xe 0000:00:02.0: [drm] REG[0x1d03a8-0x1d03af]: allow read access
> > [ 2896.935081] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: Applying vecs0 save-restore MMIOs
> > [ 2896.935143] xe 0000:00:02.0: [drm:xe_reg_sr_apply_mmio [xe]] GT0: REG[0x1c80c4] = 0x3f7e0306
> > [ 2896.935185] xe 0000:00:02.0: [drm:xe_reg_sr_apply_whitelist [xe]] Whitelisting vecs0 registers
> > [ 2896.935218] xe 0000:00:02.0: [drm] REG[0x1c83a8-0x1c83af]: allow read access
> > [ 2896.935357] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 0] = 0x00252fd3
> > [ 2896.935403] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 1] = 0x00044000
> > [ 2896.935439] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 2] = 0x00000004
> > [ 2896.935470] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 3] = 0x00000003
> > [ 2896.935500] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 4] = 0x000004d2
> > [ 2896.935528] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 5] = 0x9a490001
> > [ 2896.935556] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 6] = 0x00000000
> > [ 2896.935584] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 7] = 0x00000000
> > [ 2896.935611] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 8] = 0x00000000
> > [ 2896.935655] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[ 9] = 0x00000000
> > [ 2896.935683] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[10] = 0x00000000
> > [ 2896.935711] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[11] = 0x00000000
> > [ 2896.935745] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[12] = 0x00000000
> > [ 2896.935772] xe 0000:00:02.0: [drm:guc_print_params [xe]] GT0: GuC param[13] = 0x00000000
> > [ 2896.935904] xe 0000:00:02.0: [drm] GT0: using 65535 GUC IDs
> > [ 2896.943140] xe 0000:00:02.0: [drm:xe_guc_db_mgr_init [xe]] GT0: using 256 doorbells
> > [ 2896.946550] xe 0000:00:02.0: [drm:__xe_guc_upload.isra.0 [xe]] GT0: GuC successfully loaded
> > [ 2896.946811] xe 0000:00:02.0: [drm:xe_guc_ct_enable [xe]] GT0: GuC CT communication channel enabled
> > [ 2896.947138] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: LRC WA rcs0 save-restore batch
> > [ 2896.947186] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x2580] = 0x00060002
> > [ 2896.947225] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x6604] = 0xe0000007
> > [ 2896.947260] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x7018] = 0x20002000
> > [ 2896.947291] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x7300] = 0x00400040
> > [ 2896.947321] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x7304] = 0x02000200
> > [ 2896.947356] xe 0000:00:02.0: [drm:xe_lrc_emit_hwe_state_instructions [xe]] GT0: No non-register state to emit on graphics ver 12.00
> > [ 2896.949418] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: LRC WA bcs0 save-restore batch
> > [ 2896.949494] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x2580] = 0x00060002
> > [ 2896.949555] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x7018] = 0x20002000
> > [ 2896.949604] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x7300] = 0x00400040
> > [ 2896.949668] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x7304] = 0x02000200
> > [ 2896.949722] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x22204] = 0x00000606
> > [ 2896.951216] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: LRC WA vcs0 save-restore batch
> > [ 2896.951295] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x2580] = 0x00060002
> > [ 2896.951367] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x7018] = 0x20002000
> > [ 2896.951430] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x7300] = 0x00400040
> > [ 2896.951478] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x7304] = 0x02000200
> > [ 2896.952808] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: LRC WA vecs0 save-restore batch
> > [ 2896.952894] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x2580] = 0x00060002
> > [ 2896.952972] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x7018] = 0x20002000
> > [ 2896.953031] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x7300] = 0x00400040
> > [ 2896.953077] xe 0000:00:02.0: [drm:xe_gt_record_default_lrcs [xe]] GT0: REG[0x7304] = 0x02000200
> > [ 2896.960670] xe 0000:00:02.0: [drm:xe_huc_auth [xe]] HuC authenticated via GuC
> > [ 2896.960832] xe 0000:00:02.0: [drm:i915_hdcp_component_bind [xe]] I915 HDCP comp bind
> > [ 2896.960913] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [xe])
> > [ 2896.961082] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [CRTC:100:pipe A] dbuf slices 0x1 -> 0x3, ddb (0 - 682) -> (0 - 2048), active pipes 0x1 -> 0x1
> > [ 2896.961254] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [CRTC:100:pipe A] dbuf slices 0x1 -> 0x3, ddb (0 - 682) -> (0 - 2048), active pipes 0x1 -> 0x1
> > [ 2896.961333] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:32:plane 1A] ddb ( 0 - 682) -> ( 0 - 2016), size 682 -> 2016
> > [ 2896.961394] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:95:cursor A] ddb ( 0 - 0) -> (2016 - 2048), size 0 -> 32
> > [ 2896.961453] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:32:plane 1A] level *wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm,*swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5,*wm6,*wm7, twm,*swm, stwm
> > [ 2896.961513] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:32:plane 1A] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 -> 1, 4, 4, 4, 4, 5, 8, 8, 0, 2, 0
> > [ 2896.961573] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:32:plane 1A] blocks 17, 17, 7, 7, 7, 7, 7, 7, 7, 17, 7 -> 16, 65, 65, 65, 65, 81, 129, 129, 0, 19, 0
> > [ 2896.961647] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:32:plane 1A] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 19, 73, 73, 73, 73, 91, 143, 143, 0, 22, 0
> > [ 2896.961714] xe 0000:00:02.0: [drm:intel_bw_atomic_check [xe]] QGV point 0: max bw 6876 required 586
> > [ 2896.961815] xe 0000:00:02.0: [drm:intel_bw_atomic_check [xe]] QGV point 1: max bw 6876 required 586
> > [ 2896.961864] xe 0000:00:02.0: [drm:intel_bw_atomic_check [xe]] QGV point 2: max bw 9704 required 586
> > [ 2896.961899] xe 0000:00:02.0: [drm:intel_bw_atomic_check [xe]] QGV point 3: max bw 8307 required 586
> > [ 2896.961955] xe 0000:00:02.0: [drm:intel_bw_calc_min_cdclk [xe]] new bandwidth min cdclk (11446 kHz) > old min cdclk (0 kHz)
> > [ 2896.962249] xe 0000:00:02.0: [drm:intel_modeset_verify_disabled [xe]] [ENCODER:312:DDI A/PHY A]
> > [ 2896.962314] xe 0000:00:02.0: [drm:intel_modeset_verify_disabled [xe]] [ENCODER:321:DDI B/PHY B]
> > [ 2896.962373] xe 0000:00:02.0: [drm:intel_modeset_verify_disabled [xe]] [ENCODER:330:DDI TC1/PHY TC1]
> > [ 2896.962431] xe 0000:00:02.0: [drm:intel_modeset_verify_disabled [xe]] [ENCODER:332:DP-MST A]
> > [ 2896.962489] xe 0000:00:02.0: [drm:intel_modeset_verify_disabled [xe]] [ENCODER:333:DP-MST B]
> > [ 2896.962547] xe 0000:00:02.0: [drm:intel_modeset_verify_disabled [xe]] [ENCODER:334:DP-MST C]
> > [ 2896.962604] xe 0000:00:02.0: [drm:intel_modeset_verify_disabled [xe]] [ENCODER:335:DP-MST D]
> > [ 2896.962660] xe 0000:00:02.0: [drm:intel_modeset_verify_disabled [xe]] [ENCODER:343:DDI TC2/PHY TC2]
> > [ 2896.962712] xe 0000:00:02.0: [drm:intel_modeset_verify_disabled [xe]] [ENCODER:345:DP-MST A]
> > [ 2896.962776] xe 0000:00:02.0: [drm:intel_modeset_verify_disabled [xe]] [ENCODER:346:DP-MST B]
> > [ 2896.962811] xe 0000:00:02.0: [drm:intel_modeset_verify_disabled [xe]] [ENCODER:347:DP-MST C]
> > [ 2896.962882] xe 0000:00:02.0: [drm:intel_modeset_verify_disabled [xe]] [ENCODER:348:DP-MST D]
> > [ 2896.963252] xe 0000:00:02.0: [drm:intel_fbc_update [xe]] reserved 17694720 bytes of contiguous stolen space for FBC, limit: 1
> > [ 2896.963306] xe 0000:00:02.0: [drm:intel_fbc_update [xe]] Enabling FBC on [PLANE:32:plane 1A]
> > [ 2896.969730] xe 0000:00:02.0: [drm:intel_sagv_post_plane_update [xe]] Relaxing QGV points: 0xb -> 0x0
> > [ 2896.969973] xe 0000:00:02.0: [drm:intel_fbdev_init [xe]] found possible fb from [PLANE:32:plane 1A]
> > [ 2896.970027] xe 0000:00:02.0: [drm:intel_fbdev_init [xe]] [CRTC:170:pipe B] not active, skipping
> > [ 2896.970069] xe 0000:00:02.0: [drm:intel_fbdev_init [xe]] [CRTC:240:pipe C] not active, skipping
> > [ 2896.970109] xe 0000:00:02.0: [drm:intel_fbdev_init [xe]] [CRTC:310:pipe D] not active, skipping
> > [ 2896.970146] xe 0000:00:02.0: [drm:intel_fbdev_init [xe]] checking [PLANE:32:plane 1A] for BIOS fb
> > [ 2896.970180] xe 0000:00:02.0: [drm:intel_fbdev_init [xe]] [CRTC:100:pipe A] area: 1920x1080, bpp: 32, size: 8294400
> > [ 2896.970212] xe 0000:00:02.0: [drm:intel_fbdev_init [xe]] fb big enough [PLANE:32:plane 1A] (8294400 >= 8294400)
> > [ 2896.970242] xe 0000:00:02.0: [drm:intel_fbdev_init [xe]] [CRTC:170:pipe B] not active, skipping
> > [ 2896.970273] xe 0000:00:02.0: [drm:intel_fbdev_init [xe]] [CRTC:240:pipe C] not active, skipping
> > [ 2896.970302] xe 0000:00:02.0: [drm:intel_fbdev_init [xe]] [CRTC:310:pipe D] not active, skipping
> > [ 2896.970331] xe 0000:00:02.0: [drm:intel_fbdev_init [xe]] using BIOS fb for initial console
> > [ 2896.972713] xe 0000:00:02.0: [drm:drm_sysfs_connector_add] [CONNECTOR:313:eDP-1] adding connector to sysfs
> > [ 2896.974244] xe 0000:00:02.0: [drm:intel_backlight_device_register [xe]] [CONNECTOR:313:eDP-1] backlight device intel_backlight registered
> > [ 2896.974445] xe 0000:00:02.0: [drm:intel_dp_connector_register [xe]] registering AUX A/DDI A/PHY A bus for card0-eDP-1
> > [ 2896.975289] xe 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event] [CONNECTOR:313:eDP-1] generating connector hotplug event
> > [ 2896.975364] xe 0000:00:02.0: [drm:drm_sysfs_connector_add] [CONNECTOR:322:HDMI-A-1] adding connector to sysfs
> > [ 2896.975658] xe 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event] [CONNECTOR:322:HDMI-A-1] generating connector hotplug event
> > [ 2896.975833] xe 0000:00:02.0: [drm:drm_sysfs_connector_add] [CONNECTOR:331:DP-1] adding connector to sysfs
> > [ 2896.976212] xe 0000:00:02.0: [drm:intel_dp_connector_register [xe]] registering AUX USBC1/DDI TC1/PHY TC1 bus for card0-DP-1
> > [ 2896.976814] xe 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event] [CONNECTOR:331:DP-1] generating connector hotplug event
> > [ 2896.976864] xe 0000:00:02.0: [drm:drm_sysfs_connector_add] [CONNECTOR:340:HDMI-A-2] adding connector to sysfs
> > [ 2896.977171] xe 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event] [CONNECTOR:340:HDMI-A-2] generating connector hotplug event
> > [ 2896.977218] xe 0000:00:02.0: [drm:drm_sysfs_connector_add] [CONNECTOR:344:DP-2] adding connector to sysfs
> > [ 2896.977564] xe 0000:00:02.0: [drm:intel_dp_connector_register [xe]] registering AUX USBC2/DDI TC2/PHY TC2 bus for card0-DP-2
> > [ 2896.978110] xe 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event] [CONNECTOR:344:DP-2] generating connector hotplug event
> > [ 2896.978157] xe 0000:00:02.0: [drm:drm_sysfs_connector_add] [CONNECTOR:352:HDMI-A-3] adding connector to sysfs
> > [ 2896.978434] xe 0000:00:02.0: [drm:drm_sysfs_connector_hotplug_event] [CONNECTOR:352:HDMI-A-3] generating connector hotplug event
> > [ 2896.978469] [drm] Initialized xe 1.1.0 20201103 for 0000:00:02.0 on minor 0
> > [ 2896.978496] xe 0000:00:02.0: [drm:intel_opregion_resume [xe]] 6 outputs detected
> > [ 2896.997528] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
> > [ 2897.001583] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6
> > [ 2897.003135] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
> > [ 2897.003529] xe 0000:00:02.0: [drm:intel_audio_init [xe]] use AUD_FREQ_CNTRL of 0x810 (init value 0x810)
> > [ 2897.004965] xe 0000:00:02.0: [drm:drm_client_modeset_probe]
> > [ 2897.005088] xe 0000:00:02.0: [drm] i915 display info: display version: 12
> > [ 2897.005093] xe 0000:00:02.0: [drm] i915 display info: cursor_needs_physical: no
> > [ 2897.005095] xe 0000:00:02.0: [drm] i915 display info: has_cdclk_crawl: no
> > [ 2897.005097] xe 0000:00:02.0: [drm] i915 display info: has_cdclk_squash: no
> > [ 2897.005099] xe 0000:00:02.0: [drm] i915 display info: has_ddi: yes
> > [ 2897.005102] xe 0000:00:02.0: [drm] i915 display info: has_dp_mst: yes
> > [ 2897.005104] xe 0000:00:02.0: [drm] i915 display info: has_dsb: yes
> > [ 2897.005106] xe 0000:00:02.0: [drm] i915 display info: has_fpga_dbg: yes
> > [ 2897.005108] xe 0000:00:02.0: [drm] i915 display info: has_gmch: no
> > [ 2897.005110] xe 0000:00:02.0: [drm] i915 display info: has_hotplug: yes
> > [ 2897.005112] xe 0000:00:02.0: [drm] i915 display info: has_hti: no
> > [ 2897.005114] xe 0000:00:02.0: [drm] i915 display info: has_ipc: yes
> > [ 2897.005116] xe 0000:00:02.0: [drm] i915 display info: has_overlay: no
> > [ 2897.005118] xe 0000:00:02.0: [drm] i915 display info: has_psr: yes
> > [ 2897.005120] xe 0000:00:02.0: [drm] i915 display info: has_psr_hw_tracking: yes
> > [ 2897.005122] xe 0000:00:02.0: [drm] i915 display info: overlay_needs_physical: no
> > [ 2897.005124] xe 0000:00:02.0: [drm] i915 display info: supports_tv: no
> > [ 2897.005126] xe 0000:00:02.0: [drm] i915 display info: has_hdcp: yes
> > [ 2897.005128] xe 0000:00:02.0: [drm] i915 display info: has_dmc: yes
> > [ 2897.005130] xe 0000:00:02.0: [drm] i915 display info: has_dsc: yes
> > [ 2897.005417] xe 0000:00:02.0: [drm:intel_dp_detect [xe]] [CONNECTOR:313:eDP-1]
> > [ 2897.005529] xe 0000:00:02.0: [drm:intel_dp_print_rates [xe]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
> > [ 2897.005609] xe 0000:00:02.0: [drm:intel_dp_print_rates [xe]] sink rates: 162000, 270000
> > [ 2897.005714] xe 0000:00:02.0: [drm:intel_dp_print_rates [xe]] common rates: 162000, 270000
> > [ 2897.005923] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] Assigning EDID-1.4 digital sink color depth as 6 bpc.
> > [ 2897.005934] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] ELD monitor
> > [ 2897.005940] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] ELD size 20, SAD count 0
> > [ 2897.005996] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] [CONNECTOR:313:eDP-1] VRR capable: no
> > [ 2897.006097] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] [CONNECTOR:313:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
> > [ 2897.007078] [drm:intel_dsm_detect.isra.0 [xe]] no _DSM method for intel device
> > [ 2897.007144] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] PCON ENCODER DSC DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00
> > [ 2897.007217] xe 0000:00:02.0: [drm:intel_power_well_disable [xe]] disabling PW_5
> > [ 2897.007261] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] [CONNECTOR:313:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
> > [ 2897.007342] xe 0000:00:02.0: [drm:intel_power_well_disable [xe]] disabling PW_4
> > [ 2897.007423] xe 0000:00:02.0: [drm:intel_power_well_disable [xe]] disabling PW_3
> > [ 2897.007489] xe 0000:00:02.0: [drm:intel_power_well_disable [xe]] disabling PW_2
> > [ 2897.008030] xe 0000:00:02.0: [drm:intel_hotplug_detect_connector [xe]] [CONNECTOR:313:eDP-1] status updated from unknown to connected (epoch counter 0->1)
> > [ 2897.008192] xe 0000:00:02.0: [drm:intel_hdmi_detect [xe]] [CONNECTOR:322:HDMI-A-1]
> > [ 2897.008463] xe 0000:00:02.0: [drm:xe_pci_probe [xe]] d3cold: capable=no
> > [ 2897.012638] xe 0000:00:02.0: [drm:intel_hotplug_detect_connector [xe]] [CONNECTOR:322:HDMI-A-1] status updated from unknown to disconnected (epoch counter 0->1)
> > [ 2897.012771] xe 0000:00:02.0: [drm:intel_dp_detect [xe]] [CONNECTOR:331:DP-1]
> > [ 2897.012904] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling TC_cold_off
> > [ 2897.013289] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] TC cold block succeeded
> > [ 2897.013491] xe 0000:00:02.0: [drm:intel_power_well_disable [xe]] disabling TC_cold_off
> > [ 2897.013604] xe 0000:00:02.0: [drm:__intel_display_power_put_domain [xe]] TC cold unblock succeeded
> > [ 2897.013711] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling TC_cold_off
> > [ 2897.014001] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] TC cold block succeeded
> > [ 2897.014108] xe 0000:00:02.0: [drm:intel_tc_port_update_mode [xe]] Port D/TC#1: TC port mode reset (disconnected -> tbt-alt)
> > [ 2897.014439] xe 0000:00:02.0: [drm:intel_hotplug_detect_connector [xe]] [CONNECTOR:331:DP-1] status updated from unknown to disconnected (epoch counter 0->1)
> > [ 2897.014531] xe 0000:00:02.0: [drm:intel_hdmi_detect [xe]] [CONNECTOR:340:HDMI-A-2]
> > [ 2897.014682] xe 0000:00:02.0: [drm:intel_hotplug_detect_connector [xe]] [CONNECTOR:340:HDMI-A-2] status updated from unknown to disconnected (epoch counter 0->1)
> > [ 2897.014757] xe 0000:00:02.0: [drm:intel_dp_detect [xe]] [CONNECTOR:344:DP-2]
> > [ 2897.014896] xe 0000:00:02.0: [drm:intel_tc_port_update_mode [xe]] Port E/TC#2: TC port mode reset (disconnected -> tbt-alt)
> > [ 2897.015023] xe 0000:00:02.0: [drm:intel_hotplug_detect_connector [xe]] [CONNECTOR:344:DP-2] status updated from unknown to disconnected (epoch counter 0->1)
> > [ 2897.015089] xe 0000:00:02.0: [drm:intel_hdmi_detect [xe]] [CONNECTOR:352:HDMI-A-3]
> > [ 2897.015202] xe 0000:00:02.0: [drm:intel_hotplug_detect_connector [xe]] [CONNECTOR:352:HDMI-A-3] status updated from unknown to disconnected (epoch counter 0->1)
> > [ 2897.015272] xe 0000:00:02.0: [drm:drm_sysfs_hotplug_event] generating hotplug event
> > [ 2897.015327] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:313:eDP-1]
> > [ 2897.015398] xe 0000:00:02.0: [drm:intel_dp_detect [xe]] [CONNECTOR:313:eDP-1]
> > [ 2897.015499] xe 0000:00:02.0: [drm:intel_dp_print_rates [xe]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
> > [ 2897.015564] xe 0000:00:02.0: [drm:intel_dp_print_rates [xe]] sink rates: 162000, 270000
> > [ 2897.015610] xe 0000:00:02.0: [drm:intel_dp_print_rates [xe]] common rates: 162000, 270000
> > [ 2897.015836] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] Assigning EDID-1.4 digital sink color depth as 6 bpc.
> > [ 2897.015848] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] ELD monitor
> > [ 2897.015853] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] ELD size 20, SAD count 0
> > [ 2897.015888] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] [CONNECTOR:313:eDP-1] VRR capable: no
> > [ 2897.015953] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] [CONNECTOR:313:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
> > [ 2897.016672] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] PCON ENCODER DSC DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00
> > [ 2897.016790] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] [CONNECTOR:313:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
> > [ 2897.017363] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:313:eDP-1] probed modes:
> > [ 2897.017373] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] Probed mode: "1920x1080": 60 146500 1920 1968 2000 2180 1080 1083 1089 1120 0x48 0x9
> > [ 2897.017378] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] Probed mode: "1920x1080": 48 117200 1920 1968 2000 2180 1080 1083 1089 1120 0x40 0x9
> > [ 2897.017384] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:322:HDMI-A-1]
> > [ 2897.017389] xe 0000:00:02.0: [drm:intel_hdmi_detect [xe]] [CONNECTOR:322:HDMI-A-1]
> > [ 2897.021635] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:322:HDMI-A-1] disconnected
> > [ 2897.021651] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:331:DP-1]
> > [ 2897.021657] xe 0000:00:02.0: [drm:intel_dp_detect [xe]] [CONNECTOR:331:DP-1]
> > [ 2897.021931] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:331:DP-1] disconnected
> > [ 2897.021938] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:340:HDMI-A-2]
> > [ 2897.021944] xe 0000:00:02.0: [drm:intel_hdmi_detect [xe]] [CONNECTOR:340:HDMI-A-2]
> > [ 2897.022076] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:340:HDMI-A-2] disconnected
> > [ 2897.022082] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:344:DP-2]
> > [ 2897.022088] xe 0000:00:02.0: [drm:intel_dp_detect [xe]] [CONNECTOR:344:DP-2]
> > [ 2897.022207] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:344:DP-2] disconnected
> > [ 2897.022213] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:352:HDMI-A-3]
> > [ 2897.022219] xe 0000:00:02.0: [drm:intel_hdmi_detect [xe]] [CONNECTOR:352:HDMI-A-3]
> > [ 2897.022338] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:352:HDMI-A-3] disconnected
> > [ 2897.022343] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:313:eDP-1] enabled? yes
> > [ 2897.022349] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:322:HDMI-A-1] enabled? no
> > [ 2897.022353] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:331:DP-1] enabled? no
> > [ 2897.022358] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:340:HDMI-A-2] enabled? no
> > [ 2897.022362] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:344:DP-2] enabled? no
> > [ 2897.022366] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:352:HDMI-A-3] enabled? no
> > [ 2897.022502] xe 0000:00:02.0: [drm:drm_client_firmware_config.isra.0] Not using firmware configuration
> > [ 2897.022517] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:313:eDP-1] looking for cmdline mode
> > [ 2897.022520] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:313:eDP-1] looking for preferred mode, tile 0
> > [ 2897.022523] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:313:eDP-1] Found mode 1920x1080
> > [ 2897.022525] xe 0000:00:02.0: [drm:drm_client_modeset_probe] picking CRTCs for 16384x16384 config
> > [ 2897.022535] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CRTC:100:pipe A] desired mode 1920x1080 set (0,0)
> > [ 2897.022564] xe 0000:00:02.0: [drm:__drm_fb_helper_initial_config_and_unlock] test CRTC 0 primary plane
> > [ 2897.022757] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [xe])
> > [ 2897.022834] xe 0000:00:02.0: [drm:intelfb_create [xe]] re-using BIOS fb
> > [ 2897.023190] xe 0000:00:02.0: [drm:intelfb_create [xe]] allocated 1920x1080 fb: 0x00c4a000
> > [ 2897.023917] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling PW_2
> > [ 2897.024086] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling PW_3
> > [ 2897.024847] xe 0000:00:02.0: [drm:i915_audio_component_get_power [xe]] restored AUD_FREQ_CNTRL to 0x810
> > [ 2897.025660] fbcon: xedrmfb (fb0) is primary device
> > [ 2897.028525] xe 0000:00:02.0: [drm:intel_atomic_check [xe]] [CONNECTOR:313:eDP-1] Limiting display bpp to 18 (EDID bpp 18, max requested bpp 36, max platform bpp 36)
> > [ 2897.028705] xe 0000:00:02.0: [drm:intel_dp_compute_config_link_bpp_limits [xe]] [ENCODER:312:DDI A/PHY A][CRTC:100:pipe A] DP link limits: pixel clock 146500 kHz DSC off max lanes 2 max rate 270000 max pipe_bpp 18 max link_bpp 18.0000
> > [ 2897.028825] xe 0000:00:02.0: [drm:intel_dp_compute_link_config [xe]] DP lane count 2 clock 270000 bpp input 18 compressed 0.0000 link rate required 329625 available 540000
> > [ 2897.028922] xe 0000:00:02.0: [drm:intel_atomic_check [xe]] [CRTC:100:pipe A] hw max bpp: 18, pipe bpp: 18, dithering: 1
> > [ 2897.029017] xe 0000:00:02.0: [drm:intel_ddi_compute_config_late [xe]] [ENCODER:312:DDI A/PHY A] [CRTC:100:pipe A]
> > [ 2897.029180] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:32:plane 1A] level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5,*wm6,*wm7, twm,*swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5,*wm6,*wm7,*twm,*swm,*stwm
> > [ 2897.029291] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:32:plane 1A] lines 1, 4, 4, 4, 4, 5, 8, 8, 0, 2, 0 -> 1, 4, 4, 4, 4, 5, 8, 8, 0, 2, 0
> > [ 2897.029381] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:32:plane 1A] blocks 16, 65, 65, 65, 65, 81, 129, 129, 0, 19, 0 -> 16, 65, 65, 65, 65, 81, 129, 129, 30, 19, 33
> > [ 2897.029460] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:32:plane 1A] min_ddb 19, 73, 73, 73, 73, 91, 143, 143, 0, 22, 0 -> 19, 73, 73, 73, 73, 91, 143, 143, 31, 22, 34
> > [ 2897.029534] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:41:plane 2A] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
> > [ 2897.029605] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:41:plane 2A] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.029717] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:41:plane 2A] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.029789] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:41:plane 2A] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.029857] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:50:plane 3A] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
> > [ 2897.029927] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:50:plane 3A] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.029997] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:50:plane 3A] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.030064] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:50:plane 3A] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.030131] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:59:plane 4A] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
> > [ 2897.030197] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:59:plane 4A] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.030265] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:59:plane 4A] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.030370] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:59:plane 4A] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.030452] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:68:plane 5A] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
> > [ 2897.030523] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:68:plane 5A] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.030729] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:68:plane 5A] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.030802] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:68:plane 5A] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.030877] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:77:plane 6A] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
> > [ 2897.030948] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:77:plane 6A] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.031020] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:77:plane 6A] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.031090] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:77:plane 6A] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.031155] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:86:plane 7A] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
> > [ 2897.031218] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:86:plane 7A] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.031288] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:86:plane 7A] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.031355] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:86:plane 7A] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.031422] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:95:cursor A] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm
> > [ 2897.031487] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:95:cursor A] lines 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.031557] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:95:cursor A] blocks 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.031652] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:95:cursor A] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
> > [ 2897.031740] xe 0000:00:02.0: [drm] [CRTC:100:pipe A] enable: yes [fastset]
> > [ 2897.031746] xe 0000:00:02.0: [drm] active: yes, output_types: EDP (0x100), output format: RGB, sink format: RGB
> > [ 2897.031750] xe 0000:00:02.0: [drm] cpu_transcoder: A, pipe bpp: 18, dithering: 1
> > [ 2897.031755] xe 0000:00:02.0: [drm] MST master transcoder: <invalid>
> > [ 2897.031758] xe 0000:00:02.0: [drm] port sync: master transcoder: <invalid>, slave transcoder bitmask = 0x0
> > [ 2897.031762] xe 0000:00:02.0: [drm] bigjoiner: no, pipes: 0x0
> > [ 2897.031765] xe 0000:00:02.0: [drm] splitter: disabled, link count 0, overlap 0
> > [ 2897.031770] xe 0000:00:02.0: [drm] dp m_n: lanes: 2; data_m: 5120546, data_n: 8388608, link_m: 284474, link_n: 524288, tu: 64
> > [ 2897.031775] xe 0000:00:02.0: [drm] dp m2_n2: lanes: 2; data_m: 0, data_n: 0, link_m: 0, link_n: 0, tu: 0
> > [ 2897.031779] xe 0000:00:02.0: [drm] fec: disabled, enhanced framing: enabled
> > [ 2897.031783] xe 0000:00:02.0: [drm] sdp split: disabled
> > [ 2897.031787] xe 0000:00:02.0: [drm] psr: disabled, psr2: disabled, panel replay: disabled, selective fetch: disabled
> > [ 2897.031791] xe 0000:00:02.0: [drm] framestart delay: 1, MSA timing delay: 0
> > [ 2897.031795] xe 0000:00:02.0: [drm] audio: 0, infoframes: 0, infoframes enabled: 0x0
> > [ 2897.031800] xe 0000:00:02.0: [drm] vrr: no, vmin: 0, vmax: 0, pipeline full: 0, guardband: 0 flipline: 0, vmin vblank: -1, vmax vblank: -2
> > [ 2897.031805] xe 0000:00:02.0: [drm] requested mode: "1920x1080": 60 146500 1920 1968 2000 2180 1080 1083 1089 1120 0x48 0x9
> > [ 2897.031811] xe 0000:00:02.0: [drm] adjusted mode: "1920x1080": 60 146500 1920 1968 2000 2180 1080 1083 1089 1120 0x48 0x9
> > [ 2897.031816] xe 0000:00:02.0: [drm] crtc timings: clock=146500, hd=1920 hb=1920-2180 hs=1968-2000 ht=2180, vd=1080 vb=1080-1120 vs=1083-1089 vt=1120, flags=0x9
> > [ 2897.031823] xe 0000:00:02.0: [drm] pipe mode: "1920x1080": 60 146500 1920 1968 2000 2180 1080 1083 1089 1120 0x40 0x9
> > [ 2897.031828] xe 0000:00:02.0: [drm] crtc timings: clock=146500, hd=1920 hb=1920-2180 hs=1968-2000 ht=2180, vd=1080 vb=1080-1120 vs=1083-1089 vt=1120, flags=0x9
> > [ 2897.031833] xe 0000:00:02.0: [drm] port clock: 270000, pipe src: 1920x1080+0+0, pixel rate 146500
> > [ 2897.031838] xe 0000:00:02.0: [drm] linetime: 120, ips linetime: 0
> > [ 2897.031842] xe 0000:00:02.0: [drm] num_scalers: 2, scaler_users: 0x0, scaler_id: -1, scaling_filter: 0
> > [ 2897.031847] xe 0000:00:02.0: [drm] pch pfit: 0x0+0+0, disabled, force thru: no
> > [ 2897.031851] xe 0000:00:02.0: [drm] ips: 0, double wide: 0, drrs: 0
> > [ 2897.031855] xe 0000:00:02.0: [drm] dpll_hw_state: cfgcr0: 0xe001a5, cfgcr1: 0x88, div0: 0x0, mg_refclkin_ctl: 0x0, hg_clktop2_coreclkctl1: 0x0, mg_clktop2_hsclkctl: 0x0, mg_pll_div0: 0x0, mg_pll_div2: 0x0, mg_pll_lf: 0x0, mg_pll_frac_lock: 0x0, mg_pll_ssc: 0x0, mg_pll_bias: 0x0, mg_pll_tdc_coldst_bias: 0x0
> > [ 2897.031861] xe 0000:00:02.0: [drm] csc_mode: 0x0 gamma_mode: 0x0 gamma_enable: 0 csc_enable: 0
> > [ 2897.031866] xe 0000:00:02.0: [drm] pre csc lut: 0 entries, post csc lut: 0 entries
> > [ 2897.031870] xe 0000:00:02.0: [drm] output csc: pre offsets: 0x0000 0x0000 0x0000
> > [ 2897.031875] xe 0000:00:02.0: [drm] output csc: coefficients: 0x0000 0x0000 0x0000
> > [ 2897.031879] xe 0000:00:02.0: [drm] output csc: coefficients: 0x0000 0x0000 0x0000
> > [ 2897.031883] xe 0000:00:02.0: [drm] output csc: coefficients: 0x0000 0x0000 0x0000
> > [ 2897.031887] xe 0000:00:02.0: [drm] output csc: post offsets: 0x0000 0x0000 0x0000
> > [ 2897.031891] xe 0000:00:02.0: [drm] pipe csc: pre offsets: 0x0000 0x0000 0x0000
> > [ 2897.031895] xe 0000:00:02.0: [drm] pipe csc: coefficients: 0x0000 0x0000 0x0000
> > [ 2897.031899] xe 0000:00:02.0: [drm] pipe csc: coefficients: 0x0000 0x0000 0x0000
> > [ 2897.031903] xe 0000:00:02.0: [drm] pipe csc: coefficients: 0x0000 0x0000 0x0000
> > [ 2897.031906] xe 0000:00:02.0: [drm] pipe csc: post offsets: 0x0000 0x0000 0x0000
> > [ 2897.031910] xe 0000:00:02.0: [drm] [PLANE:32:plane 1A] fb: [FB:356] 1920x1080 format = XR24 little-endian (0x34325258) modifier = 0x0, visible: yes
> > [ 2897.031917] xe 0000:00:02.0: [drm] rotation: 0x1, scaler: -1, scaling_filter: 0
> > [ 2897.031921] xe 0000:00:02.0: [drm] src: 1920.000000x1080.000000+0.000000+0.000000 dst: 1920x1080+0+0
> > [ 2897.031927] xe 0000:00:02.0: [drm] [PLANE:41:plane 2A] fb: [NOFB], visible: no
> > [ 2897.031931] xe 0000:00:02.0: [drm] [PLANE:50:plane 3A] fb: [NOFB], visible: no
> > [ 2897.031935] xe 0000:00:02.0: [drm] [PLANE:59:plane 4A] fb: [NOFB], visible: no
> > [ 2897.031939] xe 0000:00:02.0: [drm] [PLANE:68:plane 5A] fb: [NOFB], visible: no
> > [ 2897.031943] xe 0000:00:02.0: [drm] [PLANE:77:plane 6A] fb: [NOFB], visible: no
> > [ 2897.031947] xe 0000:00:02.0: [drm] [PLANE:86:plane 7A] fb: [NOFB], visible: no
> > [ 2897.031951] xe 0000:00:02.0: [drm] [PLANE:95:cursor A] fb: [NOFB], visible: no
> > [ 2897.036590] xe 0000:00:02.0: [drm:verify_connector_state [xe]] [CONNECTOR:313:eDP-1]
> > [ 2897.036758] xe 0000:00:02.0: [drm:intel_modeset_verify_crtc [xe]] [CRTC:100:pipe A]
> > [ 2897.037585] Console: switching to colour frame buffer device 240x67
> > [ 2897.055855] xe 0000:00:02.0: [drm:intel_backlight_device_update_status [xe]] updating intel_backlight, brightness=96000/96000
> > [ 2897.056015] xe 0000:00:02.0: [drm:intel_panel_actually_set_backlight [xe]] [CONNECTOR:313:eDP-1] set backlight level = 96000
> > [ 2897.058474] xe 0000:00:02.0: [drm] fb0: xedrmfb frame buffer device
> > [ 2897.067390] modprobe (8601) used greatest stack depth: 10832 bytes left
> > [ 2897.072956] xe 0000:00:02.0: [drm:drm_fb_helper_hotplug_event]
> > [ 2897.072984] xe 0000:00:02.0: [drm:drm_client_modeset_probe]
> > [ 2897.073473] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:313:eDP-1]
> > [ 2897.073510] xe 0000:00:02.0: [drm:intel_dp_detect [xe]] [CONNECTOR:313:eDP-1]
> > [ 2897.073745] xe 0000:00:02.0: [drm:intel_dp_print_rates [xe]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
> > [ 2897.073834] xe 0000:00:02.0: [drm:intel_dp_print_rates [xe]] sink rates: 162000, 270000
> > [ 2897.073940] xe 0000:00:02.0: [drm:intel_dp_print_rates [xe]] common rates: 162000, 270000
> > [ 2897.074173] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] Assigning EDID-1.4 digital sink color depth as 6 bpc.
> > [ 2897.074180] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] ELD monitor
> > [ 2897.074185] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] ELD size 20, SAD count 0
> > [ 2897.074228] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] [CONNECTOR:313:eDP-1] VRR capable: no
> > [ 2897.074369] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] [CONNECTOR:313:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
> > [ 2897.075927] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] PCON ENCODER DSC DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00
> > [ 2897.076266] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] [CONNECTOR:313:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
> > [ 2897.079330] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:313:eDP-1] probed modes:
> > [ 2897.079351] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] Probed mode: "1920x1080": 60 146500 1920 1968 2000 2180 1080 1083 1089 1120 0x48 0x9
> > [ 2897.079359] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] Probed mode: "1920x1080": 48 117200 1920 1968 2000 2180 1080 1083 1089 1120 0x40 0x9
> > [ 2897.079368] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:322:HDMI-A-1]
> > [ 2897.079378] xe 0000:00:02.0: [drm:intel_hdmi_detect [xe]] [CONNECTOR:322:HDMI-A-1]
> > [ 2897.083643] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:322:HDMI-A-1] disconnected
> > [ 2897.083658] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:331:DP-1]
> > [ 2897.083668] xe 0000:00:02.0: [drm:intel_dp_detect [xe]] [CONNECTOR:331:DP-1]
> > [ 2897.083988] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:331:DP-1] disconnected
> > [ 2897.083993] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:340:HDMI-A-2]
> > [ 2897.083999] xe 0000:00:02.0: [drm:intel_hdmi_detect [xe]] [CONNECTOR:340:HDMI-A-2]
> > [ 2897.084104] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:340:HDMI-A-2] disconnected
> > [ 2897.084109] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:344:DP-2]
> > [ 2897.084113] xe 0000:00:02.0: [drm:intel_dp_detect [xe]] [CONNECTOR:344:DP-2]
> > [ 2897.084213] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:344:DP-2] disconnected
> > [ 2897.084218] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:352:HDMI-A-3]
> > [ 2897.084222] xe 0000:00:02.0: [drm:intel_hdmi_detect [xe]] [CONNECTOR:352:HDMI-A-3]
> > [ 2897.084317] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:352:HDMI-A-3] disconnected
> > [ 2897.084321] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:313:eDP-1] enabled? yes
> > [ 2897.084326] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:322:HDMI-A-1] enabled? no
> > [ 2897.084329] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:331:DP-1] enabled? no
> > [ 2897.084332] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:340:HDMI-A-2] enabled? no
> > [ 2897.084335] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:344:DP-2] enabled? no
> > [ 2897.084338] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:352:HDMI-A-3] enabled? no
> > [ 2897.084469] xe 0000:00:02.0: [drm:drm_client_firmware_config.isra.0] Not using firmware configuration
> > [ 2897.084487] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:313:eDP-1] looking for cmdline mode
> > [ 2897.084492] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:313:eDP-1] looking for preferred mode, tile 0
> > [ 2897.084495] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CONNECTOR:313:eDP-1] Found mode 1920x1080
> > [ 2897.084498] xe 0000:00:02.0: [drm:drm_client_modeset_probe] picking CRTCs for 1920x1080 config
> > [ 2897.084514] xe 0000:00:02.0: [drm:drm_client_modeset_probe] [CRTC:100:pipe A] desired mode 1920x1080 set (0,0)
> > [ 2897.115637] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3204: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
> > [ 2897.115643] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
> > [ 2897.115646] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
> > [ 2897.115648] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
> > [ 2897.115649] snd_hda_codec_realtek hdaudioC0D0: inputs:
> > [ 2897.115651] snd_hda_codec_realtek hdaudioC0D0: Headset Mic=0x19
> > [ 2897.115653] snd_hda_codec_realtek hdaudioC0D0: Headphone Mic=0x1a
> > [ 2897.115654] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
> > [ 2897.195470] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port A
> > [ 2897.195543] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port A
> > [ 2897.195583] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port A
> > [ 2897.195636] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port A
> > [ 2897.195685] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port B
> > [ 2897.195732] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port B
> > [ 2897.195780] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port B
> > [ 2897.195817] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port B
> > [ 2897.195853] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port C
> > [ 2897.195916] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port C
> > [ 2897.195954] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port C
> > [ 2897.195990] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port C
> > [ 2897.196026] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port D
> > [ 2897.196061] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port D
> > [ 2897.196097] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port D
> > [ 2897.196131] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port D
> > [ 2897.196166] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port E
> > [ 2897.196200] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port E
> > [ 2897.196234] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port E
> > [ 2897.196269] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port E
> > [ 2897.196303] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port F
> > [ 2897.196336] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port F
> > [ 2897.196371] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port F
> > [ 2897.196405] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port F
> > [ 2897.196438] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port G
> > [ 2897.196472] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port G
> > [ 2897.196506] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port G
> > [ 2897.196540] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port G
> > [ 2897.196574] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port H
> > [ 2897.196607] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port H
> > [ 2897.196649] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port H
> > [ 2897.196694] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port H
> > [ 2897.196747] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port I
> > [ 2897.196809] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port I
> > [ 2897.196870] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port I
> > [ 2897.196957] xe 0000:00:02.0: [drm:i915_audio_component_get_eld [xe]] Not valid for port I
> > [ 2897.206899] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input7
> > [ 2897.207997] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8
> > [ 2897.212139] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
> > [ 2897.213203] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
> > [ 2897.214417] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
> > [ 2898.118491] xe 0000:00:02.0: [drm:intel_tc_port_update_mode [xe]] Port D/TC#1: TC port mode reset (tbt-alt -> disconnected)
> > [ 2898.118513] xe 0000:00:02.0: [drm:intel_power_well_disable [xe]] disabling TC_cold_off
> > [ 2898.118820] xe 0000:00:02.0: [drm:__intel_display_power_put_domain [xe]] TC cold unblock succeeded
> > [ 2898.118972] xe 0000:00:02.0: [drm:intel_tc_port_update_mode [xe]] Port E/TC#2: TC port mode reset (tbt-alt -> disconnected)
> > [ 2900.102040] xe 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [xe]] [ENCODER:312:DDI A/PHY A] PPS 0 turning VDD off
> > [ 2900.102149] xe 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [xe]] [ENCODER:312:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x00000067
> > [ 2900.417899] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:313:eDP-1]
> > [ 2900.417923] xe 0000:00:02.0: [drm:intel_dp_detect [xe]] [CONNECTOR:313:eDP-1]
> > [ 2900.417983] xe 0000:00:02.0: [drm:intel_dp_print_rates [xe]] source rates: 162000, 216000, 270000, 324000, 432000, 540000, 648000, 810000
> > [ 2900.418023] xe 0000:00:02.0: [drm:intel_dp_print_rates [xe]] sink rates: 162000, 270000
> > [ 2900.418060] xe 0000:00:02.0: [drm:intel_dp_print_rates [xe]] common rates: 162000, 270000
> > [ 2900.418279] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] Assigning EDID-1.4 digital sink color depth as 6 bpc.
> > [ 2900.418284] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] ELD monitor
> > [ 2900.418286] xe 0000:00:02.0: [drm:update_display_info.part.0] [CONNECTOR:313:eDP-1] ELD size 20, SAD count 0
> > [ 2900.418304] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] [CONNECTOR:313:eDP-1] VRR capable: no
> > [ 2900.418349] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] [CONNECTOR:313:eDP-1] DFP max bpc 0, max dotclock 0, TMDS clock 0-0, PCON Max FRL BW 0Gbps
> > [ 2900.418441] xe 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [xe]] [ENCODER:312:DDI A/PHY A] PPS 0 turning VDD on
> > [ 2900.418525] xe 0000:00:02.0: [drm:intel_pps_vdd_on_unlocked [xe]] [ENCODER:312:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x0000006f
> > [ 2900.419143] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] PCON ENCODER DSC DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00
> > [ 2900.419224] xe 0000:00:02.0: [drm:intel_dp_set_edid [xe]] [CONNECTOR:313:eDP-1] RGB->YcbCr conversion? no, YCbCr 4:2:0 allowed? yes, YCbCr 4:4:4->4:2:0 conversion? no
> > [ 2900.419978] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:313:eDP-1] probed modes:
> > [ 2900.419993] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] Probed mode: "1920x1080": 60 146500 1920 1968 2000 2180 1080 1083 1089 1120 0x48 0x9
> > [ 2900.419998] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] Probed mode: "1920x1080": 48 117200 1920 1968 2000 2180 1080 1083 1089 1120 0x40 0x9
> > [ 2900.420456] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:322:HDMI-A-1]
> > [ 2900.420468] xe 0000:00:02.0: [drm:intel_hdmi_detect [xe]] [CONNECTOR:322:HDMI-A-1]
> > [ 2900.424655] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:322:HDMI-A-1] disconnected
> > [ 2900.424807] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:331:DP-1]
> > [ 2900.424812] xe 0000:00:02.0: [drm:intel_dp_detect [xe]] [CONNECTOR:331:DP-1]
> > [ 2900.424911] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling TC_cold_off
> > [ 2900.425206] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] TC cold block succeeded
> > [ 2900.425364] xe 0000:00:02.0: [drm:intel_power_well_disable [xe]] disabling TC_cold_off
> > [ 2900.425454] xe 0000:00:02.0: [drm:__intel_display_power_put_domain [xe]] TC cold unblock succeeded
> > [ 2900.425512] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] enabling TC_cold_off
> > [ 2900.425604] xe 0000:00:02.0: [drm:intel_power_well_enable [xe]] TC cold block succeeded
> > [ 2900.425703] xe 0000:00:02.0: [drm:intel_tc_port_update_mode [xe]] Port D/TC#1: TC port mode reset (disconnected -> tbt-alt)
> > [ 2900.425889] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:331:DP-1] disconnected
> > [ 2900.425993] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:340:HDMI-A-2]
> > [ 2900.425998] xe 0000:00:02.0: [drm:intel_hdmi_detect [xe]] [CONNECTOR:340:HDMI-A-2]
> > [ 2900.426070] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:340:HDMI-A-2] disconnected
> > [ 2900.426141] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:344:DP-2]
> > [ 2900.426144] xe 0000:00:02.0: [drm:intel_dp_detect [xe]] [CONNECTOR:344:DP-2]
> > [ 2900.426251] xe 0000:00:02.0: [drm:intel_tc_port_update_mode [xe]] Port E/TC#2: TC port mode reset (disconnected -> tbt-alt)
> > [ 2900.426304] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:344:DP-2] disconnected
> > [ 2900.426378] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:352:HDMI-A-3]
> > [ 2900.426381] xe 0000:00:02.0: [drm:intel_hdmi_detect [xe]] [CONNECTOR:352:HDMI-A-3]
> > [ 2900.426452] xe 0000:00:02.0: [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:352:HDMI-A-3] disconnected
> > [ 2900.478560] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 2900.480510] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 7e1c6469-9de7-491a-a7c5-1bd8f9966826 id=1
> > [ 2900.480734] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 684ed715-a0ca-499b-89e0-25d1cdf0c737 id=2
> > [ 2900.480954] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 4066ad45-4a68-4acf-86b2-fa5a6a914db7 id=3
> > [ 2900.481227] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 30cd8433-f679-401e-b578-19e22975e84f id=4
> > [ 2900.481410] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 0fc397c0-4833-492c-9ccd-4929d574d5b8 id=5
> > [ 2900.481593] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config fb65c819-7ac2-4c69-aa9d-b72a18440705 id=6
> > [ 2900.481815] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config f3723f39-ecf4-4ff2-a4c4-80e87876b86f id=7
> > [ 2900.482126] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config d5890d02-b2be-4742-a16e-17190a92a301 id=8
> > [ 2900.482316] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config a43f80cd-5cc1-4a2c-a750-40594af2b661 id=9
> > [ 2900.482481] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config e0efab61-c904-4354-9fc5-35e8b8bc7d20 id=10
> > [ 2900.482723] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config ee6f5fa3-13a8-4842-8b34-f7541a0f76a3 id=11
> > [ 2900.483082] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 0c3c3235-2e91-4ef0-8562-4ea1501e8612 id=12
> > [ 2900.483271] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 414ff049-80d3-48c0-b79a-bd8eed097a06 id=13
> > [ 2900.483514] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 17e2be13-39fe-45f0-867c-0f83fcc51654 id=14
> > [ 2900.483705] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 397a46d9-03dd-4696-8196-270362e1c575 id=15
> > [ 2900.484010] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 6607f034-d053-40d1-8215-67c07f3041bb id=16
> > [ 2900.484220] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 6f02479c-e9ca-4c2b-b1e6-216a9e1c5ef7 id=17
> > [ 2900.484412] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config c0d2cd0a-e2be-4b12-916d-2f3aba0ebf9e id=18
> > [ 2900.484577] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 8ecaeff2-78f4-4e29-b331-d757e6a74ed0 id=19
> > [ 2900.484852] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config f1577929-9215-488b-9899-d12b6e799743 id=20
> > [ 2900.485057] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 7e809cb4-6e90-44cc-9c57-6eff58ad360a id=21
> > [ 2900.485322] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 0dde1bb6-340f-4350-b398-2b0228573967 id=22
> > [ 2900.485526] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 19fe64eb-ac4f-45c6-b2b9-af728b21753b id=23
> > [ 2900.485718] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 1fbbd218-693c-4035-b4c0-ce4dd139d828 id=24
> > [ 2900.486003] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 3a4c7510-7725-4bf8-9eae-59115a2431c6 id=25
> > [ 2900.486191] xe 0000:00:02.0: [drm:xe_oa_add_config_ioctl [xe]] Added config 7e6e555c-aa5b-4c8d-992a-454a5a335c6e id=26
> > [ 2901.447109] xe 0000:00:02.0: [drm:intel_tc_port_update_mode [xe]] Port D/TC#1: TC port mode reset (tbt-alt -> disconnected)
> > [ 2901.447109] xe 0000:00:02.0: [drm:intel_power_well_disable [xe]] disabling TC_cold_off
> > [ 2901.447547] xe 0000:00:02.0: [drm:__intel_display_power_put_domain [xe]] TC cold unblock succeeded
> > [ 2901.447658] xe 0000:00:02.0: [drm:intel_tc_port_update_mode [xe]] Port E/TC#2: TC port mode reset (tbt-alt -> disconnected)
> > [ 2902.755325] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:32:plane 1A] level *wm0,*wm1,*wm2,*wm3,*wm4,*wm5,*wm6,*wm7,*twm,*swm,*stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5,*wm6,*wm7,*twm,*swm,*stwm
> > [ 2902.755452] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:32:plane 1A] lines 1, 4, 4, 4, 4, 5, 8, 8, 0, 2, 0 -> 4, 4, 4, 4, 4, 5, 8, 8, 0, 4, 0
> > [ 2902.755546] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:32:plane 1A] blocks 16, 65, 65, 65, 65, 81, 129, 129, 30, 19, 33 -> 62, 62, 62, 62, 62, 78, 123, 123, 137, 62, 137
> > [ 2902.755736] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:32:plane 1A] min_ddb 19, 73, 73, 73, 73, 91, 143, 143, 31, 22, 34 -> 123, 123, 123, 123, 123, 184, 184, 184, 138, 123, 138
> > [ 2902.755821] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:95:cursor A] level wm0, wm1, wm2, wm3, wm4, wm5, wm6, wm7, twm, swm, stwm -> *wm0,*wm1,*wm2,*wm3,*wm4,*wm5,*wm6,*wm7,*twm,*swm, stwm
> > [ 2902.755901] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:95:cursor A] lines 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 2, 4, 4, 4, 4, 5, 8, 8, 0, 6, 0
> > [ 2902.755979] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:95:cursor A] blocks 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 6, 13, 13, 13, 13, 16, 25, 25, 20, 19, 0
> > [ 2902.756050] xe 0000:00:02.0: [drm:skl_compute_wm [xe]] [PLANE:95:cursor A] min_ddb 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -> 8, 16, 16, 16, 16, 19, 29, 29, 21, 22, 0
> > [ 2903.429683] xe 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [xe]] [ENCODER:312:DDI A/PHY A] PPS 0 turning VDD off
> > [ 2903.429858] xe 0000:00:02.0: [drm:intel_pps_vdd_off_sync_unlocked [xe]] [ENCODER:312:DDI A/PHY A] PPS 0 PP_STATUS: 0x80000008 PP_CONTROL: 0x00000067
> > [ 2903.683403] xe 0000:00:02.0: [drm:intel_power_well_disable [xe]] disabling PW_3
> > [ 2903.683569] xe 0000:00:02.0: [drm:intel_power_well_disable [xe]] disabling PW_2
> > [ 2950.617430] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 2950.636490] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 2950.993120] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 2951.375750] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 2966.114169] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 2966.117673] xe 0000:00:02.0: [drm:xe_oa_stream_open_ioctl [xe]] Using periodic sampling freq 18749 Hz
> > [ 2966.128663] xe 0000:00:02.0: [drm:xe_oa_stream_open_ioctl [xe]] opening stream oa config uuid=0fc397c0-4833-492c-9ccd-4929d574d5b8
> > [ 3005.247656] loop0: detected capacity change from 0 to 8
> > [ 3305.260091] loop0: detected capacity change from 0 to 8
> > [ 3605.246517] loop0: detected capacity change from 0 to 8
> > [ 3905.231996] loop0: detected capacity change from 0 to 8
> > [ 4205.230875] loop0: detected capacity change from 0 to 8
> > [ 4505.245233] loop0: detected capacity change from 0 to 8
> > [ 4805.235150] loop0: detected capacity change from 0 to 8
> > [ 5105.244877] loop0: detected capacity change from 0 to 8
> > [ 5405.273103] loop0: detected capacity change from 0 to 8
> > [ 5705.262530] loop0: detected capacity change from 0 to 8
> > [ 6005.232049] loop0: detected capacity change from 0 to 8
> > [ 6305.231829] loop0: detected capacity change from 0 to 8
> > [ 6399.935243] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.011583] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.011843] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.014925] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.016625] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.016879] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.018879] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.020859] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.037984] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.147913] crucible (10080) used greatest stack depth: 10648 bytes left
> > [ 6400.244472] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.255125] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.255304] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.259294] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.268143] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.272056] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.285806] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.301067] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.394509] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.396535] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.403282] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.414120] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.429889] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.452275] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.462204] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.471530] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.548289] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.551195] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.565292] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.567575] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.576150] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.614331] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.623767] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.624948] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.705145] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.718129] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.722900] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.728476] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.753621] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.771684] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.781003] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.789616] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.863099] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.873775] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.880722] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.885300] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.908283] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.931095] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.938377] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6400.960816] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.025301] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.026775] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.034356] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.048076] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.084835] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.094778] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.118306] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.139083] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.182668] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.183215] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.200124] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.203668] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.246328] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.249301] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.278056] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.290015] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.354778] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.356666] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.359253] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.362408] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.392355] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.417098] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.427133] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.454066] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.522050] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.525242] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.533153] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.534614] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.555891] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.593094] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.596205] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.596877] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.671389] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.684256] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.693199] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.700953] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.727887] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.760551] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.762370] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.790034] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.832468] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.838913] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.852781] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.858823] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.882732] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.923414] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.926664] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.939297] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6401.990076] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.004291] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.012599] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.017159] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.052462] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.081402] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.096535] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.113089] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.154049] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.161214] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.179104] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.182770] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.219304] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.226121] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.252053] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.285220] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.315087] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.321372] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.347628] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.373507] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.386106] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.388934] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.390656] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.449828] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.468013] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.492966] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.499408] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.529548] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.538534] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.546559] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.557722] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.612232] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.628340] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.640562] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.661083] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.684881] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.697968] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.714524] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.721409] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.778197] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.778483] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.788081] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.831944] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.843376] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.850439] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.875499] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.887466] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.947995] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.949392] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.954340] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6402.999018] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.010288] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.013841] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.014124] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.026851] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.107170] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.110380] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.119244] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.160573] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.165990] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.168263] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.187769] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.197023] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.253196] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.266921] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.288563] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.316868] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.319430] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.336568] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.343263] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.347120] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.409809] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.428909] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.443648] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.466871] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.475849] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.499271] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.505837] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.508129] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.562148] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.590430] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.593707] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.635473] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.635818] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.651187] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.658335] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.680322] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.715215] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.747862] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.747952] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.781084] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.801701] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.811484] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.830604] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.857015] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.857215] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.893645] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.897034] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.952763] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.955923] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6403.981726] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.005567] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.010171] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.016263] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.046618] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.050218] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.111514] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.112184] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.139713] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.158994] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.160701] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.182047] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.208145] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.222238] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.257307] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.284522] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.310380] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.319055] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.325463] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.334370] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.383706] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.405254] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.411913] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.440944] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.468624] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.485357] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.507170] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.511667] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.557678] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.559844] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.579816] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.617328] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.653582] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.669849] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.680490] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.683530] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.775906] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.794904] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.798687] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.829750] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.871191] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.877566] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.884875] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.912062] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6404.977123] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.009389] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.013155] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.017123] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.056522] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.059162] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.085002] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.102615] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.155158] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.202398] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.204069] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.211041] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.224581] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.227415] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.245493] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.259870] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.322606] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.341762] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.365980] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.366229] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.390931] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.400996] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.403384] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.420681] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.459276] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.511978] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.514585] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.528439] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.542162] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.543855] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.580714] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.601156] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.645349] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.669515] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.683976] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.725335] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.732097] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.732816] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.743902] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.756658] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.795965] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.837771] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.847317] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.889280] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.893064] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.902424] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.903163] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.919483] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6405.929764] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.014924] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.031336] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.031615] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.046942] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.052464] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.080620] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.089203] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.111686] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.182030] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.184989] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.187897] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.194054] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.225115] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.237037] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.237750] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.270482] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.336800] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.337294] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.369109] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.385258] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.401662] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.411459] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.441397] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.449917] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.496103] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.524904] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.544441] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.547107] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.547387] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.576130] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.609551] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.613100] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.662357] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.686384] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.698884] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.705709] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.706702] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.725653] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.768228] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.771371] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.817654] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.853720] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.861869] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.874008] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.874761] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.885838] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.911366] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.912592] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.975662] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6406.996280] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.007895] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.032505] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.059832] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.070887] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.099609] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.419365] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.424534] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.440008] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.464255] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.607355] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.622294] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.639744] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.644578] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.782747] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.786331] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.801846] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.805787] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.822279] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.842514] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.863923] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.884391] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.958002] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.958483] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.995027] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6407.995134] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.027017] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.044261] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.051899] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.055611] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.147368] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.150547] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.185197] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.186389] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.190787] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.191202] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.204011] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.208817] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.302326] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.302489] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.332878] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.364361] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.430281] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.435491] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.513438] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.528820] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.530481] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.674001] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.741680] crucible (12465) used greatest stack depth: 9984 bytes left
> > [ 6408.850432] crucible (12478) used greatest stack depth: 9752 bytes left
> > [ 6408.914715] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.972692] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6408.980085] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.002435] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.110857] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.123536] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.154967] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.161235] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.172733] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.201106] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.338872] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.339935] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.341112] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.344854] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.346720] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.356881] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.421324] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.465896] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.497519] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.500189] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.502893] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.505309] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.520170] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.533733] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.605932] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.635686] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.643096] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.643204] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.652959] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.662101] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.665866] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.673070] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.775179] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.791668] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.794968] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.802538] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.816864] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.848358] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.852703] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.859107] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.898202] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.940852] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.942318] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.945791] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6409.994041] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.009936] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.020011] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.030294] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.060434] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.079400] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.089650] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.107109] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.136232] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.172484] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.179868] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.184310] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.231028] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.231646] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.257082] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.286372] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.303061] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.303775] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.315589] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.330014] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.408021] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.409381] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.424085] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.434474] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.448906] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.457192] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.461997] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.482580] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.573694] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.575938] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.593086] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.594027] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.594795] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.602690] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.615429] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.633240] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.749251] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.752089] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.762127] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.771859] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.800819] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.807571] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.816448] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.821194] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.917360] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.935376] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.936839] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.939243] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.965203] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.976038] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.985074] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6410.992879] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.078438] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.080258] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.090661] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.109056] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.122847] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.124506] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.136081] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.143447] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.238389] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.253860] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.262280] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.278986] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.292211] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.303472] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.304318] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.317112] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.392936] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.412385] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.431808] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.443368] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.443813] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.448602] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.453938] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.466152] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.526361] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.553897] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.574112] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.594117] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.594277] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.603215] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.610955] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.631529] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.678880] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.712738] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.732564] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.742914] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.744053] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.761706] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.772036] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.775797] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.849194] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.859683] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.880252] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.888623] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.891950] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.909464] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.915223] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6411.926874] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.001969] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.007197] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.025493] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.038993] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.045059] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.049327] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.069894] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.103328] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.143872] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.163923] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.171491] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.172249] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.202287] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.202395] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.219616] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.257533] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.300374] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.307737] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.325678] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.327673] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.355359] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.362546] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.370998] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.406873] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.470530] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.473555] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.551466] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.563677] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.584393] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.600930] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.606594] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.608977] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.666311] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.671338] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.768536] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.779970] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.790964] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.814105] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.821262] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.822278] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.868054] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.872876] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.978777] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.980679] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6412.984517] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.001271] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.009592] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.017677] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.031780] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.079951] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.161875] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.166648] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.169868] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.174267] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.178790] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.193473] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.237574] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.241306] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.347093] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.348087] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.354885] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.361245] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.363480] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.394511] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.416398] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.424529] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.548090] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.557751] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.564372] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.567200] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.573667] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.590968] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.625992] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.633703] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.742568] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.744752] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.769090] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.776554] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.789941] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.798915] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.819421] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.838393] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.906920] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.911972] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.946016] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.949308] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.958861] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.983591] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6413.986230] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.013422] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.086512] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.091339] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.122426] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.132175] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.133893] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.146223] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.152151] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.167171] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.310145] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.319661] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.319767] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.333472] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.338854] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.350991] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.358235] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.388161] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.484437] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.522651] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.539376] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.539621] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.542597] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.546422] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.570431] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.588066] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.684895] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.690504] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.720422] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.720541] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.732299] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.745846] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.747822] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.755163] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.853332] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.892073] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.892386] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.901679] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.909533] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.910046] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.919680] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6414.931200] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.043773] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.049469] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.077868] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.089430] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.092479] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.093602] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.117381] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.132700] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.241605] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.252593] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.263038] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.280288] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.284187] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.289352] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.305951] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.306429] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.436956] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.454906] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.458183] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.462012] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.470145] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.478201] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.490082] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.494147] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.600442] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.632002] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.636554] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.638533] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.645881] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.646184] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.655541] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.662361] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.767425] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.806198] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.806304] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.806559] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.817912] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.828223] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.834359] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.848163] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.982300] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6415.990737] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.001687] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.014050] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.037747] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.039085] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.044653] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.064941] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.189296] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.197815] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.202974] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.231714] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.247114] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.257605] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.260889] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.265766] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.368463] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.391909] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.402018] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.421779] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.430954] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.434361] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.440864] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.447452] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.535721] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.566450] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.577529] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.595713] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.595855] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.608067] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.623564] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.627221] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.706512] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.729656] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.785544] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.785746] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.791742] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.796326] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.798788] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.845824] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.884778] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.917236] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.989692] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.990810] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6416.997089] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.012148] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.018239] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.021088] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.083298] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.093586] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.166749] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.176257] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.180438] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.187474] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.214137] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.222821] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.244165] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.298395] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.325067] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.333557] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.346004] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.367543] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.381205] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.396872] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.420770] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.468301] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.489969] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.501253] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.510961] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.539468] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.558918] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.575588] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.592472] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.646553] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.651033] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.689891] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.693839] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.703249] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.732951] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.741146] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.749246] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.807974] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.826228] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.842012] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.865341] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.873034] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.894107] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.908082] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.941609] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6417.978144] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.001506] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.024016] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.034554] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.044744] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.058728] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.074361] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.084094] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.139298] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.165977] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.173062] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.194984] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.213490] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.214338] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.223701] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.269398] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.316448] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.363845] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.384925] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.406263] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.406606] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.408515] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.414407] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.453347] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.478668] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.547768] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.563385] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.563920] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.576383] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.586676] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.601795] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.641973] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.659003] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.730125] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.735378] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.756092] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.772524] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.782320] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.799731] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.827177] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.842101] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.881500] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.919704] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.929493] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.947731] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.951733] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6418.997510] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.006869] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.025995] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.033492] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.057156] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.103951] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.113692] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.131674] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.165195] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.183766] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.196352] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.242503] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.251559] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.286530] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.289631] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.292844] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.360361] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.362611] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.365314] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.417213] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.444305] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.449119] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.451085] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.451227] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.534274] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.543734] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.573329] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.604368] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.604474] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.609244] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.610949] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.622128] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.693060] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.702882] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.772195] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.772296] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.803899] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.808347] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.809469] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.819194] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.903909] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.935663] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.991268] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6419.991720] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.000813] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.011071] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.022917] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.041313] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.132416] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.166161] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.425366] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.608117] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.622796] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.624139] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.626243] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.628977] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.637417] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.637922] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.749926] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.792604] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.800076] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.805552] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.811389] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.825069] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.837559] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.866702] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.936045] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.963060] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.987958] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.988189] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.992804] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6420.995301] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.004894] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.017309] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.105236] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.112020] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.130219] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.139617] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.143666] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.147971] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.165465] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.188653] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.259264] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.265522] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.282532] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.284033] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.286576] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.298628] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.304484] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.341550] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.405075] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.407552] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.416240] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.426260] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.428460] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.450655] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.459292] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.485450] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.544510] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.545574] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.558316] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.566300] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.566402] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.604842] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.610326] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.614116] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.689405] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.689982] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.706203] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.710483] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.719117] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.722733] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.774497] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.777540] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.830502] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.833688] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.849921] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.860470] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.869298] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.899375] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.914392] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.921876] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.975470] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.986361] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6421.997763] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.001477] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.014912] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.051304] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.056043] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.079980] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.125600] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.130010] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.134164] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.145993] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.149384] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.188369] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.238457] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.241072] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.278160] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.282785] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.290497] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.304016] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.309107] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.330287] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.381487] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.385591] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.411234] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.430324] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.445165] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.450597] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.461048] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.472526] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.557938] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.576696] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.606337] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.615244] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.617027] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.634152] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.645393] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.645499] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.716856] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.759836] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.760071] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.766967] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.773433] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.791394] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.791498] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.929046] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.935424] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.951831] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6422.964600] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.000999] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.082252] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.085199] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.089465] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.107991] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.162108] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.185434] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.188976] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.275950] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.282849] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.292381] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.298299] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.304750] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.318320] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.351675] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.440169] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.461573] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.467269] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.471578] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.596466] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.635276] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.649859] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.663349] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.750832] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.781427] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.840404] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.841573] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.950984] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6423.958118] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6424.029582] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6424.050482] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6424.102615] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6424.116557] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6424.175980] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6424.716331] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6424.809421] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6424.843986] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6424.845539] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6424.905502] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6424.935220] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6424.942732] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6424.996874] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6425.001910] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6425.065248] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6425.386616] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6425.417710] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6425.493565] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6425.590606] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6425.599434] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6425.612101] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6425.630262] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6425.650464] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6425.678722] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6425.739766] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6425.800687] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6426.110580] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6426.271527] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6426.316171] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6426.333651] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6426.339859] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6426.377919] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6426.457569] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6426.621008] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6426.853133] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6426.929910] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6426.970224] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6426.985126] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6427.001874] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6427.205259] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6427.216898] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6427.312769] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6427.557261] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6427.628904] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6427.648803] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6427.677942] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6427.717726] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6427.946582] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6427.994221] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6428.019090] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6428.201985] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6428.299387] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6428.314169] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6428.344110] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6428.516971] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6428.621880] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6428.744878] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6428.784012] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6428.926461] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6429.085672] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6429.119467] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6429.167843] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6429.173082] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6429.413810] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6429.433347] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6429.440612] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6429.655858] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6429.765748] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6429.823431] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6429.956161] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6430.051231] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6430.065503] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6430.146729] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6430.218814] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6430.365307] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6430.487264] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6430.586836] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6430.653137] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6430.767051] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6430.773573] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6430.856725] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6431.068051] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6431.178447] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6431.217705] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6431.269236] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6431.344128] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6431.426309] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6431.502398] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6431.780383] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6431.809442] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6431.908362] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6431.961755] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6432.007740] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6432.147242] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6432.180225] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6432.295015] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6432.445248] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6432.498503] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6432.557937] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6432.632384] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6432.688309] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6432.823800] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6432.946953] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6433.032740] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6433.266294] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6433.310295] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6433.359441] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6433.367075] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6433.380979] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6433.459817] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6433.645216] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6433.935330] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6433.935423] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6433.972995] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6434.202966] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6434.203816] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6434.338112] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6434.462230] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6434.580189] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6434.633059] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6434.700234] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6434.806402] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6434.861387] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6434.923525] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6434.991566] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6435.077242] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6435.114054] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6435.122074] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6435.132251] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6435.143805] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6435.282781] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6435.292572] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6435.294330] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6435.297893] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6435.302036] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6435.350866] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6435.793323] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6435.937741] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6435.954100] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.022662] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.058756] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.134599] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.198696] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.205075] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.255359] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.287918] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.351873] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.382202] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.484181] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.484304] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.515059] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.632397] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.655566] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.664938] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.767755] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.771477] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.803772] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.823241] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.845748] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.914608] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6436.988323] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6437.002880] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6437.021083] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6437.032678] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6437.080652] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6437.177889] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6437.179257] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6437.310044] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6437.471224] xe 0000:00:02.0: [drm:xe_oa_remove_config_ioctl [xe]] Failed to remove unknown OA config
> > [ 6438.456169] xe 0000:00:02.0: Using 39-bit DMA addresses
More information about the Intel-xe
mailing list