Re: PCI: hotplug_event: PCIe PLDA Device BAR Reset

From: Naveen Kumar P
Date: Wed Mar 19 2025 - 11:09:34 EST


On Mon, Feb 24, 2025 at 11:03 PM Bjorn Helgaas <helgaas@xxxxxxxxxx> wrote:
>
> On Mon, Feb 24, 2025 at 05:45:35PM +0530, Naveen Kumar P wrote:
> > On Wed, Feb 19, 2025 at 10:36 PM Bjorn Helgaas <helgaas@xxxxxxxxxx> wrote:
> > > On Wed, Feb 19, 2025 at 05:52:47PM +0530, Naveen Kumar P wrote:
> > > > Hi all,
> > > >
> > > > I am writing to seek assistance with an issue we are experiencing with
> > > > a PCIe device (PLDA Device 5555) connected through PCI Express Root
> > > > Port 1 to the host bridge.
> > > >
> > > > We have observed that after booting the system, the Base Address
> > > > Register (BAR0) memory of this device gets reset to 0x0 after
> > > > approximately one hour or more (the timing is inconsistent). This was
> > > > verified using the lspci output and the setpci -s 01:00.0
> > > > BASE_ADDRESS_0 command.
> > > >
> > > > To diagnose the issue, we checked the dmesg log, but it did not
> > > > provide any relevant information. I then enabled dynamic debugging for
> > > > the PCI subsystem (drivers/pci/*) and noticed the following messages
> > > > related ACPI hotplug in the dmesg log:
> > > >
> > > > [ 0.465144] pci 0000:01:00.0: reg 0x10: [mem 0xb0400000-0xb07fffff]
> > > > ...
> > > > [ 6710.000355] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Bus check in hotplug_event()
> > > > [ 7916.250868] perf: interrupt took too long (4072 > 3601), lowering
> > > > kernel.perf_event_max_sample_rate to 49000
> > > > [ 7984.719647] perf: interrupt took too long (5378 > 5090), lowering
> > > > kernel.perf_event_max_sample_rate to 37000
> > > > [11051.409115] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Bus check in hotplug_event()
> > > > [11755.388727] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Bus check in hotplug_event()
> > > > [12223.885715] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Bus check in hotplug_event()
> > > > [14303.465636] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Bus check in hotplug_event()
> > > > After these messages appear, reading the device BAR memory results in
> > > > 0x0 instead of the expected value.
> > > >
> > > > I would like to understand the following:
> > > >
> > > > 1. What could be causing these hotplug_event debug messages?
> > >
> > > This is an ACPI Notify event. Basically the platform is telling us to
> > > re-enumerate the hierarchy below RP01 because a device might have been
> > > added or removed.
> >
> > Thank you for your response regarding the PCI BAR reset issue we are
> > experiencing with the PLDA Device 5555. I have a few follow-up
> > questions and additional information to share.
> >
> > 1. Clarification on "Platform":
> >
> > Does the term "platform" refer to the BIOS/ACPI subsystem in this context?
>
> Yes, "platform" refers to the BIOS/ACPI subsystem.
>
> > Can the platform signal to re-enumerate the hierarchy below RP01
> > without an actual device being removed or added? In our case, the PCI
> > PLDA device is neither physically removed nor connected to the bus on
> > the fly.
>
> Yes, I think a Bus Check notification is just a request for the OS to
> re-enumerate starting at the point in the device tree where it is
> notified. It's possible that no add or remove has occurred. ACPI
> r6.5, sec 5.6.6, includes the example of hardware that can't detect
> device changes during a system sleep state, so it issues a Bus Check
> on wake.
>
> > 2. System Configuration:
> >
> > We are currently using an x86_64 system with Ubuntu 20.04.6 LTS
> > (kernel version: 5.4.0-148-generic).
> > I have enabled dynamic debug logs for all files in the PCI and ACPI
> > subsystems and rebooted the system with the following parameters:
> > $ cat /proc/cmdline
> > BOOT_IMAGE=/vmlinuz-5.4.0-148-generic root=/dev/mapper/vg00-rootvol ro
> > quiet libata.force=noncq pci=nomsi pcie_aspm=off pcie_ports=on
> > "dyndbg=file drivers/pci/* +p; file drivers/acpi/* +p"
> >
> >
> > 3. Observations:
> >
> > After rebooting with more debug logs, I noticed the issue after 1 day,
> > 11:48 hours.
> > A snippet of the dmesg log is mentioned below (complete dmesg log is
> > attached to this email):
> >
> > [128845.248503] ACPI: GPE event 0x01
> > [128845.356866] ACPI: \_SB_.PCI0.RP01: ACPI_NOTIFY_BUS_CHECK event
> > [128845.357343] ACPI: \_SB_.PCI0.RP01: acpiphp_glue: Bus check in
> > hotplug_event()
>
> If you could add more debug in hotplug_event() and the things it
> calls, we might get more clues about what's happening.
>
> > 4. BAR Reset Issue:
> >
> > I filtered the lspci output to show the contents of the configuration
> > space starting at offset 0x10 for getting BASE_ADDRESS_0 by running
> > sudo lspci -xxx -s 01:00.0 | grep "10:".
> > Prior to the BAR reset issue, the lspci output was:
> > $ sudo lspci -xxx -s 01:00.0 | grep "10:"
> > 10: 00 00 40 b0 00 00 00 00 00 00 00 00 00 00 00 00
> >
> > During the ACPI_NOTIFY_BUS_CHECK event, the lspci output initially
> > showed all FF's, and then the next run of the same command showed
> > BASE_ADDRESS_0 reset to zero:
> > $ sudo lspci -xxx -s 01:00.0 | grep "10:"
> > 10: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
>
> Looks like the device isn't responding at all here. Could happen if
> the device is reset or powered down.
I am reaching out to follow up on the PCI BAR0 reset issue and its
potential connection to the ACPI errors observed in my system running
Linux kernel 6.13.0+.

Observations:
At timestamp 77998s, repeated AE_AML_LOOP_TIMEOUT errors are present
in the kernel log for the ACPI RDWD and \_SB.PCI0.SBRG.ADP1._PSR
methods.

Below are relevant dmesg log entries
[77998.038653]
Initialized Local Variables for Method [RDWD]:
[77998.038691] Local1: 00000000d0fe9fee <Obj> Integer
0000000000000015
[77998.038862] Local6: 00000000f41c1645 <Obj> Integer
0000000000000000
[77998.039031] Local7: 0000000040665c5c <Obj> Integer
000000000000AA55

[77998.039237] Initialized Arguments for Method [RDWD]: (2 arguments
defined for method invocation)
[77998.039273] Arg0: 00000000397dc53d <Obj> Integer
0000000000000014
[77998.039442] Arg1: 000000001099e334 <Obj> Integer
0000000000000002

[77998.039673] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to
previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[77998.040455] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR
due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[77998.043659] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter
state: AE_AML_LOOP_TIMEOUT

[78028.442980]
Initialized Local Variables for Method [RDWD]:
[78028.443019] Local1: 00000000898a9a7e <Obj> Integer
0000000000000017
[78028.443192] Local6: 000000000cf0c853 <Obj> Integer
0000000000000000
[78028.443362] Local7: 00000000bb4aa65f <Obj> Integer
000000000000AA55

[78028.443569] Initialized Arguments for Method [RDWD]: (2 arguments
defined for method invocation)
[78028.443606] Arg0: 00000000ef8d445b <Obj> Integer
0000000000000016
[78028.443775] Arg1: 000000006cacc887 <Obj> Integer
0000000000000003

[78028.444006] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to
previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78028.446366] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR
due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78028.451179] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter
state: AE_AML_LOOP_TIMEOUT


I noticed these ACPI errors lately and then immediately ran lspci at
timestamp 80269.706159 to check the status of the PCIe device (01:00.0
- PLDA Device 5555), which resulted in all 0xFFFFFFFF reads in PCI
config accessors, indicating the device was unresponsive.
Shortly after running the lspci, an ACPI_NOTIFY_BUS_CHECK event was
triggered, and subsequently BAR0 is reset to zero.

# lspci
00:00.0 Host bridge: Intel Corporation Atom Processor Z36xxx/Z37xxx
Series SoC Transaction Register (rev 11)
00:02.0 VGA compatible controller: Intel Corporation Atom Processor
Z36xxx/Z37xxx Series Graphics & Display (rev 11)
00:13.0 SATA controller: Intel Corporation Atom Processor E3800 Series
SATA AHCI Controller (rev 11)
00:14.0 USB controller: Intel Corporation Atom Processor
Z36xxx/Z37xxx, Celeron N2000 Series USB xHCI (rev 11)
00:17.0 SD Host controller: Intel Corporation Atom Processor E3800
Series eMMC 4.5 Controller (rev 11)
00:1a.0 Encryption controller: Intel Corporation Atom Processor
Z36xxx/Z37xxx Series Trusted Execution Engine (rev 11)
00:1b.0 Audio device: Intel Corporation Atom Processor Z36xxx/Z37xxx
Series High Definition Audio Controller (rev 11)
00:1c.0 PCI bridge: Intel Corporation Atom Processor E3800 Series PCI
Express Root Port 1 (rev 11)
00:1c.2 PCI bridge: Intel Corporation Atom Processor E3800 Series PCI
Express Root Port 3 (rev 11)
00:1c.3 PCI bridge: Intel Corporation Atom Processor E3800 Series PCI
Express Root Port 4 (rev 11)
00:1f.0 ISA bridge: Intel Corporation Atom Processor Z36xxx/Z37xxx
Series Power Control Unit (rev 11)
00:1f.3 SMBus: Intel Corporation Atom Processor E3800 Series SMBus
Controller (rev 11)
01:00.0 RAM memory: PLDA Device 5555 (rev ff)
03:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network
Connection (rev 03)

In this case, the PLDA Device 5555 showing rev ff - what does this indicate?

Below are relevant dmesg log entries:

[80269.706159] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x00
len=4 data=0xffffffff
[80269.706491] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x04
len=4 data=0xffffffff
[80269.706524] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x08
len=4 data=0xffffffff
[80269.706556] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x0c
len=4 data=0xffffffff
[80269.706587] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x10
len=4 data=0xffffffff
[80269.706617] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x14
len=4 data=0xffffffff
[80269.706648] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x18
len=4 data=0xffffffff
[80269.706678] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x1c
len=4 data=0xffffffff
[80269.706709] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x20
len=4 data=0xffffffff
[80269.706739] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x24
len=4 data=0xffffffff
[80269.706769] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x28
len=4 data=0xffffffff
[80269.706800] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x2c
len=4 data=0xffffffff
[80269.707344] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x30
len=4 data=0xffffffff
[80269.707380] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x34
len=4 data=0xffffffff
[80269.707411] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x38
len=4 data=0xffffffff
[80269.707447] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x3c
len=4 data=0xffffffff
[80269.828180] ACPI: \_SB_.PCI0.RP01: ACPI: ACPI_NOTIFY_BUS_CHECK event
[80269.828259] ACPI: \_SB_.PCI0.RP01: ACPI: OSL: Scheduling hotplug
event 0 for deferred handling
[80269.849376] ACPI: \_SB_.PCI0.RP01: Bridge acquired in hotplug_event()
[80269.850497] ACPI: \_SB_.PCI0.RP01: calling early_dump_pci_device()
in hotplug_event() - entry
[80269.850576] pcieport 0000:00:1c.0: config space:
[80269.851128] 00000000: 86 80 48 0f 07 04 10 00 11 00 04 06 10 00 81 00
[80269.851194] 00000010: 00 00 00 00 00 00 00 00 00 01 01 00 10 10 00 20
[80269.851253] 00000020: 40 b0 70 b0 f1 ff 01 00 00 00 00 00 00 00 00 00
[80269.851313] 00000030: 00 00 00 00 40 00 00 00 00 00 00 00 0b 01 12 00
[80269.851371] 00000040: 10 80 42 01 00 80 00 00 00 00 11 00 22 4c 31 01
[80269.851430] 00000050: 00 0c 21 30 60 00 04 00 00 00 40 01 00 00 00 00
[80269.851489] 00000060: 00 00 00 00 16 00 00 00 00 00 00 00 00 00 00 00
[80269.851546] 00000070: 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.851605] 00000080: 05 90 01 00 00 20 e0 fe 20 00 00 00 00 00 00 00
[80269.851663] 00000090: 0d a0 00 00 86 80 48 0f 00 00 00 00 00 00 00 00
[80269.851721] 000000a0: 01 00 03 c8 00 00 00 00 00 00 00 00 00 00 00 00
[80269.851780] 000000b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.851837] 000000c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.851895] 000000d0: 00 c0 00 00 42 08 00 00 00 80 11 c9 00 00 00 00
[80269.851953] 000000e0: 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
[80269.852011] 000000f0: 50 00 00 00 c0 00 00 00 1a 0f 13 01 00 40 00 01
[80269.852143] pci 0000:01:00.0: Dumping configuration space for 01:00.0:
[80269.852207] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00
len=4 data=0x55551556
[80269.852275] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04
len=4 data=0x100000
[80269.852342] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x08
len=4 data=0x5000000
[80269.852407] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x0c
len=4 data=0x0
[80269.852471] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x10
len=4 data=0x0
[80269.852537] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x14
len=4 data=0x0
[80269.852602] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x18
len=4 data=0x0
[80269.852666] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x1c
len=4 data=0x0
[80269.852731] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x20
len=4 data=0x0
[80269.852796] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x24
len=4 data=0x0
[80269.852860] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x28
len=4 data=0x0
[80269.852926] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x2c
len=4 data=0x4000
[80269.852991] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x30
len=4 data=0x0
[80269.853056] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34
len=4 data=0x40
[80269.853122] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x38
len=4 data=0x0
[80269.853186] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x3c
len=4 data=0x1ff


Questions:
Could these ACPI errors impact PCI device access?
Given that the errors originate from _SB.PCI0.SBUS.RDWD, could this
failure disrupt PCI device communication or cause access failures?

What typically causes AE_AML_LOOP_TIMEOUT errors?
Are there known methods to avoid these errors or mitigate their impact
on PCIe devices?

Could this be a firmware/BIOS issue?
If so, what tools or steps should I use to verify and debug the ACPI tables?

I appreciate any insights or guidance on how to debug this issue further.


>
> What is this device? What driver is bound to it? I don't see
> anything in dmesg that identifies a driver.
>
> > $ sudo lspci -xxx -s 01:00.0 | grep "10:"
> > 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> >
> > I am not sure why lspci initially showed all FF's and then the next
> > run showed BAR0 reset.
> > Complete sudo lspci -xxx -s 01:00.0 output is captured in the attached
> > dmesg_log_pci_bar_reset.txt file.
> >
> > /sys/firmware/acpi/interrupts/gpe01: 1 EN enabled unmasked
> > /sys/firmware/acpi/interrupts/gpe02: 1 EN enabled unmasked
> >
> >
> > 5. Debugging Steps:
> >
> > Instrumenting acpiphp_check_bridge() will indicate whether we are
> > enabling or disabling a slot (enable_slot() or disable_slot()). Based
> > on the dmesg log, there is only one ACPI_NOTIFY_BUS_CHECK event, and
> > it is most likely for disable_slot(). However, does instrumenting
> > acpiphp_check_bridge() will explain why this is happening without
> > actually removing the PCI PLDA device?
>
> No, it won't explain that. But if there was no add/remove event,
> re-enumeration should be harmless. The objective of instrumentation
> would be to figure out why it isn't harmless in this case.
>
> > 6. Reproduction and Additional Information:
> >
> > We do not see any clear pattern or procedure to reproduce this issue.
> > Once the issue occurs, rebooting the machine resolves it, but it
> > reoccurs after an unpredictable time.
> > We have another identical hardware setup with an older kernel (Ubuntu
> > 16.04.4 LTS, kernel version: 4.4.0-66-generic), and this issue has not
> > been observed so far on that machine.
> > Any additional pointers or suggestions on how to proceed to the root
> > cause of this issue would be greatly appreciated.
>
> You're seeing the problem on v5.4 (Nov 2019), which is much newer than
> v4.4 (Jan 2016). But v5.4 is still really too old to spend a lot of
> time on unless the problem still happens on a current kernel.
>
> Bjorn
[ 3.015675] ACPI: Device [SEC0] status [0000000f]
[ 3.015882] ACPI: Device [PDRC] status [0000000f]
[ 3.016303] ACPI: Device [LNKA] status [0000000b]
[ 3.016708] ACPI: Device [LNKB] status [00000009]
[ 3.017114] ACPI: Device [LNKC] status [0000000b]
[ 3.017512] ACPI: Device [LNKD] status [0000000b]
[ 3.017915] ACPI: Device [LNKE] status [0000000b]
[ 3.018333] ACPI: Device [LNKF] status [0000000b]
[ 3.018731] ACPI: Device [LNKG] status [0000000b]
[ 3.019143] ACPI: Device [LNKH] status [0000000b]
[ 3.019751] ACPI: Device [LPEA] status [00000000]
[ 3.019837] ACPI: \_SB_.LPEA.PLPE: New power resource
[ 3.020815] ACPI: Device [LPA2] status [00000000]
[ 3.020888] ACPI: \_SB_.LPA2.PLPE: New power resource
[ 3.021385] ACPI: Device [ADMA] status [0000000f]
[ 3.021562] ACPI: Device [PWRB] status [0000000f]
[ 3.021720] ACPI: Device [SLPB] status [0000000f]
[ 3.022140] ACPI: Device [LID0] status [0000000f]
[ 3.022683] ACPI: Device [GPED] status [00000000]
[ 3.022935] ACPI: Device [MBID] status [0000000f]
[ 3.023153] ACPI: Device [PIND] status [00000000]
[ 3.023268] ACPI: Device [_TZ] status [0000000f]
[ 3.023809] ACPI: Device [ACPI] status [0000000f]
[ 3.023841] ACPI: Device [CPU0] status [0000000f]
[ 3.023923] ACPI: Device [CPU1] status [0000000f]
[ 3.023956] ACPI: Device [CPU2] status [0000000f]
[ 3.023988] ACPI: Device [CPU3] status [0000000f]
[ 3.024020] ACPI: Device [_SB] status [0000000f]
[ 3.024049] ACPI: Device [RTC0] status [0000000f]
[ 3.024094] ACPI: Device [HPET] status [0000000f]
[ 3.024244] ACPI: Device [PCI0] status [0000000f]
[ 3.024769] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 3.024788] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[ 3.025370] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
[ 3.026150] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR]
[ 3.026180] acpi PNP0A08:00: setup_mcfg_map(0000 [bus 00-ff] ECAM 0x0000000000000000)
[ 3.026190] acpi PNP0A08:00: pci_mmconfig_insert(0000 [bus 00-ff])
[ 3.026701] pci_create_root_bus:
[ 3.027923] PCI host bridge to bus 0000:00
[ 3.027938] pci_bus 0000:00: root bus resource [io 0x0070-0x0077]
[ 3.027946] pci_bus 0000:00: root bus resource [io 0x0000-0x006f window]
[ 3.027952] pci_bus 0000:00: root bus resource [io 0x0078-0x0cf7 window]
[ 3.027957] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 3.027964] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
[ 3.027970] pci_bus 0000:00: root bus resource [mem 0xa0000000-0xb0b17fff window]
[ 3.027976] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 3.027988] pci_scan_child_bus_extend:
[ 3.027992] pci_bus 0000:00: scanning bus
[ 3.027995] pci_scan_slot:
[ 3.027998] only_one_child:
[ 3.028001] pci_scan_device:
[ 3.028006] pci_setup_device:
[ 3.028027] pci_cfg_space_size_ext:
[ 3.028038] pci_set_removable:
[ 3.028042] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000 conventional PCI endpoint
[ 3.028053] pci_read_bases:
[ 3.028055] __pci_size_bars:
[ 3.028073] __pci_size_bars:
[ 3.028079] __pci_read_base:
[ 3.028083] __pci_read_base:
[ 3.028086] __pci_read_base:
[ 3.028089] __pci_read_base:
[ 3.028092] __pci_read_base:
[ 3.028095] __pci_read_base:
[ 3.028098] __pci_read_base:
[ 3.028103] pci_device_add:
[ 3.028121] pci_init_capabilities:
[ 3.028300] pci_scan_slot:
[ 3.028304] only_one_child:
[ 3.028308] pci_scan_device:
[ 3.028312] pci_scan_slot:
[ 3.028314] only_one_child:
[ 3.028317] pci_scan_device:
[ 3.028321] pci_setup_device:
[ 3.028346] pci_set_removable:
[ 3.028351] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000 conventional PCI endpoint
[ 3.028361] pci_read_bases:
[ 3.028365] __pci_size_bars:
[ 3.028380] __pci_size_bars:
[ 3.028386] __pci_read_base:
[ 3.028391] pci 0000:00:02.0: BAR 0 [mem 0xb0000000-0xb03fffff]
[ 3.028396] __pci_read_base:
[ 3.028399] __pci_read_base:
[ 3.028403] pci 0000:00:02.0: BAR 2 [mem 0xa0000000-0xafffffff pref]
[ 3.028408] __pci_read_base:
[ 3.028411] __pci_read_base:
[ 3.028415] pci 0000:00:02.0: BAR 4 [io 0xe080-0xe087]
[ 3.028420] __pci_read_base:
[ 3.028423] __pci_read_base:
[ 3.028427] pci_device_add:
[ 3.028446] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 3.028453] pci_init_capabilities:
[ 3.028653] pci_scan_slot:
[ 3.028658] only_one_child:
[ 3.028661] pci_scan_device:
[ 3.028665] pci_scan_slot:
[ 3.028667] only_one_child:
[ 3.028670] pci_scan_device:
[ 3.028674] pci_scan_slot:
[ 3.028676] only_one_child:
[ 3.028679] pci_scan_device:
[ 3.028682] pci_scan_slot:
[ 3.028685] only_one_child:
[ 3.028687] pci_scan_device:
[ 3.028691] pci_scan_slot:
[ 3.028693] only_one_child:
[ 3.028696] pci_scan_device:
[ 3.028699] pci_scan_slot:
[ 3.028702] only_one_child:
[ 3.028705] pci_scan_device:
[ 3.028708] pci_scan_slot:
[ 3.028711] only_one_child:
[ 3.028713] pci_scan_device:
[ 3.028717] pci_scan_slot:
[ 3.028719] only_one_child:
[ 3.028722] pci_scan_device:
[ 3.028725] pci_scan_slot:
[ 3.028728] only_one_child:
[ 3.028730] pci_scan_device:
[ 3.028734] pci_scan_slot:
[ 3.028736] only_one_child:
[ 3.028739] pci_scan_device:
[ 3.028742] pci_scan_slot:
[ 3.028745] only_one_child:
[ 3.028748] pci_scan_device:
[ 3.028751] pci_scan_slot:
[ 3.028754] only_one_child:
[ 3.028756] pci_scan_device:
[ 3.028760] pci_scan_slot:
[ 3.028762] only_one_child:
[ 3.028765] pci_scan_device:
[ 3.028768] pci_scan_slot:
[ 3.028771] only_one_child:
[ 3.028773] pci_scan_device:
[ 3.028777] pci_scan_slot:
[ 3.028779] only_one_child:
[ 3.028782] pci_scan_device:
[ 3.028785] pci_scan_slot:
[ 3.028788] only_one_child:
[ 3.028790] pci_scan_device:
[ 3.028794] pci_scan_slot:
[ 3.028796] only_one_child:
[ 3.028799] pci_scan_device:
[ 3.028804] pci_setup_device:
[ 3.028834] pci_set_removable:
[ 3.028838] pci 0000:00:13.0: [8086:0f23] type 00 class 0x010601 conventional PCI endpoint
[ 3.028851] pci_read_bases:
[ 3.028856] __pci_size_bars:
[ 3.028881] __pci_size_bars:
[ 3.028888] __pci_read_base:
[ 3.028893] pci 0000:00:13.0: BAR 0 [io 0xe070-0xe077]
[ 3.028898] __pci_read_base:
[ 3.028902] pci 0000:00:13.0: BAR 1 [io 0xe060-0xe063]
[ 3.028907] __pci_read_base:
[ 3.028911] pci 0000:00:13.0: BAR 2 [io 0xe050-0xe057]
[ 3.028915] __pci_read_base:
[ 3.028920] pci 0000:00:13.0: BAR 3 [io 0xe040-0xe043]
[ 3.028924] __pci_read_base:
[ 3.028928] pci 0000:00:13.0: BAR 4 [io 0xe020-0xe03f]
[ 3.028932] __pci_read_base:
[ 3.028937] pci 0000:00:13.0: BAR 5 [mem 0xb0b17000-0xb0b177ff]
[ 3.028941] __pci_read_base:
[ 3.028947] pci_device_add:
[ 3.028961] pci_init_capabilities:
[ 3.028995] pci 0000:00:13.0: PME# supported from D3hot
[ 3.029005] pci 0000:00:13.0: PME# disabled
[ 3.029168] pci_scan_slot:
[ 3.029173] only_one_child:
[ 3.029176] pci_scan_device:
[ 3.029181] pci_setup_device:
[ 3.029208] pci_set_removable:
[ 3.029212] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330 conventional PCI endpoint
[ 3.029223] pci_read_bases:
[ 3.029228] __pci_size_bars:
[ 3.029250] __pci_size_bars:
[ 3.029257] __pci_read_base:
[ 3.029262] pci 0000:00:14.0: BAR 0 [mem 0xb0b00000-0xb0b0ffff 64bit]
[ 3.029268] __pci_read_base:
[ 3.029272] __pci_read_base:
[ 3.029275] __pci_read_base:
[ 3.029278] __pci_read_base:
[ 3.029282] __pci_read_base:
[ 3.029287] pci_device_add:
[ 3.029301] pci_init_capabilities:
[ 3.029328] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 3.029336] pci 0000:00:14.0: PME# disabled
[ 3.029509] pci_scan_slot:
[ 3.029514] only_one_child:
[ 3.029517] pci_scan_device:
[ 3.029521] pci_scan_slot:
[ 3.029523] only_one_child:
[ 3.029526] pci_scan_device:
[ 3.029529] pci_scan_slot:
[ 3.029532] only_one_child:
[ 3.029534] pci_scan_device:
[ 3.029539] pci_setup_device:
[ 3.029767] pci_set_removable:
[ 3.029773] pci 0000:00:17.0: [8086:0f50] type 00 class 0x080501 conventional PCI endpoint
[ 3.029786] pci_read_bases:
[ 3.029792] __pci_size_bars:
[ 3.029819] __pci_size_bars:
[ 3.029827] __pci_read_base:
[ 3.029832] pci 0000:00:17.0: BAR 0 [mem 0xb0b16000-0xb0b16fff]
[ 3.029837] __pci_read_base:
[ 3.029842] pci 0000:00:17.0: BAR 1 [mem 0xb0b15000-0xb0b15fff]
[ 3.029847] __pci_read_base:
[ 3.029851] __pci_read_base:
[ 3.029854] __pci_read_base:
[ 3.029858] __pci_read_base:
[ 3.029861] __pci_read_base:
[ 3.029867] pci_device_add:
[ 3.029882] pci_init_capabilities:
[ 3.029910] pci 0000:00:17.0: PME# supported from D0 D3hot
[ 3.029918] pci 0000:00:17.0: PME# disabled
[ 3.030093] pci_scan_slot:
[ 3.030098] only_one_child:
[ 3.030101] pci_scan_device:
[ 3.030105] pci_scan_slot:
[ 3.030108] only_one_child:
[ 3.030111] pci_scan_device:
[ 3.030114] pci_scan_slot:
[ 3.030117] only_one_child:
[ 3.030119] pci_scan_device:
[ 3.030124] pci_setup_device:
[ 3.030280] pci_set_removable:
[ 3.030286] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000 conventional PCI endpoint
[ 3.030302] pci_read_bases:
[ 3.030308] __pci_size_bars:
[ 3.030345] __pci_size_bars:
[ 3.030355] __pci_read_base:
[ 3.030360] pci 0000:00:1a.0: BAR 0 [mem 0xb0900000-0xb09fffff]
[ 3.030366] __pci_read_base:
[ 3.030371] pci 0000:00:1a.0: BAR 1 [mem 0xb0800000-0xb08fffff]
[ 3.030375] __pci_read_base:
[ 3.030380] __pci_read_base:
[ 3.030384] __pci_read_base:
[ 3.030388] __pci_read_base:
[ 3.030392] __pci_read_base:
[ 3.030398] pci_device_add:
[ 3.030413] pci_init_capabilities:
[ 3.030456] pci 0000:00:1a.0: PME# supported from D0 D3hot
[ 3.030465] pci 0000:00:1a.0: PME# disabled
[ 3.030643] pci_scan_slot:
[ 3.030647] only_one_child:
[ 3.030651] pci_scan_device:
[ 3.030656] pci_setup_device:
[ 3.030684] pci_set_removable:
[ 3.030689] pci 0000:00:1b.0: [8086:0f04] type 00 class 0x040300 conventional PCI endpoint
[ 3.030702] pci_read_bases:
[ 3.030707] __pci_size_bars:
[ 3.030733] __pci_size_bars:
[ 3.030741] __pci_read_base:
[ 3.030746] pci 0000:00:1b.0: BAR 0 [mem 0xb0b10000-0xb0b13fff 64bit]
[ 3.030752] __pci_read_base:
[ 3.030756] __pci_read_base:
[ 3.030759] __pci_read_base:
[ 3.030763] __pci_read_base:
[ 3.030766] __pci_read_base:
[ 3.030772] pci_device_add:
[ 3.030786] pci_init_capabilities:
[ 3.030817] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 3.030826] pci 0000:00:1b.0: PME# disabled
[ 3.030998] pci_scan_slot:
[ 3.031006] only_one_child:
[ 3.031010] pci_scan_device:
[ 3.031015] pci_setup_device:
[ 3.031038] pci_cfg_space_size_ext:
[ 3.031049] pci_set_removable:
[ 3.031054] pci 0000:00:1c.0: [8086:0f48] type 01 class 0x060400 PCIe Root Port
[ 3.031064] pci_read_bases:
[ 3.031069] __pci_size_bars:
[ 3.031077] __pci_size_bars:
[ 3.031083] __pci_read_base:
[ 3.031087] __pci_read_base:
[ 3.031090] __pci_read_base:
[ 3.031093] pci_read_bridge_windows:
[ 3.031097] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 3.031103] pci_read_bridge_io:
[ 3.031107] pci_read_bridge_mmio:
[ 3.031112] pci 0000:00:1c.0: bridge window [mem 0xb0400000-0xb07fffff]
[ 3.031130] pci_device_add:
[ 3.031153] pci_init_capabilities:
[ 3.031186] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 3.031194] pci 0000:00:1c.0: PME# disabled
[ 3.031372] pci_scan_device:
[ 3.031379] pci_scan_device:
[ 3.031383] pci_setup_device:
[ 3.031407] pci_cfg_space_size_ext:
[ 3.031417] pci_set_removable:
[ 3.031421] pci 0000:00:1c.2: [8086:0f4c] type 01 class 0x060400 PCIe Root Port
[ 3.031432] pci_read_bases:
[ 3.031437] __pci_size_bars:
[ 3.031445] __pci_size_bars:
[ 3.031452] __pci_read_base:
[ 3.031455] __pci_read_base:
[ 3.031458] __pci_read_base:
[ 3.031462] pci_read_bridge_windows:
[ 3.031466] pci 0000:00:1c.2: PCI bridge to [bus 02]
[ 3.031472] pci_read_bridge_io:
[ 3.031476] pci_read_bridge_mmio:
[ 3.031492] pci_device_add:
[ 3.031515] pci_init_capabilities:
[ 3.031548] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 3.031556] pci 0000:00:1c.2: PME# disabled
[ 3.031737] pci_scan_device:
[ 3.031744] pci_setup_device:
[ 3.031767] pci_cfg_space_size_ext:
[ 3.031778] pci_set_removable:
[ 3.031782] pci 0000:00:1c.3: [8086:0f4e] type 01 class 0x060400 PCIe Root Port
[ 3.031793] pci_read_bases:
[ 3.031797] __pci_size_bars:
[ 3.031805] __pci_size_bars:
[ 3.031812] __pci_read_base:
[ 3.031815] __pci_read_base:
[ 3.031818] __pci_read_base:
[ 3.031822] pci_read_bridge_windows:
[ 3.031826] pci 0000:00:1c.3: PCI bridge to [bus 03]
[ 3.031831] pci_read_bridge_io:
[ 3.031836] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
[ 3.031841] pci_read_bridge_mmio:
[ 3.031846] pci 0000:00:1c.3: bridge window [mem 0xb0a00000-0xb0afffff]
[ 3.031863] pci_device_add:
[ 3.031885] pci_init_capabilities:
[ 3.031919] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 3.031927] pci 0000:00:1c.3: PME# disabled
[ 3.032108] pci_scan_device:
[ 3.032114] pci_scan_device:
[ 3.032118] pci_scan_device:
[ 3.032122] pci_scan_device:
[ 3.032125] pci_scan_slot:
[ 3.032128] only_one_child:
[ 3.032131] pci_scan_device:
[ 3.032134] pci_scan_slot:
[ 3.032137] only_one_child:
[ 3.032139] pci_scan_device:
[ 3.032143] pci_scan_slot:
[ 3.032145] only_one_child:
[ 3.032148] pci_scan_device:
[ 3.032152] pci_setup_device:
[ 3.032177] pci_set_removable:
[ 3.032182] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100 conventional PCI endpoint
[ 3.032192] pci_read_bases:
[ 3.032197] __pci_size_bars:
[ 3.032219] __pci_size_bars:
[ 3.032226] __pci_read_base:
[ 3.032230] __pci_read_base:
[ 3.032233] __pci_read_base:
[ 3.032237] __pci_read_base:
[ 3.032240] __pci_read_base:
[ 3.032243] __pci_read_base:
[ 3.032247] __pci_read_base:
[ 3.032252] pci_device_add:
[ 3.032266] pci_init_capabilities:
[ 3.032506] pci_scan_device:
[ 3.032513] pci_scan_device:
[ 3.032517] pci_scan_device:
[ 3.032523] pci_setup_device:
[ 3.032560] pci_set_removable:
[ 3.032565] pci 0000:00:1f.3: [8086:0f12] type 00 class 0x0c0500 conventional PCI endpoint
[ 3.032585] pci_read_bases:
[ 3.032593] __pci_size_bars:
[ 3.032653] __pci_size_bars:
[ 3.032668] __pci_read_base:
[ 3.032674] pci 0000:00:1f.3: BAR 0 [mem 0xb0b14000-0xb0b1401f]
[ 3.032680] __pci_read_base:
[ 3.032685] __pci_read_base:
[ 3.032690] __pci_read_base:
[ 3.032695] __pci_read_base:
[ 3.032701] pci 0000:00:1f.3: BAR 4 [io 0xe000-0xe01f]
[ 3.032705] __pci_read_base:
[ 3.032710] __pci_read_base:
[ 3.032720] pci_device_add:
[ 3.032734] pci_init_capabilities:
[ 3.032940] pci_scan_device:
[ 3.032946] pci_scan_device:
[ 3.032951] pci_scan_device:
[ 3.032954] pci_scan_device:
[ 3.032960] pci_bus 0000:00: fixups for bus
[ 3.032964] pci_read_bridge_bases:
[ 3.032967] pci_scan_bridge_extend:
[ 3.032972] pci 0000:00:1c.0: scanning [bus 01-01] behind bridge, pass 0
[ 3.032998] pci_bridge_child_ext_cfg_accessible:
[ 3.033081] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556
[ 3.033104] pci_scan_child_bus_extend:
[ 3.033110] pci_bus 0000:01: scanning bus
[ 3.033113] pci_scan_slot:
[ 3.033116] only_one_child:
[ 3.033119] pci_scan_device:
[ 3.033123] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556
[ 3.033130] pci_setup_device:
[ 3.033135] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x0e len=1 data=0x0
[ 3.033142] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10
[ 3.033149] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40
[ 3.033156] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801
[ 3.033162] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005
[ 3.033169] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=2 data=0x10
[ 3.033176] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x62 len=2 data=0x2
[ 3.033182] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x64 len=4 data=0x8fc2
[ 3.033189] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421
[ 3.033201] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x08 len=4 data=0x5000000
[ 3.033207] pci_cfg_space_size_ext:
[ 3.033211] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033218] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556
[ 3.033225] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033232] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x8c len=4 data=0x0
[ 3.033239] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421
[ 3.033245] pci_set_removable:
[ 3.033249] pci 0000:01:00.0: [1556:5555] type 00 class 0x050000 PCIe Endpoint
[ 3.033256] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x7
[ 3.033263] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x407
[ 3.033270] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x407
[ 3.033276] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x7
[ 3.033283] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x3d len=1 data=0x1
[ 3.033290] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x3c len=1 data=0xb
[ 3.033294] pci_read_bases:
[ 3.033299] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x7
[ 3.033305] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x4
[ 3.033310] __pci_size_bars:
[ 3.033314] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 data=0xb0400000
[ 3.033321] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 value=0xffffffff
[ 3.033328] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 data=0xffc00000
[ 3.033335] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 value=0xb0400000
[ 3.033341] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 data=0x0
[ 3.033348] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 value=0xffffffff
[ 3.033354] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 data=0x0
[ 3.033361] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 value=0x0
[ 3.033367] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 data=0x0
[ 3.033374] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 value=0xffffffff
[ 3.033380] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 data=0x0
[ 3.033387] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 value=0x0
[ 3.033393] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 data=0x0
[ 3.033399] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 value=0xffffffff
[ 3.033406] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 data=0x0
[ 3.033412] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 value=0x0
[ 3.033419] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 data=0x0
[ 3.033425] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 value=0xffffffff
[ 3.033432] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 data=0x0
[ 3.033438] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 value=0x0
[ 3.033445] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 data=0x0
[ 3.033451] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 value=0xffffffff
[ 3.033457] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 data=0x0
[ 3.033464] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 value=0x0
[ 3.033469] __pci_size_bars:
[ 3.033473] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 data=0x0
[ 3.033480] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 value=0xfffff800
[ 3.033486] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 data=0x0
[ 3.033493] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 value=0x0
[ 3.033499] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 value=0x7
[ 3.033504] __pci_read_base:
[ 3.033508] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 data=0xb0400000
[ 3.033514] pci 0000:01:00.0: BAR 0 [mem 0xb0400000-0xb07fffff]
[ 3.033520] __pci_read_base:
[ 3.033524] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 data=0x0
[ 3.033529] __pci_read_base:
[ 3.033533] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 data=0x0
[ 3.033538] __pci_read_base:
[ 3.033543] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 data=0x0
[ 3.033547] __pci_read_base:
[ 3.033552] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 data=0x0
[ 3.033557] __pci_read_base:
[ 3.033561] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 data=0x0
[ 3.033566] __pci_read_base:
[ 3.033570] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 data=0x0
[ 3.033577] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x2c len=2 data=0x4000
[ 3.033583] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x2e len=2 data=0x0
[ 3.033588] pci_device_add:
[ 3.033593] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x68 len=2 data=0x2800
[ 3.033601] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x64 len=4 data=0x8fc2
[ 3.033607] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x68 len=2 data=0x2800
[ 3.033614] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x84 len=4 data=0x2
[ 3.033621] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033628] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033634] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x84 len=4 data=0x2
[ 3.033653] pci_init_capabilities:
[ 3.033660] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10
[ 3.033667] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40
[ 3.033674] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801
[ 3.033681] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005
[ 3.033687] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=2 data=0x10
[ 3.033694] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10
[ 3.033701] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40
[ 3.033707] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801
[ 3.033714] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005
[ 3.033721] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x4a len=2 data=0x0
[ 3.033727] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10
[ 3.033734] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40
[ 3.033741] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801
[ 3.033747] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005
[ 3.033754] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=2 data=0x10
[ 3.033761] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10
[ 3.033767] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40
[ 3.033774] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801
[ 3.033781] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005
[ 3.033787] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=2 data=0x10
[ 3.033795] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10
[ 3.033801] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40
[ 3.033808] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801
[ 3.033815] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005
[ 3.033821] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=2 data=0x10
[ 3.033828] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033835] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033841] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033847] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033856] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10
[ 3.033863] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40
[ 3.033869] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801
[ 3.033876] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x42 len=2 data=0x3
[ 3.033883] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10
[ 3.033889] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10
[ 3.033896] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40
[ 3.033903] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801
[ 3.033909] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005
[ 3.033916] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=2 data=0x10
[ 3.033923] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033930] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033937] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033943] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033949] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033956] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033962] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033969] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.033976] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421
[ 3.033983] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x72 len=2 data=0x21
[ 3.033994] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10
[ 3.034002] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=1 data=0x40
[ 3.034009] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=2 data=0x4801
[ 3.034015] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=2 data=0x6005
[ 3.034022] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=2 data=0x10
[ 3.034028] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x44 len=2 data=0x8
[ 3.034150] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.034160] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.034167] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.034174] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.034180] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.034187] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x100 len=4 data=0x0
[ 3.034228] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x64 len=4 data=0x8fc2
[ 3.034238] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421
[ 3.034246] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x72 len=2 data=0x21
[ 3.034254] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x70 len=2 data=0x0
[ 3.034261] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x70 len=2 data=0x0
[ 3.034268] KERNEL PCI WRITE: res=0, bus=01 dev=00 func=0 pos=0x70 len=2 value=0x0
[ 3.043026] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421
[ 3.043036] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x70 len=2 data=0x0
[ 3.043045] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421
[ 3.043052] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421
[ 3.043064] pci_scan_slot:
[ 3.043069] only_one_child:
[ 3.043071] pci_scan_slot:
[ 3.043074] only_one_child:
[ 3.043076] pci_scan_slot:
[ 3.043079] only_one_child:
[ 3.043081] pci_scan_slot:
[ 3.043084] only_one_child:
[ 3.043086] pci_scan_slot:
[ 3.043089] only_one_child:
[ 3.043091] pci_scan_slot:
[ 3.043094] only_one_child:
[ 3.043096] pci_scan_slot:
[ 3.043099] only_one_child:
[ 3.043101] pci_scan_slot:
[ 3.043104] only_one_child:
[ 3.043106] pci_scan_slot:
[ 3.043109] only_one_child:
[ 3.043111] pci_scan_slot:
[ 3.043114] only_one_child:
[ 3.043116] pci_scan_slot:
[ 3.043118] only_one_child:
[ 3.043121] pci_scan_slot:
[ 3.043123] only_one_child:
[ 3.043126] pci_scan_slot:
[ 3.043128] only_one_child:
[ 3.043131] pci_scan_slot:
[ 3.043133] only_one_child:
[ 3.043136] pci_scan_slot:
[ 3.043138] only_one_child:
[ 3.043141] pci_scan_slot:
[ 3.043143] only_one_child:
[ 3.043146] pci_scan_slot:
[ 3.043148] only_one_child:
[ 3.043151] pci_scan_slot:
[ 3.043153] only_one_child:
[ 3.043156] pci_scan_slot:
[ 3.043158] only_one_child:
[ 3.043161] pci_scan_slot:
[ 3.043163] only_one_child:
[ 3.043166] pci_scan_slot:
[ 3.043168] only_one_child:
[ 3.043171] pci_scan_slot:
[ 3.043173] only_one_child:
[ 3.043176] pci_scan_slot:
[ 3.043178] only_one_child:
[ 3.043181] pci_scan_slot:
[ 3.043183] only_one_child:
[ 3.043186] pci_scan_slot:
[ 3.043188] only_one_child:
[ 3.043191] pci_scan_slot:
[ 3.043193] only_one_child:
[ 3.043196] pci_scan_slot:
[ 3.043198] only_one_child:
[ 3.043200] pci_scan_slot:
[ 3.043203] only_one_child:
[ 3.043205] pci_scan_slot:
[ 3.043208] only_one_child:
[ 3.043210] pci_scan_slot:
[ 3.043213] only_one_child:
[ 3.043215] pci_scan_slot:
[ 3.043218] only_one_child:
[ 3.043222] pci_bus 0000:01: fixups for bus
[ 3.043225] pci_read_bridge_bases:
[ 3.043229] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 3.043234] pci_read_bridge_io:
[ 3.043238] pci_read_bridge_mmio:
[ 3.043247] pci_bus 0000:01: bus scan returning with max=01
[ 3.043254] pci_scan_bridge_extend:
[ 3.043259] pci 0000:00:1c.2: scanning [bus 02-02] behind bridge, pass 0
[ 3.043284] pci_bridge_child_ext_cfg_accessible:
[ 3.043374] pci_scan_child_bus_extend:
[ 3.043380] pci_bus 0000:02: scanning bus
[ 3.043384] pci_scan_slot:
[ 3.043386] only_one_child:
[ 3.043389] pci_scan_device:
[ 3.043393] pci_scan_slot:
[ 3.043396] only_one_child:
[ 3.043398] pci_scan_slot:
[ 3.043400] only_one_child:
[ 3.043403] pci_scan_slot:
[ 3.043405] only_one_child:
[ 3.043408] pci_scan_slot:
[ 3.043410] only_one_child:
[ 3.043413] pci_scan_slot:
[ 3.043415] only_one_child:
[ 3.043417] pci_scan_slot:
[ 3.043420] only_one_child:
[ 3.043422] pci_scan_slot:
[ 3.043425] only_one_child:
[ 3.043427] pci_scan_slot:
[ 3.043430] only_one_child:
[ 3.043432] pci_scan_slot:
[ 3.043434] only_one_child:
[ 3.043437] pci_scan_slot:
[ 3.043439] only_one_child:
[ 3.043442] pci_scan_slot:
[ 3.043444] only_one_child:
[ 3.043447] pci_scan_slot:
[ 3.043449] only_one_child:
[ 3.043451] pci_scan_slot:
[ 3.043454] only_one_child:
[ 3.043456] pci_scan_slot:
[ 3.043459] only_one_child:
[ 3.043461] pci_scan_slot:
[ 3.043463] only_one_child:
[ 3.043466] pci_scan_slot:
[ 3.043468] only_one_child:
[ 3.043471] pci_scan_slot:
[ 3.043473] only_one_child:
[ 3.043476] pci_scan_slot:
[ 3.043478] only_one_child:
[ 3.043481] pci_scan_slot:
[ 3.043483] only_one_child:
[ 3.043485] pci_scan_slot:
[ 3.043488] only_one_child:
[ 3.043490] pci_scan_slot:
[ 3.043493] only_one_child:
[ 3.043495] pci_scan_slot:
[ 3.043497] only_one_child:
[ 3.043500] pci_scan_slot:
[ 3.043502] only_one_child:
[ 3.043505] pci_scan_slot:
[ 3.043507] only_one_child:
[ 3.043510] pci_scan_slot:
[ 3.043512] only_one_child:
[ 3.043515] pci_scan_slot:
[ 3.043517] only_one_child:
[ 3.043519] pci_scan_slot:
[ 3.043522] only_one_child:
[ 3.043524] pci_scan_slot:
[ 3.043527] only_one_child:
[ 3.043529] pci_scan_slot:
[ 3.043532] only_one_child:
[ 3.043534] pci_scan_slot:
[ 3.043536] only_one_child:
[ 3.043539] pci_scan_slot:
[ 3.043541] only_one_child:
[ 3.043545] pci_bus 0000:02: fixups for bus
[ 3.043548] pci_read_bridge_bases:
[ 3.043551] pci 0000:00:1c.2: PCI bridge to [bus 02]
[ 3.043556] pci_read_bridge_io:
[ 3.043560] pci_read_bridge_mmio:
[ 3.043569] pci_bus 0000:02: bus scan returning with max=02
[ 3.043575] pci_scan_bridge_extend:
[ 3.043580] pci 0000:00:1c.3: scanning [bus 03-03] behind bridge, pass 0
[ 3.043605] pci_bridge_child_ext_cfg_accessible:
[ 3.043719] pci_scan_child_bus_extend:
[ 3.043726] pci_bus 0000:03: scanning bus
[ 3.043729] pci_scan_slot:
[ 3.043732] only_one_child:
[ 3.043735] pci_scan_device:
[ 3.043740] pci_setup_device:
[ 3.043769] pci_cfg_space_size_ext:
[ 3.043789] pci 0000:03:00.0: working around ROM BAR overlap defect
[ 3.043794] pci_set_removable:
[ 3.043797] pci 0000:03:00.0: [8086:1533] type 00 class 0x020000 PCIe Endpoint
[ 3.043814] pci_read_bases:
[ 3.043821] __pci_size_bars:
[ 3.043866] __pci_size_bars:
[ 3.043877] __pci_read_base:
[ 3.043883] pci 0000:03:00.0: BAR 0 [mem 0xb0a00000-0xb0a7ffff]
[ 3.043888] __pci_read_base:
[ 3.043893] __pci_read_base:
[ 3.043898] pci 0000:03:00.0: BAR 2 [io 0xd000-0xd01f]
[ 3.043902] __pci_read_base:
[ 3.043908] pci 0000:03:00.0: BAR 3 [mem 0xb0a80000-0xb0a83fff]
[ 3.043912] __pci_read_base:
[ 3.043917] __pci_read_base:
[ 3.043921] __pci_read_base:
[ 3.043929] pci_device_add:
[ 3.043966] pci_init_capabilities:
[ 3.044051] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 3.044061] pci 0000:03:00.0: PME# disabled
[ 3.044352] pci_scan_slot:
[ 3.044357] only_one_child:
[ 3.044360] pci_scan_slot:
[ 3.044363] only_one_child:
[ 3.044365] pci_scan_slot:
[ 3.044368] only_one_child:
[ 3.044370] pci_scan_slot:
[ 3.044373] only_one_child:
[ 3.044375] pci_scan_slot:
[ 3.044378] only_one_child:
[ 3.044380] pci_scan_slot:
[ 3.044383] only_one_child:
[ 3.044385] pci_scan_slot:
[ 3.044388] only_one_child:
[ 3.044390] pci_scan_slot:
[ 3.044393] only_one_child:
[ 3.044395] pci_scan_slot:
[ 3.044398] only_one_child:
[ 3.044400] pci_scan_slot:
[ 3.044402] only_one_child:
[ 3.044405] pci_scan_slot:
[ 3.044407] only_one_child:
[ 3.044410] pci_scan_slot:
[ 3.044412] only_one_child:
[ 3.044415] pci_scan_slot:
[ 3.044417] only_one_child:
[ 3.044420] pci_scan_slot:
[ 3.044422] only_one_child:
[ 3.044425] pci_scan_slot:
[ 3.044427] only_one_child:
[ 3.044430] pci_scan_slot:
[ 3.044432] only_one_child:
[ 3.044435] pci_scan_slot:
[ 3.044437] only_one_child:
[ 3.044440] pci_scan_slot:
[ 3.044442] only_one_child:
[ 3.044445] pci_scan_slot:
[ 3.044447] only_one_child:
[ 3.044450] pci_scan_slot:
[ 3.044452] only_one_child:
[ 3.044455] pci_scan_slot:
[ 3.044457] only_one_child:
[ 3.044459] pci_scan_slot:
[ 3.044462] only_one_child:
[ 3.044464] pci_scan_slot:
[ 3.044467] only_one_child:
[ 3.044469] pci_scan_slot:
[ 3.044472] only_one_child:
[ 3.044474] pci_scan_slot:
[ 3.044477] only_one_child:
[ 3.044479] pci_scan_slot:
[ 3.044482] only_one_child:
[ 3.044484] pci_scan_slot:
[ 3.044487] only_one_child:
[ 3.044489] pci_scan_slot:
[ 3.044492] only_one_child:
[ 3.044494] pci_scan_slot:
[ 3.044497] only_one_child:
[ 3.044499] pci_scan_slot:
[ 3.044502] only_one_child:
[ 3.044504] pci_scan_slot:
[ 3.044507] only_one_child:
[ 3.044510] pci_bus 0000:03: fixups for bus
[ 3.044514] pci_read_bridge_bases:
[ 3.044517] pci 0000:00:1c.3: PCI bridge to [bus 03]
[ 3.044522] pci_read_bridge_io:
[ 3.044527] pci_read_bridge_mmio:
[ 3.044535] pci_bus 0000:03: bus scan returning with max=03
[ 3.044542] pci_scan_bridge_extend:
[ 3.044547] pci 0000:00:1c.0: scanning [bus 01-01] behind bridge, pass 1
[ 3.044556] pci_scan_bridge_extend:
[ 3.044560] pci 0000:00:1c.2: scanning [bus 02-02] behind bridge, pass 1
[ 3.044569] pci_scan_bridge_extend:
[ 3.044573] pci 0000:00:1c.3: scanning [bus 03-03] behind bridge, pass 1
[ 3.044582] pci_bus 0000:00: bus scan returning with max=03
[ 3.044586] pcie_bus_configure_settings:
[ 3.044589] pcie_bus_configure_set:
[ 3.044592] pcie_bus_configure_set:
[ 3.044595] pcie_bus_configure_settings:
[ 3.044597] pcie_bus_configure_set:
[ 3.044600] pcie_bus_configure_settings:
[ 3.044602] pcie_bus_configure_set:
[ 3.044605] pcie_bus_configure_set:
[ 3.044670] ACPI: Device [VLVC] status [0000000f]
[ 3.044691] ACPI: Device [GFX0] status [0000000f]
[ 3.044722] ACPI: Device [DD01] status [0000000f]
[ 3.044735] ACPI: Device [DD02] status [0000000f]
[ 3.044746] ACPI: Device [DD03] status [0000000f]
[ 3.044758] ACPI: Device [DD04] status [0000000f]
[ 3.044770] ACPI: Device [DD05] status [0000000f]
[ 3.044781] ACPI: Device [DD06] status [0000000f]
[ 3.044792] ACPI: Device [DD07] status [0000000f]
[ 3.044804] ACPI: Device [DD08] status [0000000f]
[ 3.044815] ACPI: Device [DD1F] status [0000000f]
[ 3.044906] ACPI: Device [ISP0] status [00000000]
[ 3.044922] ACPI: Device [SBRG] status [0000000f]
[ 3.045001] ACPI: Device [H_EC] status [00000000]
[ 3.045015] ACPI: Device [FWHD] status [0000000f]
[ 3.045129] ACPI: Device [IPIC] status [0000000f]
[ 3.045156] ACPI: Device [LDRC] status [0000000f]
[ 3.045173] ACPI: Device [TIMR] status [0000000f]
[ 3.045244] ACPI: Device [WPCN] status [00000000]
[ 3.045259] ACPI: Device [SIO1] status [0000000f]
[ 3.045577] ACPI: Device [LPTE] status [00000000]
[ 3.045865] ACPI: Device [PS2K] status [00000000]
[ 3.046150] ACPI: Device [PS2M] status [00000000]
[ 3.046187] ACPI: Device [SSPI] status [00000000]
[ 3.046223] ACPI: Device [SGPI] status [00000000]
[ 3.046258] ACPI: Device [SHWM] status [00000000]
[ 3.046292] ACPI: Device [SCPI] status [00000000]
[ 3.046577] ACPI: Device [UAR1] status [00000000]
[ 3.046862] ACPI: Device [UAR2] status [00000000]
[ 3.046876] ACPI: Device [ADP1] status [0000000f]
[ 4.680443] ACPI: Device [BAT1] status [0000000f]
[ 5.496941] ACPI: Device [BAT2] status [00000000]
[ 5.497029] ACPI: Device [PCU1] status [0000000f]
[ 5.497055] ACPI: Device [D004] status [0000000f]
[ 5.497069] ACPI: Device [D005] status [0000000f]
[ 5.497081] ACPI: Device [D006] status [0000000f]
[ 5.699025] ACPI: Device [SATA] status [0000000f]
[ 5.699097] ACPI: Device [XHC1] status [0000000f]
[ 5.699113] ACPI: Device [RHUB] status [0000000f]
[ 5.699126] ACPI: Device [SSP1] status [0000000f]
[ 5.699138] ACPI: Device [HS01] status [0000000f]
[ 5.699150] ACPI: Device [HS02] status [0000000f]
[ 5.699162] ACPI: Device [HS03] status [0000000f]
[ 5.699173] ACPI: Device [HS04] status [0000000f]
[ 5.699185] ACPI: Device [HSC1] status [0000000f]
[ 5.699196] ACPI: Device [HSC2] status [0000000f]
[ 5.699208] ACPI: Device [D009] status [0000000f]
[ 5.699219] ACPI: Device [XHC2] status [0000000f]
[ 5.699231] ACPI: Device [D00B] status [0000000f]
[ 5.699242] ACPI: Device [GLAN] status [0000000f]
[ 5.699310] ACPI: Device [HDEF] status [0000000f]
[ 5.699377] ACPI: Device [EHC1] status [00000000]
[ 5.699391] ACPI: Device [SBUS] status [0000000f]
[ 5.699406] ACPI: Device [RP01] status [0000000f]
[ 5.699418] ACPI: Device [PXSX] status [0000000f]
[ 5.699430] ACPI: Device [D015] status [0000000f]
[ 5.699443] ACPI: Device [RP02] status [0000000f]
[ 5.699454] ACPI: Device [PXSX] status [0000000f]
[ 5.699466] ACPI: Device [D016] status [0000000f]
[ 5.699477] ACPI: Device [RP03] status [0000000f]
[ 5.699488] ACPI: Device [PXSX] status [0000000f]
[ 5.699500] ACPI: Device [D017] status [0000000f]
[ 5.699512] ACPI: Device [RP04] status [0000000f]
[ 5.699523] ACPI: Device [PXSX] status [0000000f]
[ 5.699534] ACPI: Device [D018] status [0000000f]
[ 5.699545] ACPI: Device [D02A] status [0000000f]
[ 5.699557] ACPI: Device [D019] status [0000000f]
[ 5.699568] ACPI: Device [D01A] status [0000000f]
[ 5.699580] ACPI: Device [D01B] status [0000000f]
[ 5.699591] ACPI: Device [D01C] status [0000000f]
[ 5.699602] ACPI: Device [D01D] status [0000000f]
[ 5.699613] ACPI: Device [D01E] status [0000000f]
[ 5.699624] ACPI: Device [D01F] status [0000000f]
[ 5.699635] ACPI: Device [D020] status [0000000f]
[ 5.699647] ACPI: Device [D021] status [0000000f]
[ 5.699658] ACPI: Device [D022] status [0000000f]
[ 5.699670] ACPI: Device [D023] status [0000000f]
[ 5.699681] ACPI: Device [D024] status [0000000f]
[ 5.699692] ACPI: Device [D025] status [0000000f]
[ 5.699703] ACPI: Device [D026] status [0000000f]
[ 5.699714] ACPI: Device [D027] status [0000000f]
[ 5.699725] ACPI: Device [D028] status [0000000f]
[ 5.699823] ACPI: Device [EM41] status [00000000]
[ 5.699922] ACPI: Device [EM45] status [0000000f]
[ 5.699937] ACPI: Device [CARD] status [0000000f]
[ 5.700009] ACPI: Device [OTG1] status [00000000]
[ 5.700076] ACPI: Device [SEC0] status [0000000f]
[ 5.700093] ACPI: Device [PDRC] status [0000000f]
[ 5.700135] ACPI: Device [USBC] status [0000000f]
[ 5.700215] ACPI: Device [LNKA] status [0000000b]
[ 5.700374] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[ 5.700479] ACPI: Device [LNKB] status [00000009]
[ 5.700631] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[ 5.700638] ACPI: PCI: Interrupt link LNKB disabled
[ 5.700741] ACPI: Device [LNKC] status [0000000b]
[ 5.700893] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[ 5.700999] ACPI: Device [LNKD] status [0000000b]
[ 5.701151] ACPI: PCI: Interrupt link LNKD configured for IRQ 10
[ 5.701257] ACPI: Device [LNKE] status [0000000b]
[ 5.701409] ACPI: PCI: Interrupt link LNKE configured for IRQ 11
[ 5.701515] ACPI: Device [LNKF] status [0000000b]
[ 5.701667] ACPI: PCI: Interrupt link LNKF configured for IRQ 11
[ 5.701773] ACPI: Device [LNKG] status [0000000b]
[ 5.701925] ACPI: PCI: Interrupt link LNKG configured for IRQ 10
[ 5.702031] ACPI: Device [LNKH] status [0000000b]
[ 5.702183] ACPI: PCI: Interrupt link LNKH configured for IRQ 10
[ 5.702263] ACPI: Device [PLPE] status [00000001]
[ 5.702402] ACPI: Device [LPEA] status [00000000]
[ 5.702438] ACPI: Device [PLPE] status [00000001]
[ 5.702575] ACPI: Device [LPA2] status [00000000]
[ 5.702590] ACPI: Device [PWRB] status [0000000f]
[ 5.702700] ACPI: Device [SLPB] status [0000000f]
[ 5.702799] ACPI: Device [LID0] status [0000000f]
[ 5.702924] ACPI: Device [GPED] status [00000000]
[ 5.702937] ACPI: Device [MBID] status [0000000f]
[ 5.703142] ACPI: Device [PIND] status [00000000]
[ 5.703156] ACPI: Device [_TZ] status [0000000f]
[ 5.703781] iommu: Default domain type: Translated
[ 5.703781] iommu: DMA domain TLB invalidation policy: lazy mode
[ 5.703781] SCSI subsystem initialized
[ 5.707062] libata version 3.00 loaded.
[ 5.707093] ACPI: bus type USB registered
[ 5.707134] usbcore: registered new interface driver usbfs
[ 5.707159] usbcore: registered new interface driver hub
[ 5.707182] usbcore: registered new device driver usb
[ 5.707269] pps_core: LinuxPPS API ver. 1 registered
[ 5.707274] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
[ 5.707285] PTP clock support registered
[ 5.707336] EDAC MC: Ver: 3.0.0
[ 5.707336] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x06 len=2 data=0x10
[ 5.707336] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x0e len=1 data=0x0
[ 5.707585] NetLabel: Initializing
[ 5.707592] NetLabel: domain hash size = 128
[ 5.707596] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 5.707640] NetLabel: unlabeled traffic allowed by default
[ 5.707698] PCI: Using ACPI for IRQ routing
[ 5.712189] PCI: pci_cache_line_size set to 64 bytes
[ 5.712204] pci 0000:00:02.0: BAR 0: reserving [mem 0xb0000000-0xb03fffff flags 0x40200] (d=0, p=0)
[ 5.712215] pci 0000:00:02.0: BAR 2: reserving [mem 0xa0000000-0xafffffff flags 0x42208] (d=0, p=0)
[ 5.712222] pci 0000:00:02.0: BAR 4: reserving [io 0xe080-0xe087 flags 0x40101] (d=0, p=0)
[ 5.712231] pci 0000:00:13.0: BAR 0: reserving [io 0xe070-0xe077 flags 0x40101] (d=0, p=0)
[ 5.712238] pci 0000:00:13.0: BAR 1: reserving [io 0xe060-0xe063 flags 0x40101] (d=0, p=0)
[ 5.712245] pci 0000:00:13.0: BAR 2: reserving [io 0xe050-0xe057 flags 0x40101] (d=0, p=0)
[ 5.712252] pci 0000:00:13.0: BAR 3: reserving [io 0xe040-0xe043 flags 0x40101] (d=0, p=0)
[ 5.712259] pci 0000:00:13.0: BAR 4: reserving [io 0xe020-0xe03f flags 0x40101] (d=0, p=0)
[ 5.712266] pci 0000:00:13.0: BAR 5: reserving [mem 0xb0b17000-0xb0b177ff flags 0x40200] (d=0, p=0)
[ 5.712274] pci 0000:00:14.0: BAR 0: reserving [mem 0xb0b00000-0xb0b0ffff flags 0x140204] (d=0, p=0)
[ 5.712283] pci 0000:00:17.0: BAR 0: reserving [mem 0xb0b16000-0xb0b16fff flags 0x40200] (d=0, p=0)
[ 5.712291] pci 0000:00:17.0: BAR 1: reserving [mem 0xb0b15000-0xb0b15fff flags 0x40200] (d=0, p=0)
[ 5.712300] pci 0000:00:1a.0: BAR 0: reserving [mem 0xb0900000-0xb09fffff flags 0x40200] (d=0, p=0)
[ 5.712307] pci 0000:00:1a.0: BAR 1: reserving [mem 0xb0800000-0xb08fffff flags 0x40200] (d=0, p=0)
[ 5.712316] pci 0000:00:1b.0: BAR 0: reserving [mem 0xb0b10000-0xb0b13fff flags 0x140204] (d=0, p=0)
[ 5.712325] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x7
[ 5.712332] pci 0000:01:00.0: BAR 0: reserving [mem 0xb0400000-0xb07fffff flags 0x40200] (d=0, p=0)
[ 5.712344] pci 0000:03:00.0: BAR 0: reserving [mem 0xb0a00000-0xb0a7ffff flags 0x40200] (d=0, p=0)
[ 5.712351] pci 0000:03:00.0: BAR 2: reserving [io 0xd000-0xd01f flags 0x40101] (d=0, p=0)
[ 5.712358] pci 0000:03:00.0: BAR 3: reserving [mem 0xb0a80000-0xb0a83fff flags 0x40200] (d=0, p=0)
[ 5.712369] pci 0000:00:1f.3: BAR 0: reserving [mem 0xb0b14000-0xb0b1401f flags 0x40200] (d=0, p=0)
[ 5.712376] pci 0000:00:1f.3: BAR 4: reserving [io 0xe000-0xe01f flags 0x40101] (d=0, p=0)
[ 5.712393] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=2 data=0x7
[ 5.712409] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[ 5.712414] e820: reserve RAM buffer [mem 0x1f000000-0x1fffffff]
[ 5.712418] e820: reserve RAM buffer [mem 0x99615000-0x9bffffff]
[ 5.712422] e820: reserve RAM buffer [mem 0x99afd000-0x9bffffff]
[ 5.712426] e820: reserve RAM buffer [mem 0x99cae000-0x9bffffff]
[ 5.712430] e820: reserve RAM buffer [mem 0x9a000000-0x9bffffff]
[ 5.715025] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 5.715028] pci 0000:00:02.0: vgaarb: bridge control possible
[ 5.715032] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 5.715042] vgaarb: loaded
[ 5.715184] clocksource: Switched to clocksource tsc-early
[ 5.715607] VFS: Disk quotas dquot_6.6.0
[ 5.715641] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 5.715898] AppArmor: AppArmor Filesystem Enabled
[ 5.715972] pnp: PnP ACPI init
[ 5.716518] system 00:01: [io 0x0680-0x069f] has been reserved
[ 5.716532] system 00:01: [io 0x0400-0x047f] has been reserved
[ 5.716538] system 00:01: [io 0x0500-0x05fe] has been reserved
[ 5.716544] system 00:01: [io 0x0600-0x061f] has been reserved
[ 5.717069] system 00:02: [io 0x0a00-0x0a0f] has been reserved
[ 5.717078] system 00:02: [io 0x0a10-0x0a1f] has been reserved
[ 8.376209] system 00:04: [mem 0xe0000000-0xefffffff] could not be reserved
[ 8.376222] system 00:04: [mem 0xfed01000-0xfed01fff] has been reserved
[ 8.376229] system 00:04: [mem 0xfed03000-0xfed03fff] has been reserved
[ 8.376235] system 00:04: [mem 0xfed04000-0xfed04fff] has been reserved
[ 8.376241] system 00:04: [mem 0xfed0c000-0xfed0ffff] has been reserved
[ 8.376247] system 00:04: [mem 0xfed08000-0xfed08fff] has been reserved
[ 8.376253] system 00:04: [mem 0xfed1c000-0xfed1cfff] has been reserved
[ 8.376259] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 8.376265] system 00:04: [mem 0xfef00000-0xfeffffff] has been reserved
[ 8.377004] pnp: PnP ACPI: found 5 devices
[ 8.387420] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 8.387601] NET: Registered PF_INET protocol family
[ 8.387795] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 8.420244] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 8.420326] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 8.420439] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 8.420801] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[ 8.421134] TCP: Hash tables configured (established 32768 bind 32768)
[ 8.421285] UDP hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 8.421391] UDP-Lite hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 8.421557] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 8.421581] NET: Registered PF_XDP protocol family
[ 8.421606] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
[ 8.421619] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[ 8.421628] pci 0000:00:1c.2: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
[ 8.421635] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[ 8.421643] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000 add_align 100000
[ 8.421652] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[ 8.421678] pci 0000:00:1c.0: bridge window [mem size 0x00200000 64bit pref]: can't assign; no space
[ 8.421685] pci 0000:00:1c.0: bridge window [mem size 0x00200000 64bit pref]: failed to assign
[ 8.421693] pci 0000:00:1c.2: bridge window [mem size 0x00200000]: can't assign; no space
[ 8.421698] pci 0000:00:1c.2: bridge window [mem size 0x00200000]: failed to assign
[ 8.421706] pci 0000:00:1c.2: bridge window [mem size 0x00200000 64bit pref]: can't assign; no space
[ 8.421712] pci 0000:00:1c.2: bridge window [mem size 0x00200000 64bit pref]: failed to assign
[ 8.421720] pci 0000:00:1c.3: bridge window [mem size 0x00200000 64bit pref]: can't assign; no space
[ 8.421725] pci 0000:00:1c.3: bridge window [mem size 0x00200000 64bit pref]: failed to assign
[ 8.421733] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]: assigned
[ 8.421740] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]: assigned
[ 8.421750] pci 0000:00:1c.3: bridge window [mem size 0x00200000 64bit pref]: can't assign; no space
[ 8.421757] pci 0000:00:1c.3: bridge window [mem size 0x00200000 64bit pref]: failed to assign
[ 8.421763] pci 0000:00:1c.2: bridge window [mem size 0x00200000]: can't assign; no space
[ 8.421769] pci 0000:00:1c.2: bridge window [mem size 0x00200000]: failed to assign
[ 8.421776] pci 0000:00:1c.2: bridge window [mem size 0x00200000 64bit pref]: can't assign; no space
[ 8.421782] pci 0000:00:1c.2: bridge window [mem size 0x00200000 64bit pref]: failed to assign
[ 8.421790] pci 0000:00:1c.0: bridge window [mem size 0x00200000 64bit pref]: can't assign; no space
[ 8.421795] pci 0000:00:1c.0: bridge window [mem size 0x00200000 64bit pref]: failed to assign
[ 8.421805] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 8.421812] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
[ 8.421820] pci 0000:00:1c.0: bridge window [mem 0xb0400000-0xb07fffff]
[ 8.421831] pci 0000:00:1c.2: PCI bridge to [bus 02]
[ 8.421837] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]
[ 8.421849] pci 0000:00:1c.3: PCI bridge to [bus 03]
[ 8.421855] pci 0000:00:1c.3: bridge window [io 0xd000-0xdfff]
[ 8.421862] pci 0000:00:1c.3: bridge window [mem 0xb0a00000-0xb0afffff]
[ 8.421873] pci_bus 0000:00: resource 4 [io 0x0070-0x0077]
[ 8.421878] pci_bus 0000:00: resource 5 [io 0x0000-0x006f window]
[ 8.421884] pci_bus 0000:00: resource 6 [io 0x0078-0x0cf7 window]
[ 8.421889] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
[ 8.421894] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000fffff window]
[ 8.421900] pci_bus 0000:00: resource 9 [mem 0xa0000000-0xb0b17fff window]
[ 8.421906] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff]
[ 8.421910] pci_bus 0000:01: resource 1 [mem 0xb0400000-0xb07fffff]
[ 8.421916] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
[ 8.421921] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
[ 8.421926] pci_bus 0000:03: resource 1 [mem 0xb0a00000-0xb0afffff]
[ 8.422599] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x0c len=1 data=0x10
[ 8.422615] PCI: CLS 64 bytes, default 64
[ 8.422627] pci_scan_device:
[ 8.422644] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 8.422648] software IO TLB: mapped [mem 0x0000000095615000-0x0000000099615000] (64MB)
[ 8.422815] Trying to unpack rootfs image as initramfs...
[ 8.423285] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x3741594d34d, max_idle_ns: 881590420564 ns
[ 8.423345] clocksource: Switched to clocksource tsc
[ 8.423531] iosf_mbi_pci 0000:00:00.0: vgaarb: pci_notify
[ 8.423547] iosf_mbi_pci 0000:00:00.0: runtime IRQ mapping not provided by arch
[ 8.423587] iosf_mbi_pci 0000:00:00.0: vgaarb: pci_notify
[ 8.427944] Initialise system trusted keyrings
[ 8.427977] Key type blacklist registered
[ 8.431223] workingset: timestamp_bits=36 max_order=20 bucket_order=0
[ 8.431304] zbud: loaded
[ 8.432434] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 8.433031] fuse: init (API version 7.42)
[ 8.433736] integrity: Platform Keyring initialized
[ 8.470996] Key type asymmetric registered
[ 8.471011] Asymmetric key parser 'x509' registered
[ 8.471112] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[ 8.471316] io scheduler mq-deadline registered
[ 8.475384] ledtrig-cpu: registered to indicate activity on CPUs
[ 8.475449] pciehp: pcie_port_service_register = 0
[ 8.475481] pcieport 0000:00:1c.0: vgaarb: pci_notify
[ 8.475495] pcieport 0000:00:1c.0: runtime IRQ mapping not provided by arch
[ 8.475915] pcieport 0000:00:1c.0: bwctrl: enabled with IRQ 87
[ 8.475942] pcieport 0000:00:1c.0: save config 0x00: 0x0f488086
[ 8.475950] pcieport 0000:00:1c.0: save config 0x04: 0x00100407
[ 8.475956] pcieport 0000:00:1c.0: save config 0x08: 0x06040011
[ 8.475961] pcieport 0000:00:1c.0: save config 0x0c: 0x00810010
[ 8.475967] pcieport 0000:00:1c.0: save config 0x10: 0x00000000
[ 8.475973] pcieport 0000:00:1c.0: save config 0x14: 0x00000000
[ 8.475978] pcieport 0000:00:1c.0: save config 0x18: 0x00010100
[ 8.475984] pcieport 0000:00:1c.0: save config 0x1c: 0x00001010
[ 8.475989] pcieport 0000:00:1c.0: save config 0x20: 0xb070b040
[ 8.475995] pcieport 0000:00:1c.0: save config 0x24: 0x0001fff1
[ 8.476000] pcieport 0000:00:1c.0: save config 0x28: 0x00000000
[ 8.476006] pcieport 0000:00:1c.0: save config 0x2c: 0x00000000
[ 8.476011] pcieport 0000:00:1c.0: save config 0x30: 0x00000000
[ 8.476016] pcieport 0000:00:1c.0: save config 0x34: 0x00000040
[ 8.476022] pcieport 0000:00:1c.0: save config 0x38: 0x00000000
[ 8.476027] pcieport 0000:00:1c.0: save config 0x3c: 0x0012010b
[ 8.476059] pcieport 0000:00:1c.0: vgaarb: pci_notify
[ 8.476081] pcieport 0000:00:1c.2: vgaarb: pci_notify
[ 8.476093] pcieport 0000:00:1c.2: runtime IRQ mapping not provided by arch
[ 8.476359] pcieport 0000:00:1c.2: bwctrl: enabled with IRQ 88
[ 8.476381] pcieport 0000:00:1c.2: save config 0x00: 0x0f4c8086
[ 8.476389] pcieport 0000:00:1c.2: save config 0x04: 0x00100407
[ 8.476395] pcieport 0000:00:1c.2: save config 0x08: 0x06040011
[ 8.476400] pcieport 0000:00:1c.2: save config 0x0c: 0x00810010
[ 8.476406] pcieport 0000:00:1c.2: save config 0x10: 0x00000000
[ 8.476412] pcieport 0000:00:1c.2: save config 0x14: 0x00000000
[ 8.476417] pcieport 0000:00:1c.2: save config 0x18: 0x00020200
[ 8.476423] pcieport 0000:00:1c.2: save config 0x1c: 0x00002020
[ 8.476428] pcieport 0000:00:1c.2: save config 0x20: 0x0000fff0
[ 8.476433] pcieport 0000:00:1c.2: save config 0x24: 0x0001fff1
[ 8.476439] pcieport 0000:00:1c.2: save config 0x28: 0x00000000
[ 8.476444] pcieport 0000:00:1c.2: save config 0x2c: 0x00000000
[ 8.476450] pcieport 0000:00:1c.2: save config 0x30: 0x00000000
[ 8.476455] pcieport 0000:00:1c.2: save config 0x34: 0x00000040
[ 8.476460] pcieport 0000:00:1c.2: save config 0x38: 0x00000000
[ 8.476466] pcieport 0000:00:1c.2: save config 0x3c: 0x0012030b
[ 8.476492] pcieport 0000:00:1c.2: vgaarb: pci_notify
[ 8.476513] pcieport 0000:00:1c.3: vgaarb: pci_notify
[ 8.476525] pcieport 0000:00:1c.3: runtime IRQ mapping not provided by arch
[ 8.476794] pcieport 0000:00:1c.3: bwctrl: enabled with IRQ 89
[ 8.476816] pcieport 0000:00:1c.3: save config 0x00: 0x0f4e8086
[ 8.476824] pcieport 0000:00:1c.3: save config 0x04: 0x00100407
[ 8.476830] pcieport 0000:00:1c.3: save config 0x08: 0x06040011
[ 8.476836] pcieport 0000:00:1c.3: save config 0x0c: 0x00810010
[ 8.476841] pcieport 0000:00:1c.3: save config 0x10: 0x00000000
[ 8.476847] pcieport 0000:00:1c.3: save config 0x14: 0x00000000
[ 8.476852] pcieport 0000:00:1c.3: save config 0x18: 0x00030300
[ 8.476858] pcieport 0000:00:1c.3: save config 0x1c: 0x0000d0d0
[ 8.476863] pcieport 0000:00:1c.3: save config 0x20: 0xb0a0b0a0
[ 8.476869] pcieport 0000:00:1c.3: save config 0x24: 0x0001fff1
[ 8.476874] pcieport 0000:00:1c.3: save config 0x28: 0x00000000
[ 8.476880] pcieport 0000:00:1c.3: save config 0x2c: 0x00000000
[ 8.476885] pcieport 0000:00:1c.3: save config 0x30: 0x00000000
[ 8.476890] pcieport 0000:00:1c.3: save config 0x34: 0x00000040
[ 8.476896] pcieport 0000:00:1c.3: save config 0x38: 0x00000000
[ 8.476901] pcieport 0000:00:1c.3: save config 0x3c: 0x0012040a
[ 8.476931] pcieport 0000:00:1c.3: vgaarb: pci_notify
[ 8.477023] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 9.406964] Freeing initrd memory: 142376K
[ 10.118525] ACPI: AC: AC Adapter [ADP1] (on-line)
[ 10.118722] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 10.118827] ACPI: button: Power Button [PWRB]
[ 10.118833] ACPI: Driver [button] successfully bound to device [PWRB]
[ 10.118838] ACPI: Found driver [button] for device [PWRB]
[ 10.118922] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 10.119018] ACPI: button: Sleep Button [SLPB]
[ 10.119024] ACPI: Driver [button] successfully bound to device [SLPB]
[ 10.119028] ACPI: Found driver [button] for device [SLPB]
[ 10.119122] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[ 10.119200] ACPI: button: Lid Switch [LID0]
[ 10.119206] ACPI: Driver [button] successfully bound to device [LID0]
[ 10.119210] ACPI: Found driver [button] for device [LID0]
[ 10.119300] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[ 10.119396] ACPI: button: Power Button [PWRF]
[ 10.119401] ACPI: Driver [button] successfully bound to device [PWRF]
[ 10.119406] ACPI: Found driver [button] for device [PWRF]
[ 10.127463] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 10.127767] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 10.153194] ACPI: Device [ISP0] status [00000000]
[ 10.153275] ACPI: Device [H_EC] status [00000000]
[ 10.153312] ACPI: Device [BAT0] status [00000000]
[ 10.153347] ACPI: Device [BAT1] status [00000000]
[ 10.153381] ACPI: Device [BAT2] status [00000000]
[ 10.153441] ACPI: Device [WPCN] status [00000000]
[ 10.153496] ACPI: Device [UAR5] status [00000000]
[ 10.153551] ACPI: Device [UAR8] status [00000000]
[ 10.153843] ACPI: Device [LPTE] status [00000000]
[ 10.154126] ACPI: Device [PS2K] status [00000000]
[ 10.154407] ACPI: Device [PS2M] status [00000000]
[ 10.154444] ACPI: Device [SSPI] status [00000000]
[ 10.154479] ACPI: Device [SGPI] status [00000000]
[ 10.154513] ACPI: Device [SHWM] status [00000000]
[ 10.154547] ACPI: Device [SCPI] status [00000000]
[ 10.154827] ACPI: Device [UAR1] status [00000000]
[ 10.155123] ACPI: Device [UAR2] status [00000000]
[ 13.381467] ACPI: Device [BAT2] status [00000000]
[ 13.407417] ACPI: Device [EHC1] status [00000000]
[ 13.407433] ACPI: Device [HUBN] status [0000000f]
[ 13.407446] ACPI: Device [PR01] status [0000000f]
[ 13.407457] ACPI: Device [PR11] status [0000000f]
[ 13.407468] ACPI: Device [PR12] status [0000000f]
[ 13.433629] ACPI: Device [PR13] status [0000000f]
[ 13.459604] ACPI: Device [PR14] status [0000000f]
[ 13.485768] ACPI: Device [PR15] status [0000000f]
[ 13.512149] ACPI: Device [PR16] status [0000000f]
[ 13.538239] ACPI: Device [PR17] status [0000000f]
[ 13.564372] ACPI: Device [PR18] status [0000000f]
[ 14.087072] ACPI: Device [EM41] status [00000000]
[ 14.087088] ACPI: Device [CARD] status [0000000f]
[ 14.087603] ACPI: Device [OTG1] status [00000000]
[ 14.218499] ACPI: Device [LPEA] status [00000000]
[ 14.244622] ACPI: Device [LPA2] status [00000000]
[ 14.270255] ACPI: Device [ADMA] status [0000000f]
[ 14.374734] ACPI: Device [GPED] status [00000000]
[ 14.426894] ACPI: Device [PIND] status [00000000]
[ 14.478850] hpet: number irqs doesn't agree with number of timers
[ 14.478925] Linux agpgart interface v0.103
[ 14.487648] loop: module loaded
[ 14.488514] tun: Universal TUN/TAP device driver, 1.6
[ 14.488837] PPP generic driver version 2.4.2
[ 14.489408] VFIO - User Level meta-driver version: 0.3
[ 14.489637] xhci_hcd 0000:00:14.0: vgaarb: pci_notify
[ 14.489651] xhci_hcd 0000:00:14.0: runtime IRQ mapping not provided by arch
[ 14.505129] xhci_hcd 0000:00:14.0: enabling bus mastering
[ 14.505145] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 14.505160] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 14.506246] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
[ 14.506259] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 14.506571] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 14.506583] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 14.506592] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[ 14.506742] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.14
[ 14.506751] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 14.506757] usb usb1: Product: xHCI Host Controller
[ 14.506761] usb usb1: Manufacturer: Linux 6.14.0-rc5+ xhci-hcd
[ 14.506766] usb usb1: SerialNumber: 0000:00:14.0
[ 14.556478] hub 1-0:1.0: USB hub found
[ 14.556512] hub 1-0:1.0: 6 ports detected
[ 14.661633] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.14
[ 14.661645] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 14.661650] usb usb2: Product: xHCI Host Controller
[ 14.661655] usb usb2: Manufacturer: Linux 6.14.0-rc5+ xhci-hcd
[ 14.661659] usb usb2: SerialNumber: 0000:00:14.0
[ 14.712773] hub 2-0:1.0: USB hub found
[ 14.712802] hub 2-0:1.0: 1 port detected
[ 14.765824] xhci_hcd 0000:00:14.0: vgaarb: pci_notify
[ 14.765949] i8042: PNP: No PS/2 controller found.
[ 14.766759] mousedev: PS/2 mouse device common for all mice
[ 14.767961] rtc_cmos 00:00: RTC can wake from S4
[ 14.768871] rtc_cmos 00:00: registered as rtc0
[ 14.768911] rtc_cmos 00:00: setting system clock to 2025-03-18T11:27:34 UTC (1742297254)
[ 14.769000] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
[ 14.769032] i2c_dev: i2c /dev entries driver
[ 14.769077] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 14.769109] device-mapper: uevent: version 1.0.3
[ 14.769726] device-mapper: ioctl: 4.49.0-ioctl (2025-01-17) initialised: dm-devel@xxxxxxxxxxxxxxx
[ 14.769785] platform eisa.0: Probing EISA bus 0
[ 14.769793] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 14.769799] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 14.769804] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 14.769809] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 14.769813] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 14.769818] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 14.769822] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 14.769827] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 14.769831] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 14.769836] platform eisa.0: EISA: Detected 0 cards
[ 14.769847] intel_pstate: Intel P-state driver initializing
[ 14.771444] drop_monitor: Initializing network drop monitor service
[ 14.771669] NET: Registered PF_INET6 protocol family
[ 14.797616] Segment Routing with IPv6
[ 14.797655] In-situ OAM (IOAM) with IPv6
[ 14.797714] NET: Registered PF_PACKET protocol family
[ 14.797946] Key type dns_resolver registered
[ 14.799566] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 14.800584] microcode: Current revision: 0x0000090d
[ 14.801470] IPI shorthand broadcast: enabled
[ 14.806696] sched_clock: Marking stable (14800006959, 2931707)->(14866419735, -63481069)
[ 14.807939] registered taskstats version 1
[ 14.809075] Loading compiled-in X.509 certificates
[ 14.811543] Loaded X.509 cert 'Build time autogenerated kernel key: 496e409daaca5be585c260a1e40635b0bd670b13'
[ 14.817178] Demotion targets for Node 0: null
[ 14.818353] Key type .fscrypt registered
[ 14.818362] Key type fscrypt-provisioning registered
[ 14.840633] cryptd: max_cpu_qlen set to 1000
[ 14.907095] usb 1-3: new high-speed USB device number 2 using xhci_hcd
[ 15.048972] usb 1-3: New USB device found, idVendor=04d8, idProduct=000a, bcdDevice= 1.00
[ 15.048986] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 15.048992] usb 1-3: Product: Simple CDC Device Demo
[ 15.048996] usb 1-3: Manufacturer: Microchip Technology Inc.
[ 15.050351] ACPI: Device [BAT1] status [0000000f]
[ 15.050391] ACPI: battery: Slot [BAT1] (battery absent)
[ 15.050523] ACPI: Driver [battery] successfully bound to device [BAT1]
[ 15.050529] ACPI: Found driver [battery] for device [BAT1]
[ 15.114076] Key type encrypted registered
[ 15.114092] AppArmor: AppArmor sha256 policy hashing enabled
[ 15.114127] ima: No TPM chip found, activating TPM-bypass!
[ 15.114139] Loading compiled-in module X.509 certificates
[ 15.116007] Loaded X.509 cert 'Build time autogenerated kernel key: 496e409daaca5be585c260a1e40635b0bd670b13'
[ 15.116016] ima: Allocated hash algorithm: sha1
[ 15.116033] ima: No architecture policies found
[ 15.116067] evm: Initialising EVM extended attributes:
[ 15.116071] evm: security.selinux
[ 15.116075] evm: security.SMACK64
[ 15.116077] evm: security.SMACK64EXEC
[ 15.116080] evm: security.SMACK64TRANSMUTE
[ 15.116083] evm: security.SMACK64MMAP
[ 15.116085] evm: security.apparmor
[ 15.116088] evm: security.ima
[ 15.116091] evm: security.capability
[ 15.116093] evm: HMAC attrs: 0x1
[ 15.116940] PM: Magic number: 1:426:479
[ 15.118008] RAS: Correctable Errors collector initialized.
[ 15.155028] PCI: pci_mmcfg_late_insert_resources() pci_probe 0x8
[ 15.155041] PCI: pci_mmcfg_late_insert_resources() insert [mem 0xe0000000-0xefffffff]
[ 15.155646] clk: Disabling unused clocks
[ 15.155683] PM: genpd: Disabling unused power domains
[ 15.168526] Freeing unused decrypted memory: 2028K
[ 15.171489] Freeing unused kernel image (initmem) memory: 4784K
[ 15.171810] Write protecting the kernel read-only data: 32768k
[ 15.173429] Freeing unused kernel image (text/rodata gap) memory: 520K
[ 15.174322] Freeing unused kernel image (rodata/data gap) memory: 856K
[ 15.259159] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 15.259499] x86/mm: Checking user space page tables
[ 15.275028] usb 1-4: new low-speed USB device number 3 using xhci_hcd
[ 15.340981] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 15.340997] Run /init as init process
[ 15.341002] with arguments:
[ 15.341006] /init
[ 15.341009] with environment:
[ 15.341012] HOME=/
[ 15.341015] TERM=linux
[ 15.341018] BOOT_IMAGE=/vmlinuz-6.14.0-rc5+
[ 15.420551] usb 1-4: New USB device found, idVendor=03f0, idProduct=2a4a, bcdDevice= 2.48
[ 15.420565] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 15.420570] usb 1-4: Product: HP USB Slim Keyboard - Skylab
[ 15.420575] usb 1-4: Manufacturer: Lite-On Technology Corp
[ 15.552145] hid: raw HID events driver (C) Jiri Kosina
[ 15.599395] usbcore: registered new interface driver usbhid
[ 15.599406] usbhid: USB HID core driver
[ 15.611185] input: Lite-On Technology Corp HP USB Slim Keyboard - Skylab as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:03F0:2A4A.0001/input/input4
[ 15.667824] hid-generic 0003:03F0:2A4A.0001: input,hidraw0: USB HID v1.10 Keyboard [Lite-On Technology Corp HP USB Slim Keyboard - Skylab] on usb-0000:00:14.0-4/input0
[ 15.668667] input: Lite-On Technology Corp HP USB Slim Keyboard - Skylab Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:03F0:2A4A.0002/input/input5
[ 15.723775] input: Lite-On Technology Corp HP USB Slim Keyboard - Skylab System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:03F0:2A4A.0002/input/input6
[ 15.723951] input: Lite-On Technology Corp HP USB Slim Keyboard - Skylab as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:03F0:2A4A.0002/input/input7
[ 15.724222] hid-generic 0003:03F0:2A4A.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [Lite-On Technology Corp HP USB Slim Keyboard - Skylab] on usb-0000:00:14.0-4/input1
[ 17.722749] dca service started, version 1.12.1
[ 17.784795] sdhci: Secure Digital Host Controller Interface driver
[ 17.784805] sdhci: Copyright(c) Pierre Ossman
[ 17.785816] ACPI: bus type drm_connector registered
[ 17.786082] ahci 0000:00:13.0: vgaarb: pci_notify
[ 17.786100] ahci 0000:00:13.0: runtime IRQ mapping not provided by arch
[ 17.786109] ahci 0000:00:13.0: version 3.0
[ 17.794069] igb: Intel(R) Gigabit Ethernet Network Driver
[ 17.794080] igb: Copyright (c) 2007-2014 Intel Corporation.
[ 17.794124] igb 0000:03:00.0: vgaarb: pci_notify
[ 17.794137] igb 0000:03:00.0: runtime IRQ mapping not provided by arch
[ 17.802861] sdhci-pci 0000:00:17.0: vgaarb: pci_notify
[ 17.802878] sdhci-pci 0000:00:17.0: runtime IRQ mapping not provided by arch
[ 17.802886] sdhci-pci 0000:00:17.0: SDHCI controller found [8086:0f50] (rev 11)
[ 17.806645] ahci 0000:00:13.0: controller can't do DEVSLP, turning off
[ 17.806739] igb 0000:03:00.0: save config 0x00: 0x15338086
[ 17.806756] igb 0000:03:00.0: save config 0x04: 0x00100007
[ 17.806764] igb 0000:03:00.0: save config 0x08: 0x02000003
[ 17.806772] igb 0000:03:00.0: save config 0x0c: 0x00000010
[ 17.806779] igb 0000:03:00.0: save config 0x10: 0xb0a00000
[ 17.806785] igb 0000:03:00.0: save config 0x14: 0x00000000
[ 17.806792] igb 0000:03:00.0: save config 0x18: 0x0000d001
[ 17.806799] igb 0000:03:00.0: save config 0x1c: 0xb0a80000
[ 17.806805] igb 0000:03:00.0: save config 0x20: 0x00000000
[ 17.806811] igb 0000:03:00.0: save config 0x24: 0x00000000
[ 17.806818] igb 0000:03:00.0: save config 0x28: 0x00000000
[ 17.806824] igb 0000:03:00.0: save config 0x2c: 0x0000ffff
[ 17.806831] igb 0000:03:00.0: save config 0x30: 0x00000000
[ 17.806837] igb 0000:03:00.0: save config 0x34: 0x00000040
[ 17.806843] igb 0000:03:00.0: save config 0x38: 0x00000000
[ 17.806850] igb 0000:03:00.0: save config 0x3c: 0x0000010a
[ 17.807161] mmc0: SDHCI controller on PCI [0000:00:17.0] using ADMA
[ 17.807225] sdhci-pci 0000:00:17.0: vgaarb: pci_notify
[ 17.817253] ahci 0000:00:13.0: AHCI vers 0001.0300, 32 command slots, 3 Gbps, SATA mode
[ 17.817269] ahci 0000:00:13.0: 1/2 ports implemented (port mask 0x2)
[ 17.817275] ahci 0000:00:13.0: flags: 64bit ncq pm led clo pio slum part deso
[ 17.818270] scsi host0: ahci
[ 17.818720] scsi host1: ahci
[ 17.818852] ata1: DUMMY
[ 17.818858] ata2: SATA max UDMA/133 abar m2048@0xb0b17000 port 0xb0b17180 irq 91 lpm-pol 3
[ 17.818889] ahci 0000:00:13.0: vgaarb: pci_notify
[ 17.836227] igb 0000:03:00.0: added PHC on eth0
[ 17.836257] igb 0000:03:00.0: Intel(R) Gigabit Ethernet Network Connection
[ 17.836262] igb 0000:03:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:30:64:a2:59:aa
[ 17.836308] igb 0000:03:00.0: eth0: PBA No: 000300-000
[ 17.836312] igb 0000:03:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
[ 17.836351] igb 0000:03:00.0: vgaarb: pci_notify
[ 18.014033] mmc0: Failed to initialize a non-removable card
[ 18.071045] sdhci-pci 0000:00:17.0: save config 0x00: 0x0f508086
[ 18.071062] sdhci-pci 0000:00:17.0: save config 0x04: 0x00100006
[ 18.071068] sdhci-pci 0000:00:17.0: save config 0x08: 0x08050111
[ 18.071074] sdhci-pci 0000:00:17.0: save config 0x0c: 0x00000010
[ 18.071080] sdhci-pci 0000:00:17.0: save config 0x10: 0xb0b16000
[ 18.071086] sdhci-pci 0000:00:17.0: save config 0x14: 0xb0b15000
[ 18.071092] sdhci-pci 0000:00:17.0: save config 0x18: 0x00000000
[ 18.071098] sdhci-pci 0000:00:17.0: save config 0x1c: 0x00000000
[ 18.071107] sdhci-pci 0000:00:17.0: save config 0x20: 0x00000000
[ 18.071113] sdhci-pci 0000:00:17.0: save config 0x24: 0x00000000
[ 18.071118] sdhci-pci 0000:00:17.0: save config 0x28: 0x00000000
[ 18.071124] sdhci-pci 0000:00:17.0: save config 0x2c: 0x00000000
[ 18.071130] sdhci-pci 0000:00:17.0: save config 0x30: 0x00000000
[ 18.071135] sdhci-pci 0000:00:17.0: save config 0x34: 0x00000080
[ 18.071141] sdhci-pci 0000:00:17.0: save config 0x38: 0x00000000
[ 18.071147] sdhci-pci 0000:00:17.0: save config 0x3c: 0x0000010a
[ 18.071163] sdhci-pci 0000:00:17.0: PME# enabled
[ 18.129128] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 18.130180] ata2.00: ATA-10: TS128GMTS830S, 22Z2V3PD, max UDMA/133
[ 18.130494] ata2.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 18.131453] ata2.00: Features: Dev-Sleep
[ 18.133501] ata2.00: configured for UDMA/133
[ 18.144837] scsi 1:0:0:0: Direct-Access ATA TS128GMTS830S V3PD PQ: 0 ANSI: 5
[ 18.145719] sd 1:0:0:0: Attached scsi generic sg0 type 0
[ 18.145780] sd 1:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[ 18.145817] sd 1:0:0:0: [sda] Write Protect is off
[ 18.145824] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 18.145878] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 18.145978] sd 1:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[ 18.179231] sda: sda1 sda2 sda3
[ 18.179983] sd 1:0:0:0: [sda] Attached SCSI disk
[ 18.183860] igb 0000:03:00.0 enp3s0: renamed from eth0
[ 19.590275] i915 0000:00:02.0: vgaarb: pci_notify
[ 19.590294] i915 0000:00:02.0: runtime IRQ mapping not provided by arch
[ 19.604617] i915 0000:00:02.0: [drm] Found valleyview (device ID 0f31) integrated display version 7.00 stepping N/A
[ 19.605618] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 19.606164] Console: switching to colour dummy device 80x25
[ 21.108673] lpc_ich 0000:00:1f.0: vgaarb: pci_notify
[ 21.108691] lpc_ich 0000:00:1f.0: runtime IRQ mapping not provided by arch
[ 21.129754] lpc_ich 0000:00:1f.0: vgaarb: pci_notify
[ 21.168709] ACPI: \_SB_.PCI0.GFX0: ACPI: Error attaching device data
[ 21.175805] i801_smbus 0000:00:1f.3: vgaarb: pci_notify
[ 21.175829] i801_smbus 0000:00:1f.3: runtime IRQ mapping not provided by arch
[ 21.216747] ACPI: \_SB_.PCI0.GFX0: ACPI: Error attaching device data
[ 21.217078] ACPI: \_SB_.PCI0.GFX0: ACPI: Error attaching device data
[ 21.217151] i801_smbus 0000:00:1f.3: SPD Write Disable is set
[ 21.217218] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 21.217245] ACPI: \_SB_.PCI0.GFX0: ACPI: Error attaching device data
[ 21.263853] ACPI: \_SB_.PCI0.GFX0: ACPI: Error attaching device data
[ 21.264080] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 21.264089] i915 0000:00:02.0: vgaarb: decoding count now is: 1
[ 21.264095] i915 0000:00:02.0: vgaarb: __vga_tryget: 1
[ 21.264100] i915 0000:00:02.0: vgaarb: __vga_tryget: owns: 3
[ 21.264107] i915 0000:00:02.0: vgaarb: __vga_put
[ 21.264580] ACPI: Device [ISP0] status [00000000]
[ 21.264673] ACPI: Device [H_EC] status [00000000]
[ 21.264710] ACPI: Device [BAT0] status [00000000]
[ 21.264745] ACPI: Device [BAT1] status [00000000]
[ 21.264780] ACPI: Device [BAT2] status [00000000]
[ 21.264845] ACPI: Device [WPCN] status [00000000]
[ 21.264901] ACPI: Device [UAR5] status [00000000]
[ 21.264957] ACPI: Device [UAR8] status [00000000]
[ 21.267872] i801_smbus 0000:00:1f.3: BIOS is accessing SMBus registers
[ 21.267885] i801_smbus 0000:00:1f.3: Driver SMBus register access inhibited
[ 21.269068] ACPI: Device [LPTE] status [00000000]
[ 21.271302] ACPI: Device [PS2K] status [00000000]
[ 21.271627] ACPI: Device [PS2M] status [00000000]
[ 21.271665] ACPI: Device [SSPI] status [00000000]
[ 21.271700] ACPI: Device [SGPI] status [00000000]
[ 21.271736] ACPI: Device [SHWM] status [00000000]
[ 21.271771] ACPI: Device [SCPI] status [00000000]
[ 21.272058] ACPI: Device [UAR1] status [00000000]
[ 21.272892] ACPI: Device [UAR2] status [00000000]
[ 21.313021] EDID has corrupt header
[ 21.313035] [00] BAD 65 e7 da c4 fe 37 c5 ba 63 05 41 88 ff e3 1c ee
[ 21.313041] [00] BAD a1 bd 21 e3 6f 3a 0c ac 1e d9 10 ea 16 09 c2 45
[ 21.313044] [00] BAD 84 06 fe 9c 5e 8a a4 33 61 03 76 18 7e ec 3f f6
[ 21.313048] [00] BAD c5 5b 8e ed 90 80 e6 c4 66 06 de ea e8 a6 aa b7
[ 21.313051] [00] BAD 4c 03 3d 8e dd 8f d5 cb 84 b7 8e 1b 92 0b 14 ba
[ 21.313054] [00] BAD e9 bd 72 bc 2e 0c 8a fc f8 74 19 df 79 0e 58 24
[ 21.313057] [00] BAD 9a 99 03 82 e8 19 4c 7b 31 be 71 f2 82 9f 76 4c
[ 21.313061] [00] BAD f7 2e f9 f0 26 14 ca 69 1f 2f ad cb 81 02 98 a3
[ 21.603238] [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 0
[ 21.605645] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 21.606072] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8
[ 21.606695] ACPI: Driver [video] successfully bound to device [GFX0]
[ 21.606704] ACPI: Found driver [video] for device [GFX0]
[ 21.644232] fbcon: i915drmfb (fb0) is primary device
[ 22.592789] Console: switching to colour frame buffer device 128x48
[ 22.611281] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 22.635388] i915 0000:00:02.0: vgaarb: pci_notify
[ 22.974874] ACPI: Device [BAT2] status [00000000]
[ 22.980959] ACPI: Device [EHC1] status [00000000]
[ 22.981206] ACPI: Device [HUBN] status [0000000f]
[ 22.981538] ACPI: Device [PR01] status [0000000f]
[ 22.981866] ACPI: Device [PR11] status [0000000f]
[ 22.982286] ACPI: Device [PR12] status [0000000f]
[ 22.982695] ACPI: Device [PR13] status [0000000f]
[ 22.983117] ACPI: Device [PR14] status [0000000f]
[ 22.983526] ACPI: Device [PR15] status [0000000f]
[ 22.983934] ACPI: Device [PR16] status [0000000f]
[ 22.984344] ACPI: Device [PR17] status [0000000f]
[ 22.984752] ACPI: Device [PR18] status [0000000f]
[ 22.994137] ACPI: Device [EM41] status [00000000]
[ 22.994152] ACPI: Device [CARD] status [0000000f]
[ 22.994826] ACPI: Device [OTG1] status [00000000]
[ 22.999951] ACPI: Device [LPEA] status [00000000]
[ 23.000578] ACPI: Device [LPA2] status [00000000]
[ 23.000723] ACPI: Device [ADMA] status [0000000f]
[ 23.002293] ACPI: Device [GPED] status [00000000]
[ 23.002946] ACPI: Device [PIND] status [00000000]
[ 23.003034] i801_smbus 0000:00:1f.3: vgaarb: pci_notify
[ 24.207431] raid6: sse2x4 gen() 4762 MB/s
[ 24.275384] raid6: sse2x2 gen() 4557 MB/s
[ 24.343430] raid6: sse2x1 gen() 3422 MB/s
[ 24.343436] raid6: using algorithm sse2x4 gen() 4762 MB/s
[ 24.411378] raid6: .... xor() 1352 MB/s, rmw enabled
[ 24.411384] raid6: using ssse3x2 recovery algorithm
[ 24.414888] xor: measuring software checksum speed
[ 24.415348] prefetch64-sse : 7314 MB/sec
[ 24.415839] generic_sse : 6797 MB/sec
[ 24.415843] xor: using function: prefetch64-sse (7314 MB/sec)
[ 24.419914] async_tx: api initialized (async)
[ 25.288979] Btrfs loaded, zoned=yes, fsverity=yes
[ 25.503788] EXT4-fs (dm-0): mounted filesystem 48a9dd91-d00b-47bf-8f7b-9758baf79d83 ro with ordered data mode. Quota mode: none.
[ 26.174457] systemd[1]: Inserted module 'autofs4'
[ 26.250601] systemd[1]: systemd 245.4-4ubuntu3.22 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[ 26.251046] systemd[1]: Detected architecture x86-64.
[ 26.288808] systemd[1]: Set hostname to <bttest>.
[ 27.008739] systemd[1]: Created slice system-modprobe.slice.
[ 27.009950] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[ 27.010856] systemd[1]: Created slice User and Session Slice.
[ 27.011094] systemd[1]: Started ntp-systemd-netif.path.
[ 27.011303] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 27.011926] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 27.012139] systemd[1]: Reached target User and Group Name Lookups.
[ 27.012199] systemd[1]: Reached target Slices.
[ 27.012251] systemd[1]: Reached target Mounting snaps.
[ 27.012320] systemd[1]: Reached target System Time Set.
[ 27.012589] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 27.012948] systemd[1]: Listening on LVM2 poll daemon socket.
[ 27.013170] systemd[1]: Listening on multipathd control socket.
[ 27.013491] systemd[1]: Listening on Syslog Socket.
[ 27.013795] systemd[1]: Listening on fsck to fsckd communication Socket.
[ 27.013968] systemd[1]: Listening on initctl Compatibility Named Pipe.
[ 27.014625] systemd[1]: Listening on Journal Audit Socket.
[ 27.014994] systemd[1]: Listening on Journal Socket (/dev/log).
[ 27.015437] systemd[1]: Listening on Journal Socket.
[ 27.015943] systemd[1]: Listening on Network Service Netlink Socket.
[ 27.016296] systemd[1]: Listening on udev Control Socket.
[ 27.016524] systemd[1]: Listening on udev Kernel Socket.
[ 27.043848] systemd[1]: Mounting Huge Pages File System...
[ 27.047753] systemd[1]: Mounting POSIX Message Queue File System...
[ 27.052144] systemd[1]: Mounting Kernel Debug File System...
[ 27.056498] systemd[1]: Mounting Kernel Trace File System...
[ 27.062777] systemd[1]: Starting Journal Service...
[ 27.067167] systemd[1]: Starting Set the console keyboard layout...
[ 27.071317] systemd[1]: Starting Create list of static device nodes for the current kernel...
[ 27.076712] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 27.082047] systemd[1]: Starting Load Kernel Module chromeos_pstore...
[ 27.082224] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped.
[ 27.090563] systemd[1]: Starting Load Kernel Module efi_pstore...
[ 27.094699] systemd[1]: Starting Load Kernel Module pstore_blk...
[ 27.102030] systemd[1]: Starting Load Kernel Module pstore_zone...
[ 27.105696] systemd[1]: Starting Load Kernel Module ramoops...
[ 27.105931] systemd[1]: Condition check resulted in OpenVSwitch configuration for cleanup being skipped.
[ 27.107149] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[ 27.107314] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[ 27.114283] systemd[1]: Starting Load Kernel Modules...
[ 27.118369] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 27.122679] systemd[1]: Starting udev Coldplug all Devices...
[ 27.132055] systemd[1]: Starting Uncomplicated firewall...
[ 27.139455] systemd[1]: Mounted Huge Pages File System.
[ 27.140602] systemd[1]: Mounted POSIX Message Queue File System.
[ 27.141189] systemd[1]: Mounted Kernel Debug File System.
[ 27.141634] systemd[1]: Mounted Kernel Trace File System.
[ 27.143690] systemd[1]: Finished Create list of static device nodes for the current kernel.
[ 27.144971] systemd[1]: modprobe@efi_pstore.service: Succeeded.
[ 27.145918] systemd[1]: Finished Load Kernel Module efi_pstore.
[ 27.147283] systemd[1]: modprobe@pstore_blk.service: Succeeded.
[ 27.148141] systemd[1]: Finished Load Kernel Module pstore_blk.
[ 27.149323] systemd[1]: modprobe@pstore_zone.service: Succeeded.
[ 27.150142] systemd[1]: Finished Load Kernel Module pstore_zone.
[ 27.152475] systemd[1]: Finished Uncomplicated firewall.
[ 27.172079] systemd[1]: modprobe@chromeos_pstore.service: Succeeded.
[ 27.172888] systemd[1]: Finished Load Kernel Module chromeos_pstore.
[ 27.174044] systemd[1]: modprobe@ramoops.service: Succeeded.
[ 27.174893] systemd[1]: Finished Load Kernel Module ramoops.
[ 27.183626] systemd[1]: Finished Load Kernel Modules.
[ 27.192238] EXT4-fs (dm-0): re-mounted 48a9dd91-d00b-47bf-8f7b-9758baf79d83 r/w. Quota mode: none.
[ 27.200032] systemd[1]: Mounting FUSE Control File System...
[ 27.211381] systemd[1]: Mounting Kernel Configuration File System...
[ 27.215446] systemd[1]: Starting Apply Kernel Variables...
[ 27.224340] systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
[ 27.228345] systemd[1]: Finished Remount Root and Kernel File Systems.
[ 27.229049] systemd[1]: Mounted FUSE Control File System.
[ 27.231133] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[ 27.234552] systemd[1]: Starting Create System Users...
[ 27.246440] systemd[1]: Mounted Kernel Configuration File System.
[ 27.284438] systemd[1]: Finished Apply Kernel Variables.
[ 27.291180] systemd[1]: Finished Create System Users.
[ 27.307706] systemd[1]: Starting Create Static Device Nodes in /dev...
[ 27.340775] systemd[1]: Finished Create Static Device Nodes in /dev.
[ 27.345850] systemd[1]: Starting udev Kernel Device Manager...
[ 27.424991] systemd[1]: Finished Set the console keyboard layout.
[ 27.475035] systemd[1]: Started Journal Service.
[ 29.528596] mei_txe 0000:00:1a.0: vgaarb: pci_notify
[ 29.528617] mei_txe 0000:00:1a.0: runtime IRQ mapping not provided by arch
[ 29.544298] cdc_acm 1-3:1.0: ttyACM0: USB ACM device
[ 29.544441] usbcore: registered new interface driver cdc_acm
[ 29.544448] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[ 29.559068] mei_txe 0000:00:1a.0: vgaarb: pci_notify
[ 31.533390] intel_rapl_common: Found RAPL domain package
[ 31.533404] intel_rapl_common: Found RAPL domain core
[ 31.650416] Adding 5242876k swap on /dev/mapper/vg00-swapvol. Priority:-2 extents:1 across:5242876k SS
[ 36.360515] alua: device handler registered
[ 36.365746] emc: device handler registered
[ 36.370845] rdac: device handler registered
[ 36.593541] EXT4-fs (dm-1): mounted filesystem 35490b7f-488c-442a-b8e4-5bb90dcf2a2a r/w with ordered data mode. Quota mode: none.
[ 36.597294] EXT4-fs (sda2): mounted filesystem ee28ab0c-815f-4969-8057-bfbf6ed7fc0a r/w with ordered data mode. Quota mode: none.
[ 36.621272] loop0: detected capacity change from 0 to 130448
[ 36.640995] loop1: detected capacity change from 0 to 130552
[ 36.641326] loop2: detected capacity change from 0 to 188176
[ 36.641640] loop3: detected capacity change from 0 to 188192
[ 36.657067] loop4: detected capacity change from 0 to 91008
[ 36.666608] systemd-journald[388]: Received client request to flush runtime journal.
[ 36.684226] loop5: detected capacity change from 0 to 91024
[ 36.868334] audit: type=1400 audit(1742297276.595:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=668 comm="apparmor_parser"
[ 36.868363] audit: type=1400 audit(1742297276.595:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=668 comm="apparmor_parser"
[ 36.868374] audit: type=1400 audit(1742297276.595:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=668 comm="apparmor_parser"
[ 36.877320] audit: type=1400 audit(1742297276.603:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ntpd" pid=669 comm="apparmor_parser"
[ 36.878618] audit: type=1400 audit(1742297276.603:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=671 comm="apparmor_parser"
[ 36.883485] audit: type=1400 audit(1742297276.611:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=672 comm="apparmor_parser"
[ 36.886325] audit: type=1400 audit(1742297276.611:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=670 comm="apparmor_parser"
[ 36.886349] audit: type=1400 audit(1742297276.611:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=670 comm="apparmor_parser"
[ 36.886360] audit: type=1400 audit(1742297276.611:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=670 comm="apparmor_parser"
[ 36.886370] audit: type=1400 audit(1742297276.611:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/{,usr/}sbin/dhclient" pid=670 comm="apparmor_parser"
[ 43.779894] igb 0000:03:00.0 enp3s0: igb: enp3s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[ 49.957764] kauditd_printk_skb: 21 callbacks suppressed
[ 49.957776] audit: type=1400 audit(1742297289.683:33): apparmor="DENIED" operation="open" class="file" profile="/usr/sbin/ntpd" name="/snap/bin/" pid=777 comm="ntpd" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 52.678291] audit: type=1400 audit(1742297292.403:34): apparmor="STATUS" operation="profile_load" profile="unconfined" name="docker-default" pid=923 comm="apparmor_parser"
[ 52.857915] evm: overlay not supported
[ 53.542615] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 53.554765] Bridge firewalling registered
[ 53.650341] loop6: detected capacity change from 0 to 8
[ 53.940244] Initializing XFRM netlink socket
[ 6282.214169] perf: interrupt took too long (2509 > 2500), lowering kernel.perf_event_max_sample_rate to 79500
[ 8627.100077] perf: interrupt took too long (3151 > 3136), lowering kernel.perf_event_max_sample_rate to 63250
[12522.514408] perf: interrupt took too long (3941 > 3938), lowering kernel.perf_event_max_sample_rate to 50750
[19607.353018] perf: interrupt took too long (4943 > 4926), lowering kernel.perf_event_max_sample_rate to 40250
[37187.647770] perf: interrupt took too long (6190 > 6178), lowering kernel.perf_event_max_sample_rate to 32250
[71632.591727] perf: interrupt took too long (8411 > 7737), lowering kernel.perf_event_max_sample_rate to 23750

[77998.038653]
Initialized Local Variables for Method [RDWD]:
[77998.038691] Local1: 00000000d0fe9fee <Obj> Integer 0000000000000015
[77998.038862] Local6: 00000000f41c1645 <Obj> Integer 0000000000000000
[77998.039031] Local7: 0000000040665c5c <Obj> Integer 000000000000AA55

[77998.039237] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[77998.039273] Arg0: 00000000397dc53d <Obj> Integer 0000000000000014
[77998.039442] Arg1: 000000001099e334 <Obj> Integer 0000000000000002

[77998.039673] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[77998.040455] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[77998.043659] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78028.442980]
Initialized Local Variables for Method [RDWD]:
[78028.443019] Local1: 00000000898a9a7e <Obj> Integer 0000000000000017
[78028.443192] Local6: 000000000cf0c853 <Obj> Integer 0000000000000000
[78028.443362] Local7: 00000000bb4aa65f <Obj> Integer 000000000000AA55

[78028.443569] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78028.443606] Arg0: 00000000ef8d445b <Obj> Integer 0000000000000016
[78028.443775] Arg1: 000000006cacc887 <Obj> Integer 0000000000000003

[78028.444006] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78028.446366] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78028.451179] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78032.877472]
Initialized Local Variables for Method [RDWD]:
[78032.877509] Local1: 00000000cf6291ae <Obj> Integer 0000000000000017
[78032.877682] Local6: 0000000026aa8a7a <Obj> Integer 0000000000000003
[78032.877851] Local7: 00000000acfa20e0 <Obj> Integer 000000000000AA55

[78032.878058] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78032.878094] Arg0: 00000000a186096f <Obj> Integer 0000000000000016
[78032.878262] Arg1: 00000000d0e1eefe <Obj> Integer 0000000000000003

[78032.878492] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78032.881011] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78032.883061] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78033.761966]
Initialized Local Variables for Method [RDWD]:
[78033.762003] Local1: 0000000033f6f4c5 <Obj> Integer 0000000000000015
[78033.762178] Local6: 00000000afd05901 <Obj> Integer 0000000000000004
[78033.762347] Local7: 0000000010c5364c <Obj> Integer 000000000000AA55

[78033.762554] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78033.762590] Arg0: 0000000071f597ec <Obj> Integer 0000000000000014
[78033.762759] Arg1: 0000000014b1269b <Obj> Integer 0000000000000002

[78033.762990] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78033.766300] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78033.770514] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78038.178506]
Initialized Local Variables for Method [RDWD]:
[78038.178544] Local1: 000000001f61ba80 <Obj> Integer 0000000000000015
[78038.178716] Local6: 000000005e0dedad <Obj> Integer 0000000000000002
[78038.178886] Local7: 000000002daea14f <Obj> Integer 000000000000AA55

[78038.179092] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78038.179128] Arg0: 00000000290a4d5f <Obj> Integer 0000000000000014
[78038.179298] Arg1: 00000000f4f91574 <Obj> Integer 0000000000000002

[78038.179529] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78038.180072] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78038.181760] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78085.502899]
Initialized Local Variables for Method [RDWD]:
[78085.502937] Local1: 0000000010fabccb <Obj> Integer 0000000000000017
[78085.503110] Local6: 00000000cde3d143 <Obj> Integer 0000000000000002
[78085.503279] Local7: 00000000f8f4c754 <Obj> Integer 000000000000AA55

[78085.503485] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78085.503522] Arg0: 00000000482d7cb7 <Obj> Integer 0000000000000016
[78085.503690] Arg1: 000000001cdaa744 <Obj> Integer 0000000000000003

[78085.503920] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78085.506417] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78085.509047] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78095.834850]
Initialized Local Variables for Method [RDWD]:
[78095.834888] Local1: 00000000898a9a7e <Obj> Integer 0000000000000017
[78095.835063] Local6: 000000003e07972a <Obj> Integer 0000000000000004
[78095.835233] Local7: 000000001bd41ffb <Obj> Integer 000000000000AA55

[78095.835440] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78095.835476] Arg0: 00000000be6a90de <Obj> Integer 0000000000000016
[78095.835645] Arg1: 00000000a485018c <Obj> Integer 0000000000000003

[78095.835877] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78095.838237] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78095.840617] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78101.147126]
Initialized Local Variables for Method [RDWD]:
[78101.147164] Local1: 00000000d711426b <Obj> Integer 0000000000000017
[78101.147336] Local6: 00000000dfeb8645 <Obj> Integer 0000000000000005
[78101.147506] Local7: 0000000031a31d65 <Obj> Integer 000000000000AA55

[78101.147713] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78101.147749] Arg0: 000000003942acc2 <Obj> Integer 0000000000000016
[78101.147918] Arg1: 000000005e0dedad <Obj> Integer 0000000000000003

[78101.148149] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78101.150270] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78101.152314] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78103.499469]
Initialized Local Variables for Method [RDWD]:
[78103.499507] Local1: 000000002894e340 <Obj> Integer 0000000000000015
[78103.499681] Local6: 00000000397dc53d <Obj> Integer 0000000000000004
[78103.499850] Local7: 0000000026aa8a7a <Obj> Integer 000000000000AA55

[78103.500056] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78103.500092] Arg0: 0000000068677316 <Obj> Integer 0000000000000014
[78103.500260] Arg1: 0000000003ee7e02 <Obj> Integer 0000000000000002

[78103.500492] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78103.501158] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78103.502287] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78159.910945]
Initialized Local Variables for Method [RDWD]:
[78159.910983] Local1: 0000000062f5cec2 <Obj> Integer 0000000000000015
[78159.911158] Local6: 0000000022fc2a68 <Obj> Integer 0000000000000004
[78159.911328] Local7: 00000000d2a56d8c <Obj> Integer 000000000000AA55

[78159.911534] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78159.911570] Arg0: 0000000002fb8686 <Obj> Integer 0000000000000014
[78159.911739] Arg1: 0000000018eee9d2 <Obj> Integer 0000000000000002

[78159.911969] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78159.921613] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78159.936619] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78164.346533]
Initialized Local Variables for Method [RDWD]:
[78164.346575] Local1: 000000006115479c <Obj> Integer 0000000000000017
[78164.346749] Local6: 00000000a7d9c091 <Obj> Integer 0000000000000005
[78164.346919] Local7: 00000000cde3d143 <Obj> Integer 000000000000AA55

[78164.347127] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78164.347162] Arg0: 00000000649c9022 <Obj> Integer 0000000000000016
[78164.347331] Arg1: 000000003e07972a <Obj> Integer 0000000000000003

[78164.347563] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78164.362527] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78164.401106] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78171.443210]
Initialized Local Variables for Method [RDWD]:
[78171.443247] Local1: 00000000756378cf <Obj> Integer 0000000000000017
[78171.443421] Local6: 000000000df5c435 <Obj> Integer 0000000000000005
[78171.443591] Local7: 00000000e7696552 <Obj> Integer 000000000000AA55

[78171.443798] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78171.443835] Arg0: 00000000f3836c18 <Obj> Integer 0000000000000016
[78171.444004] Arg1: 0000000026bd9a01 <Obj> Integer 0000000000000003

[78171.444235] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78171.461228] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78171.511238] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78173.803786]
Initialized Local Variables for Method [RDWD]:
[78173.803824] Local1: 000000001bbf2ac3 <Obj> Integer 0000000000000015
[78173.803997] Local6: 000000000383278b <Obj> Integer 0000000000000004
[78173.804166] Local7: 0000000098e6f620 <Obj> Integer 000000000000AA55

[78173.804373] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78173.804409] Arg0: 0000000052eed832 <Obj> Integer 0000000000000014
[78173.804577] Arg1: 000000009d780b06 <Obj> Integer 0000000000000002

[78173.804806] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78173.821481] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78173.872149] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78231.125555]
Initialized Local Variables for Method [RDWD]:
[78231.125592] Local1: 000000004046b650 <Obj> Integer 0000000000000015
[78231.125766] Local6: 0000000022fc2a68 <Obj> Integer 0000000000000004
[78231.125936] Local7: 00000000327457d2 <Obj> Integer 000000000000AA55

[78231.126143] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78231.126179] Arg0: 000000009ed6aae1 <Obj> Integer 0000000000000014
[78231.126348] Arg1: 00000000ff7184e5 <Obj> Integer 0000000000000002

[78231.126580] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78231.141227] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78231.155429] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78234.659687]
Initialized Local Variables for Method [RDWD]:
[78234.659725] Local1: 00000000d711426b <Obj> Integer 0000000000000017
[78234.659897] Local6: 000000009c314ef0 <Obj> Integer 0000000000000005
[78234.660067] Local7: 0000000011ba6dc0 <Obj> Integer 000000000000AA55

[78234.660274] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78234.660309] Arg0: 00000000898a9a7e <Obj> Integer 0000000000000016
[78234.660478] Arg1: 000000000cf0c853 <Obj> Integer 0000000000000003

[78234.660709] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78234.675112] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78234.690305] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78240.865705]
Initialized Local Variables for Method [RDWD]:
[78240.865743] Local1: 00000000cd03acd3 <Obj> Integer 0000000000000017
[78240.865918] Local6: 0000000052eed832 <Obj> Integer 0000000000000006
[78240.866087] Local7: 0000000026bd9a01 <Obj> Integer 000000000000AA55

[78240.866293] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78240.866329] Arg0: 00000000acfa20e0 <Obj> Integer 0000000000000016
[78240.866498] Arg1: 00000000ba7612f3 <Obj> Integer 0000000000000003

[78240.866729] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78240.880690] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78240.895997] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78243.815831]
Initialized Local Variables for Method [RDWD]:
[78243.815869] Local1: 0000000034081769 <Obj> Integer 0000000000000015
[78243.816042] Local6: 00000000f4f91574 <Obj> Integer 0000000000000004
[78243.816212] Local7: 00000000daae9e0d <Obj> Integer 000000000000AA55

[78243.816419] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78243.816456] Arg0: 00000000fbd169c0 <Obj> Integer 0000000000000014
[78243.816626] Arg1: 00000000995a075f <Obj> Integer 0000000000000002

[78243.816857] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78243.830741] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78243.845281] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78300.753597]
Initialized Local Variables for Method [RDWD]:
[78300.753635] Local1: 000000000f6230e0 <Obj> Integer 0000000000000015
[78300.753809] Local6: 00000000bc5750c6 <Obj> Integer 0000000000000004
[78300.753979] Local7: 00000000eec10629 <Obj> Integer 000000000000AA55

[78300.754186] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78300.754221] Arg0: 00000000d711426b <Obj> Integer 0000000000000014
[78300.754390] Arg1: 000000000cf0c853 <Obj> Integer 0000000000000002

[78300.754621] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78300.769048] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78300.783582] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78304.593539]
Initialized Local Variables for Method [RDWD]:
[78304.593577] Local1: 000000007ed32f8a <Obj> Integer 0000000000000017
[78304.593750] Local6: 000000002a795719 <Obj> Integer 0000000000000005
[78304.593918] Local7: 000000003e4f2a97 <Obj> Integer 000000000000AA55

[78304.594124] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78304.594160] Arg0: 000000009ed6aae1 <Obj> Integer 0000000000000016
[78304.594328] Arg1: 00000000ff7184e5 <Obj> Integer 0000000000000003

[78304.594558] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78304.609337] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78304.624101] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78310.793492]
Initialized Local Variables for Method [RDWD]:
[78310.793529] Local1: 0000000052eed832 <Obj> Integer 0000000000000017
[78310.793703] Local6: 00000000d2a56d8c <Obj> Integer 0000000000000006
[78310.793873] Local7: 00000000f9dece9d <Obj> Integer 000000000000AA55

[78310.794080] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78310.794117] Arg0: 0000000034081769 <Obj> Integer 0000000000000016
[78310.794287] Arg1: 00000000f4f91574 <Obj> Integer 0000000000000003

[78310.794518] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78310.808925] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78310.823796] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78313.742877]
Initialized Local Variables for Method [RDWD]:
[78313.742915] Local1: 00000000d0fe9fee <Obj> Integer 0000000000000015
[78313.743089] Local6: 00000000e1818201 <Obj> Integer 0000000000000004
[78313.743259] Local7: 00000000a6bd01a6 <Obj> Integer 000000000000AA55

[78313.743465] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78313.743501] Arg0: 000000001235e4fe <Obj> Integer 0000000000000014
[78313.743670] Arg1: 0000000014b1269b <Obj> Integer 0000000000000002

[78313.743901] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78313.759591] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78313.774029] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78370.754537]
Initialized Local Variables for Method [RDWD]:
[78370.754575] Local1: 00000000cf6291ae <Obj> Integer 0000000000000015
[78370.754747] Local6: 000000002daea14f <Obj> Integer 0000000000000004
[78370.754916] Local7: 0000000020c2dba5 <Obj> Integer 000000000000AA55

[78370.755121] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78370.755158] Arg0: 0000000033f6f4c5 <Obj> Integer 0000000000000014
[78370.755327] Arg1: 000000002c1ddbe3 <Obj> Integer 0000000000000002

[78370.755557] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78370.770325] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78370.785598] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78374.581949]
Initialized Local Variables for Method [RDWD]:
[78374.581987] Local1: 000000009b914ef5 <Obj> Integer 0000000000000017
[78374.582159] Local6: 0000000014b1269b <Obj> Integer 0000000000000005
[78374.582328] Local7: 00000000dc87b862 <Obj> Integer 000000000000AA55

[78374.582535] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78374.582571] Arg0: 00000000d6ed1c77 <Obj> Integer 0000000000000016
[78374.582740] Arg1: 0000000090ad1b2b <Obj> Integer 0000000000000003

[78374.582970] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78374.597110] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78374.612275] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78380.786703]
Initialized Local Variables for Method [RDWD]:
[78380.786742] Local1: 00000000bc629bb3 <Obj> Integer 0000000000000017
[78380.786915] Local6: 000000005bddec7f <Obj> Integer 0000000000000006
[78380.787083] Local7: 00000000a485018c <Obj> Integer 000000000000AA55

[78380.787290] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78380.787326] Arg0: 00000000244937e2 <Obj> Integer 0000000000000016
[78380.787495] Arg1: 000000004ca0432c <Obj> Integer 0000000000000003

[78380.787725] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78380.801882] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78380.816405] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78383.738015]
Initialized Local Variables for Method [RDWD]:
[78383.738053] Local1: 00000000be287db5 <Obj> Integer 0000000000000015
[78383.738227] Local6: 00000000d2a56d8c <Obj> Integer 0000000000000004
[78383.738398] Local7: 00000000898a9a7e <Obj> Integer 000000000000AA55

[78383.738606] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78383.738642] Arg0: 000000007857eab4 <Obj> Integer 0000000000000014
[78383.738812] Arg1: 000000002d8c7991 <Obj> Integer 0000000000000002

[78383.739043] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78383.753508] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78383.767938] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78440.362279]
Initialized Local Variables for Method [RDWD]:
[78440.362317] Local1: 000000007a0597a8 <Obj> Integer 0000000000000015
[78440.362490] Local6: 00000000649c9022 <Obj> Integer 0000000000000004
[78440.362659] Local7: 00000000132c001c <Obj> Integer 000000000000AA55

[78440.362866] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78440.362901] Arg0: 00000000909034c1 <Obj> Integer 0000000000000014
[78440.363070] Arg1: 000000000383278b <Obj> Integer 0000000000000002

[78440.363302] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78440.379806] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78440.430338] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78444.486461]
Initialized Local Variables for Method [RDWD]:
[78444.486499] Local1: 0000000087273b6c <Obj> Integer 0000000000000017
[78444.486672] Local6: 000000001bbf2ac3 <Obj> Integer 0000000000000005
[78444.486841] Local7: 00000000f4f91574 <Obj> Integer 000000000000AA55

[78444.487047] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78444.487082] Arg0: 000000004f3de70b <Obj> Integer 0000000000000016
[78444.487251] Arg1: 000000005f74f6e1 <Obj> Integer 0000000000000003

[78444.487483] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78444.501957] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78444.516769] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78451.582656]
Initialized Local Variables for Method [RDWD]:
[78451.582693] Local1: 0000000026bd9a01 <Obj> Integer 0000000000000017
[78451.582867] Local6: 000000001bbf2ac3 <Obj> Integer 0000000000000005
[78451.583035] Local7: 000000007a557ec0 <Obj> Integer 000000000000AA55

[78451.583242] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78451.583277] Arg0: 0000000090aa0b7b <Obj> Integer 0000000000000016
[78451.583446] Arg1: 00000000dfeb8645 <Obj> Integer 0000000000000003

[78451.583677] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78451.599243] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78451.649431] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78453.350624]
Initialized Local Variables for Method [RDWD]:
[78453.350662] Local1: 000000002ef8ae79 <Obj> Integer 0000000000000015
[78453.350835] Local6: 000000001f61ba80 <Obj> Integer 0000000000000005
[78453.351005] Local7: 00000000daae9e0d <Obj> Integer 000000000000AA55

[78453.351212] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78453.351247] Arg0: 0000000052eed832 <Obj> Integer 0000000000000014
[78453.351417] Arg1: 0000000005b4ad25 <Obj> Integer 0000000000000002

[78453.351646] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78453.369525] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78453.383778] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78510.375207]
Initialized Local Variables for Method [RDWD]:
[78510.375245] Local1: 00000000b02ed2c3 <Obj> Integer 0000000000000015
[78510.375419] Local6: 00000000833d17af <Obj> Integer 0000000000000004
[78510.375588] Local7: 00000000a1534eca <Obj> Integer 000000000000AA55

[78510.375796] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78510.375832] Arg0: 000000002b96371e <Obj> Integer 0000000000000014
[78510.376000] Arg1: 00000000bc629bb3 <Obj> Integer 0000000000000002

[78510.376231] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78510.392360] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78510.431596] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78514.516616]
Initialized Local Variables for Method [RDWD]:
[78514.516654] Local1: 000000000f85ccbf <Obj> Integer 0000000000000017
[78514.516826] Local6: 000000000cf0c853 <Obj> Integer 0000000000000005
[78514.516995] Local7: 00000000cee55ed6 <Obj> Integer 000000000000AA55

[78514.517201] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78514.517237] Arg0: 00000000471981fa <Obj> Integer 0000000000000016
[78514.517406] Arg1: 00000000de194deb <Obj> Integer 0000000000000003

[78514.517636] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78514.533986] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78514.548602] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78521.592577]
Initialized Local Variables for Method [RDWD]:
[78521.592615] Local1: 000000004998602c <Obj> Integer 0000000000000017
[78521.592788] Local6: 000000005bddec7f <Obj> Integer 0000000000000005
[78521.592957] Local7: 000000005e0dedad <Obj> Integer 000000000000AA55

[78521.593163] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78521.593199] Arg0: 0000000025249621 <Obj> Integer 0000000000000016
[78521.593367] Arg1: 0000000017ca07cd <Obj> Integer 0000000000000003

[78521.593598] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78521.607585] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78521.622063] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78523.363012]
Initialized Local Variables for Method [RDWD]:
[78523.363050] Local1: 000000003221a20e <Obj> Integer 0000000000000015
[78523.363225] Local6: 00000000d711426b <Obj> Integer 0000000000000005
[78523.363395] Local7: 00000000bb4aa65f <Obj> Integer 000000000000AA55

[78523.363600] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78523.363636] Arg0: 000000005b023c7f <Obj> Integer 0000000000000014
[78523.363804] Arg1: 00000000e1818201 <Obj> Integer 0000000000000002

[78523.364035] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78523.379061] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78523.393921] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78580.352641]
Initialized Local Variables for Method [RDWD]:
[78580.352678] Local1: 000000004998602c <Obj> Integer 0000000000000015
[78580.352851] Local6: 0000000032476d1b <Obj> Integer 0000000000000004
[78580.353020] Local7: 000000002b94a400 <Obj> Integer 000000000000AA55

[78580.353226] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78580.353262] Arg0: 0000000025249621 <Obj> Integer 0000000000000014
[78580.353431] Arg1: 000000009d37b322 <Obj> Integer 0000000000000002

[78580.353660] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78580.369495] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78580.413165] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78584.475743]
Initialized Local Variables for Method [RDWD]:
[78584.475787] Local1: 00000000d337ecec <Obj> Integer 0000000000000017
[78584.475964] Local6: 00000000f471dbe3 <Obj> Integer 0000000000000005
[78584.476135] Local7: 00000000d711426b <Obj> Integer 000000000000AA55

[78584.476346] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78584.476382] Arg0: 00000000f3836c18 <Obj> Integer 0000000000000016
[78584.476552] Arg1: 000000000383278b <Obj> Integer 0000000000000003

[78584.476790] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78584.494496] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78584.509962] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78591.570646]
Initialized Local Variables for Method [RDWD]:
[78591.570684] Local1: 00000000e543acc6 <Obj> Integer 0000000000000017
[78591.570857] Local6: 0000000017ca07cd <Obj> Integer 0000000000000005
[78591.571026] Local7: 00000000437f89d9 <Obj> Integer 000000000000AA55

[78591.571392] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78591.571429] Arg0: 00000000cde3d143 <Obj> Integer 0000000000000016
[78591.571602] Arg1: 0000000046cf4e1d <Obj> Integer 0000000000000003

[78591.571866] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78591.585783] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78591.600511] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78593.342839]
Initialized Local Variables for Method [RDWD]:
[78593.342877] Local1: 00000000daae9e0d <Obj> Integer 0000000000000015
[78593.343052] Local6: 00000000e8f3cf3b <Obj> Integer 0000000000000005
[78593.343298] Local7: 00000000bb4aa65f <Obj> Integer 000000000000AA55

[78593.343507] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78593.343543] Arg0: 00000000dfeb8645 <Obj> Integer 0000000000000014
[78593.343717] Arg1: 00000000e361334a <Obj> Integer 0000000000000002

[78593.343981] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78593.358940] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78593.373463] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78650.010031]
Initialized Local Variables for Method [RDWD]:
[78650.010070] Local1: 0000000022ea46df <Obj> Integer 0000000000000015
[78650.010244] Local6: 00000000bc629bb3 <Obj> Integer 0000000000000004
[78650.010414] Local7: 00000000dc87b862 <Obj> Integer 000000000000AA55

[78650.010621] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78650.010658] Arg0: 00000000132c001c <Obj> Integer 0000000000000014
[78650.010828] Arg1: 0000000018d597f1 <Obj> Integer 0000000000000002

[78650.011059] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78650.026555] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78650.041489] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78654.428512]
Initialized Local Variables for Method [RDWD]:
[78654.428549] Local1: 000000002b94a400 <Obj> Integer 0000000000000017
[78654.428722] Local6: 000000003e4f2a97 <Obj> Integer 0000000000000005
[78654.428891] Local7: 00000000ca0267c6 <Obj> Integer 000000000000AA55

[78654.429098] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78654.429134] Arg0: 00000000bdfa25b1 <Obj> Integer 0000000000000016
[78654.429303] Arg1: 000000000f6230e0 <Obj> Integer 0000000000000003

[78654.429532] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78654.444243] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78654.459068] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78661.525381]
Initialized Local Variables for Method [RDWD]:
[78661.525419] Local1: 00000000cee55ed6 <Obj> Integer 0000000000000017
[78661.525592] Local6: 000000002e743dba <Obj> Integer 0000000000000005
[78661.525761] Local7: 00000000b0c7e658 <Obj> Integer 000000000000AA55

[78661.525967] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78661.526004] Arg0: 00000000d711426b <Obj> Integer 0000000000000016
[78661.526173] Arg1: 00000000f9dece9d <Obj> Integer 0000000000000003

[78661.526404] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78661.541187] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78661.556569] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78663.881852]
Initialized Local Variables for Method [RDWD]:
[78663.881889] Local1: 0000000033f6f4c5 <Obj> Integer 0000000000000015
[78663.882063] Local6: 00000000d0fe9fee <Obj> Integer 0000000000000004
[78663.882232] Local7: 00000000d0e1eefe <Obj> Integer 000000000000AA55

[78663.882440] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78663.882475] Arg0: 000000005f74f6e1 <Obj> Integer 0000000000000014
[78663.882645] Arg1: 00000000244937e2 <Obj> Integer 0000000000000002

[78663.882876] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78663.897658] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78663.912215] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78721.481962]
Initialized Local Variables for Method [RDWD]:
[78721.481999] Local1: 00000000460b45aa <Obj> Integer 0000000000000015
[78721.482172] Local6: 0000000031a31d65 <Obj> Integer 0000000000000004
[78721.482341] Local7: 00000000daae9e0d <Obj> Integer 000000000000AA55

[78721.482548] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78721.482583] Arg0: 0000000020c2dba5 <Obj> Integer 0000000000000014
[78721.482752] Arg1: 00000000a9de02f4 <Obj> Integer 0000000000000002

[78721.482982] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78721.500035] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78721.515920] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78724.730667]
Initialized Local Variables for Method [RDWD]:
[78724.730704] Local1: 00000000bc629bb3 <Obj> Integer 0000000000000017
[78724.730877] Local6: 00000000d0e1eefe <Obj> Integer 0000000000000005
[78724.731047] Local7: 00000000441c832e <Obj> Integer 000000000000AA55

[78724.731254] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78724.731290] Arg0: 00000000d3cddc5c <Obj> Integer 0000000000000016
[78724.731459] Arg1: 00000000b0c7e658 <Obj> Integer 0000000000000003

[78724.731690] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78724.746225] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78724.761099] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78730.898700]
Initialized Local Variables for Method [RDWD]:
[78730.898737] Local1: 000000004b5645ee <Obj> Integer 0000000000000017
[78730.898911] Local6: 00000000ca0267c6 <Obj> Integer 0000000000000006
[78730.899080] Local7: 00000000244937e2 <Obj> Integer 000000000000AA55

[78730.899286] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78730.899322] Arg0: 0000000059cdad3f <Obj> Integer 0000000000000016
[78730.899491] Arg1: 00000000a1534eca <Obj> Integer 0000000000000003

[78730.899720] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78730.914205] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78730.933471] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78733.850362]
Initialized Local Variables for Method [RDWD]:
[78733.850400] Local1: 00000000772e209b <Obj> Integer 0000000000000015
[78733.850574] Local6: 0000000063821a36 <Obj> Integer 0000000000000004
[78733.850743] Local7: 000000003221a20e <Obj> Integer 000000000000AA55

[78733.850949] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78733.850985] Arg0: 00000000649c9022 <Obj> Integer 0000000000000014
[78733.851154] Arg1: 0000000062f5cec2 <Obj> Integer 0000000000000002

[78733.851385] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78733.866176] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78733.880620] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78791.458053]
Initialized Local Variables for Method [RDWD]:
[78791.458091] Local1: 00000000a485018c <Obj> Integer 0000000000000015
[78791.458269] Local6: 00000000ad772ea2 <Obj> Integer 0000000000000004
[78791.458441] Local7: 000000009a894b2c <Obj> Integer 000000000000AA55

[78791.458648] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78791.458684] Arg0: 00000000bc5750c6 <Obj> Integer 0000000000000014
[78791.458877] Arg1: 00000000cee55ed6 <Obj> Integer 0000000000000002

[78791.459112] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78791.474095] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78791.489005] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78794.710948]
Initialized Local Variables for Method [RDWD]:
[78794.710986] Local1: 0000000010fabccb <Obj> Integer 0000000000000017
[78794.711161] Local6: 000000004f3de70b <Obj> Integer 0000000000000005
[78794.711330] Local7: 00000000833d17af <Obj> Integer 000000000000AA55

[78794.711535] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78794.711571] Arg0: 00000000be6a90de <Obj> Integer 0000000000000016
[78794.711740] Arg1: 0000000063821a36 <Obj> Integer 0000000000000003

[78794.711970] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78794.727228] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78794.769933] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78800.911173]
Initialized Local Variables for Method [RDWD]:
[78800.911211] Local1: 000000004b5645ee <Obj> Integer 0000000000000017
[78800.911385] Local6: 0000000025249621 <Obj> Integer 0000000000000006
[78800.911554] Local7: 00000000eec10629 <Obj> Integer 000000000000AA55

[78800.911761] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78800.911797] Arg0: 000000001235e4fe <Obj> Integer 0000000000000016
[78800.911967] Arg1: 00000000244937e2 <Obj> Integer 0000000000000003

[78800.912199] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78800.926763] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78800.941908] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78803.870355]
Initialized Local Variables for Method [RDWD]:
[78803.870393] Local1: 00000000acfa20e0 <Obj> Integer 0000000000000015
[78803.870566] Local6: 0000000090ad1b2b <Obj> Integer 0000000000000004
[78803.870735] Local7: 0000000004783341 <Obj> Integer 000000000000AA55

[78803.870944] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78803.870980] Arg0: 00000000cf6291ae <Obj> Integer 0000000000000014
[78803.871149] Arg1: 000000002e743dba <Obj> Integer 0000000000000002

[78803.871379] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78803.886206] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78803.900721] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78861.495248]
Initialized Local Variables for Method [RDWD]:
[78861.495285] Local1: 000000005e0dedad <Obj> Integer 0000000000000015
[78861.495459] Local6: 000000003e07972a <Obj> Integer 0000000000000004
[78861.495629] Local7: 00000000de8524be <Obj> Integer 000000000000AA55

[78861.495837] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78861.495873] Arg0: 000000006cacc887 <Obj> Integer 0000000000000014
[78861.496042] Arg1: 000000005bddec7f <Obj> Integer 0000000000000002

[78861.496274] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78861.510191] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78861.525673] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78864.738752]
Initialized Local Variables for Method [RDWD]:
[78864.738790] Local1: 00000000804a9abc <Obj> Integer 0000000000000017
[78864.738965] Local6: 0000000084c7aec0 <Obj> Integer 0000000000000005
[78864.739137] Local7: 00000000a485018c <Obj> Integer 000000000000AA55

[78864.739345] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78864.739381] Arg0: 00000000bdfa25b1 <Obj> Integer 0000000000000016
[78864.739552] Arg1: 000000000cf0c853 <Obj> Integer 0000000000000003

[78864.739785] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78864.754881] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78864.799156] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78870.919605]
Initialized Local Variables for Method [RDWD]:
[78870.919643] Local1: 00000000fbd169c0 <Obj> Integer 0000000000000017
[78870.919818] Local6: 000000007a27f5c6 <Obj> Integer 0000000000000006
[78870.919988] Local7: 00000000de8524be <Obj> Integer 000000000000AA55

[78870.920197] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78870.920233] Arg0: 00000000756378cf <Obj> Integer 0000000000000016
[78870.920405] Arg1: 0000000004eb6aca <Obj> Integer 0000000000000003

[78870.920638] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78870.936181] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78870.950279] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78873.879498]
Initialized Local Variables for Method [RDWD]:
[78873.879536] Local1: 00000000016ad119 <Obj> Integer 0000000000000015
[78873.879710] Local6: 00000000be6a90de <Obj> Integer 0000000000000004
[78873.879880] Local7: 00000000f41c1645 <Obj> Integer 000000000000AA55

[78873.880086] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78873.880122] Arg0: 000000008f2afda1 <Obj> Integer 0000000000000014
[78873.880292] Arg1: 00000000471981fa <Obj> Integer 0000000000000002

[78873.880523] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78873.897152] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78873.947837] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78931.452902]
Initialized Local Variables for Method [RDWD]:
[78931.452940] Local1: 0000000005b4ad25 <Obj> Integer 0000000000000015
[78931.453115] Local6: 00000000e543acc6 <Obj> Integer 0000000000000004
[78931.453285] Local7: 00000000cde3d143 <Obj> Integer 000000000000AA55

[78931.453492] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78931.453528] Arg0: 00000000de194deb <Obj> Integer 0000000000000014
[78931.453697] Arg1: 000000007857eab4 <Obj> Integer 0000000000000002

[78931.453930] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78931.469288] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78931.483946] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78934.707930]
Initialized Local Variables for Method [RDWD]:
[78934.707968] Local1: 0000000027a70be9 <Obj> Integer 0000000000000017
[78934.708142] Local6: 0000000003ee7e02 <Obj> Integer 0000000000000005
[78934.708312] Local7: 000000005b4e469d <Obj> Integer 000000000000AA55

[78934.708518] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78934.708554] Arg0: 000000007054e7c0 <Obj> Integer 0000000000000016
[78934.708723] Arg1: 000000007a27f5c6 <Obj> Integer 0000000000000003

[78934.708954] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78934.724198] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78934.738928] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78940.916115]
Initialized Local Variables for Method [RDWD]:
[78940.916153] Local1: 00000000a3c48c1e <Obj> Integer 0000000000000017
[78940.916327] Local6: 00000000ca0267c6 <Obj> Integer 0000000000000006
[78940.916498] Local7: 00000000d3cddc5c <Obj> Integer 000000000000AA55

[78940.916704] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78940.916741] Arg0: 0000000062f5cec2 <Obj> Integer 0000000000000016
[78940.916910] Arg1: 000000009c314ef0 <Obj> Integer 0000000000000003

[78940.917142] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78940.931934] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78940.946882] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[78943.864758]
Initialized Local Variables for Method [RDWD]:
[78943.864796] Local1: 000000009d37b322 <Obj> Integer 0000000000000015
[78943.864973] Local6: 00000000e1818201 <Obj> Integer 0000000000000004
[78943.865144] Local7: 0000000032476d1b <Obj> Integer 000000000000AA55

[78943.865354] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[78943.865390] Arg0: 00000000bdfa25b1 <Obj> Integer 0000000000000014
[78943.865560] Arg1: 00000000ef8d445b <Obj> Integer 0000000000000002

[78943.865814] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78943.880581] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[78943.895893] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79001.489983]
Initialized Local Variables for Method [RDWD]:
[79001.490020] Local1: 00000000b1b147b7 <Obj> Integer 0000000000000015
[79001.490195] Local6: 000000002a6f3493 <Obj> Integer 0000000000000004
[79001.490364] Local7: 00000000f3b8d2e3 <Obj> Integer 000000000000AA55

[79001.490572] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79001.490608] Arg0: 00000000d057aaaa <Obj> Integer 0000000000000014
[79001.490776] Arg1: 00000000ad772ea2 <Obj> Integer 0000000000000002

[79001.491007] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79001.505218] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79001.520760] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79004.740388]
Initialized Local Variables for Method [RDWD]:
[79004.740425] Local1: 0000000026bd9a01 <Obj> Integer 0000000000000017
[79004.740599] Local6: 00000000756378cf <Obj> Integer 0000000000000005
[79004.740768] Local7: 00000000ff593085 <Obj> Integer 000000000000AA55

[79004.740975] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79004.741011] Arg0: 0000000034081769 <Obj> Integer 0000000000000016
[79004.741180] Arg1: 00000000fcb6a9d7 <Obj> Integer 0000000000000003

[79004.741405] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79004.756728] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79004.771242] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79010.988413]
Initialized Local Variables for Method [RDWD]:
[79010.988450] Local1: 000000007054e7c0 <Obj> Integer 0000000000000017
[79010.988623] Local6: 0000000026bd9a01 <Obj> Integer 0000000000000006
[79010.988793] Local7: 00000000471981fa <Obj> Integer 000000000000AA55

[79010.988999] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79010.989035] Arg0: 0000000018d597f1 <Obj> Integer 0000000000000016
[79010.989204] Arg1: 00000000132c001c <Obj> Integer 0000000000000003

[79010.989435] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79011.005895] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79011.021186] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79013.944394]
Initialized Local Variables for Method [RDWD]:
[79013.944432] Local1: 00000000ddaf8909 <Obj> Integer 0000000000000015
[79013.944606] Local6: 000000004102c149 <Obj> Integer 0000000000000004
[79013.944775] Local7: 0000000002fb8686 <Obj> Integer 000000000000AA55

[79013.944983] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79013.945019] Arg0: 00000000de8524be <Obj> Integer 0000000000000014
[79013.945187] Arg1: 00000000e5f3e841 <Obj> Integer 0000000000000002

[79013.945418] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79013.959304] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79013.973874] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79071.792951]
Initialized Local Variables for Method [RDWD]:
[79071.792989] Local1: 00000000471981fa <Obj> Integer 0000000000000015
[79071.793162] Local6: 000000009a894b2c <Obj> Integer 0000000000000004
[79071.793331] Local7: 000000007a9aadc8 <Obj> Integer 000000000000AA55

[79071.793538] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79071.793573] Arg0: 000000002d8c7991 <Obj> Integer 0000000000000014
[79071.793742] Arg1: 00000000b05233c1 <Obj> Integer 0000000000000002

[79071.793972] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79071.807858] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79071.822420] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79074.734054]
Initialized Local Variables for Method [RDWD]:
[79074.734091] Local1: 000000000a7bb688 <Obj> Integer 0000000000000017
[79074.734265] Local6: 00000000a7d9c091 <Obj> Integer 0000000000000005
[79074.734435] Local7: 00000000cde3d143 <Obj> Integer 000000000000AA55

[79074.734644] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79074.734680] Arg0: 00000000a485018c <Obj> Integer 0000000000000016
[79074.734850] Arg1: 000000001cdaa744 <Obj> Integer 0000000000000003

[79074.735080] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79074.749382] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79074.764067] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79080.945805]
Initialized Local Variables for Method [RDWD]:
[79080.945843] Local1: 000000000df5c435 <Obj> Integer 0000000000000017
[79080.946018] Local6: 000000000383278b <Obj> Integer 0000000000000006
[79080.946189] Local7: 000000009fa5f363 <Obj> Integer 000000000000AA55

[79080.946396] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79080.946432] Arg0: 00000000c9cc477c <Obj> Integer 0000000000000016
[79080.946602] Arg1: 00000000dfeb8645 <Obj> Integer 0000000000000003

[79080.946833] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79080.962462] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79080.977867] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79083.312323]
Initialized Local Variables for Method [RDWD]:
[79083.312361] Local1: 00000000e361334a <Obj> Integer 0000000000000015
[79083.312534] Local6: 0000000012480da5 <Obj> Integer 0000000000000005
[79083.312809] Local7: 000000007a338f98 <Obj> Integer 000000000000AA55

[79083.313022] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79083.313059] Arg0: 0000000047708690 <Obj> Integer 0000000000000014
[79083.313231] Arg1: 000000007592adfb <Obj> Integer 0000000000000002

[79083.313474] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79083.328395] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79083.342794] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79139.975065]
Initialized Local Variables for Method [RDWD]:
[79139.975104] Local1: 00000000ca0267c6 <Obj> Integer 0000000000000015
[79139.975278] Local6: 00000000437f89d9 <Obj> Integer 0000000000000004
[79139.975447] Local7: 00000000d2a56d8c <Obj> Integer 000000000000AA55

[79139.975655] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79139.975691] Arg0: 0000000026aa8a7a <Obj> Integer 0000000000000014
[79139.975860] Arg1: 000000004ca0432c <Obj> Integer 0000000000000002

[79139.976090] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79139.992733] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79140.012225] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79144.401704]
Initialized Local Variables for Method [RDWD]:
[79144.401742] Local1: 0000000040665c5c <Obj> Integer 0000000000000017
[79144.401916] Local6: 00000000bc5750c6 <Obj> Integer 0000000000000005
[79144.402085] Local7: 00000000482d7cb7 <Obj> Integer 000000000000AA55

[79144.402293] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79144.402329] Arg0: 0000000010fabccb <Obj> Integer 0000000000000016
[79144.402498] Arg1: 0000000025249621 <Obj> Integer 0000000000000003

[79144.402730] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79144.417864] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79144.460741] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79151.486483]
Initialized Local Variables for Method [RDWD]:
[79151.486522] Local1: 00000000be6a90de <Obj> Integer 0000000000000017
[79151.486697] Local6: 000000004f3de70b <Obj> Integer 0000000000000005
[79151.486867] Local7: 0000000059cdad3f <Obj> Integer 000000000000AA55

[79151.487075] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79151.487111] Arg0: 0000000032476d1b <Obj> Integer 0000000000000016
[79151.487281] Arg1: 00000000d711426b <Obj> Integer 0000000000000003

[79151.487512] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79151.502038] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79151.516893] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79153.850898]
Initialized Local Variables for Method [RDWD]:
[79153.850936] Local1: 00000000d0e1eefe <Obj> Integer 0000000000000015
[79153.851110] Local6: 000000006115479c <Obj> Integer 0000000000000004
[79153.851282] Local7: 00000000b6796486 <Obj> Integer 000000000000AA55

[79153.851489] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79153.851525] Arg0: 000000009b914ef5 <Obj> Integer 0000000000000014
[79153.851694] Arg1: 00000000f5cffe8d <Obj> Integer 0000000000000002

[79153.851926] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79153.866946] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79153.910608] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79211.420128]
Initialized Local Variables for Method [RDWD]:
[79211.420166] Local1: 000000005b023c7f <Obj> Integer 0000000000000015
[79211.420341] Local6: 0000000046cf4e1d <Obj> Integer 0000000000000004
[79211.420510] Local7: 00000000e543acc6 <Obj> Integer 000000000000AA55

[79211.420718] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79211.420755] Arg0: 00000000e8f3cf3b <Obj> Integer 0000000000000014
[79211.420925] Arg1: 000000009d37b322 <Obj> Integer 0000000000000002

[79211.421157] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79211.436995] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79211.451607] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79214.663395]
Initialized Local Variables for Method [RDWD]:
[79214.663433] Local1: 00000000b0c7e658 <Obj> Integer 0000000000000017
[79214.663607] Local6: 00000000d711426b <Obj> Integer 0000000000000005
[79214.663778] Local7: 000000003942acc2 <Obj> Integer 000000000000AA55

[79214.663985] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79214.664021] Arg0: 00000000dc06ded5 <Obj> Integer 0000000000000016
[79214.664190] Arg1: 0000000014b1269b <Obj> Integer 0000000000000003

[79214.664421] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79214.679451] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79214.707553] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79220.862720]
Initialized Local Variables for Method [RDWD]:
[79220.862758] Local1: 0000000028b8057f <Obj> Integer 0000000000000017
[79220.862931] Local6: 000000001099e334 <Obj> Integer 0000000000000006
[79220.863100] Local7: 00000000bc629bb3 <Obj> Integer 000000000000AA55

[79220.863307] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79220.863342] Arg0: 000000000b12d58f <Obj> Integer 0000000000000016
[79220.863511] Arg1: 000000007054e7c0 <Obj> Integer 0000000000000003

[79220.863741] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79220.877913] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79220.892790] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79223.789490]
Initialized Local Variables for Method [RDWD]:
[79223.789532] Local1: 00000000d0e1eefe <Obj> Integer 0000000000000015
[79223.789712] Local6: 000000003221a20e <Obj> Integer 0000000000000004
[79223.789882] Local7: 000000001cdaa744 <Obj> Integer 000000000000AA55

[79223.790091] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79223.790128] Arg0: 000000003e4f2a97 <Obj> Integer 0000000000000014
[79223.790457] Arg1: 0000000084c103ef <Obj> Integer 0000000000000002

[79223.790697] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79223.805578] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79223.821724] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79280.803448]
Initialized Local Variables for Method [RDWD]:
[79280.803486] Local1: 000000006115479c <Obj> Integer 0000000000000015
[79280.803658] Local6: 00000000e1818201 <Obj> Integer 0000000000000004
[79280.803827] Local7: 0000000025249621 <Obj> Integer 000000000000AA55

[79280.804033] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79280.804069] Arg0: 00000000cde3d143 <Obj> Integer 0000000000000014
[79280.804238] Arg1: 00000000de29cd85 <Obj> Integer 0000000000000002

[79280.804468] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79280.819330] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79280.833753] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79284.640503]
Initialized Local Variables for Method [RDWD]:
[79284.640540] Local1: 00000000b6f6cf9b <Obj> Integer 0000000000000017
[79284.640714] Local6: 00000000ca0267c6 <Obj> Integer 0000000000000005
[79284.640883] Local7: 00000000d0e1eefe <Obj> Integer 000000000000AA55

[79284.641089] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79284.641125] Arg0: 000000002dff236e <Obj> Integer 0000000000000016
[79284.641294] Arg1: 0000000046cf4e1d <Obj> Integer 0000000000000003

[79284.641525] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79284.656301] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79284.671648] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79290.847898]
Initialized Local Variables for Method [RDWD]:
[79290.847936] Local1: 00000000482d7cb7 <Obj> Integer 0000000000000017
[79290.848110] Local6: 00000000437f89d9 <Obj> Integer 0000000000000006
[79290.848279] Local7: 00000000f9dece9d <Obj> Integer 000000000000AA55

[79290.848484] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79290.848521] Arg0: 00000000be6a90de <Obj> Integer 0000000000000016
[79290.848691] Arg1: 00000000898a9a7e <Obj> Integer 0000000000000003

[79290.848920] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79290.863163] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79290.877460] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79293.800645]
Initialized Local Variables for Method [RDWD]:
[79293.800683] Local1: 00000000460b45aa <Obj> Integer 0000000000000015
[79293.800857] Local6: 00000000ef8d445b <Obj> Integer 0000000000000004
[79293.801026] Local7: 0000000069d28723 <Obj> Integer 000000000000AA55

[79293.801232] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79293.801268] Arg0: 000000009ed6aae1 <Obj> Integer 0000000000000014
[79293.801437] Arg1: 000000004046b650 <Obj> Integer 0000000000000002

[79293.801666] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79293.816451] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79293.831813] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79350.952109]
Initialized Local Variables for Method [RDWD]:
[79350.952146] Local1: 000000004fe9dd2f <Obj> Integer 0000000000000015
[79350.952321] Local6: 00000000ddaf8909 <Obj> Integer 0000000000000004
[79350.952491] Local7: 0000000018eee9d2 <Obj> Integer 000000000000AA55

[79350.952697] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79350.952733] Arg0: 00000000b05233c1 <Obj> Integer 0000000000000014
[79350.952903] Arg1: 00000000afd05901 <Obj> Integer 0000000000000002

[79350.953135] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79350.968641] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79350.983225] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79354.800680]
Initialized Local Variables for Method [RDWD]:
[79354.800718] Local1: 00000000e9c370ed <Obj> Integer 0000000000000017
[79354.800892] Local6: 00000000460b45aa <Obj> Integer 0000000000000005
[79354.801063] Local7: 00000000437f89d9 <Obj> Integer 000000000000AA55

[79354.801270] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79354.801306] Arg0: 00000000e543acc6 <Obj> Integer 0000000000000016
[79354.801476] Arg1: 000000007a27f5c6 <Obj> Integer 0000000000000003

[79354.801708] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79354.816511] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79354.831399] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79360.981926]
Initialized Local Variables for Method [RDWD]:
[79360.981963] Local1: 000000007a0597a8 <Obj> Integer 0000000000000017
[79360.982136] Local6: 0000000056d0801c <Obj> Integer 0000000000000006
[79360.982305] Local7: 0000000084c103ef <Obj> Integer 000000000000AA55

[79360.982513] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79360.982548] Arg0: 000000007857eab4 <Obj> Integer 0000000000000016
[79360.982717] Arg1: 0000000031a31d65 <Obj> Integer 0000000000000003

[79360.982947] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79360.998104] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79361.012846] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79363.920335]
Initialized Local Variables for Method [RDWD]:
[79363.920373] Local1: 000000000b12d58f <Obj> Integer 0000000000000015
[79363.920546] Local6: 00000000f41c1645 <Obj> Integer 0000000000000004
[79363.920715] Local7: 000000007ed32f8a <Obj> Integer 000000000000AA55

[79363.920921] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79363.920956] Arg0: 000000002a6f3493 <Obj> Integer 0000000000000014
[79363.921125] Arg1: 00000000649c9022 <Obj> Integer 0000000000000002

[79363.921358] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79363.936159] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79363.951945] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79421.829179]
Initialized Local Variables for Method [RDWD]:
[79421.829217] Local1: 0000000026bd9a01 <Obj> Integer 0000000000000015
[79421.829390] Local6: 00000000b3a6b402 <Obj> Integer 0000000000000004
[79421.829560] Local7: 0000000004eb6aca <Obj> Integer 000000000000AA55

[79421.829768] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79421.829804] Arg0: 00000000290a4d5f <Obj> Integer 0000000000000014
[79421.829972] Arg1: 000000004fe9dd2f <Obj> Integer 0000000000000002

[79421.830204] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79421.844997] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79421.859560] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79424.790185]
Initialized Local Variables for Method [RDWD]:
[79424.790222] Local1: 00000000ddaf8909 <Obj> Integer 0000000000000017
[79424.790396] Local6: 00000000ff593085 <Obj> Integer 0000000000000005
[79424.790565] Local7: 0000000047708690 <Obj> Integer 000000000000AA55

[79424.790773] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79424.790810] Arg0: 0000000068677316 <Obj> Integer 0000000000000016
[79424.790979] Arg1: 00000000132c001c <Obj> Integer 0000000000000003

[79424.791211] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79424.808034] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79424.822880] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79431.030272]
Initialized Local Variables for Method [RDWD]:
[79431.030310] Local1: 000000001f61ba80 <Obj> Integer 0000000000000017
[79431.030483] Local6: 00000000ff7184e5 <Obj> Integer 0000000000000006
[79431.030653] Local7: 0000000084c7aec0 <Obj> Integer 000000000000AA55

[79431.030861] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79431.030896] Arg0: 000000009d780b06 <Obj> Integer 0000000000000016
[79431.031066] Arg1: 00000000016ad119 <Obj> Integer 0000000000000003

[79431.031298] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79431.046782] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79431.061675] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79433.393355]
Initialized Local Variables for Method [RDWD]:
[79433.393394] Local1: 0000000012480da5 <Obj> Integer 0000000000000015
[79433.393567] Local6: 00000000acfa20e0 <Obj> Integer 0000000000000005
[79433.393737] Local7: 0000000014b1269b <Obj> Integer 000000000000AA55

[79433.393944] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79433.393980] Arg0: 000000002a06fea4 <Obj> Integer 0000000000000014
[79433.394150] Arg1: 00000000dc06ded5 <Obj> Integer 0000000000000002

[79433.394381] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79433.409055] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79433.423576] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79490.386808]
Initialized Local Variables for Method [RDWD]:
[79490.386846] Local1: 000000004ca0432c <Obj> Integer 0000000000000015
[79490.387019] Local6: 00000000acfa20e0 <Obj> Integer 0000000000000004
[79490.387189] Local7: 000000001099e334 <Obj> Integer 000000000000AA55

[79490.387396] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79490.387432] Arg0: 0000000084c103ef <Obj> Integer 0000000000000014
[79490.387603] Arg1: 000000007a338f98 <Obj> Integer 0000000000000002

[79490.387834] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79490.402561] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79490.417416] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79494.538778]
Initialized Local Variables for Method [RDWD]:
[79494.538816] Local1: 0000000004783341 <Obj> Integer 0000000000000017
[79494.538993] Local6: 00000000d711426b <Obj> Integer 0000000000000005
[79494.539163] Local7: 000000001cdaa744 <Obj> Integer 000000000000AA55

[79494.539370] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79494.539406] Arg0: 00000000244937e2 <Obj> Integer 0000000000000016
[79494.539575] Arg1: 00000000d3cddc5c <Obj> Integer 0000000000000003

[79494.539805] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79494.554365] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79494.568890] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79501.647010]
Initialized Local Variables for Method [RDWD]:
[79501.647048] Local1: 00000000bc5750c6 <Obj> Integer 0000000000000017
[79501.647222] Local6: 00000000d2a56d8c <Obj> Integer 0000000000000005
[79501.647393] Local7: 0000000069d28723 <Obj> Integer 000000000000AA55

[79501.647602] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79501.647637] Arg0: 00000000f9dece9d <Obj> Integer 0000000000000016
[79501.647807] Arg1: 000000000a7bb688 <Obj> Integer 0000000000000003

[79501.648040] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79501.663292] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79501.684526] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79503.402137]
Initialized Local Variables for Method [RDWD]:
[79503.402174] Local1: 00000000be287db5 <Obj> Integer 0000000000000015
[79503.402349] Local6: 000000004b3d4e1f <Obj> Integer 0000000000000005
[79503.402520] Local7: 0000000004a71c5c <Obj> Integer 000000000000AA55

[79503.402727] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79503.402763] Arg0: 0000000034081769 <Obj> Integer 0000000000000014
[79503.402933] Arg1: 00000000fcb6a9d7 <Obj> Integer 0000000000000002

[79503.403165] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79503.418444] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79503.462809] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79705.650363]
Initialized Local Variables for Method [RDWD]:
[79705.650394] Local1: 00000000397dc53d <Obj> Integer 0000000000000017
[79705.650534] Local6: 000000007857eab4 <Obj> Integer 0000000000000004
[79705.650669] Local7: 00000000995a075f <Obj> Integer 000000000000AA55

[79705.650836] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79705.650866] Arg0: 00000000441c832e <Obj> Integer 0000000000000016
[79705.651001] Arg1: 0000000071f597ec <Obj> Integer 0000000000000003

[79705.651190] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79705.664634] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79705.675280] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79710.219805]
Initialized Local Variables for Method [RDWD]:
[79710.219835] Local1: 000000002894e340 <Obj> Integer 0000000000000017
[79710.219975] Local6: 00000000482d7cb7 <Obj> Integer 0000000000000005
[79710.220110] Local7: 000000003942acc2 <Obj> Integer 000000000000AA55

[79710.220277] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79710.220307] Arg0: 00000000b6796486 <Obj> Integer 0000000000000016
[79710.220443] Arg1: 00000000b6f6cf9b <Obj> Integer 0000000000000003

[79710.220631] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79710.230635] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79710.240701] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79713.972232]
Initialized Local Variables for Method [RDWD]:
[79713.972264] Local1: 00000000d337ecec <Obj> Integer 0000000000000015
[79713.972403] Local6: 0000000014b1269b <Obj> Integer 0000000000000005
[79713.972539] Local7: 00000000dc87b862 <Obj> Integer 000000000000AA55

[79713.972706] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79713.972736] Arg0: 00000000fbd169c0 <Obj> Integer 0000000000000014
[79713.972870] Arg1: 00000000b05233c1 <Obj> Integer 0000000000000002

[79713.973059] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79713.983829] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79713.994574] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79718.290155]
Initialized Local Variables for Method [RDWD]:
[79718.290187] Local1: 00000000a6fbb93b <Obj> Integer 0000000000000015
[79718.290326] Local6: 00000000244937e2 <Obj> Integer 0000000000000002
[79718.290462] Local7: 00000000cd03acd3 <Obj> Integer 000000000000AA55

[79718.290629] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79718.290659] Arg0: 000000002daea14f <Obj> Integer 0000000000000014
[79718.290795] Arg1: 00000000cee55ed6 <Obj> Integer 0000000000000002

[79718.290984] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79718.302611] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79718.336960] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79783.209489]
Initialized Local Variables for Method [RDWD]:
[79783.209521] Local1: 00000000437f89d9 <Obj> Integer 0000000000000015
[79783.209661] Local6: 0000000033f6f4c5 <Obj> Integer 0000000000000000
[79783.209797] Local7: 00000000ba7612f3 <Obj> Integer 000000000000AA55

[79783.209964] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79783.209994] Arg0: 000000002daea14f <Obj> Integer 0000000000000014
[79783.210129] Arg1: 00000000f9dece9d <Obj> Integer 0000000000000002

[79783.210321] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79783.220775] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79783.231407] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79816.901938]
Initialized Local Variables for Method [RDWD]:
[79816.901969] Local1: 0000000018d597f1 <Obj> Integer 0000000000000017
[79816.902109] Local6: 0000000017ca07cd <Obj> Integer 0000000000000000
[79816.902244] Local7: 00000000ef8d445b <Obj> Integer 000000000000AA55

[79816.902412] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79816.902442] Arg0: 000000005b4e469d <Obj> Integer 0000000000000016
[79816.902577] Arg1: 00000000de29cd85 <Obj> Integer 0000000000000003

[79816.902766] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79816.914677] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79816.944095] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79819.592668]
Initialized Local Variables for Method [RDWD]:
[79819.592699] Local1: 00000000e1818201 <Obj> Integer 0000000000000015
[79819.592913] Local6: 00000000397dc53d <Obj> Integer 0000000000000001
[79819.593051] Local7: 0000000090ad1b2b <Obj> Integer 000000000000AA55

[79819.593219] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79819.593249] Arg0: 00000000f471dbe3 <Obj> Integer 0000000000000014
[79819.593385] Arg1: 00000000ff7184e5 <Obj> Integer 0000000000000002

[79819.593574] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79819.604462] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79819.614596] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79853.848619]
Initialized Local Variables for Method [RDWD]:
[79853.848650] Local1: 00000000ca1b91b5 <Obj> Integer 0000000000000015
[79853.848790] Local6: 00000000daae9e0d <Obj> Integer 0000000000000001
[79853.848926] Local7: 0000000098e6f620 <Obj> Integer 000000000000AA55

[79853.849093] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79853.849122] Arg0: 000000008f2afda1 <Obj> Integer 0000000000000014
[79853.849648] Arg1: 000000009fa5f363 <Obj> Integer 0000000000000002

[79853.849837] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79853.860308] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79853.870233] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79854.385462]
Initialized Local Variables for Method [RDWD]:
[79854.385493] Local1: 0000000025249621 <Obj> Integer 0000000000000017
[79854.385632] Local6: 0000000052eed832 <Obj> Integer 0000000000000001
[79854.385768] Local7: 00000000016ad119 <Obj> Integer 000000000000AA55

[79854.385935] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79854.385965] Arg0: 000000003221a20e <Obj> Integer 0000000000000016
[79854.386101] Arg1: 00000000bb4aa65f <Obj> Integer 0000000000000003

[79854.386289] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79854.396790] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79854.407582] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79856.554460]
Initialized Local Variables for Method [RDWD]:
[79856.554493] Local1: 0000000090ad1b2b <Obj> Integer 0000000000000015
[79856.554633] Local6: 0000000018d597f1 <Obj> Integer 0000000000000001
[79856.554769] Local7: 00000000e9c370ed <Obj> Integer 000000000000AA55

[79856.554934] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79856.554964] Arg0: 00000000d0fe9fee <Obj> Integer 0000000000000014
[79856.555099] Arg1: 00000000d6ed1c77 <Obj> Integer 0000000000000002

[79856.555289] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79856.565189] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79856.575315] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79911.890513]
Initialized Local Variables for Method [RDWD]:
[79911.890545] Local1: 000000003dfecc59 <Obj> Integer 0000000000000017
[79911.890684] Local6: 000000008fbe229a <Obj> Integer 0000000000000002
[79911.890820] Local7: 00000000a3c48c1e <Obj> Integer 000000000000AA55

[79911.890988] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79911.891018] Arg0: 000000002894e340 <Obj> Integer 0000000000000016
[79911.891154] Arg1: 0000000046cf4e1d <Obj> Integer 0000000000000003

[79911.891339] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79911.901233] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79911.911394] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79912.974429]
Initialized Local Variables for Method [RDWD]:
[79912.974460] Local1: 0000000062f5cec2 <Obj> Integer 0000000000000015
[79912.974600] Local6: 00000000c9cc477c <Obj> Integer 0000000000000002
[79912.974735] Local7: 000000009d780b06 <Obj> Integer 000000000000AA55

[79912.974902] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79912.974932] Arg0: 00000000b6f6cf9b <Obj> Integer 0000000000000014
[79912.975067] Arg1: 00000000de29cd85 <Obj> Integer 0000000000000002

[79912.975256] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79912.985835] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79912.996074] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79918.906615]
Initialized Local Variables for Method [RDWD]:
[79918.906646] Local1: 00000000f3836c18 <Obj> Integer 0000000000000017
[79918.906785] Local6: 0000000068677316 <Obj> Integer 0000000000000002
[79918.906921] Local7: 0000000022ea46df <Obj> Integer 000000000000AA55

[79918.907088] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79918.907118] Arg0: 00000000d9dce631 <Obj> Integer 0000000000000016
[79918.907253] Arg1: 00000000be287db5 <Obj> Integer 0000000000000003

[79918.907440] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79918.919371] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79918.930757] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79923.485989]
Initialized Local Variables for Method [RDWD]:
[79923.486021] Local1: 000000000b12d58f <Obj> Integer 0000000000000015
[79923.486630] Local6: 00000000d9dce631 <Obj> Integer 0000000000000000
[79923.486769] Local7: 0000000010c5364c <Obj> Integer 000000000000AA55

[79923.486943] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79923.486974] Arg0: 0000000018eee9d2 <Obj> Integer 0000000000000014
[79923.487113] Arg1: 00000000b1b147b7 <Obj> Integer 0000000000000002

[79923.487318] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79923.497211] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79923.507513] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79981.877091]
Initialized Local Variables for Method [RDWD]:
[79981.877123] Local1: 00000000bb4aa65f <Obj> Integer 0000000000000017
[79981.877262] Local6: 00000000654637aa <Obj> Integer 0000000000000002
[79981.877397] Local7: 000000002ef8ae79 <Obj> Integer 000000000000AA55

[79981.877564] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79981.877594] Arg0: 00000000be6a90de <Obj> Integer 0000000000000016
[79981.877728] Arg1: 00000000d711426b <Obj> Integer 0000000000000003

[79981.877912] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79981.887969] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79981.898817] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79988.642733]
Initialized Local Variables for Method [RDWD]:
[79988.642765] Local1: 0000000014b1269b <Obj> Integer 0000000000000017
[79988.642906] Local6: 0000000026bd9a01 <Obj> Integer 0000000000000004
[79988.644067] Local7: 000000007a0597a8 <Obj> Integer 000000000000AA55

[79988.644240] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79988.644270] Arg0: 000000003e4f2a97 <Obj> Integer 0000000000000016
[79988.644406] Arg1: 00000000b0c7e658 <Obj> Integer 0000000000000003

[79988.644605] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79988.655795] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79988.684494] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79993.745474]
Initialized Local Variables for Method [RDWD]:
[79993.745506] Local1: 00000000ca1b91b5 <Obj> Integer 0000000000000015
[79993.745646] Local6: 00000000d0fe9fee <Obj> Integer 0000000000000004
[79993.745781] Local7: 00000000d6ed1c77 <Obj> Integer 000000000000AA55

[79993.745947] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79993.745977] Arg0: 00000000290a4d5f <Obj> Integer 0000000000000014
[79993.746112] Arg1: 000000000df5c435 <Obj> Integer 0000000000000002

[79993.746300] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79993.756095] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79993.766890] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[79998.588147]
Initialized Local Variables for Method [RDWD]:
[79998.588178] Local1: 00000000cee55ed6 <Obj> Integer 0000000000000015
[79998.588325] Local6: 000000000136aad0 <Obj> Integer 0000000000000000
[79998.588462] Local7: 000000002c1ddbe3 <Obj> Integer 000000000000AA55

[79998.588631] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[79998.588661] Arg0: 00000000e1818201 <Obj> Integer 0000000000000014
[79998.588797] Arg1: 00000000a9de02f4 <Obj> Integer 0000000000000002

[79998.589013] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79998.599062] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[79998.609713] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80089.820119]
Initialized Local Variables for Method [RDWD]:
[80089.820150] Local1: 000000005bddec7f <Obj> Integer 0000000000000017
[80089.820290] Local6: 0000000032476d1b <Obj> Integer 0000000000000005
[80089.820880] Local7: 00000000d711426b <Obj> Integer 000000000000AA55

[80089.821054] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80089.821085] Arg0: 00000000ef8d445b <Obj> Integer 0000000000000016
[80089.821221] Arg1: 00000000bc5750c6 <Obj> Integer 0000000000000003

[80089.821445] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80089.831874] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80089.842077] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80090.895948]
Initialized Local Variables for Method [RDWD]:
[80090.895980] Local1: 0000000071f597ec <Obj> Integer 0000000000000017
[80090.896120] Local6: 00000000437f89d9 <Obj> Integer 0000000000000005
[80090.896256] Local7: 00000000a6fbb93b <Obj> Integer 000000000000AA55

[80090.896489] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80090.896519] Arg0: 0000000072eab916 <Obj> Integer 0000000000000016
[80090.896657] Arg1: 000000000136aad0 <Obj> Integer 0000000000000003

[80090.896876] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80090.907826] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80090.918172] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80093.856653]
Initialized Local Variables for Method [RDWD]:
[80093.856685] Local1: 00000000bc629bb3 <Obj> Integer 0000000000000017
[80093.856824] Local6: 00000000d96a47a2 <Obj> Integer 0000000000000008
[80093.856959] Local7: 0000000087b7e03c <Obj> Integer 000000000000AA55

[80093.857126] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80093.857155] Arg0: 000000007318665e <Obj> Integer 0000000000000016
[80093.857290] Arg1: 00000000d0fe9fee <Obj> Integer 0000000000000003

[80093.857480] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80093.869519] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80093.879889] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80098.723985]
Initialized Local Variables for Method [RDWD]:
[80098.724016] Local1: 0000000056d0801c <Obj> Integer 0000000000000015
[80098.724156] Local6: 0000000084c7aec0 <Obj> Integer 0000000000000009
[80098.724292] Local7: 00000000f471dbe3 <Obj> Integer 000000000000AA55

[80098.724459] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80098.724489] Arg0: 00000000b0c7e658 <Obj> Integer 0000000000000014
[80098.725093] Arg1: 000000002a06fea4 <Obj> Integer 0000000000000002

[80098.725307] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80098.735832] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80098.746222] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80103.596054]
Initialized Local Variables for Method [RDWD]:
[80103.596086] Local1: 000000005f74f6e1 <Obj> Integer 0000000000000015
[80103.596225] Local6: 00000000e8f3cf3b <Obj> Integer 0000000000000008
[80103.596361] Local7: 00000000ef8d445b <Obj> Integer 000000000000AA55

[80103.596528] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80103.596619] Arg0: 000000001099e334 <Obj> Integer 0000000000000014
[80103.596760] Arg1: 00000000d0e1eefe <Obj> Integer 0000000000000002

[80103.596961] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80103.607616] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80103.618851] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80104.947112]
Initialized Local Variables for Method [RDWD]:
[80104.947144] Local1: 000000007ed32f8a <Obj> Integer 0000000000000015
[80104.947284] Local6: 00000000eec10629 <Obj> Integer 0000000000000007
[80104.947419] Local7: 00000000bc5750c6 <Obj> Integer 000000000000AA55

[80104.947585] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80104.947615] Arg0: 00000000804a9abc <Obj> Integer 0000000000000014
[80104.947750] Arg1: 0000000010fabccb <Obj> Integer 0000000000000002

[80104.947936] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80104.958269] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80104.969941] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80159.600559]
Initialized Local Variables for Method [RDWD]:
[80159.600591] Local1: 00000000b1b147b7 <Obj> Integer 0000000000000017
[80159.600730] Local6: 00000000ad772ea2 <Obj> Integer 0000000000000001
[80159.600865] Local7: 000000001624e647 <Obj> Integer 000000000000AA55

[80159.601031] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80159.601061] Arg0: 0000000018eee9d2 <Obj> Integer 0000000000000016
[80159.601196] Arg1: 000000002dff236e <Obj> Integer 0000000000000003

[80159.601455] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80159.611550] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80159.621947] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80163.640828]
Initialized Local Variables for Method [RDWD]:
[80163.640859] Local1: 000000007857eab4 <Obj> Integer 0000000000000017
[80163.640998] Local6: 00000000995a075f <Obj> Integer 0000000000000002
[80163.641133] Local7: 00000000c9cc477c <Obj> Integer 000000000000AA55

[80163.641300] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80163.641330] Arg0: 00000000f4f91574 <Obj> Integer 0000000000000016
[80163.641532] Arg1: 000000007592adfb <Obj> Integer 0000000000000003

[80163.641749] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80163.653038] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80163.669559] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80203.263351]
Initialized Local Variables for Method [RDWD]:
[80203.263382] Local1: 00000000dfeb8645 <Obj> Integer 0000000000000015
[80203.263524] Local6: 00000000ebf1efc1 <Obj> Integer 0000000000000001
[80203.263661] Local7: 00000000a7d9c091 <Obj> Integer 000000000000AA55

[80203.263829] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80203.263860] Arg0: 000000002ef8ae79 <Obj> Integer 0000000000000014
[80203.263995] Arg1: 00000000daae9e0d <Obj> Integer 0000000000000002

[80203.264185] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80203.275018] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80203.287338] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80238.590290]
Initialized Local Variables for Method [RDWD]:
[80238.590322] Local1: 00000000ddaf8909 <Obj> Integer 0000000000000017
[80238.590917] Local6: 0000000084a9bf38 <Obj> Integer 0000000000000001
[80238.591055] Local7: 000000005b6a1b9a <Obj> Integer 000000000000AA55

[80238.591224] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80238.591253] Arg0: 000000001bd41ffb <Obj> Integer 0000000000000016
[80238.591390] Arg1: 000000003dfecc59 <Obj> Integer 0000000000000003

[80238.591580] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80238.602061] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80238.612306] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80239.124455]
Initialized Local Variables for Method [RDWD]:
[80239.124487] Local1: 00000000e14930a4 <Obj> Integer 0000000000000015
[80239.124631] Local6: 00000000d057aaaa <Obj> Integer 0000000000000001
[80239.124767] Local7: 00000000b1b147b7 <Obj> Integer 000000000000AA55

[80239.124934] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80239.124965] Arg0: 0000000078f4abd2 <Obj> Integer 0000000000000014
[80239.125101] Arg1: 000000004011f226 <Obj> Integer 0000000000000002

[80239.125290] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80239.136547] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80239.149253] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80242.625767]
Initialized Local Variables for Method [RDWD]:
[80242.625799] Local1: 00000000c81e8d0b <Obj> Integer 0000000000000015
[80242.625938] Local6: 00000000de92c247 <Obj> Integer 0000000000000000
[80242.626074] Local7: 00000000a7d9c091 <Obj> Integer 000000000000AA55

[80242.626240] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80242.626270] Arg0: 00000000718c9db0 <Obj> Integer 0000000000000014
[80242.626405] Arg1: 00000000b0e1655f <Obj> Integer 0000000000000002

[80242.626672] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80242.636672] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80242.646994] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT
[80269.706159] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0xffffffff
[80269.706491] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x04 len=4 data=0xffffffff
[80269.706524] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x08 len=4 data=0xffffffff
[80269.706556] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x0c len=4 data=0xffffffff
[80269.706587] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x10 len=4 data=0xffffffff
[80269.706617] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x14 len=4 data=0xffffffff
[80269.706648] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x18 len=4 data=0xffffffff
[80269.706678] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x1c len=4 data=0xffffffff
[80269.706709] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x20 len=4 data=0xffffffff
[80269.706739] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x24 len=4 data=0xffffffff
[80269.706769] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x28 len=4 data=0xffffffff
[80269.706800] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x2c len=4 data=0xffffffff
[80269.707344] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x30 len=4 data=0xffffffff
[80269.707380] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x34 len=4 data=0xffffffff
[80269.707411] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x38 len=4 data=0xffffffff
[80269.707447] USER PCI READ: ret=0, bus=01 dev=00 func=0 pos=0x3c len=4 data=0xffffffff
[80269.828180] ACPI: \_SB_.PCI0.RP01: ACPI: ACPI_NOTIFY_BUS_CHECK event
[80269.828259] ACPI: \_SB_.PCI0.RP01: ACPI: OSL: Scheduling hotplug event 0 for deferred handling
[80269.849376] ACPI: \_SB_.PCI0.RP01: Bridge acquired in hotplug_event()
[80269.850497] ACPI: \_SB_.PCI0.RP01: calling early_dump_pci_device() in hotplug_event() - entry
[80269.850576] pcieport 0000:00:1c.0: config space:
[80269.851128] 00000000: 86 80 48 0f 07 04 10 00 11 00 04 06 10 00 81 00
[80269.851194] 00000010: 00 00 00 00 00 00 00 00 00 01 01 00 10 10 00 20
[80269.851253] 00000020: 40 b0 70 b0 f1 ff 01 00 00 00 00 00 00 00 00 00
[80269.851313] 00000030: 00 00 00 00 40 00 00 00 00 00 00 00 0b 01 12 00
[80269.851371] 00000040: 10 80 42 01 00 80 00 00 00 00 11 00 22 4c 31 01
[80269.851430] 00000050: 00 0c 21 30 60 00 04 00 00 00 40 01 00 00 00 00
[80269.851489] 00000060: 00 00 00 00 16 00 00 00 00 00 00 00 00 00 00 00
[80269.851546] 00000070: 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.851605] 00000080: 05 90 01 00 00 20 e0 fe 20 00 00 00 00 00 00 00
[80269.851663] 00000090: 0d a0 00 00 86 80 48 0f 00 00 00 00 00 00 00 00
[80269.851721] 000000a0: 01 00 03 c8 00 00 00 00 00 00 00 00 00 00 00 00
[80269.851780] 000000b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.851837] 000000c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.851895] 000000d0: 00 c0 00 00 42 08 00 00 00 80 11 c9 00 00 00 00
[80269.851953] 000000e0: 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
[80269.852011] 000000f0: 50 00 00 00 c0 00 00 00 1a 0f 13 01 00 40 00 01
[80269.852143] pci 0000:01:00.0: Dumping configuration space for 01:00.0:
[80269.852207] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556
[80269.852275] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=4 data=0x100000
[80269.852342] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x08 len=4 data=0x5000000
[80269.852407] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x0c len=4 data=0x0
[80269.852471] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 data=0x0
[80269.852537] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 data=0x0
[80269.852602] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 data=0x0
[80269.852666] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 data=0x0
[80269.852731] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 data=0x0
[80269.852796] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 data=0x0
[80269.852860] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x28 len=4 data=0x0
[80269.852926] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x2c len=4 data=0x4000
[80269.852991] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 data=0x0
[80269.853056] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=4 data=0x40
[80269.853122] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x38 len=4 data=0x0
[80269.853186] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x3c len=4 data=0x1ff
[80269.853252] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=4 data=0x34801
[80269.853317] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x44 len=4 data=0x8
[80269.853381] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=4 data=0x6005
[80269.853447] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x4c len=4 data=0x0
[80269.853511] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x50 len=4 data=0x0
[80269.853577] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x54 len=4 data=0x0
[80269.853643] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x58 len=4 data=0x0
[80269.853708] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x5c len=4 data=0x0
[80269.853773] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=4 data=0x20010
[80269.853838] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x64 len=4 data=0x8fc2
[80269.853903] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x68 len=4 data=0x2810
[80269.853969] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421
[80269.854033] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x70 len=4 data=0x210000
[80269.854099] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x74 len=4 data=0x0
[80269.854164] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x78 len=4 data=0x0
[80269.854228] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x7c len=4 data=0x0
[80269.854293] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x80 len=4 data=0x0
[80269.854359] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x84 len=4 data=0x2
[80269.854423] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x88 len=4 data=0x0
[80269.854492] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x8c len=4 data=0x0
[80269.854556] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x90 len=4 data=0x10020
[80269.854622] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x94 len=4 data=0x0
[80269.854687] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x98 len=4 data=0x0
[80269.854751] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x9c len=4 data=0x0
[80269.854988] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa0 len=4 data=0x0
[80269.855069] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa4 len=4 data=0x0
[80269.855137] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa8 len=4 data=0x0
[80269.855203] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xac len=4 data=0x0
[80269.855269] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb0 len=4 data=0x0
[80269.855335] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb4 len=4 data=0x0
[80269.855400] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb8 len=4 data=0x0
[80269.855465] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xbc len=4 data=0x0
[80269.855530] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc0 len=4 data=0x0
[80269.855595] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc4 len=4 data=0x0
[80269.855661] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc8 len=4 data=0x0
[80269.855725] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xcc len=4 data=0x0
[80269.855845] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd0 len=4 data=0x0
[80269.855913] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd4 len=4 data=0x0
[80269.855978] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd8 len=4 data=0x0
[80269.856043] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xdc len=4 data=0x0
[80269.856109] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe0 len=4 data=0x0
[80269.856173] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe4 len=4 data=0x0
[80269.856238] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe8 len=4 data=0x0
[80269.856303] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xec len=4 data=0x0
[80269.856367] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf0 len=4 data=0x0
[80269.856431] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf4 len=4 data=0x0
[80269.856496] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf8 len=4 data=0x0
[80269.856560] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xfc len=4 data=0x0
[80269.856622] 00000000: 56 15 55 55 00 00 10 00 00 00 00 05 00 00 00 00
[80269.856682] 00000010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.856739] 00000020: 00 00 00 00 00 00 00 00 00 00 00 00 00 40 00 00
[80269.856797] 00000030: 00 00 00 00 40 00 00 00 00 00 00 00 ff 01 00 00
[80269.856855] 00000040: 01 48 03 00 08 00 00 00 05 60 00 00 00 00 00 00
[80269.856913] 00000050: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.856970] 00000060: 10 00 02 00 c2 8f 00 00 10 28 00 00 21 f4 03 00
[80269.857027] 00000070: 00 00 21 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.857085] 00000080: 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00
[80269.857142] 00000090: 20 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.857200] 000000a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.857257] 000000b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.857315] 000000c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.857373] 000000d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.857431] 000000e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.857488] 000000f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.858074] ACPI: \_SB_.PCI0.RP01: Bus check in hotplug_event()
[80269.858665] ACPI: \_SB_.PCI0.RP01: Checking bridge in hotplug_event()
[80269.858720] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556
[80269.859331] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556
[80269.860039] ACPI: \_SB_.PCI0.RP01: calling early_dump_pci_device() before enable_slot() in acpiphp_check_bridge()
[80269.860090] pcieport 0000:00:1c.0: config space:
[80269.860309] 00000000: 86 80 48 0f 07 04 10 00 11 00 04 06 10 00 81 00
[80269.860351] 00000010: 00 00 00 00 00 00 00 00 00 01 01 00 10 10 00 20
[80269.860391] 00000020: 40 b0 70 b0 f1 ff 01 00 00 00 00 00 00 00 00 00
[80269.860431] 00000030: 00 00 00 00 40 00 00 00 00 00 00 00 0b 01 12 00
[80269.860471] 00000040: 10 80 42 01 00 80 00 00 00 00 11 00 22 4c 31 01
[80269.860510] 00000050: 00 0c 21 30 60 00 04 00 00 00 40 01 00 00 00 00
[80269.860550] 00000060: 00 00 00 00 16 00 00 00 00 00 00 00 00 00 00 00
[80269.860589] 00000070: 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.860629] 00000080: 05 90 01 00 00 20 e0 fe 20 00 00 00 00 00 00 00
[80269.860668] 00000090: 0d a0 00 00 86 80 48 0f 00 00 00 00 00 00 00 00
[80269.860707] 000000a0: 01 00 03 c8 00 00 00 00 00 00 00 00 00 00 00 00
[80269.860747] 000000b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.860786] 000000c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.860826] 000000d0: 00 c0 00 00 42 08 00 00 00 80 11 c9 00 00 00 00
[80269.860866] 000000e0: 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
[80269.860905] 000000f0: 50 00 00 00 c0 00 00 00 1a 0f 13 01 00 40 00 01
[80269.860996] pci 0000:01:00.0: Dumping configuration space for 01:00.0:
[80269.861040] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556
[80269.861087] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=4 data=0x100000
[80269.861132] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x08 len=4 data=0x5000000
[80269.861177] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x0c len=4 data=0x0
[80269.861222] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 data=0x0
[80269.861267] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 data=0x0
[80269.861312] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 data=0x0
[80269.861356] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 data=0x0
[80269.861402] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 data=0x0
[80269.861447] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 data=0x0
[80269.861491] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x28 len=4 data=0x0
[80269.861535] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x2c len=4 data=0x4000
[80269.861581] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 data=0x0
[80269.861625] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=4 data=0x40
[80269.861671] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x38 len=4 data=0x0
[80269.861715] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x3c len=4 data=0x1ff
[80269.861761] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=4 data=0x34801
[80269.861806] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x44 len=4 data=0x8
[80269.861851] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=4 data=0x6005
[80269.861897] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x4c len=4 data=0x0
[80269.861943] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x50 len=4 data=0x0
[80269.861988] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x54 len=4 data=0x0
[80269.862033] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x58 len=4 data=0x0
[80269.862078] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x5c len=4 data=0x0
[80269.862123] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=4 data=0x20010
[80269.862169] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x64 len=4 data=0x8fc2
[80269.862213] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x68 len=4 data=0x2810
[80269.862258] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421
[80269.862303] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x70 len=4 data=0x210000
[80269.862348] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x74 len=4 data=0x0
[80269.862393] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x78 len=4 data=0x0
[80269.862437] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x7c len=4 data=0x0
[80269.862482] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x80 len=4 data=0x0
[80269.862527] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x84 len=4 data=0x2
[80269.862577] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x88 len=4 data=0x0
[80269.862610] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x8c len=4 data=0x0
[80269.862644] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x90 len=4 data=0x10020
[80269.862700] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x94 len=4 data=0x0
[80269.862745] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x98 len=4 data=0x0
[80269.862780] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x9c len=4 data=0x0
[80269.862924] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa0 len=4 data=0x0
[80269.862963] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa4 len=4 data=0x0
[80269.862997] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa8 len=4 data=0x0
[80269.863030] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xac len=4 data=0x0
[80269.863063] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb0 len=4 data=0x0
[80269.863097] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb4 len=4 data=0x0
[80269.863130] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb8 len=4 data=0x0
[80269.863163] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xbc len=4 data=0x0
[80269.863196] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc0 len=4 data=0x0
[80269.863247] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc4 len=4 data=0x0
[80269.863292] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc8 len=4 data=0x0
[80269.863325] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xcc len=4 data=0x0
[80269.863359] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd0 len=4 data=0x0
[80269.863392] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd4 len=4 data=0x0
[80269.863426] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd8 len=4 data=0x0
[80269.863459] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xdc len=4 data=0x0
[80269.863507] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe0 len=4 data=0x0
[80269.863550] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe4 len=4 data=0x0
[80269.863584] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe8 len=4 data=0x0
[80269.863618] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xec len=4 data=0x0
[80269.863651] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf0 len=4 data=0x0
[80269.863685] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf4 len=4 data=0x0
[80269.863720] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf8 len=4 data=0x0
[80269.863753] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xfc len=4 data=0x0
[80269.863785] 00000000: 56 15 55 55 00 00 10 00 00 00 00 05 00 00 00 00
[80269.863816] 00000010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.863845] 00000020: 00 00 00 00 00 00 00 00 00 00 00 00 00 40 00 00
[80269.863874] 00000030: 00 00 00 00 40 00 00 00 00 00 00 00 ff 01 00 00
[80269.863903] 00000040: 01 48 03 00 08 00 00 00 05 60 00 00 00 00 00 00
[80269.863932] 00000050: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.863960] 00000060: 10 00 02 00 c2 8f 00 00 10 28 00 00 21 f4 03 00
[80269.863989] 00000070: 00 00 21 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.864018] 00000080: 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00
[80269.864047] 00000090: 20 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.864075] 000000a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.864104] 000000b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.864132] 000000c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.864161] 000000d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.864189] 000000e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.864218] 000000f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.864434] ACPI: \_SB_.PCI0.RP01: Enabling slot in acpiphp_check_bridge()
[80269.868047] ACPI: Device [PXSX] status [0000000f]
[80269.874288] ACPI: Device [D015] status [0000000f]
[80269.874338] pci_scan_slot:
[80269.874376] only_one_child:
[80269.874418] pcie_bus_configure_settings:
[80269.874448] pcie_bus_configure_set:
[80269.874479] pcie_bus_configure_set:
[80269.877104] ACPI: \_SB_.PCI0.RP01: calling early_dump_pci_device() after enable_slot() in acpiphp_check_bridge()
[80269.877152] pcieport 0000:00:1c.0: config space:
[80269.877341] 00000000: 86 80 48 0f 07 04 10 00 11 00 04 06 10 00 81 00
[80269.877376] 00000010: 00 00 00 00 00 00 00 00 00 01 01 00 10 10 00 20
[80269.877410] 00000020: 40 b0 70 b0 f1 ff 01 00 00 00 00 00 00 00 00 00
[80269.877443] 00000030: 00 00 00 00 40 00 00 00 00 00 00 00 0b 01 12 00
[80269.877476] 00000040: 10 80 42 01 00 80 00 00 00 00 11 00 22 4c 31 01
[80269.877509] 00000050: 00 0c 21 30 60 00 04 00 00 00 40 01 00 00 00 00
[80269.877542] 00000060: 00 00 00 00 16 00 00 00 00 00 00 00 00 00 00 00
[80269.877575] 00000070: 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.877608] 00000080: 05 90 01 00 00 20 e0 fe 20 00 00 00 00 00 00 00
[80269.877641] 00000090: 0d a0 00 00 86 80 48 0f 00 00 00 00 00 00 00 00
[80269.877674] 000000a0: 01 00 03 c8 00 00 00 00 00 00 00 00 00 00 00 00
[80269.877707] 000000b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.877740] 000000c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.877773] 000000d0: 00 c0 00 00 42 08 00 00 00 80 11 c9 00 00 00 00
[80269.877806] 000000e0: 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
[80269.877839] 000000f0: 50 00 00 00 c0 00 00 00 1a 0f 13 01 00 40 00 01
[80269.877917] pci 0000:01:00.0: Dumping configuration space for 01:00.0:
[80269.877954] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556
[80269.877993] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=4 data=0x100000
[80269.878031] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x08 len=4 data=0x5000000
[80269.878069] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x0c len=4 data=0x0
[80269.878106] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 data=0x0
[80269.878144] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 data=0x0
[80269.878182] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 data=0x0
[80269.878220] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 data=0x0
[80269.878258] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 data=0x0
[80269.878295] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 data=0x0
[80269.878333] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x28 len=4 data=0x0
[80269.878370] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x2c len=4 data=0x4000
[80269.878408] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 data=0x0
[80269.878445] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=4 data=0x40
[80269.878483] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x38 len=4 data=0x0
[80269.878521] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x3c len=4 data=0x1ff
[80269.878559] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=4 data=0x34801
[80269.878596] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x44 len=4 data=0x8
[80269.878634] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=4 data=0x6005
[80269.878672] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x4c len=4 data=0x0
[80269.878709] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x50 len=4 data=0x0
[80269.878747] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x54 len=4 data=0x0
[80269.878785] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x58 len=4 data=0x0
[80269.878904] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x5c len=4 data=0x0
[80269.878945] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=4 data=0x20010
[80269.878983] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x64 len=4 data=0x8fc2
[80269.879022] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x68 len=4 data=0x2810
[80269.879067] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421
[80269.879102] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x70 len=4 data=0x210000
[80269.879144] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x74 len=4 data=0x0
[80269.879182] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x78 len=4 data=0x0
[80269.879220] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x7c len=4 data=0x0
[80269.879259] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x80 len=4 data=0x0
[80269.879297] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x84 len=4 data=0x2
[80269.879337] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x88 len=4 data=0x0
[80269.879375] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x8c len=4 data=0x0
[80269.879413] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x90 len=4 data=0x10020
[80269.879451] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x94 len=4 data=0x0
[80269.879489] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x98 len=4 data=0x0
[80269.879527] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x9c len=4 data=0x0
[80269.879565] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa0 len=4 data=0x0
[80269.879603] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa4 len=4 data=0x0
[80269.879641] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa8 len=4 data=0x0
[80269.879679] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xac len=4 data=0x0
[80269.879717] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb0 len=4 data=0x0
[80269.879755] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb4 len=4 data=0x0
[80269.879794] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb8 len=4 data=0x0
[80269.879832] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xbc len=4 data=0x0
[80269.879871] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc0 len=4 data=0x0
[80269.879909] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc4 len=4 data=0x0
[80269.879947] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc8 len=4 data=0x0
[80269.879985] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xcc len=4 data=0x0
[80269.880023] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd0 len=4 data=0x0
[80269.880062] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd4 len=4 data=0x0
[80269.880100] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd8 len=4 data=0x0
[80269.880137] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xdc len=4 data=0x0
[80269.880175] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe0 len=4 data=0x0
[80269.880213] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe4 len=4 data=0x0
[80269.880252] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe8 len=4 data=0x0
[80269.880290] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xec len=4 data=0x0
[80269.880327] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf0 len=4 data=0x0
[80269.880365] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf4 len=4 data=0x0
[80269.880403] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf8 len=4 data=0x0
[80269.880441] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xfc len=4 data=0x0
[80269.880476] 00000000: 56 15 55 55 00 00 10 00 00 00 00 05 00 00 00 00
[80269.880510] 00000010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.880543] 00000020: 00 00 00 00 00 00 00 00 00 00 00 00 00 40 00 00
[80269.880577] 00000030: 00 00 00 00 40 00 00 00 00 00 00 00 ff 01 00 00
[80269.880610] 00000040: 01 48 03 00 08 00 00 00 05 60 00 00 00 00 00 00
[80269.880644] 00000050: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.880677] 00000060: 10 00 02 00 c2 8f 00 00 10 28 00 00 21 f4 03 00
[80269.880711] 00000070: 00 00 21 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.880745] 00000080: 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00
[80269.880777] 00000090: 20 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.880811] 000000a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.880845] 000000b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.880879] 000000c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.880913] 000000d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.880947] 000000e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.880980] 000000f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.882060] ACPI: \_SB_.PCI0.RP01: calling early_dump_pci_device() after pm_runtime_put() in acpiphp_check_bridge()
[80269.882103] pcieport 0000:00:1c.0: config space:
[80269.882302] 00000000: 86 80 48 0f 07 04 10 00 11 00 04 06 10 00 81 00
[80269.882334] 00000010: 00 00 00 00 00 00 00 00 00 01 01 00 10 10 00 20
[80269.882364] 00000020: 40 b0 70 b0 f1 ff 01 00 00 00 00 00 00 00 00 00
[80269.882394] 00000030: 00 00 00 00 40 00 00 00 00 00 00 00 0b 01 12 00
[80269.882423] 00000040: 10 80 42 01 00 80 00 00 00 00 11 00 22 4c 31 01
[80269.882452] 00000050: 00 0c 21 30 60 00 04 00 00 00 40 01 00 00 00 00
[80269.882481] 00000060: 00 00 00 00 16 00 00 00 00 00 00 00 00 00 00 00
[80269.882510] 00000070: 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.882539] 00000080: 05 90 01 00 00 20 e0 fe 20 00 00 00 00 00 00 00
[80269.882568] 00000090: 0d a0 00 00 86 80 48 0f 00 00 00 00 00 00 00 00
[80269.882597] 000000a0: 01 00 03 c8 00 00 00 00 00 00 00 00 00 00 00 00
[80269.882626] 000000b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.882655] 000000c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.882684] 000000d0: 00 c0 00 00 42 08 00 00 00 80 11 c9 00 00 00 00
[80269.882713] 000000e0: 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
[80269.882742] 000000f0: 50 00 00 00 c0 00 00 00 1a 0f 13 01 00 40 00 01
[80269.882876] pci 0000:01:00.0: Dumping configuration space for 01:00.0:
[80269.882912] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556
[80269.882947] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=4 data=0x100000
[80269.882981] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x08 len=4 data=0x5000000
[80269.883015] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x0c len=4 data=0x0
[80269.883049] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 data=0x0
[80269.883082] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 data=0x0
[80269.883116] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 data=0x0
[80269.883149] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 data=0x0
[80269.883183] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 data=0x0
[80269.883216] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 data=0x0
[80269.883250] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x28 len=4 data=0x0
[80269.883283] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x2c len=4 data=0x4000
[80269.883318] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 data=0x0
[80269.883352] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=4 data=0x40
[80269.883385] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x38 len=4 data=0x0
[80269.883420] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x3c len=4 data=0x1ff
[80269.883454] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=4 data=0x34801
[80269.883487] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x44 len=4 data=0x8
[80269.883521] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=4 data=0x6005
[80269.883555] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x4c len=4 data=0x0
[80269.883589] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x50 len=4 data=0x0
[80269.883623] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x54 len=4 data=0x0
[80269.883656] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x58 len=4 data=0x0
[80269.883689] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x5c len=4 data=0x0
[80269.883723] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=4 data=0x20010
[80269.883756] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x64 len=4 data=0x8fc2
[80269.883790] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x68 len=4 data=0x2810
[80269.883824] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421
[80269.883857] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x70 len=4 data=0x210000
[80269.883891] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x74 len=4 data=0x0
[80269.883925] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x78 len=4 data=0x0
[80269.883958] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x7c len=4 data=0x0
[80269.883992] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x80 len=4 data=0x0
[80269.884025] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x84 len=4 data=0x2
[80269.884058] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x88 len=4 data=0x0
[80269.884092] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x8c len=4 data=0x0
[80269.884125] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x90 len=4 data=0x10020
[80269.884159] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x94 len=4 data=0x0
[80269.884193] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x98 len=4 data=0x0
[80269.884226] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x9c len=4 data=0x0
[80269.884259] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa0 len=4 data=0x0
[80269.884292] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa4 len=4 data=0x0
[80269.884326] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa8 len=4 data=0x0
[80269.884360] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xac len=4 data=0x0
[80269.884393] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb0 len=4 data=0x0
[80269.884426] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb4 len=4 data=0x0
[80269.884460] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb8 len=4 data=0x0
[80269.884493] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xbc len=4 data=0x0
[80269.884527] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc0 len=4 data=0x0
[80269.884561] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc4 len=4 data=0x0
[80269.884594] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc8 len=4 data=0x0
[80269.884627] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xcc len=4 data=0x0
[80269.884661] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd0 len=4 data=0x0
[80269.884694] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd4 len=4 data=0x0
[80269.884728] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd8 len=4 data=0x0
[80269.884761] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xdc len=4 data=0x0
[80269.884795] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe0 len=4 data=0x0
[80269.884829] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe4 len=4 data=0x0
[80269.884862] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe8 len=4 data=0x0
[80269.884896] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xec len=4 data=0x0
[80269.884930] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf0 len=4 data=0x0
[80269.884964] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf4 len=4 data=0x0
[80269.884997] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf8 len=4 data=0x0
[80269.885030] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xfc len=4 data=0x0
[80269.885061] 00000000: 56 15 55 55 00 00 10 00 00 00 00 05 00 00 00 00
[80269.885092] 00000010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.885121] 00000020: 00 00 00 00 00 00 00 00 00 00 00 00 00 40 00 00
[80269.885151] 00000030: 00 00 00 00 40 00 00 00 00 00 00 00 ff 01 00 00
[80269.885179] 00000040: 01 48 03 00 08 00 00 00 05 60 00 00 00 00 00 00
[80269.885209] 00000050: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.885238] 00000060: 10 00 02 00 c2 8f 00 00 10 28 00 00 21 f4 03 00
[80269.885267] 00000070: 00 00 21 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.885296] 00000080: 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00
[80269.885326] 00000090: 20 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.885355] 000000a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.885384] 000000b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.885413] 000000c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.885442] 000000d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.885471] 000000e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.885500] 000000f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.886282] ACPI: \_SB_.PCI0.RP01: calling early_dump_pci_device() before put_bridge() in hotplug_event()
[80269.886322] pcieport 0000:00:1c.0: config space:
[80269.886491] 00000000: 86 80 48 0f 07 04 10 00 11 00 04 06 10 00 81 00
[80269.886523] 00000010: 00 00 00 00 00 00 00 00 00 01 01 00 10 10 00 20
[80269.886553] 00000020: 40 b0 70 b0 f1 ff 01 00 00 00 00 00 00 00 00 00
[80269.886582] 00000030: 00 00 00 00 40 00 00 00 00 00 00 00 0b 01 12 00
[80269.886612] 00000040: 10 80 42 01 00 80 00 00 00 00 11 00 22 4c 31 01
[80269.886641] 00000050: 00 0c 21 30 60 00 04 00 00 00 40 01 00 00 00 00
[80269.886671] 00000060: 00 00 00 00 16 00 00 00 00 00 00 00 00 00 00 00
[80269.886700] 00000070: 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.886730] 00000080: 05 90 01 00 00 20 e0 fe 20 00 00 00 00 00 00 00
[80269.886760] 00000090: 0d a0 00 00 86 80 48 0f 00 00 00 00 00 00 00 00
[80269.886790] 000000a0: 01 00 03 c8 00 00 00 00 00 00 00 00 00 00 00 00
[80269.886923] 000000b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.886956] 000000c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.886986] 000000d0: 00 c0 00 00 42 08 00 00 00 80 11 c9 00 00 00 00
[80269.887015] 000000e0: 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
[80269.887044] 000000f0: 50 00 00 00 c0 00 00 00 1a 0f 13 01 00 40 00 01
[80269.887114] pci 0000:01:00.0: Dumping configuration space for 01:00.0:
[80269.887148] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556
[80269.887183] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=4 data=0x100000
[80269.887218] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x08 len=4 data=0x5000000
[80269.887252] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x0c len=4 data=0x0
[80269.887285] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 data=0x0
[80269.887320] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 data=0x0
[80269.887353] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 data=0x0
[80269.887388] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 data=0x0
[80269.887422] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 data=0x0
[80269.887455] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 data=0x0
[80269.887488] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x28 len=4 data=0x0
[80269.887522] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x2c len=4 data=0x4000
[80269.887555] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 data=0x0
[80269.887589] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=4 data=0x40
[80269.887622] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x38 len=4 data=0x0
[80269.887655] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x3c len=4 data=0x1ff
[80269.887689] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=4 data=0x34801
[80269.887723] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x44 len=4 data=0x8
[80269.887757] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=4 data=0x6005
[80269.887792] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x4c len=4 data=0x0
[80269.887825] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x50 len=4 data=0x0
[80269.887859] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x54 len=4 data=0x0
[80269.887893] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x58 len=4 data=0x0
[80269.887926] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x5c len=4 data=0x0
[80269.887960] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=4 data=0x20010
[80269.887994] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x64 len=4 data=0x8fc2
[80269.888027] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x68 len=4 data=0x2810
[80269.888062] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421
[80269.888095] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x70 len=4 data=0x210000
[80269.888129] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x74 len=4 data=0x0
[80269.888162] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x78 len=4 data=0x0
[80269.888196] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x7c len=4 data=0x0
[80269.888229] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x80 len=4 data=0x0
[80269.888263] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x84 len=4 data=0x2
[80269.888296] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x88 len=4 data=0x0
[80269.888330] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x8c len=4 data=0x0
[80269.888363] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x90 len=4 data=0x10020
[80269.888397] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x94 len=4 data=0x0
[80269.888430] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x98 len=4 data=0x0
[80269.888463] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x9c len=4 data=0x0
[80269.888497] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa0 len=4 data=0x0
[80269.888531] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa4 len=4 data=0x0
[80269.888564] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa8 len=4 data=0x0
[80269.888598] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xac len=4 data=0x0
[80269.888632] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb0 len=4 data=0x0
[80269.888665] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb4 len=4 data=0x0
[80269.888699] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb8 len=4 data=0x0
[80269.888731] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xbc len=4 data=0x0
[80269.888765] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc0 len=4 data=0x0
[80269.888799] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc4 len=4 data=0x0
[80269.888833] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc8 len=4 data=0x0
[80269.888866] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xcc len=4 data=0x0
[80269.888900] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd0 len=4 data=0x0
[80269.888933] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd4 len=4 data=0x0
[80269.888967] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd8 len=4 data=0x0
[80269.889001] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xdc len=4 data=0x0
[80269.889034] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe0 len=4 data=0x0
[80269.889068] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe4 len=4 data=0x0
[80269.889104] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe8 len=4 data=0x0
[80269.889139] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xec len=4 data=0x0
[80269.889172] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf0 len=4 data=0x0
[80269.889205] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf4 len=4 data=0x0
[80269.889239] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf8 len=4 data=0x0
[80269.889273] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xfc len=4 data=0x0
[80269.889304] 00000000: 56 15 55 55 00 00 10 00 00 00 00 05 00 00 00 00
[80269.889334] 00000010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.889364] 00000020: 00 00 00 00 00 00 00 00 00 00 00 00 00 40 00 00
[80269.889393] 00000030: 00 00 00 00 40 00 00 00 00 00 00 00 ff 01 00 00
[80269.889423] 00000040: 01 48 03 00 08 00 00 00 05 60 00 00 00 00 00 00
[80269.889452] 00000050: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.889481] 00000060: 10 00 02 00 c2 8f 00 00 10 28 00 00 21 f4 03 00
[80269.889510] 00000070: 00 00 21 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.889539] 00000080: 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00
[80269.889569] 00000090: 20 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.889597] 000000a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.889627] 000000b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.889655] 000000c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.889686] 000000d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.889715] 000000e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.889744] 000000f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.890408] ACPI: \_SB_.PCI0.RP01: Releasing bridge in hotplug_event()
[80269.891432] ACPI: \_SB_.PCI0.RP01: calling early_dump_pci_device() after put_bridge() in hotplug_event()
[80269.891475] pcieport 0000:00:1c.0: config space:
[80269.891637] 00000000: 86 80 48 0f 07 04 10 00 11 00 04 06 10 00 81 00
[80269.891667] 00000010: 00 00 00 00 00 00 00 00 00 01 01 00 10 10 00 20
[80269.891696] 00000020: 40 b0 70 b0 f1 ff 01 00 00 00 00 00 00 00 00 00
[80269.891724] 00000030: 00 00 00 00 40 00 00 00 00 00 00 00 0b 01 12 00
[80269.891752] 00000040: 10 80 42 01 00 80 00 00 00 00 11 00 22 4c 31 01
[80269.891780] 00000050: 00 0c 21 30 60 00 04 00 00 00 40 01 00 00 00 00
[80269.891808] 00000060: 00 00 00 00 16 00 00 00 00 00 00 00 00 00 00 00
[80269.891837] 00000070: 01 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.891865] 00000080: 05 90 01 00 00 20 e0 fe 20 00 00 00 00 00 00 00
[80269.891894] 00000090: 0d a0 00 00 86 80 48 0f 00 00 00 00 00 00 00 00
[80269.891922] 000000a0: 01 00 03 c8 00 00 00 00 00 00 00 00 00 00 00 00
[80269.891951] 000000b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.891980] 000000c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.892008] 000000d0: 00 c0 00 00 42 08 00 00 00 80 11 c9 00 00 00 00
[80269.892036] 000000e0: 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
[80269.892064] 000000f0: 50 00 00 00 c0 00 00 00 1a 0f 13 01 00 40 00 01
[80269.892131] pci 0000:01:00.0: Dumping configuration space for 01:00.0:
[80269.892163] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x00 len=4 data=0x55551556
[80269.892197] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x04 len=4 data=0x100000
[80269.892229] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x08 len=4 data=0x5000000
[80269.892262] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x0c len=4 data=0x0
[80269.892294] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x10 len=4 data=0x0
[80269.892326] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x14 len=4 data=0x0
[80269.892358] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x18 len=4 data=0x0
[80269.892391] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x1c len=4 data=0x0
[80269.892422] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x20 len=4 data=0x0
[80269.892455] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x24 len=4 data=0x0
[80269.892486] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x28 len=4 data=0x0
[80269.892519] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x2c len=4 data=0x4000
[80269.892551] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x30 len=4 data=0x0
[80269.892583] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x34 len=4 data=0x40
[80269.892615] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x38 len=4 data=0x0
[80269.892648] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x3c len=4 data=0x1ff
[80269.892680] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x40 len=4 data=0x34801
[80269.892714] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x44 len=4 data=0x8
[80269.892747] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x48 len=4 data=0x6005
[80269.892780] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x4c len=4 data=0x0
[80269.892812] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x50 len=4 data=0x0
[80269.892844] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x54 len=4 data=0x0
[80269.892876] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x58 len=4 data=0x0
[80269.892908] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x5c len=4 data=0x0
[80269.892940] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x60 len=4 data=0x20010
[80269.892973] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x64 len=4 data=0x8fc2
[80269.893006] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x68 len=4 data=0x2810
[80269.893037] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x6c len=4 data=0x3f421
[80269.893070] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x70 len=4 data=0x210000
[80269.893103] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x74 len=4 data=0x0
[80269.893135] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x78 len=4 data=0x0
[80269.893167] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x7c len=4 data=0x0
[80269.893199] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x80 len=4 data=0x0
[80269.893231] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x84 len=4 data=0x2
[80269.893263] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x88 len=4 data=0x0
[80269.893295] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x8c len=4 data=0x0
[80269.893328] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x90 len=4 data=0x10020
[80269.893360] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x94 len=4 data=0x0
[80269.893392] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x98 len=4 data=0x0
[80269.893424] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0x9c len=4 data=0x0
[80269.893456] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa0 len=4 data=0x0
[80269.893488] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa4 len=4 data=0x0
[80269.893520] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xa8 len=4 data=0x0
[80269.893553] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xac len=4 data=0x0
[80269.893584] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb0 len=4 data=0x0
[80269.893617] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb4 len=4 data=0x0
[80269.893649] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xb8 len=4 data=0x0
[80269.893681] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xbc len=4 data=0x0
[80269.893713] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc0 len=4 data=0x0
[80269.893744] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc4 len=4 data=0x0
[80269.893777] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xc8 len=4 data=0x0
[80269.893809] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xcc len=4 data=0x0
[80269.893841] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd0 len=4 data=0x0
[80269.893873] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd4 len=4 data=0x0
[80269.893905] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xd8 len=4 data=0x0
[80269.894032] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xdc len=4 data=0x0
[80269.894066] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe0 len=4 data=0x0
[80269.894099] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe4 len=4 data=0x0
[80269.894131] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xe8 len=4 data=0x0
[80269.894164] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xec len=4 data=0x0
[80269.894196] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf0 len=4 data=0x0
[80269.894228] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf4 len=4 data=0x0
[80269.894261] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xf8 len=4 data=0x0
[80269.894293] KERNEL PCI READ: res=0, bus=01 dev=00 func=0 pos=0xfc len=4 data=0x0
[80269.894323] 00000000: 56 15 55 55 00 00 10 00 00 00 00 05 00 00 00 00
[80269.894352] 00000010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.894381] 00000020: 00 00 00 00 00 00 00 00 00 00 00 00 00 40 00 00
[80269.894409] 00000030: 00 00 00 00 40 00 00 00 00 00 00 00 ff 01 00 00
[80269.894437] 00000040: 01 48 03 00 08 00 00 00 05 60 00 00 00 00 00 00
[80269.894465] 00000050: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.894493] 00000060: 10 00 02 00 c2 8f 00 00 10 28 00 00 21 f4 03 00
[80269.894521] 00000070: 00 00 21 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.894617] 00000080: 00 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00
[80269.894647] 00000090: 20 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.894675] 000000a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.894704] 000000b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.894732] 000000c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.894760] 000000d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.894789] 000000e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[80269.894899] 000000f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

[80297.950785]
Initialized Local Variables for Method [RDWD]:
[80297.950818] Local1: 00000000ebf1efc1 <Obj> Integer 0000000000000017
[80297.950957] Local6: 00000000718c9db0 <Obj> Integer 0000000000000002
[80297.951099] Local7: 00000000429ebb71 <Obj> Integer 000000000000AA55

[80297.951447] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80297.951478] Arg0: 00000000f3b8d2e3 <Obj> Integer 0000000000000016
[80297.951615] Arg1: 000000009c314ef0 <Obj> Integer 0000000000000003

[80297.951812] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80297.962541] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80297.973299] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80303.886413]
Initialized Local Variables for Method [RDWD]:
[80303.886446] Local1: 00000000993f99bf <Obj> Integer 0000000000000017
[80303.886585] Local6: 000000001bbf2ac3 <Obj> Integer 0000000000000004
[80303.886721] Local7: 00000000afd05901 <Obj> Integer 000000000000AA55

[80303.886888] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80303.886918] Arg0: 000000004fe9dd2f <Obj> Integer 0000000000000016
[80303.887054] Arg1: 00000000dfeb8645 <Obj> Integer 0000000000000003

[80303.887241] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80303.898258] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80303.908348] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80307.119126]
Initialized Local Variables for Method [RDWD]:
[80307.119158] Local1: 00000000bc5750c6 <Obj> Integer 0000000000000017
[80307.119299] Local6: 00000000fe501fd2 <Obj> Integer 0000000000000005
[80307.119515] Local7: 00000000b3a6b402 <Obj> Integer 000000000000AA55

[80307.119684] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80307.119714] Arg0: 00000000be6a90de <Obj> Integer 0000000000000016
[80307.119851] Arg1: 000000002b94a400 <Obj> Integer 0000000000000003

[80307.120041] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80307.130497] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80307.140353] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT

[80308.463771]
Initialized Local Variables for Method [RDWD]:
[80308.463803] Local1: 0000000065ac6482 <Obj> Integer 0000000000000015
[80308.463943] Local6: 00000000e9c370ed <Obj> Integer 0000000000000004
[80308.464081] Local7: 00000000a3c48c1e <Obj> Integer 000000000000AA55

[80308.464249] Initialized Arguments for Method [RDWD]: (2 arguments defined for method invocation)
[80308.464279] Arg0: 0000000010002980 <Obj> Integer 0000000000000014
[80308.464416] Arg1: 000000008f479352 <Obj> Integer 0000000000000002

[80308.464607] ACPI Error: Aborting method \_SB.PCI0.SBUS.RDWD due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80308.474857] ACPI Error: Aborting method \_SB.PCI0.SBRG.ADP1._PSR due to previous error (AE_AML_LOOP_TIMEOUT) (20240827/psparse-529)
[80308.485336] ACPI: \_SB_.PCI0.SBRG.ADP1: Error reading AC Adapter state: AE_AML_LOOP_TIMEOUT



# lspci
00:00.0 Host bridge: Intel Corporation Atom Processor Z36xxx/Z37xxx Series SoC Transaction Register (rev 11)
00:02.0 VGA compatible controller: Intel Corporation Atom Processor Z36xxx/Z37xxx Series Graphics & Display (rev 11)
00:13.0 SATA controller: Intel Corporation Atom Processor E3800 Series SATA AHCI Controller (rev 11)
00:14.0 USB controller: Intel Corporation Atom Processor Z36xxx/Z37xxx, Celeron N2000 Series USB xHCI (rev 11)
00:17.0 SD Host controller: Intel Corporation Atom Processor E3800 Series eMMC 4.5 Controller (rev 11)
00:1a.0 Encryption controller: Intel Corporation Atom Processor Z36xxx/Z37xxx Series Trusted Execution Engine (rev 11)
00:1b.0 Audio device: Intel Corporation Atom Processor Z36xxx/Z37xxx Series High Definition Audio Controller (rev 11)
00:1c.0 PCI bridge: Intel Corporation Atom Processor E3800 Series PCI Express Root Port 1 (rev 11)
00:1c.2 PCI bridge: Intel Corporation Atom Processor E3800 Series PCI Express Root Port 3 (rev 11)
00:1c.3 PCI bridge: Intel Corporation Atom Processor E3800 Series PCI Express Root Port 4 (rev 11)
00:1f.0 ISA bridge: Intel Corporation Atom Processor Z36xxx/Z37xxx Series Power Control Unit (rev 11)
00:1f.3 SMBus: Intel Corporation Atom Processor E3800 Series SMBus Controller (rev 11)
01:00.0 RAM memory: PLDA Device 5555 (rev ff)
03:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)